{ "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 12-26 23:28:35] 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 12-26 23:28:35] ax.modelbridge.dispatch_utils: 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 12-26 23:28:35] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:39] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:44] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:49] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:53] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:57] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:01] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:05] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:10] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:16] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:22] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:27] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:32] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:36] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:40] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:45] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:49] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:51] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:51] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:52] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:52] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:53] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:54] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:56] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.401889304984257,\n", " 'x2': 0.8829760773861991,\n", " 'x3': 0.5085079884233787,\n", " 'x4': 0.577561995546186,\n", " 'x5': 0.036637715157876075,\n", " 'x6': 0.03896324583126402}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2394268660324381, 'hartmann6': -3.1795181994310635}" ] }, "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.3482516942882625, -0.3371198948353651, -0.3269628693453024, -0.3180767657896926, -0.3107650971580418, -0.3053273794760434, -0.302045246349665, -0.30116635898405164, -0.3028868319476252, -0.3073333916161134, -0.3145469947483266, -0.3244700132092484, -0.33693915809374997, -0.35168593024793715, -0.36834552427279266, -0.3864739283981842, -0.4055717367226175, -0.42511223211031757, -0.4445708185117161, -0.46345292764601087, -0.4813179971643595, -0.49779784044332565, -0.5126085261163469, -0.5255556265844283, -0.5365333024472982, -0.5455181327839298, -0.5525588778256794, -0.5577634857764828, -0.5612846528332487, -0.5633051423527018, -0.5640238942830489, -0.5636437369219378, -0.5623612739072952, -0.5603592792469361, -0.5578017057332598, -0.5548312060275817, -0.5515688869154007, -0.5481158713201679, -0.5445561370959091, -0.5409600462328248, -0.5373879828733017, -0.5338935887462399, -0.5305262153487114, -0.5273323850810083, -0.5243562387885072, -0.5216391110283971, -0.5192184891168041, -0.5171266637247052, -0.5153893697092644, -0.5140246608509258 ], [ -0.34576714087112936, -0.33454103298556204, -0.32433088759825845, -0.3154448114336912, -0.3081991928496324, -0.30290684929698797, -0.29986241501553224, -0.2993252552085004, -0.30150062844390235, -0.3065203774425227, -0.3144250236875128, -0.32514960681913885, -0.3385157304433286, -0.3542318724088078, -0.37190305321395023, -0.3910496010154325, -0.4111333435526021, -0.43158846559847497, -0.4518537423741449, -0.4714029403390112, -0.4897707383638732, -0.5065723536915763, -0.5215159556175215, -0.534407770547735, -0.5451504455314298, -0.5537357143228316, -0.5602327021343156, -0.5647733305392351, -0.5675362688389269, -0.5687307532336019, -0.5685813925008496, -0.5673148297069024, -0.56514886117937, -0.5622843482051598, -0.5589000087050944, -0.5551499546215277, -0.5511636514275329, -0.5470478238944436, -0.5428897239359718, -0.5387611217043675, -0.53472239046526, -0.5308261348107175, -0.5271199552963091, -0.5236481308189387, -0.5204522006291774, -0.5175706040850683, -0.5150376581261844, -0.5128822053837887, -0.5111262530097274, -0.509783860541591 ], [ -0.3438402195270924, -0.33257269705451953, -0.3223647500399329, -0.3135361991919763, -0.30641603803571416, -0.30133009991714466, -0.29858572331948974, -0.29845366103240045, -0.30114794753504537, -0.30680506219539083, -0.315464414526089, -0.3270527433051509, -0.34137520800394183, -0.35811553453702394, -0.37684649950032734, -0.39705049077549637, -0.418148268865443, -0.43953281310989345, -0.4606045581057796, -0.4808044498296229, -0.49964191433142724, -0.5167157826613344, -0.5317272224609384, -0.5444846317674508, -0.5549011728714304, -0.562986137150504, -0.5688316406357194, -0.5725962754677352, -0.5744873134078252, -0.574742908009191, -0.5736155080209326, -0.5713574114479696, -0.5682090887435369, -0.5643906094544402, -0.5600962359523358, -0.5554920102108909, -0.5507159598858562, -0.5458803921336794, -0.5410756337155511, -0.5363745233423305, -0.5318369773982148, -0.5275140390940634, -0.5234509782441592, -0.5196892129857726, -0.5162670409295376, -0.5132193557879137, -0.5105766543162822, -0.5083636922160597, -0.5065981306955114, -0.5052894465670592 ], [ -0.34252004243823597, -0.3312700684483496, -0.3211260684573287, -0.3124192584183425, -0.30549086855976415, -0.30067934060299994, -0.2983042782432308, -0.29864734796506354, -0.30193082779128777, -0.3082951918548298, -0.31777790881015977, -0.3302963111892283, -0.3456376592451733, -0.3634590993854958, -0.38329901740402295, -0.4045995278356862, -0.4267379975401684, -0.44906409739240316, -0.4709382449796675, -0.4917674776798362, -0.5110355731737777, -0.5283253152164122, -0.5433319246255701, -0.5558676695857327, -0.5658584539871585, -0.5733337345827634, -0.578411445250502, -0.5812797326130172, -0.5821772630688797, -0.5813736841240784, -0.5791515533708318, -0.5757907269213234, -0.571555861511359, -0.5666873588885482, -0.5613957860704588, -0.555859550537761, -0.5502253996604483, -0.544611151319595, -0.5391099526822911, -0.5337953151298962, -0.5287261958241272, -0.5239514963808611, -0.5195135207085093, -0.5154501545338959, -0.511795761000672, -0.5085809874637137, -0.5058318139722644, -0.5035682282389258, -0.5018028904701317, -0.5005400753192302 ], [ -0.3418547681157471, -0.33068744165731, -0.3206756722196207, -0.3121616810125456, -0.3054984682644528, -0.3010365507554169, -0.29910720712634276, -0.3000023724223406, -0.3039518532456793, -0.31109929343059806, -0.3214792190182785, -0.33499829732359254, -0.351424305924378, -0.3703858841939911, -0.3913848102449762, -0.41382055286969055, -0.437024750108679, -0.4603016822283492, -0.48297012274893714, -0.5044021893640351, -0.5240557206728786, -0.5414979250364762, -0.5564192917199902, -0.5686378421949356, -0.5780946505453033, -0.584842156833169, -0.5890271463441312, -0.5908703951671501, -0.5906449218405572, -0.588654576603914, -0.5852143899928914, -0.5806337374865562, -0.575202998127913, -0.5691840245899968, -0.5628044207803549, -0.5562553510587782, -0.5496923857904343, -0.543238722394086, -0.5369900126730633, -0.5310199837692648, -0.5253860715813887, -0.5201343978841051, -0.5153036092614367, -0.5109273331193991, -0.507035253528199, -0.5036530222202027, -0.500801361568137, -0.498494770731978, -0.4967402199514779, -0.49553613436218136 ], [ -0.34189097374384003, -0.3308775120775369, -0.321072807360526, -0.31282962942476145, -0.306512185942607, -0.30248240852505304, -0.30108250340977394, -0.3026138464916368, -0.3073128588380176, -0.3153253256650217, -0.3266816353198887, -0.34127636045691356, -0.3588560744720326, -0.37901888183973376, -0.40122767479479515, -0.4248368798448805, -0.44913008003062393, -0.4733641201376464, -0.49681456414817715, -0.5188176832718789, -0.5388051942554626, -0.5563293357959431, -0.5710772418607446, -0.5828747566568038, -0.5916807586293558, -0.5975737038861446, -0.6007324741558948, -0.6014137451486579, -0.5999280126134099, -0.5966161702268411, -0.5918281778417422, -0.585904944211606, -0.5791641231496709, -0.5718901230084512, -0.5643282795036835, -0.5566828518089837, -0.5491182735868112, -0.5417629233965431, -0.5347145742425119, -0.5280466462714697, -0.5218144291153903, -0.5160605666731879, -0.5108193001582431, -0.5061192193193336, -0.5019845346039509, -0.4984351069253279, -0.4954856187461929, -0.49314432414421416, -0.49141178422400245, -0.4902799030267504 ], [ -0.34267298992615025, -0.33189061502390227, -0.32237427341953495, -0.3144867666956477, -0.30860285641386453, -0.305095103803553, -0.30431573580315874, -0.3065745508990181, -0.3121134577280056, -0.321079133412679, -0.3334964211364779, -0.34924618300631427, -0.36805191990999453, -0.3894790740582381, -0.4129493223970966, -0.4377696447743935, -0.46317326996325847, -0.48836761477139223, -0.5125835393039484, -0.5351206293149291, -0.5553844039152895, -0.5729128687486769, -0.5873913372163551, -0.5986557315488013, -0.6066855763129433, -0.6115885951271725, -0.6135792272797471, -0.6129535173152423, -0.6100627328297361, -0.6052877829566115, -0.5990161021083349, -0.5916221929166252, -0.5834525449186876, -0.5748152036863952, -0.565973884522446, -0.5571462161985234, -0.5485054639560085, -0.5401849139688144, -0.5322840028717983, -0.5248752503961958, -0.5180111088544537, -0.5117299850659431, -0.5060609104004448, -0.5010266057707344, -0.49664496622321286, -0.49292922428588803, -0.48988720314068424, -0.4875201237110318, -0.48582139308730143, -0.48477570280257143 ], [ -0.3442422081082497, -0.33377392734702616, -0.3246335104437763, -0.3171932216505753, -0.3118376391553268, -0.3089490487955562, -0.3088886332447567, -0.311973401105764, -0.31844939948855067, -0.32846271256920523, -0.3420310023484394, -0.3590196042838245, -0.37912692461791964, -0.4018835188395009, -0.42666747930866844, -0.4527359437149294, -0.4792695311466342, -0.505424302807669, -0.5303849972575305, -0.5534137623995152, -0.5738899451295674, -0.5913381783534737, -0.6054436423602756, -0.6160547758843611, -0.6231747997294146, -0.6269441785252434, -0.6276165906367228, -0.6255311213991821, -0.6210832761850382, -0.6146970819311683, -0.606800077850238, -0.5978024613101756, -0.5880811186134025, -0.5779687812499026, -0.5677481346359938, -0.5576503788425964, -0.5478574977609234, -0.5385073285283892, -0.5297004332446369, -0.5215077624473747, -0.5139781712172529, -0.5071450079908444, -0.5010312342255232, -0.49565282134708144, -0.49102046360328555, -0.48713988970887345, -0.4840112121151523, -0.4816278042690181, -0.4799751539183361, -0.4790300338683875 ], [ -0.3466363730789135, -0.3365706458010662, -0.3278996520094888, -0.3210045066640541, -0.3162787931511257, -0.3141135056136559, -0.31487756526247135, -0.3188937856339844, -0.3264107771524083, -0.33757230197831034, -0.3523869649242042, -0.37070254852279083, -0.3921901843231099, -0.4163432239288747, -0.4424937781460947, -0.46984677200456626, -0.4975280178976258, -0.5246403670449895, -0.5503210956366349, -0.5737942408334962, -0.5944130926773783, -0.6116898836357718, -0.6253114919806562, -0.6351414898476946, -0.6412100523405184, -0.6436940833905198, -0.6428904063987533, -0.6391850256230904, -0.6330213228107684, -0.624869673925045, -0.6152004338315338, -0.6044616288196414, -0.5930620942944158, -0.5813602536354874, -0.5696582854033858, -0.5582010796282484, -0.54717913557585, -0.5367343936951239, -0.5269679165179839, -0.5179483368367725, -0.5097200813123333, -0.5023105561993706, -0.4957357388880974, -0.4900039243689476, -0.48511768157305046, -0.4810743275380822, -0.47786538640814347, -0.4754755496970471, -0.47388160601897655, -0.4730516940680265 ], [ -0.3498888748855111, -0.34031915886331854, -0.33221656344766304, -0.32597040966808377, -0.32198241197358346, -0.32065115690793045, -0.32235194521275434, -0.3274118048803776, -0.3360801114259948, -0.3484963300586248, -0.3646578877469242, -0.3843927734056609, -0.4073425060539124, -0.43296083038483135, -0.46053146366183695, -0.48920478708496407, -0.5180496783346373, -0.5461140001676856, -0.5724862959306123, -0.5963518848815843, -0.6170381883053866, -0.6340461061042573, -0.6470661769021187, -0.6559798947550892, -0.6608478535907945, -0.6618873219386832, -0.6594424023358756, -0.6539501053199901, -0.6459055011482393, -0.6358286728546685, -0.6242355774366404, -0.6116142301970269, -0.5984069501697551, -0.5849988058665565, -0.5717119143476357, -0.5588048814660524, -0.5464764194005867, -0.5348720257376387, -0.5240925456727352, -0.5142034619685409, -0.505243868517655, -0.4972342833258201, -0.49018273370663223, -0.48408886894830716, -0.47894617437964593, -0.47474262134865297, -0.4714602487653241, -0.4690742184885477, -0.4675518323901262, -0.46685187670318573 ], [ -0.3540280560974942, -0.34505223090169657, -0.33762188742229804, -0.33213388600961835, -0.32899714822171866, -0.32861665204390933, -0.33137259192998014, -0.33759444836496644, -0.34753035165499657, -0.3613132565460597, -0.3789270511084053, -0.40017747907564893, -0.424673957148904, -0.45182814403961014, -0.4808729490197945, -0.5109019288551793, -0.540924972458865, -0.5699332469698544, -0.5969653485022965, -0.6211673159006577, -0.641840939176529, -0.6584769280599909, -0.6707715596624924, -0.6786272014156143, -0.682138534529027, -0.6815673460383929, -0.6773093830307968, -0.6698569613270018, -0.6597608254674123, -0.6475942475525105, -0.6339216431021173, -0.6192731944942163, -0.6041262117626698, -0.5888932991110805, -0.5739168698905903, -0.5594691695534741, -0.5457567132736001, -0.5329279041812023, -0.5210825544088995, -0.5102820773778136, -0.5005592555051317, -0.491926711159667, -0.484383506702007, -0.47791963889681743, -0.4725185235628997, -0.46815783325722826, -0.46480921288050014, -0.4624374411746066, -0.46099954506098717, -0.460444243677099 ], [ -0.35907655147797857, -0.3507962192341756, -0.3441461213613346, -0.3395299790403543, -0.3373629609057003, -0.33805516726473805, -0.34199009295438554, -0.3494977578886065, -0.3608228445809192, -0.3760893629703608, -0.39526507595579674, -0.4181308330592619, -0.4442613200032508, -0.47302356773508003, -0.5035972725732627, -0.5350169436764156, -0.566231498976586, -0.5961737611330784, -0.6238311979683515, -0.6483100214273836, -0.6688866477222777, -0.6850427878640606, -0.6964826329246203, -0.7031325276255056, -0.7051251092237731, -0.7027710665576159, -0.6965223903050777, -0.6869312136199655, -0.6746081136984619, -0.6601831536757501, -0.6442721272854413, -0.627449571524578, -0.6102292581523223, -0.5930521452233857, -0.5762812032609552, -0.5602021304686531, -0.5450287202445963, -0.5309115182719639, -0.517948385632018, -0.5061956576597961, -0.4956787518864585, -0.486401328100047, -0.478352423736752, -0.4715113441754777, -0.4658504290502117, -0.4613360876567343, -0.45792865836682095, -0.4555816856651964, -0.4542411404028157, -0.4538449707827037 ], [ -0.3650506776495177, -0.357570345545154, -0.35181175272952037, -0.3481848006048167, -0.34710992272028673, -0.3490010230196099, -0.3542432189716507, -0.3631650325302096, -0.376005332512811, -0.3928765581084883, -0.41372756327268734, -0.43831148186158675, -0.46616552279499324, -0.4966095021449375, -0.5287675187316916, -0.5616128698750436, -0.5940315818984252, -0.6248965202620809, -0.6531428453627335, -0.6778363758625265, -0.6982283966207394, -0.7137928309788064, -0.7242440356662394, -0.7295355768119267, -0.7298421118445777, -0.7255278436229347, -0.7171058400029302, -0.7051927763830124, -0.6904633909031077, -0.6736082542116228, -0.6552975135317363, -0.6361522484308759, -0.6167241169436648, -0.5974831674659833, -0.578813083141521, -0.5610127099858444, -0.5443024737993298, -0.5288341836868333, -0.5147027263273034, -0.5019582595157595, -0.49061770846640695, -0.4806746465682752, -0.4721069858439082, -0.46488227559770956, -0.4589607592993219, -0.45429661539135235, -0.45083796801524767, -0.44852628704336195, -0.44729572126113326, -0.447072762278129 ], [ -0.37195989016419917, -0.3653860431657805, -0.3606324785366204, -0.3581146035595759, -0.35825712594521253, -0.3614764045893686, -0.3681574435630268, -0.3786251377391139, -0.3931100509496237, -0.4117102751602759, -0.43435281526494895, -0.4607601334446214, -0.490429130189854, -0.5226297961564315, -0.5564282783152896, -0.5907345525782979, -0.6243698759513199, -0.656145548994352, -0.6849432079878126, -0.7097876496003106, -0.7299052148785647, -0.7447632372007835, -0.754088543277782, -0.7578652907838503, -0.7563144100876951, -0.7498584568388669, -0.7390766429606341, -0.7246551213407857, -0.7073372842928374, -0.6878780335662804, -0.667004891677283, -0.6453876594294534, -0.6236172500716066, -0.6021934485845932, -0.581520693354779, -0.5619105491134682, -0.5435893025270979, -0.5267090276641904, -0.5113605064817712, -0.49758652916433577, -0.4853943290433118, -0.47476621611008185, -0.46566784136359685, -0.45805391437598697, -0.4518715571256855, -0.44706175511738233, -0.44355952424519396, -0.44129343891489037, -0.4401850832343577, -0.4401488323208793 ], [ -0.3798063244476795, -0.3742464007848507, -0.3706125346285214, -0.3693249778516745, -0.3708117255582455, -0.37549023272404547, -0.383743624027284, -0.3958909838773277, -0.41215200051422984, -0.4326075440479411, -0.4571597283221902, -0.48549730423196413, -0.5170739878343098, -0.5511073371636162, -0.5866032320809893, -0.6224062625250038, -0.6572710550841654, -0.6899457038211587, -0.719257020515619, -0.7441880412427113, -0.7639402521963563, -0.7779755453451707, -0.786035548349814, -0.7881384901220385, -0.7845560061823167, -0.775774065072864, -0.7624433185410515, -0.7453245367041872, -0.7252344161778228, -0.7029961106480058, -0.6793975756090473, -0.6551594921609301, -0.6309133329173311, -0.6071891678297732, -0.5844121143841503, -0.562905898453953, -0.5429017675304573, -0.5245509415494529, -0.5079388606298483, -0.4930996683547717, -0.48002963772767293, -0.468698589959887, -0.45905875052343736, -0.45105089407020094, -0.4446079987491711, -0.43965690941165225, -0.43611866238170527, -0.4339081440607784, -0.4329336629927252, -0.43309685132738274 ], [ -0.3885844353691168, -0.3841457211972197, -0.3817461581337249, -0.38181019935922045, -0.3847681557915217, -0.3910372288087598, -0.40099689725150367, -0.41495823850185, -0.43312746801163815, -0.45556532340015954, -0.4821459500758012, -0.5125213275481733, -0.5460991181433723, -0.5820418752110732, -0.6192929441508965, -0.6566294957837993, -0.6927376498705955, -0.7263005741393467, -0.7560888213286887, -0.7810427676949714, -0.8003389888388563, -0.8134349966832357, -0.8200895490474904, -0.8203585159618567, -0.8145688370367619, -0.8032751658053308, -0.7872051095317363, -0.7671993894813052, -0.7441528015823518, -0.7189607566494549, -0.6924747242483305, -0.6654683943119664, -0.6386150294734725, -0.6124754288408376, -0.5874951899470522, -0.5640095115218815, -0.5422535727422675, -0.5223765005397847, -0.5044570514980002, -0.4885193582039904, -0.47454740078846847, -0.4624972438973429, -0.45230650114293236, -0.44390091349768457, -0.43719830453296105, -0.4321104540506431, -0.4285435791726755, -0.4263981228369056, -0.425568447150966, -0.42594285587342084 ], [ -0.39828074773982514, -0.39506921075973267, -0.39401720296121856, -0.3955527566474506, -0.4001075517364683, -0.4080972139205308, -0.4198958390373204, -0.4358043308745525, -0.45601286562837706, -0.48055917124030567, -0.5092863877737923, -0.5418067158101427, -0.5774789607626716, -0.6154081711684252, -0.6544729486168952, -0.6933810281541761, -0.7307480968044384, -0.7651905516521935, -0.7954210661300476, -0.820336245425624, -0.839087507146292, -0.8511289177432022, -0.8562386616228059, -0.8545138868574036, -0.8463415852231753, -0.83235056430337, -0.8133511075032338, -0.7902693991769161, -0.764083257470076, -0.7357644233701388, -0.7062309705128895, -0.676311684247674, -0.6467227664048287, -0.618056080496332, -0.5907773801362803, -0.5652325180899942, -0.5416594488877762, -0.5202038511192548, -0.5009363560491988, -0.4838696409979637, -0.46897400301853587, -0.4561904472385745, -0.44544077515305336, -0.4366346001475787, -0.4296736008211317, -0.42445359975368335, -0.42086519575912495, -0.41879367849217886, -0.4181188408643117, -0.4187151213405551 ], [ -0.4088737269670977, -0.40699281143558563, -0.4073989236133313, -0.4105230751790976, -0.41679740087010697, -0.4266346731715951, -0.4404019260187588, -0.4583877966264469, -0.4807639455697148, -0.5075423207854157, -0.5385321420801139, -0.5733029556534288, -0.6111620384315535, -0.6511545474115688, -0.6920922022149023, -0.7326112892099892, -0.7712550553136521, -0.806571114649026, -0.8372124066767552, -0.8620303931941495, -0.880150848815368, -0.8910251618441651, -0.8944531729607337, -0.8905769841831057, -0.8798485125390432, -0.8629763630523235, -0.8408593979224159, -0.8145149310459374, -0.7850088305696641, -0.7533932878750227, -0.7206560629076562, -0.6876830692826097, -0.6552345087865912, -0.6239335328633819, -0.5942656027996587, -0.5665862789284275, -0.5411350122716021, -0.5180525672565233, -0.4973999149308299, -0.4791767608998643, -0.4633382794843419, -0.4498090867216089, -0.4384939665546197, -0.42928532456516755, -0.4220677331746394, -0.41672020653285324, -0.41311697510748946, -0.4111275193143402, -0.41061649599595884, -0.41144399713363256 ], [ -0.42033377554294726, -0.4198831828691312, -0.4218539370459202, -0.4266794516620074, -0.43479144093458433, -0.44659860643684035, -0.4624593269041939, -0.48264799582787066, -0.5073154304856062, -0.5364452088047948, -0.5698099200120705, -0.6069337942215824, -0.647070108513139, -0.6892019005580945, -0.7320719593830918, -0.7742431071785045, -0.8141840374552856, -0.8503713655257787, -0.881396166634524, -0.9060630825575455, -0.9234714795241299, -0.9330706272462667, -0.934684148327853, -0.9285027793026153, -0.9150483279406734, -0.8951149820401818, -0.8696962344458323, -0.8399063170825636, -0.8069042506665651, -0.7718268190393729, -0.7357345240809281, -0.6995723749035423, -0.6641455400481557, -0.6301085702330222, -0.5979660648203262, -0.5680822234449929, -0.5406965998607351, -0.5159434768671514, -0.49387254688245585, -0.47446896516264836, -0.4576713042604037, -0.4433864448367466, -0.4315009522635651, -0.4218889670082959, -0.4144170321358769, -0.40894655160155335, -0.40533469468992855, -0.4034345382493072, -0.4030950993950424, -0.40416170493648473 ], [ -0.4326233572281748, -0.4336978371070028, -0.43733436622636757, -0.4439682035790937, -0.4540298110569374, -0.4679226747230303, -0.4859950352537419, -0.5085052202085232, -0.5355810794376681, -0.5671754805401679, -0.6030219551407088, -0.642597048292658, -0.6850978344217855, -0.7294432117699563, -0.7743051051427039, -0.8181708587630878, -0.8594323820477381, -0.8964928502519391, -0.9278790398795866, -0.9523467581459082, -0.9689678799077046, -0.9771898684774926, -0.976862108997472, -0.9682276157317765, -0.9518831018619361, -0.9287142207206953, -0.8998152519191747, -0.8664032128278623, -0.8297354159240788, -0.791037371074006, -0.7514453301525743, -0.7119652877370626, -0.6734482482104787, -0.636580162914862, -0.6018840847958988, -0.5697316717249261, -0.540361082273993, -0.5138984603182346, -0.49038053005602533, -0.4697762679441624, -0.45200613833587755, -0.4369579348090886, -0.4244988179991045, -0.4144836384201456, -0.4067600334116712, -0.401171052556031, -0.3975561759501558, -0.39575155136931883, -0.3955901225222225, -0.3969021011319409 ], [ -0.44569724692037394, -0.4483854236660254, -0.453782162811021, -0.46232403107319886, -0.47443945308780844, -0.49052563905346913, -0.5109193406983137, -0.535861186678833, -0.5654541871308396, -0.5996184699626725, -0.6380464355224336, -0.6801649391450595, -0.7251129829696676, -0.7717435641805663, -0.818655958858757, -0.8642600399279416, -0.9068685912898016, -0.9448086787742349, -0.976540030186363, -1.0007672458878707, -1.016533279952966, -1.0232838167224894, -1.0208957945201669, -1.0096680599934107, -0.9902772394734757, -0.9637063728749907, -0.9311567277262358, -0.8939539978791862, -0.8534589163198685, -0.8109898084620102, -0.7677616138841936, -0.7248431143475964, -0.6831319199016046, -0.6433452790075551, -0.6060239083189514, -0.5715456423303504, -0.5401456562955822, -0.511940222891123, -0.4869513524566045, -0.46513017918255106, -0.44637753933327295, -0.43056079497356525, -0.4175265419720855, -0.40710935841815954, -0.3991371550597578, -0.3934339482633984, -0.38982097282045913, -0.3881169972875407, -0.38813853436329016, -0.3897004051854618 ], [ -0.4595029004918654, -0.46388615794725574, -0.47112960040358187, -0.4816705808223294, -0.4959347506486904, -0.5143120768836809, -0.5371266208636638, -0.5645998965460148, -0.5968084931433948, -0.6336381301743632, -0.6747384136353409, -0.719484928901851, -0.7669571271203226, -0.8159406527113724, -0.864960541164264, -0.9123472571209139, -0.956332035715467, -0.9951629571165606, -1.0272296463116195, -1.0511827649659966, -1.0660345532543531, -1.0712286256490948, -1.0666710254722176, -1.0527198360703043, -1.0301365264727704, -1.0000074062463833, -0.9636469013126061, -0.9224952277092513, -0.8780216006503379, -0.8316411658914553, -0.7846503938513769, -0.7381825570991549, -0.6931825429164904, -0.6503986968098894, -0.6103885166787566, -0.5735346469934217, -0.5400676184430346, -0.5100920431541949, -0.4836134338594025, -0.4605634012414579, -0.44082163602781543, -0.4242337457214653, -0.41062463965105267, -0.39980769358979007, -0.39159033491146045, -0.3857769405785638, -0.38217002226839325, -0.38057060033638246, -0.3807784802810923, -0.382592896476851 ], [ -0.4739809355535356, -0.48013238178668183, -0.4892999245462597, -0.5019211948638975, -0.518418385027551, -0.5391733507148171, -0.5644964236092909, -0.5945888246463131, -0.6294994601768578, -0.6690783687882482, -0.7129311510174219, -0.7603810119432899, -0.8104468121885624, -0.8618457520852207, -0.9130272799187451, -0.9622406256753265, -1.0076330244242473, -1.0473705365704216, -1.0797693640859887, -1.1034231591225696, -1.117311288910046, -1.120874661204709, -1.1140496849194064, -1.0972568605689972, -1.0713472626899994, -1.0375162198354162, -0.9971973620108132, -0.9519511440883682, -0.9033601918042937, -0.8529403457908482, -0.8020723307615141, -0.7519555073918691, -0.7035826173294162, -0.6577328179623014, -0.6149794294004551, -0.5757084730814348, -0.5401441209908628, -0.5083774991806136, -0.48039582164644323, -0.4561094962225065, -0.43537557094286106, -0.41801661258052536, -0.40383477335710327, -0.39262135994071956, -0.384162632086825, -0.37824280068803073, -0.37464526056053327, -0.3731530010492816, -0.3735489301733508, -0.37561658275963916 ], [ -0.4890657113089629, -0.4970492414425607, -0.5082081412441148, -0.5229798219292103, -0.541782380420538, -0.5649887954935982, -0.5928947995315894, -0.6256803913188311, -0.6633658675121057, -0.7057647290389435, -0.7524378354779102, -0.8026554000955364, -0.8553751293950778, -0.9092450962920704, -0.9626381208305341, -1.0137205547118224, -1.0605532331267349, -1.1012170838480864, -1.1339513680428306, -1.1572893656664438, -1.1701750626720768, -1.1720456581661187, -1.1628688409067744, -1.1431303991423434, -1.113775501299299, -1.0761139932048582, -1.0317045157783702, -0.9822332511112386, -0.9294009542144335, -0.8748278550582083, -0.8199815110439828, -0.7661288557032355, -0.7143109744758116, -0.6653374809051957, -0.6197965006939237, -0.5780759544968697, -0.5403919117422584, -0.5068201745327374, -0.4773278630857991, -0.4518025270173891, -0.4300771145692017, -0.4119499193607703, -0.39719933090308746, -0.38559379389150417, -0.3768977970814589, -0.3708749445571451, -0.3672892096452136, -0.365905358215336, -0.3664893000279559, -0.3688088441276305 ], [ -0.5046859935262409, -0.5145554657019937, -0.5277619226361303, -0.5447420650033881, -0.565909306436297, -0.5916270860301984, -0.6221758385660652, -0.6577136633775336, -0.6982316586297324, -0.7435063499572538, -0.7930536014499123, -0.8460905334275319, -0.9015136345544772, -0.9579016177373609, -1.0135500048562758, -1.066540896246367, -1.1148464830906164, -1.1564594787907456, -1.1895385897320498, -1.2125531465191455, -1.2244089356410994, -1.2245380728805682, -1.2129400382759226, -1.1901683695663243, -1.1572664148647305, -1.1156636441486225, -1.0670491422122117, -1.0132399636590956, -0.9560594166846073, -0.8972355816687088, -0.838325256980776, -0.780664317176333, -0.7253426026315903, -0.6731997739224502, -0.6248377096940849, -0.5806447315772769, -0.5408270588176731, -0.5054433459824352, -0.47443885670100183, -0.4476766753816497, -0.42496425505759516, -0.4060744556941285, -0.3907609779800405, -0.3787686967894297, -0.36983981554524403, -0.36371698265076935, -0.36014453878130404, -0.35886892751142097, -0.3596390516920267, -0.3622070570636504 ], [ -0.5207656892326067, -0.5325642251199254, -0.5478626064950105, -0.5670963366375963, -0.5906736033748508, -0.6189477431368522, -0.6521833620262918, -0.6905162279854085, -0.7339079801814952, -0.7820981378507026, -0.8345577837353064, -0.8904513489150006, -0.948614550759524, -1.0075569960282378, -1.0654966770144885, -1.1204304398484175, -1.1702398691616882, -1.2128265529351596, -1.2462650680726446, -1.2689571148904628, -1.2797672184072533, -1.2781206708204484, -1.2640487961493387, -1.238174823236216, -1.2016438139186167, -1.156009413718306, -1.1030960543412558, -1.0448563352373759, -0.9832401533598455, -0.9200866112682413, -0.8570439621623627, -0.7955182711997637, -0.736648478094635, -0.6813038470344082, -0.6300989444358149, -0.5834210006556382, -0.5414646618525838, -0.5042696550978636, -0.4717576855934329, -0.44376584059706414, -0.4200747675989822, -0.40043082374577876, -0.38456218952627474, -0.37218955850886926, -0.36303243153985654, -0.35681224980645987, -0.35325360727135946, -0.35208462244848526, -0.35303727638374904, -0.3558482038216144 ], [ -0.5372246350324579, -0.5509840526769556, -0.5684062655400728, -0.5899250929580302, -0.6159429954585252, -0.6468027372906788, -0.6827527221898535, -0.7239061850346153, -0.7701953523382743, -0.8213230853929319, -0.8767163400663627, -0.935487745223724, -0.9964132003768458, -1.0579339730244421, -1.1181907981704504, -1.1750947416756101, -1.226435243521247, -1.2700201920648904, -1.3038366682637426, -1.326215103284655, -1.335975550851817, -1.3325343991816734, -1.3159543574711536, -1.2869296447499272, -1.2467098493192212, -1.1969766009850709, -1.1396938753999515, -1.07695387276082, -1.0108366257421453, -0.9432950839107791, -0.8760709512245339, -0.8106416137507313, -0.7481954007970044, -0.6896307224471001, -0.635573779914195, -0.5864092542996804, -0.5423185513192548, -0.5033207661431567, -0.469312435920076, -0.44010322267655533, -0.415445768156367, -0.3950589693929394, -0.37864476589865825, -0.36589916635571873, -0.3565186567488654, -0.3502033218532812, -0.34665799487907134, -0.34559256407862615, -0.34672226815585305, -0.34976847302766156 ], [ -0.5539794229160588, -0.5697198062838735, -0.5892848229665455, -0.6131061181556916, -0.6415799586428135, -0.6750381509202055, -0.713712664939514, -0.7576942083656244, -0.806885916726503, -0.860954682210908, -0.9192843866090588, -0.9809371912107303, -1.0446306211604, -1.1087389000898664, -1.1713263404951337, -1.2302182860772115, -1.2831110720189178, -1.3277168373744368, -1.3619322087541121, -1.3840129326383765, -1.3927313622184903, -1.3874926083654895, -1.368389748796368, -1.3361885185574516, -1.292244936271339, -1.2383714741796332, -1.176674949308421, -1.109390447363602, -1.0387310897541853, -0.9667660921640104, -0.8953323639819719, -0.8259796224833251, -0.7599458347311532, -0.6981581042752896, -0.6412532514142921, -0.5896120139213101, -0.5434009782457516, -0.5026170132350729, -0.46713000421163486, -0.43672089456601726, -0.41111325674962784, -0.3899977037489095, -0.3730493402914892, -0.35993910615328306, -0.350340272799458, -0.3439315262625957, -0.34039802719522116, -0.3394316265675872, -0.34073109413689995, -0.344002857950765 ], [ -0.5709442479768048, -0.5886736544417319, -0.6103871919404273, -0.6365138332257445, -0.6674432124707348, -0.7034958643362703, -0.7448872161976052, -0.7916856328487707, -0.8437657163226295, -0.9007593702802077, -0.9620088007925165, -1.0265274362680499, -1.0929763315285346, -1.1596644931104778, -1.2245812563943606, -1.2854669870217843, -1.3399246897346768, -1.3855694311814815, -1.420205058914073, -1.442009657092761, -1.4497047914289702, -1.4426817009647388, -1.4210622215100677, -1.3856832220679203, -1.3380079455599159, -1.2799813901731503, -1.2138554052900283, -1.1420103131680919, -1.0667945744224245, -0.9903956243497194, -0.9147470665889834, -0.8414718368961296, -0.7718577555220145, -0.7068601899305937, -0.6471256256046709, -0.5930295574626401, -0.5447222974153021, -0.5021770403877164, -0.4652356978433254, -0.4336493684058558, -0.407111656106929, -0.3852842215360013, -0.36781488448819033, -0.3543492630353562, -0.3445373345020213, -0.3380364547508221, -0.33451230382319674, -0.33363898630515365, -0.33509916889439095, -0.338584759353878 ], [ -0.5880317634748766, -0.6077460678228275, -0.631600418849096, -0.6600206055295668, -0.6933892092028293, -0.7320152352607439, -0.7760975591438841, -0.8256825319733745, -0.880616970546019, -0.9404990072270721, -1.0046308560271244, -1.0719792905691539, -1.1411512191729658, -1.2103927788454025, -1.2776204177123605, -1.3404910432422268, -1.3965149896787308, -1.443209862015963, -1.4782852812113116, -1.4998393722264742, -1.5065401622430352, -1.497762301454361, -1.4736541588544165, -1.4351223155592918, -1.3837367160954743, -1.321575160846506, -1.2510354024099524, -1.1746442507417756, -1.094886943376885, -1.0140705611928946, -0.934226596574893, -0.8570519596165236, -0.783884510523122, -0.7157074879412739, -0.6531761736837414, -0.5966596462191407, -0.5462906481826211, -0.502017438942421, -0.46365283372687793, -0.43091716160924065, -0.40347335215426927, -0.38095362344430206, -0.362978220643015, -0.34916733006087, -0.3391476823739521, -0.3325554862788407, -0.32903723773665705, -0.3282496826572956, -0.3298598406402269, -0.3335456001558037 ], [ -0.6051539300455122, -0.6268368013912797, -0.652810812587221, -0.6834980390413214, -0.7192735977110221, -0.7604347472733879, -0.8071638757585693, -0.8594857582740376, -0.9172203173805644, -0.9799333097045548, -1.046888861823561, -1.117009451432449, -1.188850533919939, -1.260598221181826, -1.330098825369817, -1.3949281633594004, -1.4525055810698657, -1.5002519679403976, -1.5357823982285679, -1.5571136838804012, -1.5628581192964321, -1.5523710520956002, -1.5258245450140664, -1.4841923098221876, -1.42914895200426, -1.3629037129490285, -1.2879995873433177, -1.2071098593506773, -1.1228570576361148, -1.0376687410579601, -0.9536751547706485, -0.8726477899919483, -0.7959747008636608, -0.7246666500093244, -0.6593869530993626, -0.6004972565103672, -0.5481116383061257, -0.5021523878940475, -0.46240234114674617, -0.42855036925898604, -0.40022824347679964, -0.3770384502064046, -0.35857354732136715, -0.34442833323769007, -0.33420647323048436, -0.32752332925251104, -0.3240066144650531, -0.32329619871072146, -0.32504399719101396, -0.3289144592743798 ], [ -0.6222228474203513, -0.6458458537544496, -0.6739050448578565, -0.7068182286020925, -0.7449526439690992, -0.7885936078057376, -0.8379071325020875, -0.8928969260223587, -0.9533570019826209, -1.0188222566853868, -1.088520789913198, -1.1613333577956575, -1.2357669695458662, -1.309951017160367, -1.3816650883331172, -1.4484071739513091, -1.507508449486053, -1.5562951535535485, -1.592288863707206, -1.6134249366433673, -1.6182585359924475, -1.6061231476975821, -1.577211100841501, -1.5325594013191335, -1.4739435766728572, -1.4037010976699933, -1.3245178088420912, -1.2392120326285725, -1.15054306849658, -1.0610591184807006, -0.9729896652976411, -0.8881812076870079, -0.8080720997771438, -0.7337003286679964, -0.6657366069139647, -0.6045343237702991, -0.5501880376048995, -0.5025933037386632, -0.46150237557045526, -0.42657225007329824, -0.39740330750105346, -0.37356823661643945, -0.3546319884204423, -0.3401641818419021, -0.32974573783982386, -0.3229715918683922, -0.31945117983630156, -0.31880807037662406, -0.3206796995632273, -0.3247177319496273 ], [ -0.639151558687931, -0.6646743925663474, -0.6947712091699842, -0.7298549648727619, -0.7702845940801895, -0.8163332811806578, -0.8681507955126806, -0.9257203216989893, -0.9888109975065814, -1.056928438485897, -1.1292668719970709, -1.2046680581121572, -1.2815938200361656, -1.3581205501531528, -1.4319651646168579, -1.5005520137794932, -1.5611281388149174, -1.6109286628527562, -1.6473843046294259, -1.6683502916874342, -1.6723242995365895, -1.6586157200429008, -1.6274331925972094, -1.5798718698022918, -1.5178026244362244, -1.4436859171342578, -1.3603461453294687, -1.2707436661208784, -1.1777728828085157, -1.0841020526837606, -0.9920599346055052, -0.9035682314756917, -0.8201156269608727, -0.7427670757128269, -0.6722001925713581, -0.6087595085764113, -0.55251948972125, -0.5033485076163047, -0.4609679511674174, -0.4250028338890335, -0.39502219166122754, -0.3705690940691362, -0.35118117379042335, -0.3364032529881391, -0.32579397459977066, -0.31892838941928403, -0.31539826480601274, -0.3148115319681952, -0.3167918507951202, -0.32097882353637264 ], [ -0.6558548187583084, -0.6832256368557541, -0.7152998287450094, -0.7524848797433656, -0.7951309694100668, -0.8434989463618559, -0.8977224653052462, -0.957764732600317, -1.0233710486368233, -1.0940193415547002, -1.1688721578198618, -1.246735078106151, -1.326028193986784, -1.4047789817907608, -1.480646346256559, -1.5509861011121198, -1.6129664535035002, -1.6637365250197853, -1.7006405749715885, -1.7214567187303034, -1.7246260573839625, -1.7094321674600836, -1.6760956116192802, -1.625763232210436, -1.5603937564385448, -1.482563246565284, -1.3952283172850382, -1.3014866617874485, -1.2043648587960205, -1.1066497763675596, -1.0107689511883304, -0.9187191861611486, -0.8320394040852188, -0.7518213002475194, -0.6787490543814316, -0.6131579960066258, -0.5551022516964026, -0.5044229186286042, -0.46081060060752477, -0.42385855920103466, -0.39310483817079933, -0.3680633303390286, -0.3482448603315289, -0.3331700192007119, -0.3223757878576472, -0.3154179969403599, -0.31187145540019445, -0.31132920582220147, -0.31340190702519033, -0.31771788319602123 ], [ -0.6722498202323743, -0.7014056890193745, -0.7353848057796086, -0.7745885245758748, -0.8193577863851449, -0.8699408723794755, -0.9264554244502645, -0.9888451874329746, -1.0568326315427015, -1.1298695616323164, -1.207089023637995, -1.287263274218712, -1.3687742671706087, -1.4496049560521171, -1.5273614558596775, -1.5993370391328363, -1.6626276493437744, -1.7143031523715329, -1.7516276188607527, -1.7723069227884272, -1.77472796848495, -1.758147491578916, -1.7227933000561864, -1.6698562360861198, -1.6013734882450552, -1.5200271410703752, -1.4288975718764911, -1.331213312195391, -1.2301288070654457, -1.1285471085931436, -1.0289933776263058, -0.9335390174365433, -0.8437729211151459, -0.760813308211723, -0.6853507561669463, -0.6177113413181454, -0.5579289723265697, -0.5058177831862007, -0.4610380714107356, -0.42315194971867864, -0.39166715117147466, -0.3660691152177835, -0.3458426020173002, -0.3304847272258089, -0.3195115788425249, -0.31246055482249346, -0.3088903149824529, -0.3083798426933104, -0.3105276370200625, -0.31495158310962457 ], [ -0.6882568712472956, -0.7191243108325296, -0.7549243063699622, -0.7960513757434851, -0.8428366957820734, -0.8955157067656969, -0.9541900940574867, -1.0187846049110663, -1.0889998257397446, -1.164262938971959, -1.2436796211206071, -1.3259916567324939, -1.409546548506422, -1.4922873795115763, -1.5717732060162213, -1.6452415986321978, -1.7097240436556589, -1.7622195201885564, -1.799920081174775, -1.8204661613134836, -1.822194439027899, -1.804334648207948, -1.767117057116314, -1.7117677523148853, -1.6403912097493278, -1.555763821562842, -1.461079140208465, -1.3596881623735317, -1.25486738535668, -1.1496324863154408, -1.0466042939124813, -0.9479277990644068, -0.8552413458877866, -0.7696894470750804, -0.6919690918808512, -0.6223973760807116, -0.5609885212272014, -0.507530450989631, -0.46165406860731384, -0.4228913390971627, -0.3907207149306562, -0.3646002002476374, -0.34398947667059576, -0.3283631355025165, -0.31721729620822336, -0.3100718339517343, -0.306470164940144, -0.3059781185268846, -0.30818293525111584, -0.3126929477979692 ], [ -0.7038000210389008, -0.7362956391482682, -0.7738215768455208, -0.8167647634511879, -0.8654460378640747, -0.9200876737708621, -0.980775396115686, -1.0474153472569325, -1.1196870937438728, -1.1969946090555594, -1.2784182555180892, -1.3626721638670782, -1.448073129464141, -1.5325292322770636, -1.6135586564645854, -1.6883508903605815, -1.7538819348003676, -1.8070898006913374, -1.8451045304169524, -1.8655098234240148, -1.8665977366957665, -1.8475718420742433, -1.8086602000573497, -1.7511145878022283, -1.6770940587192404, -1.5894556302323628, -1.4914933721566654, -1.3866704548588742, -1.2783779823360346, -1.1697393934914742, -1.0634682530887027, -0.9617814773581491, -0.866366009429415, -0.7783923794337808, -0.6985641922832082, -0.6271901893730087, -0.5642658810593264, -0.5095542086682712, -0.4626580536676619, -0.42308065291532526, -0.39027257136993754, -0.36366570011345756, -0.342695876394316, -0.3268163165876605, -0.31550425192074716, -0.30826306558379724, -0.3046219285020322, -0.3041344918496576, -0.30637769230719747, -0.3109512369057952 ], [ -0.7188076299158517, -0.7528388379709623, -0.7919856882904166, -0.8366267207970406, -0.8870718105452042, -0.9435296796976349, -1.0060700189321976, -1.0745806752194231, -1.148720963555553, -1.227872960749686, -1.3110936796741983, -1.3970723647908367, -1.4840988817621903, -1.570051355646489, -1.6524136894582195, -1.7283356150985045, -1.7947476818897694, -1.848538265281988, -1.8867870802440814, -1.9070315485021878, -1.907526276915417, -1.887450600923572, -1.847026076503143, -1.7875201825622797, -1.711132673683829, -1.620785825859549, -1.5198596429131785, -1.4119172566323095, -1.300455179798981, -1.188698260668052, -1.0794487044149423, -0.9749928930472334, -0.877065095936489, -0.7868615070682814, -0.7050927446972082, -0.6320601982872318, -0.5677421153305815, -0.5118781820899589, -0.4640451094921991, -0.42371925655100817, -0.3903250645038696, -0.3632699422819943, -0.34196736735184263, -0.32585052944044635, -0.31437900671032715, -0.3070408395832842, -0.30335204081025635, -0.3028551244655753, -0.3051177249553787, -0.3097318834379752 ], [ -0.7332128810849834, -0.7686786843212441, -0.8093322066821951, -0.8555427505176054, -0.9076085479710636, -0.965724322499609, -1.029943582207938, -1.10013609990478, -1.175941607030607, -1.2567214912028624, -1.3415112871675847, -1.4289780654949205, -1.517388563172923, -1.604596155513494, -1.6880574128824897, -1.7648912612767835, -1.8319937649969797, -1.8862162206822084, -1.9246011261448956, -1.9446515721915856, -1.9445932746068155, -1.9235843657471623, -1.8818362372384159, -1.8206220844059666, -1.7421677965379618, -1.6494442467055264, -1.545901091584765, -1.4351873385478473, -1.320893858740028, -1.2063388879960029, -1.0944078235411672, -0.9874531090955541, -0.887254558646585, -0.7950335623337126, -0.7115083402636346, -0.6369743206379908, -0.5713944234468797, -0.5144873178031828, -0.46580588063704886, -0.4248018768019044, -0.3908757583334319, -0.36341239021542915, -0.3418046231359, -0.32546716486904215, -0.3138433276106245, -0.30640707292049774, -0.3026624266455429, -0.30214186647885555, -0.3044047665921994, -0.309036487987852 ], [ -0.7469542323257308, -0.783746085794413, -0.8257837864121735, -0.8734265069443721, -0.9269601066153084, -0.9865648019961898, -1.0522776968554364, -1.1239506245523918, -1.201204304250282, -1.2833805430904923, -1.3694951835366298, -1.4581957866823017, -1.5477297861432238, -1.6359311550473035, -1.7202363941055043, -1.7977431105739339, -1.865324630462061, -1.9198087174518566, -1.9582148700884463, -1.9780249259207798, -1.9774453786203878, -1.9556172504690108, -1.9127389946287374, -1.8500800136834368, -1.7698776196811508, -1.675133799404741, -1.5693501899916622, -1.4562458236713245, -1.3394929694777558, -1.2224934088158217, -1.1082087625935377, -0.999053054650319, -0.8968492709306393, -0.8028433765275358, -0.7177619589134474, -0.6418962603330929, -0.5751962931447665, -0.5173624528840095, -0.46792659681775683, -0.42631860387567055, -0.39191743336682183, -0.3640876439605458, -0.342203434306815, -0.3256627656874438, -0.31389421830158915, -0.3063590485068137, -0.30255054543087523, -0.30199230496994756, -0.3042365172399044, -0.3088628680412251 ], [ -0.7599758059197794, -0.7979785280098104, -0.8412706850511316, -0.8902003904947935, -0.9450403553579061, -1.0059557258504022, -1.072966912748181, -1.1459078666330762, -1.2243807803403763, -1.3077089052566888, -1.394890109239963, -1.4845550771129457, -1.5749357983846421, -1.6638523255960438, -1.7487286249302862, -1.826650912079376, -1.8944821287018219, -1.9490407726077685, -1.9873383046947055, -2.0068491041082686, -2.005770878492589, -1.9832325786839902, -1.939418027312649, -1.8755842494818158, -1.7939656804641237, -1.6975776369391231, -1.5899550488551362, -1.4748695405074805, -1.3560599198560777, -1.2369997602315341, -1.1207182967487213, -1.0096854708651644, -0.9057644063848354, -0.8102248253631228, -0.723802596529709, -0.6467869122784617, -0.5791177579862485, -0.5204804805445469, -0.47038918602280644, -0.42825497870303186, -0.39343816523863095, -0.3652855201599461, -0.3431547948775633, -0.32642912129922075, -0.3145240211405673, -0.3068895226491335, -0.3030095014018539, -0.30239987400526136, -0.3046067507132113, -0.30920516004263376 ], [ -0.772227715544902, -0.8113204503206053, -0.8557311971827537, -0.9057960516624946, -0.9617737652078736, -1.023813805064755, -1.0919195454568043, -1.1659070476260633, -1.2453603971648328, -1.3295852527377727, -1.4175631820113508, -1.5079106193049838, -1.5988480183269018, -1.6881871203070409, -1.7733471178715416, -1.8514130934019848, -1.9192503718483935, -1.9736828828149438, -2.0117293757736787, -2.030870863131527, -2.0293071097701127, -2.0061608120871477, -1.9616006594534234, -1.8968639975826453, -1.81416900602444, -1.7165267753913234, -1.6074862562392715, -1.4908529170896465, -1.3704154541793057, -1.2497055659182796, -1.1318098009425999, -1.0192471158914045, -0.9139170236110452, -0.8171119403919003, -0.7295780316426614, -0.6516048889610921, -0.5831257641930574, -0.5238146161644184, -0.47317148124869246, -0.4305921684080143, -0.39542148689063006, -0.3669912115928753, -0.34464506463642364, -0.32775343458831596, -0.31572058798792724, -0.3079868976972697, -0.3040282152129212, -0.3033540221458688, -0.3055054751830373, -0.3100539706375163 ], [ -0.7836663290876125, -0.8237235482720682, -0.8691120050450751, -0.9201548010941794, -0.9770958935461527, -1.0400684314177004, -1.1090583709964141, -1.1838638349396855, -1.264051178415774, -1.3489093971346888, -1.4374054201685111, -1.5281440776242148, -1.6193382615487373, -1.7087971300770586, -1.793943034347735, -1.8718703882177565, -1.9394598680418578, -1.9935556601442879, -2.0311991255200086, -2.049891916486467, -2.047846776491514, -2.024186541044751, -1.979065444407337, -1.9136953475112228, -1.8302661175364658, -1.7317677836504648, -1.621743925313828, -1.5040141463016878, -1.3823988100109923, -1.2604722726917998, -1.1413664459739552, -1.0276411568844623, -0.9212278123419013, -0.8234401628983667, -0.7350357207824101, -0.6563071650637078, -0.5871846467449617, -0.5273347649285924, -0.47624752194844344, -0.4333072302278669, -0.39784663350656957, -0.3691855242864748, -0.34665620429229405, -0.32961855722576416, -0.31746751528099404, -0.3096354549170126, -0.30559165181679093, -0.3048404322988285, -0.306919142154233, -0.311396572407753 ], [ -0.7942544665664328, -0.8351470014315912, -0.8813684436948623, -0.9332279220808918, -0.9909537571782314, -1.0546621282396313, -1.124321176016553, -1.1997110181270165, -1.2803806434268559, -1.3656033140853219, -1.4543330031485224, -1.5451656326237277, -1.6363105879239797, -1.7255802764543255, -1.8104082449070535, -1.8879087692373486, -1.9549908167917935, -2.0085334774541246, -2.045615706135084, -2.0637734019023006, -2.061243018986265, -2.0371542841421117, -1.991648706121239, -1.9259083952689684, -1.8420844302943555, -1.7431300841606723, -1.6325645273683618, -1.514201260807017, -1.391872864968229, -1.2691793261974542, -1.1492844637074326, -1.0347796500008029, -0.9276229394519466, -0.8291477043401703, -0.7401238027125778, -0.6608498298029386, -0.5912567094690866, -0.5310079880672947, -0.47958794783251246, -0.4363734612776877, -0.40068886692661776, -0.37184518810989453, -0.34916607856848536, -0.3320032878579271, -0.3197444373433427, -0.3118156413024553, -0.30768109826236856, -0.30684128767554175, -0.3088308978982992, -0.3132171385384528 ], [ -0.8039615326303546, -0.8455576254274617, -0.8924646785287391, -0.9449768817702046, -1.0033060882694813, -1.0675508654469987, -1.137661150036458, -1.2133990002673407, -1.2942964231851306, -1.379611912046681, -1.4682882222440896, -1.5589151415202203, -1.6497026949729825, -1.738472452588682, -1.822677220732699, -1.899461580602707, -1.9657754655561004, -2.0185470426960985, -2.054907206427687, -2.0724390661249634, -2.069413127975611, -2.0449728999485997, -1.9992497180419246, -1.9333931014974968, -1.8495065506870307, -1.75049234874991, -1.6398270248468059, -1.5212976976649277, -1.3987289363197846, -1.2757281326704812, -1.1554763026203503, -1.040585988618147, -0.9330359181073048, -0.8341769658243627, -0.7447921827358501, -0.6651889294808528, -0.5953028980307749, -0.5347990599683323, -0.4831604788121744, -0.4397608284143706, -0.4039198736972942, -0.37494323465111057, -0.3521488206214207, -0.3348827261797749, -0.3225273706803302, -0.3145044029824735, -0.31027448413763437, -0.3093355768143249, -0.3112208706656925, -0.31549701021382504 ], [ -0.8127635834412983, -0.8549299473766305, -0.9023737933282925, -0.9553734377213502, -1.0141234675262756, -1.0787042300101608, -1.1490471065429655, -1.2248960855431044, -1.3057666321023866, -1.3909035065967545, -1.4792400744441268, -1.5693628646368702, -1.6594867830709592, -1.747448524028407, -1.8307281572164444, -1.9065107659996297, -1.9717994297093788, -2.0235848214854446, -2.0590632311546226, -2.0758771098792876, -2.072340807860074, -2.047618425564547, -2.001834218704544, -1.9361034756323534, -1.852474986186105, -1.7537874792813732, -1.643457816087137, -1.5252269237226077, -1.402890884344069, -1.280045541087536, -1.1598734825813435, -1.0449971883724074, -0.9374094125944745, -0.8384759594738413, -0.7489936598022542, -0.6692813754939304, -0.5992835486686874, -0.5386711034468386, -0.4869304708420681, -0.4434364692302182, -0.40750822835861467, -0.37844943416583954, -0.35557524958388065, -0.33822867465968875, -0.3257891010363987, -0.3176755570985015, -0.3133467367523677, -0.3122994300990578, -0.31406648655356495, -0.3182149901466378 ], [ -0.8206433281907599, -0.8632462043885452, -0.9110777875912808, -0.964399637142228, -1.0233883298733693, -1.088105444155787, -1.1584635212196703, -1.234188545931807, -1.3147799715761352, -1.3994699676902793, -1.487184456477524, -1.5765097030584712, -1.66566982500865, -1.7525226093596804, -1.8345832389845063, -1.9090870948603367, -1.9731018756587557, -2.023693207850605, -2.058135130678993, -2.0741405772371038, -2.070076840495174, -2.045135137412433, -1.999435986650596, -1.9340597337619978, -1.8509948577149022, -1.753005736010476, -1.6434340658962754, -1.5259557397976877, -1.4043182013254683, -1.282086597094927, -1.1624289642735577, -1.0479658770380684, -0.9406968866751371, -0.8419996679359092, -0.75268505210829, -0.6730858864090834, -0.6031591896996593, -0.5425862855897736, -0.49086153347880224, -0.44736525209847344, -0.41141991117127796, -0.38233078157327216, -0.3594133316867749, -0.3420100787039635, -0.32949960429109537, -0.3213001935380486, -0.316870162808365, -0.315706479955866, -0.3173428067157522, -0.3213476554916179 ], [ -0.8275900660520248, -0.8704962655189474, -0.9185674827873578, -0.9720477072899993, -1.0310948393960429, -1.095751225645539, -1.1659103783374298, -1.2412804536733755, -1.3213455464241841, -1.405326514087487, -1.4921439251812307, -1.5803869045576977, -1.6682931874680371, -1.7537475790043884, -1.8343079760956569, -1.9072693076802105, -1.9697744765510017, -2.01897533395334, -2.052234744387032, -2.0673461226952616, -2.062737959864171, -2.0376346299950954, -1.9921562531373778, -1.9273481814130844, -1.845134334374463, -1.748195711852439, -1.639785118315084, -1.5234959800896564, -1.4030078391442613, -1.281836365816139, -1.1631188741485732, -1.0494618684974162, -0.9428640056286445, -0.844711275742678, -0.7558282721704346, -0.6765639274535433, -0.6068913678461014, -0.546506552287976, -0.4949161914483844, -0.4515103804264373, -0.41561886739353815, -0.38655201994974586, -0.3636286743534054, -0.34619349535422206, -0.33362649185284154, -0.3253470976914019, -0.32081484822445705, -0.3195282369142032, -0.32102287865095036, -0.3248696834581697 ], [ -0.8335995600294677, -0.8766774784095996, -0.9248423383241553, -0.9783198370681727, -1.0372486324341157, -1.101651487383901, -1.1714028203430478, -1.246193271678238, -1.3254923828037724, -1.4085111393925316, -1.4941670040369117, -1.5810552130016944, -1.667431575430991, -1.7512137397464533, -1.8300095756868366, -1.9011821390691321, -1.9619590862877712, -2.0095884394034136, -2.041531542958336, -2.055671009612149, -2.050503783393663, -2.0252927771326927, -1.9801608433249593, -1.9161187242403857, -1.8350226864189705, -1.7394630303809184, -1.632591852095166, -1.5179044587245163, -1.39899462971821, -1.2793106892727877, -1.161943467618602, -1.0494732224191785, -0.943889711867022, -0.8465832085540093, -0.7583913008515455, -0.679680607636409, -0.6104434679207673, -0.5503943762859829, -0.49905656973696844, -0.4558340240739216, -0.42006759357959256, -0.39107618882876727, -0.3681850419324497, -0.3507435802150882, -0.3381354710668423, -0.3297831854382136, -0.32514906794296494, -0.32373447394692834, -0.32507809456182857, -0.3287541831934748 ], [ -0.8386738499221207, -0.881794442864364, -0.9299101793907216, -0.983227851751844, -1.0418664303415253, -1.1058288772493972, -1.1749706007274865, -1.2489652010062333, -1.3272686457891028, -1.409083667162831, -1.4933270332678026, -1.5786034597436305, -1.6631913008636476, -1.745046711044259, -1.821834360742371, -1.8909932338173592, -1.9498441440092507, -1.995739798922307, -2.0262481481084906, -2.039348305813286, -2.033611776525209, -2.0083445887376015, -1.963675103880811, -1.9005800954654428, -1.8208460503731116, -1.7269668423351139, -1.6219840198656346, -1.509281166898739, -1.3923502692007657, -1.2745558265189205, -1.1589272665652466, -1.0480067228580454, -0.9437669107901323, -0.8475979238841507, -0.760349012140235, -0.6824054943483309, -0.6137814928662071, -0.554213491725293, -0.5032450799818773, -0.4602979594684502, -0.4247277353184644, -0.39586518393011816, -0.37304488137595637, -0.3556235822194598, -0.34299081127268005, -0.3345739418398792, -0.32983969790981016, -0.32829361191936024, -0.32947855020558725, -0.3329730279190144 ] ], "zauto": true, "zmax": 2.0758771098792876, "zmin": -2.0758771098792876 }, { "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.5837204022945397, 0.5758946016182853, 0.5681294413600889, 0.5605973739898211, 0.5534860933140703, 0.5469937513185316, 0.5413224752765977, 0.5366694724976765, 0.5332151472994244, 0.5311083238165912, 0.5304498530271043, 0.5312772254680032, 0.5335536724525881, 0.5371650015279539, 0.5419258981459053, 0.54759511101591, 0.5538967448911871, 0.560543657640075, 0.5672590220749811, 0.5737931990435431, 0.5799345907876488, 0.5855145495427413, 0.5904073891501846, 0.594527020697822, 0.5978217981787333, 0.6002689616780416, 0.6018697343489249, 0.6026457554429271, 0.6026371644962982, 0.6019023124298784, 0.6005187702432969, 0.59858503933185, 0.5962221505349937, 0.5935741966950334, 0.5908068163719222, 0.5881027859450214, 0.5856542302741504, 0.5836515415375298, 0.58226984571118, 0.5816546261763115, 0.5819086732020382, 0.5830826361179078, 0.5851709764509545, 0.5881141232927148, 0.5918063969767788, 0.5961081773126337, 0.6008601637657321, 0.6058975251745639, 0.6110621694840686, 0.6162120538961589 ], [ 0.5793061802229222, 0.5709174853074106, 0.5625694900659067, 0.5544459418224255, 0.5467484857933125, 0.5396919544109774, 0.5334977251413575, 0.5283842189722662, 0.5245537379379536, 0.5221756252804709, 0.5213671831565342, 0.5221754719899376, 0.5245642325339583, 0.5284099132692647, 0.5335089104540689, 0.539595253895951, 0.5463652935669252, 0.5535045279288013, 0.5607119215230943, 0.5677184824262063, 0.5742987403275336, 0.5802754091572304, 0.5855185889873212, 0.5899413269572297, 0.5934933584809094, 0.5961545739220931, 0.5979293560135494, 0.59884250756296, 0.5989370861532185, 0.5982740991004805, 0.5969336893993653, 0.5950171621225042, 0.5926489700484915, 0.589977622147233, 0.587174442171204, 0.5844292437878494, 0.5819423573606655, 0.5799130615186607, 0.5785252852730967, 0.5779322937333522, 0.5782426985823022, 0.5795102728824256, 0.581729540848141, 0.5848380268723521, 0.5887246950041003, 0.5932429189169894, 0.5982256445401097, 0.6035003698742597, 0.6089020551097758, 0.6142828358858101 ], [ 0.5749116605748186, 0.5659494926047055, 0.5570044383184104, 0.5482712858703581, 0.5399656194062225, 0.5323192923155653, 0.5255737321217935, 0.5199698920552553, 0.5157337647735452, 0.5130572836463102, 0.5120762009917816, 0.5128486447616029, 0.5153394963527623, 0.5194154594141773, 0.5248533748309647, 0.5313607787347739, 0.5386044438171466, 0.5462410305881452, 0.5539443860778751, 0.5614258708957603, 0.5684463727804822, 0.5748205650905578, 0.5804151279252336, 0.5851430849957375, 0.5889563272239908, 0.5918380268666278, 0.5937961707145571, 0.5948589615958518, 0.5950723996416845, 0.5944999689320097, 0.5932240169142609, 0.591348119601699, 0.5889994822294566, 0.586330257855026, 0.5835166210412668, 0.5807545721397755, 0.5782518308903611, 0.5762158328863057, 0.5748387161261929, 0.5742811086381747, 0.5746572257941338, 0.5760239566347654, 0.5783760815640256, 0.5816485900525761, 0.5857255973920864, 0.5904540682704625, 0.5956598292876963, 0.601163327901745, 0.6067931394386262, 0.6123960518672796 ], [ 0.5705738917979835, 0.5610323311898323, 0.5514806020219423, 0.5421240926090563, 0.533192102829862, 0.524933628326116, 0.5176107425060266, 0.5114880897266489, 0.5068170577272073, 0.5038142365231405, 0.5026358959881817, 0.5033528375933614, 0.5059318248649777, 0.5102295229415036, 0.5160020343425964, 0.5229287301570291, 0.5306451332261556, 0.5387777896237788, 0.5469747564545379, 0.5549276938847983, 0.5623842958984188, 0.5691519670089588, 0.5750948837868958, 0.580126960029208, 0.5842030467849553, 0.587310226970896, 0.5894605081975817, 0.5906856838480383, 0.591034661360495, 0.590573150623218, 0.5893852534551006, 0.5875761892018574, 0.5852751367641419, 0.5826369951540296, 0.5798418110255079, 0.5770907591733594, 0.5745979586262646, 0.5725780963365713, 0.5712307622257067, 0.570723396928701, 0.5711755195787614, 0.5726471070281061, 0.575133434052471, 0.5785674273694286, 0.5828290047151775, 0.5877594825320662, 0.5931783644833396, 0.5988998114098953, 0.6047466909813961, 0.6105609982311287 ], [ 0.5663322814613346, 0.5562107169635011, 0.5460480590311492, 0.5360596592713409, 0.5264880768399552, 0.5175993129691885, 0.5096764224494126, 0.5030086685477486, 0.4978743711078257, 0.49451676438065334, 0.4931147153474243, 0.4937533861254997, 0.4964022812025359, 0.500907866220344, 0.5070044738810652, 0.5143418283067659, 0.522522770421713, 0.5311427390535071, 0.5398236281963317, 0.5482376248940664, 0.5561199109146623, 0.5632715652856954, 0.5695552857419236, 0.574886841868225, 0.5792248570680912, 0.5825609285687451, 0.5849114537256274, 0.5863119437284368, 0.5868141038747204, 0.58648553593708, 0.5854115545683689, 0.5836982937115638, 0.5814760141489121, 0.5789013352982686, 0.5761570534820688, 0.5734483460481651, 0.5709945699141515, 0.5690165843802395, 0.5677205136909272, 0.567279931608139, 0.5678192814269316, 0.5694015822607402, 0.572022889584171, 0.5756146452779914, 0.5800533667786393, 0.5851756471993711, 0.5907956242148005, 0.5967220758821616, 0.6027729485067113, 0.6087860738380398 ], [ 0.5622279773553743, 0.5515316966401478, 0.5407599287764069, 0.530137153462036, 0.5199184836423679, 0.5103864970168495, 0.5018452480028812, 0.49460923652724564, 0.4889849902906633, 0.48524420209432517, 0.4835903515510682, 0.48412468877227804, 0.48682043967231803, 0.4915138917120639, 0.49791681361687645, 0.5056480958986538, 0.5142768128700044, 0.5233666778180494, 0.5325134117518522, 0.5413702707423794, 0.5496608478947397, 0.5571810016399308, 0.563793062526873, 0.5694156476195011, 0.5740119457436695, 0.577578622138872, 0.5801367632228382, 0.581725643521565, 0.5823995673117774, 0.5822275991652739, 0.5812956243511703, 0.579709855372955, 0.5776006271345716, 0.575125126761325, 0.572467637463912, 0.569836013549107, 0.5674535248805922, 0.5655459593354395, 0.5643249059301317, 0.5639692706584155, 0.5646079680862085, 0.5663070012823646, 0.5690635434409952, 0.5728082354265163, 0.5774151352464237, 0.5827171968099748, 0.5885243022530341, 0.5946408822298864, 0.6008808483397837, 0.6070785654494077 ], [ 0.5583031072513173, 0.5470437917346687, 0.5356714309874226, 0.5244186059911256, 0.513552022425648, 0.5033700860390187, 0.4941974982944718, 0.4863742207227322, 0.48023589699424823, 0.47608420547519514, 0.474149092177131, 0.4745496058684584, 0.4772637958901829, 0.4821180333552203, 0.48880106945254703, 0.4969001948804368, 0.5059501013566859, 0.5154826299672716, 0.5250677447133028, 0.5343406555358338, 0.5430145324660022, 0.5508812614006786, 0.5578039763999411, 0.5637051288244261, 0.5685532171221286, 0.5723504517916614, 0.5751228153697872, 0.5769132906167894, 0.5777784769471455, 0.5777883650678498, 0.5770286586537619, 0.5756046994859376, 0.5736457706863831, 0.571308349207204, 0.5687768082098753, 0.5662602097667306, 0.5639842613770292, 0.5621782859046314, 0.5610581307187635, 0.5608071252552128, 0.5615581395961583, 0.5633800959014775, 0.5662716741580236, 0.5701635004496918, 0.5749282500842356, 0.5803964701548684, 0.58637503847013, 0.5926651921377225, 0.5990777829593651, 0.6054444618445902 ], [ 0.5545998873348996, 0.5427959712041763, 0.5308387256035377, 0.5189676308063613, 0.5074597733950479, 0.496628303855478, 0.4868178019547578, 0.47839344182628385, 0.47172040945382204, 0.4671314775819177, 0.46488463168536953, 0.46511833878936265, 0.4678166886663899, 0.4727967033660519, 0.47972412240846213, 0.48815443248615875, 0.49758792727981477, 0.5075249996500295, 0.5175107556359635, 0.5271636053354389, 0.5361876937522092, 0.5443722991219728, 0.5515825552121953, 0.557745695377056, 0.5628361916519521, 0.566862173537119, 0.5698546118718203, 0.5718600232478135, 0.5729368781115669, 0.5731554368074612, 0.5726003500996453, 0.5713750210253951, 0.5696064357041659, 0.5674489616666457, 0.5650855401026932, 0.5627248424146322, 0.5605934067124229, 0.5589225687292406, 0.5579311125152961, 0.5578057935394165, 0.5586828731695196, 0.560634128819137, 0.5636601883093271, 0.5676925441902452, 0.5726036883735512, 0.5782231247772126, 0.5843561004889541, 0.590801913805285, 0.5973694046386625, 0.6038883074018069 ], [ 0.5511596193923699, 0.5388364727238613, 0.5263175514914096, 0.5138478841064725, 0.5017134928364306, 0.4902408535441262, 0.4797932076961399, 0.4707601467506982, 0.4635362293466716, 0.4584858716977192, 0.4558962542767838, 0.45592669913483436, 0.4585686531297862, 0.46363072967349483, 0.4707562511060147, 0.47946940975129215, 0.48923682213494074, 0.49952852261414743, 0.5098661892715054, 0.519853047879759, 0.5291858297503412, 0.5376526539859791, 0.5451218383242321, 0.5515262708701049, 0.55684694956272, 0.5610981668582521, 0.5643158376449187, 0.5665497009692712, 0.567859539427288, 0.5683150950120508, 0.567998966596542, 0.5670114269811238, 0.565475800829284, 0.5635428314983608, 0.5613923935520967, 0.5592310586379161, 0.5572844807121496, 0.5557843850870476, 0.5549510833318775, 0.5549736955186958, 0.5559912795233891, 0.558078413832596, 0.5612381653682539, 0.5654038580387007, 0.5704491035638698, 0.5762038348062152, 0.5824731405541737, 0.58905571424416, 0.5957594868632595, 0.6024131049399631 ], [ 0.5480216076425303, 0.5352115068820495, 0.5221616999634429, 0.509121297505511, 0.4963836088881403, 0.48428669544208053, 0.4732107830196316, 0.4635684837301717, 0.4557828594195904, 0.4502498173622595, 0.4472863237248776, 0.4470737029316404, 0.44961214856759285, 0.4547032429074334, 0.4619692046887515, 0.47090430733825717, 0.48094307792459, 0.49152703211652776, 0.502156415841738, 0.512421251318421, 0.5220126532714761, 0.530719076176939, 0.5384131552503078, 0.5450341960264328, 0.5505701333726828, 0.555041512726646, 0.558488992828391, 0.5609650708879466, 0.5625301348281702, 0.5632524782117899, 0.5632115137899831, 0.5625030655836968, 0.5612453148171114, 0.5595837586053504, 0.5576934729458025, 0.5557771327075095, 0.5540577140967373, 0.5527656403129191, 0.5521212868748921, 0.5523150420543887, 0.5534881556164356, 0.5557179717630484, 0.5590105344466726, 0.5633020323463201, 0.5684685805381225, 0.5743420935887822, 0.5807290451941097, 0.587428912084745, 0.5942498543003399, 0.6010202759170755 ], [ 0.5452220367211141, 0.5319638932871934, 0.5184213789392651, 0.5048461460912136, 0.4915369804738214, 0.47884150122129177, 0.46715479071795457, 0.45691045442594247, 0.4485584076329353, 0.44252506725099955, 0.4391570653776198, 0.4386584712757844, 0.44103964786484573, 0.44609701188260437, 0.45343382945589394, 0.4625168344826392, 0.4727510325898544, 0.48355207684004314, 0.4944013614949205, 0.5048780360985373, 0.5146695483963405, 0.5235661897863743, 0.5314459585805045, 0.5382551983841706, 0.5439890247080493, 0.548674151373755, 0.5523556082838734, 0.5550880200394132, 0.5569315138170597, 0.5579518534966544, 0.5582239900822442, 0.5578378512927509, 0.5569048791911122, 0.5555636061323264, 0.5539824990909328, 0.5523584778150901, 0.5509100015621788, 0.549864468522489, 0.5494408373421956, 0.5498296653177687, 0.551173802043026, 0.5535533499514421, 0.5569779091419204, 0.561387616561636, 0.5666625269505814, 0.5726381381419868, 0.5791238913286325, 0.5859214614712389, 0.5928403892374502, 0.5997096837053717 ], [ 0.5427928615159604, 0.5291316910500975, 0.5151415428114317, 0.5010750388311053, 0.48723451744465707, 0.47397488885552475, 0.46170354893661913, 0.45087244283213307, 0.44195586557662725, 0.43540883774553496, 0.43160670005646024, 0.43077648979505556, 0.43294014053720964, 0.4378912840787334, 0.4452173112578644, 0.4543609062470943, 0.4647011847223748, 0.47563145030645065, 0.48661741215741283, 0.4972300039914444, 0.5071550734876143, 0.5161862213463599, 0.5242077346015541, 0.5311734472143524, 0.5370857110128692, 0.5419771327958607, 0.5458965555311212, 0.5488999232344124, 0.5510460679588661, 0.552396984342774, 0.5530217404353964, 0.5530027914540591, 0.5524431373031816, 0.5514725446074705, 0.5502510045902664, 0.548967792457333, 0.5478350024615913, 0.5470752940155428, 0.5469047504358507, 0.5475130298122668, 0.5490440248164651, 0.5515806246840719, 0.555136598545819, 0.5596571441129823, 0.5650277143925724, 0.5710890063729482, 0.57765501726148, 0.5845310332395396, 0.5915291187922971, 0.5984797227245738 ], [ 0.5407607659784892, 0.5267468963966392, 0.5123602789596367, 0.4978529424207047, 0.4835287938425795, 0.4697475897666526, 0.45692614128187964, 0.44553149584690843, 0.43605903620884934, 0.4289895112291627, 0.4247250869251611, 0.42351537291921254, 0.42539518624899475, 0.430158260353334, 0.43738015454586154, 0.4464841591693863, 0.45682823410932044, 0.4677877131648049, 0.478816356957284, 0.4894798365812855, 0.49946455137598, 0.5085688252865088, 0.5166840158033309, 0.5237717125784376, 0.5298413571577822, 0.5349309720628156, 0.5390924608714417, 0.5423820941814621, 0.5448561997056778, 0.5465716001864119, 0.5475899122552669, 0.5479844169743332, 0.5478478716507624, 0.5472994114170685, 0.5464886546365424, 0.5455953449738232, 0.5448233940572301, 0.5443890598219873, 0.5445041543725091, 0.5453564326494709, 0.5470903305600424, 0.5497915952733977, 0.5534788022897471, 0.5581033286539829, 0.5635574745325215, 0.5696887307129525, 0.5763172108181921, 0.5832531944574264, 0.5903123830346255, 0.5973274728812273 ], [ 0.5391462504256286, 0.5248342853127931, 0.5101073514560709, 0.49521536607346467, 0.48046181242411307, 0.466208738907899, 0.45287919932581816, 0.44095160439343867, 0.43093837726033696, 0.42334217241213146, 0.4185891423696987, 0.41695038601167345, 0.4184747521046405, 0.42295941357817796, 0.42997308135662177, 0.43892546041863156, 0.4491591749250597, 0.46003680862197216, 0.47100444822773807, 0.48162572106695006, 0.4915897896087433, 0.5007010380124838, 0.5088585188621729, 0.5160316463380544, 0.5222365956073772, 0.5275161199804773, 0.5319242317391764, 0.5355163457168802, 0.5383448973108179, 0.5404599695178625, 0.5419140132831995, 0.542769315340195, 0.543106506535554, 0.5430321818915159, 0.54268368914072, 0.5422293921688475, 0.5418632735384611, 0.5417936199498324, 0.5422266777709808, 0.5433473901343299, 0.5453003121505423, 0.5481741666561457, 0.551992986189805, 0.5567154278976096, 0.5622420461485178, 0.5684286638605552, 0.575103010214002, 0.5820816819211709, 0.5891850797355905, 0.5962489152442899 ], [ 0.5379629042392435, 0.5234104775081374, 0.5084030031780062, 0.4931868397643578, 0.4780630908999224, 0.4633935019949104, 0.44960401866338706, 0.43718029157558846, 0.42664710401711536, 0.4185243450702028, 0.41325840532406183, 0.41114008105206934, 0.41223315914709907, 0.41634193592036645, 0.42303408908786705, 0.431712603056376, 0.44171159128849274, 0.45238688370367064, 0.46318166067651056, 0.47366096272703184, 0.4835189729445994, 0.49256739055849175, 0.5007134295611679, 0.5079342007295221, 0.5142520466412801, 0.5197135575036317, 0.5243737010863082, 0.5282856625319837, 0.5314964168151382, 0.5340475750511745, 0.5359805676738558, 0.5373447599508846, 0.5382067081046231, 0.5386585424517555, 0.5388234753737825, 0.5388567201772253, 0.5389406961049087, 0.5392742818655145, 0.5400570002595911, 0.5414701959437084, 0.5436582097526895, 0.5467129053949243, 0.5506644236633547, 0.5554797608238475, 0.5610690597258008, 0.5672979243850389, 0.5740031065869263, 0.581008759757605, 0.5881409770817279, 0.5952392014204579 ], [ 0.5372169128646841, 0.5224832887402295, 0.5072571076102649, 0.4917798090179786, 0.47634823358202266, 0.4613212532822191, 0.44712427911015556, 0.43424583850922077, 0.4232179370397157, 0.414572354498145, 0.40877119008471857, 0.4061224747386482, 0.4067055295552047, 0.41033565159223623, 0.41658594173991415, 0.4248604010850022, 0.4344923148350142, 0.44483743167122436, 0.45534123080717853, 0.46557383993384455, 0.4752367661646758, 0.4841502056993701, 0.4922298523872181, 0.49946019680319453, 0.50586897714466, 0.511505519504393, 0.516424392828576, 0.5206749868573968, 0.524297068865046, 0.5273218859073118, 0.5297778623628728, 0.5316994251638033, 0.533137068702703, 0.5341665505364119, 0.534895153844247, 0.5354632884188153, 0.5360403281367072, 0.5368144764739907, 0.5379775414981134, 0.5397066253907491, 0.5421456211055878, 0.5453897430247426, 0.549475877682163, 0.554380354509301, 0.5600241378412679, 0.5662839426744156, 0.5730068310410587, 0.5800256462880011, 0.5871730816738671, 0.5942929659132922 ], [ 0.5369068349282157, 0.5220514218732658, 0.5066687409317334, 0.49099404455298495, 0.47531812388453126, 0.45999448728558967, 0.44544461097308224, 0.4321554554277609, 0.42066086732710717, 0.41149874045990437, 0.4051417785095581, 0.40191221507674807, 0.40190514284071177, 0.4049507430102715, 0.41063437270330005, 0.4183693946261996, 0.42749659628942305, 0.43737886137682014, 0.4474695480089475, 0.45734774877795153, 0.4667246576756324, 0.47543009907516687, 0.48338843731988584, 0.49059105067131725, 0.4970701027250487, 0.5028763500697737, 0.5080624080321551, 0.512672114097173, 0.5167361043995276, 0.5202732177035818, 0.5232967714517017, 0.5258241717627264, 0.5278878574697856, 0.5295453606929872, 0.5308863543644369, 0.5320349511629101, 0.5331461874864041, 0.5343965251697157, 0.5359692559631462, 0.5380367514475025, 0.5407423258988794, 0.5441847917785413, 0.5484083895480919, 0.5533996890319403, 0.55909158261813, 0.5653730817112704, 0.5721027039859466, 0.5791229911392223, 0.5862740457601558, 0.5934046680740317 ], [ 0.5370236682235332, 0.5221045243490241, 0.5066262152242899, 0.4908166267898089, 0.47495882499975073, 0.4593985893280964, 0.44455018115775796, 0.43089463050500254, 0.4189622338729906, 0.40929107091846995, 0.4023590364872343, 0.39849912477883087, 0.3978220600512172, 0.40017659560584407, 0.40516723976658614, 0.41222534310845177, 0.4207079156043836, 0.4299925769225707, 0.4395464509194843, 0.4489616704840592, 0.4579615636614931, 0.4663866955900001, 0.47417018982226705, 0.4813096602448535, 0.48784053343111117, 0.49381348742079206, 0.499277427537013, 0.50426869131098, 0.5088066889304189, 0.5128956669046326, 0.5165316416448518, 0.5197128828104787, 0.5224518143869556, 0.5247859915098593, 0.5267859545106919, 0.5285582263202643, 0.530242437751088, 0.5320024680089283, 0.5340124949841956, 0.5364398320819168, 0.5394271828569444, 0.5430772315895049, 0.5474421349102987, 0.5525195034651728, 0.5582551166367814, 0.5645513028689038, 0.5712790208916264, 0.5782913805273924, 0.5854365951540773, 0.5925689482558503 ], [ 0.5375512039988777, 0.5226236134841458, 0.5071075782215776, 0.491222517969213, 0.4752422139579582, 0.45950250987942515, 0.4444073731238116, 0.4304277693052124, 0.418085272655706, 0.4079123617088018, 0.40038669490619627, 0.3958483751224902, 0.3944232570422858, 0.3959819683378465, 0.40015479450375696, 0.406399623584859, 0.41409850945721605, 0.4226516172089036, 0.4315459580522985, 0.4403909769291708, 0.44892469948338887, 0.456999562639899, 0.4645574626029443, 0.47160144915424296, 0.47816885820360217, 0.48430857177493924, 0.49006382198858317, 0.49546130657663645, 0.5005069500913544, 0.5051881006488302, 0.5094812167172286, 0.5133633250676718, 0.5168249606109564, 0.519882104165614, 0.5225848491915188, 0.5250210778809783, 0.5273142003424003, 0.5296149140639805, 0.5320878945185503, 0.5348952254427609, 0.5381790551242862, 0.5420462242809998, 0.5465573045446825, 0.5517216232191944, 0.5574986411250227, 0.563804844595, 0.570524446524482, 0.577521846874392, 0.5846539578159393, 0.591780981592177 ], [ 0.5384666495320588, 0.5235818442961951, 0.5080815484726307, 0.49217568493968905, 0.47612730735384534, 0.4602602988873, 0.4449655197295547, 0.43070009401431336, 0.4179721248608271, 0.4073031155999811, 0.3991653358627799, 0.39390235216035957, 0.3916543374944059, 0.3923165559688027, 0.3955511182908631, 0.40085056951433534, 0.4076306360618445, 0.4153218635539802, 0.4234374328417738, 0.43160856944826836, 0.43959071076907164, 0.44724935132119714, 0.45453511976125316, 0.46145555804181976, 0.46804835741367884, 0.4743586639249065, 0.4804218546121909, 0.4862526514194678, 0.4918410771470383, 0.4971551773694695, 0.5021495734934394, 0.5067780063556369, 0.5110073940215925, 0.5148307603996933, 0.5182766979417512, 0.5214136770544789, 0.5243483473797771, 0.5272178746473924, 0.530177247072559, 0.5333832895282626, 0.5369777197285053, 0.5410718110262589, 0.5457349675009774, 0.5509887689412223, 0.5568069750648195, 0.5631208815478093, 0.5698285893541966, 0.5768063585201344, 0.5839202727017043, 0.5910368125008545 ], [ 0.5397414815621535, 0.524945570616306, 0.5095088219211423, 0.49363069064638493, 0.4775621756764258, 0.46161337359150634, 0.44615953858394364, 0.43164063118981666, 0.41854711984367304, 0.40738479515140646, 0.3986159113817566, 0.3925840667045783, 0.3894427061087303, 0.38911385074638133, 0.39129665428342936, 0.39552569515267116, 0.40125853370765713, 0.40796377992825306, 0.4151871536217434, 0.42258632589003686, 0.4299370425197256, 0.43711912648016754, 0.4440918558989119, 0.45086616656476386, 0.4574783264220462, 0.46396755581944704, 0.470358955267285, 0.4766527313944787, 0.482820443993402, 0.4888083667188114, 0.4945470358211101, 0.4999649944379777, 0.5050040355142984, 0.5096331257540984, 0.5138586159216741, 0.5177291076453663, 0.5213342398136054, 0.5247975421804075, 0.5282643187845448, 0.5318862259149162, 0.5358047199737545, 0.540135752175526, 0.5449578770055071, 0.5503053096134923, 0.5561665408656679, 0.562488133349814, 0.5691825290556823, 0.5761382662314015, 0.5832309592004651, 0.5903336535798536 ], [ 0.5413424795687556, 0.5266756317826115, 0.5113436607627717, 0.495534638091917, 0.47948629652054753, 0.46349333010775684, 0.4479132350237061, 0.43316600652627885, 0.41972101003298606, 0.4080643796516926, 0.3986444406867533, 0.39180177558793766, 0.38770191192981474, 0.38629506645923367, 0.38732165118680323, 0.3903646671633882, 0.39493097080443607, 0.4005346104549286, 0.4067602322846572, 0.41329681280558567, 0.4199435119477446, 0.4265958570783093, 0.43322164508574584, 0.4398339223792823, 0.4464654859311939, 0.45314714676135026, 0.459891036034092, 0.4666800912239903, 0.47346471858487776, 0.4801669294387968, 0.48669102650817386, 0.49293865827749933, 0.49882528882581895, 0.5042950830961912, 0.5093317754361202, 0.513963983423401, 0.5182643785224255, 0.5223429816882982, 0.5263355775357939, 0.5303888323831507, 0.5346441250334601, 0.5392222738619175, 0.5442111844872362, 0.5496579269603237, 0.555565966123512, 0.5618973953691997, 0.5685792726917623, 0.5755126853628454, 0.5825830292194714, 0.5896701339668958 ], [ 0.5432328793477434, 0.5287287859761105, 0.513535660623435, 0.49782933088517084, 0.4818331707432522, 0.46582507397830347, 0.4501429909620477, 0.4351847032752931, 0.4213957554662215, 0.40923955864960876, 0.39914741920319524, 0.39145436151677004, 0.386336754921123, 0.3837737844135535, 0.38355025069136744, 0.38530282172901037, 0.38859424011439125, 0.3929909279815202, 0.3981228046903203, 0.403715205675312, 0.40959404082935263, 0.4156720305457525, 0.42192528752471165, 0.4283674461260622, 0.4350254468171496, 0.441918849648137, 0.44904380842301167, 0.4563630102840739, 0.4638029114890013, 0.47125880887228916, 0.47860681029407537, 0.48572028810894285, 0.49248757480313243, 0.49882772185129487, 0.5047018871132544, 0.5101189490738364, 0.515134941117899, 0.5198467077822461, 0.5243808044822481, 0.5288791362080214, 0.5334831680839816, 0.5383186927389125, 0.5434830336546185, 0.5490361642584202, 0.5549965762709612, 0.5613419684896812, 0.5680141190004149, 0.5749267957188235, 0.5819753266111285, 0.589046484403273 ], [ 0.5453735842615959, 0.5310592078233486, 0.5160315883428888, 0.5004535104530216, 0.4845330212810444, 0.4685300400310609, 0.45276155190682577, 0.4376014326694966, 0.4234694429098472, 0.41080409468734863, 0.40001744316648885, 0.3914369799912967, 0.38524870359678204, 0.3814609344452894, 0.3799049082835595, 0.38027499094407125, 0.3821954239263838, 0.38529140926830036, 0.3892444035052072, 0.3938213515824406, 0.3988784967720538, 0.4043473490748831, 0.41021201557120013, 0.41648487394160194, 0.42318418784125855, 0.43031498057087336, 0.4378540498517228, 0.44574061142065013, 0.45387430433424186, 0.4621213759546585, 0.47032807399478743, 0.4783385470752362, 0.48601370038361774, 0.4932476702784559, 0.49997953373623727, 0.5061990415886171, 0.5119461834938628, 0.5173051270434192, 0.5223935689935097, 0.527348887806349, 0.5323127423442812, 0.5374158980819598, 0.542765014053678, 0.5484328395795384, 0.5544527591630874, 0.5608179703117453, 0.5674849149379793, 0.574380045182264, 0.5814086820138116, 0.5884646490586904 ], [ 0.5477243736366341, 0.5336199716764536, 0.5187771889527047, 0.5033450399108721, 0.48751540925572784, 0.4715292933413262, 0.4556816538412596, 0.44032130263248415, 0.42584096982104297, 0.4126529367871257, 0.40114860020289034, 0.39164651926823496, 0.3843411958508884, 0.37926973524345464, 0.37631083855964365, 0.37521939852553104, 0.37568575175402136, 0.3773997078315862, 0.3801004209036637, 0.3836019063591407, 0.3877945904222034, 0.39263046245272104, 0.3981011154988015, 0.4042153911290882, 0.41097949382026283, 0.41838007164801266, 0.42637075199240393, 0.43486381099565025, 0.44372918554711127, 0.4528019593222813, 0.4618972837175221, 0.47082970491520854, 0.47943302370887675, 0.48757724184417234, 0.4951803351830296, 0.502213895529535, 0.508702692432072, 0.5147188334766052, 0.5203715550679279, 0.5257939027125219, 0.5311277427110384, 0.5365086786737512, 0.5420524614001057, 0.5478443108642113, 0.5539321893921516, 0.5603245162799055, 0.5669921939561866, 0.5738742477912037, 0.5808859751218491, 0.5879283175038665 ], [ 0.5502450541468671, 0.5363644515533298, 0.5217188745338148, 0.5064429249451196, 0.4907116308057376, 0.4747463429042014, 0.45881928502744024, 0.44325353971369436, 0.4284142070040656, 0.41468676099268553, 0.4024412744916702, 0.3919865110709309, 0.3835244714280386, 0.3771202746339824, 0.37270021345234294, 0.3700814074735477, 0.3690238853331279, 0.36928730350990296, 0.3706745739221209, 0.37305248183214296, 0.3763497773346963, 0.3805406911276801, 0.3856235170402361, 0.3916007021356748, 0.39846228915249826, 0.406172030922718, 0.41465606592357585, 0.4237960211025823, 0.4334293067957193, 0.44335808275395533, 0.45336575469150747, 0.46323760442399475, 0.47278138051021007, 0.4818443727078461, 0.49032493010422507, 0.4981777833130373, 0.5054134834986014, 0.5120927527024183, 0.5183167353492896, 0.524214247950496, 0.5299272487603275, 0.5355958898649009, 0.541344599714817, 0.5472705875922708, 0.5534359070010242, 0.5598637655231364, 0.5665391911411821, 0.5734135719276691, 0.5804121007235497, 0.587442873909386 ], [ 0.5528965094179534, 0.5392475821647406, 0.5248052266211753, 0.50968908850015, 0.4940567943546516, 0.4781095484796871, 0.4620964419857721, 0.4463146007415372, 0.43110145281513085, 0.41681572750316004, 0.40380613534985116, 0.392371246646386, 0.3827196875260328, 0.37494349261122273, 0.3690159014079698, 0.36481694256625913, 0.362178991959864, 0.3609362253027339, 0.360961297549491, 0.36217974758597626, 0.36456311870512, 0.36810969466907684, 0.37282329917621015, 0.3786963727240578, 0.3856977868932415, 0.3937630545735362, 0.40278593930815476, 0.4126134972496963, 0.42304796068462464, 0.4338573254612646, 0.4447933686193584, 0.4556133155593923, 0.46610074410698765, 0.47608233598030625, 0.485438768932331, 0.4941094903540358, 0.5020919467002554, 0.5094361384008986, 0.5162353964660309, 0.5226142763437173, 0.5287145523059187, 0.5346804635617788, 0.5406445275323235, 0.5467152908375821, 0.5529682519555523, 0.5594408324467719, 0.56613173606534, 0.5730044194163119, 0.5799938393580931, 0.587015264438728 ], [ 0.5556416141513575, 0.5422269407732264, 0.5279882647766762, 0.5130298443770809, 0.49749151577405054, 0.48155405056275175, 0.4654433024058793, 0.4494305898492251, 0.4338260867384538, 0.4189623523469308, 0.40516719435629694, 0.39272896845716415, 0.38186217465970035, 0.372684417936979, 0.3652146027154041, 0.35939545826329267, 0.3551334998686008, 0.35234156677545214, 0.3509680073856364, 0.35100344432749064, 0.3524670638295539, 0.3553830443700986, 0.3597590577771959, 0.3655729701513986, 0.37276635706933264, 0.38124017640543084, 0.3908503207382977, 0.40140520898905796, 0.4126695714604293, 0.42437671970799873, 0.436247878968033, 0.4480144418488312, 0.4594386030143412, 0.47032923011620503, 0.4805517235276259, 0.4900320342956233, 0.49875565055452553, 0.5067624318196332, 0.5141380261811116, 0.5210025188232874, 0.5274970391571302, 0.5337692703614566, 0.5399590569300071, 0.5461854699155045, 0.5525366619924487, 0.5590635710833579, 0.5657780297682045, 0.5726552013970273, 0.5796396379462743, 0.5866537877153473 ], [ 0.5584459905555534, 0.545263625054186, 0.5312244544155879, 0.5164170416605388, 0.5009632035362173, 0.48502319746255185, 0.46879979260495347, 0.4525389631752109, 0.4365244085917384, 0.4210634802546654, 0.4064639116086438, 0.3930041044326031, 0.38090378076208986, 0.37030458767353913, 0.3612692984868093, 0.3538023684423178, 0.347885461782235, 0.34351373678228586, 0.3407171919409344, 0.33955828070873095, 0.34010912807116617, 0.3424216640185683, 0.3465050783717895, 0.3523169165100962, 0.3597640006014742, 0.36870531974180865, 0.3789527893687486, 0.39027210133629325, 0.40238869035951846, 0.41500160887090926, 0.4278037592276625, 0.44050406092370176, 0.4528470570339772, 0.4646272536467268, 0.47569753094757167, 0.4859722472170688, 0.4954260229208019, 0.5040890015299642, 0.5120390784644424, 0.5193914501062353, 0.5262859399992658, 0.5328728484464358, 0.5392984196649151, 0.5456912894656595, 0.5521513470826962, 0.5587422446878249, 0.5654883174768651, 0.5723760216249089, 0.5793593100450622, 0.5863678169934653 ], [ 0.5612785957662821, 0.5483229163145279, 0.5344754451882691, 0.5198088749492558, 0.5044269346898856, 0.48846947866544566, 0.4721165693861681, 0.45558955309687627, 0.43914670631488356, 0.42307140843412677, 0.40765239945013243, 0.3931585813077594, 0.37981431883082434, 0.3677836393189451, 0.3571709802134968, 0.34804089159141727, 0.34045047941985285, 0.3344804080218193, 0.33024831104859215, 0.3278957000113839, 0.32755345176624073, 0.32930310892274833, 0.33315225523074743, 0.3390309598105003, 0.34680229929177675, 0.3562747016249436, 0.3672094599229914, 0.37932561807178194, 0.3923083019846965, 0.40582391214469143, 0.41954057585616356, 0.43314930693689857, 0.4463816550278299, 0.4590217960452704, 0.47091310183154955, 0.48196024900245105, 0.49212793360180523, 0.5014367856514808, 0.5099566368013734, 0.5177971470334394, 0.5250959692941045, 0.5320050180559212, 0.5386758591838836, 0.5452456055191107, 0.5518248585736708, 0.558489097857501, 0.5652744732913273, 0.5721782821502825, 0.5791636692556132, 0.5861674660586335 ], [ 0.5641121385346303, 0.5513747295059206, 0.5377085461780026, 0.5231703735616575, 0.5078459441981307, 0.491854999003987, 0.475355465086883, 0.4585449761658391, 0.4416576306937244, 0.4249542491908488, 0.4087058128086247, 0.3931722962086838, 0.37858217607737105, 0.3651201048503547, 0.3529296600524053, 0.34213328981479957, 0.3328631585508766, 0.3252881378817453, 0.3196194875350598, 0.3160855140834363, 0.3148822352596739, 0.31612265827645475, 0.31980869541070506, 0.32583415814866123, 0.33400770190701107, 0.3440774356779311, 0.35574702304405714, 0.36868538315558647, 0.3825373850690705, 0.39693978437015986, 0.4115409085714485, 0.42601963760061085, 0.4401000245886784, 0.45356039369699586, 0.46623773659438483, 0.4780288480545932, 0.4888892087011056, 0.49882986204925167, 0.5079119985864106, 0.5162388612486106, 0.5239448736907372, 0.5311824033026095, 0.5381071306125818, 0.5448634527650634, 0.5515715749461445, 0.5583178523878491, 0.5651495168937155, 0.5720742299299371, 0.5790641125722222, 0.5860632137356543 ], [ 0.5669233313581669, 0.5543938610362563, 0.5408969555201826, 0.5264735960227063, 0.5111917649800629, 0.4951515443374654, 0.4784894617420907, 0.4613805065449824, 0.4440359732283614, 0.426695637562083, 0.40961403444047195, 0.39304284627152386, 0.3772141643603876, 0.36233145720920773, 0.34857467960616645, 0.3361214912417806, 0.3251780685505543, 0.31600363615932603, 0.3089089793227921, 0.3042174041915096, 0.3021970483536532, 0.3029941961364215, 0.3065999417478884, 0.312861266324373, 0.3215200078846876, 0.3322531983572027, 0.3446998204848711, 0.3584759937716769, 0.3731877369937324, 0.3884467239406968, 0.4038878959037164, 0.4191848709875732, 0.4340603733263018, 0.4482916186367684, 0.4617123033772426, 0.474212911103595, 0.4857401092939733, 0.4962949731388537, 0.5059292041301223, 0.5147385286930454, 0.5228529126239981, 0.5304238847802734, 0.5376099329765157, 0.5445614677626125, 0.5514071289069199, 0.558243150967092, 0.5651270851959503, 0.5720764656149744, 0.5790721728984977, 0.5860655040070413 ], [ 0.5696929902859603, 0.5573600523833604, 0.5440197699023217, 0.5296975646400812, 0.5144440648015232, 0.4983402980713526, 0.4815022681704647, 0.46408350341181076, 0.4462739486482936, 0.42829389445641375, 0.410382767718893, 0.39278462162238675, 0.37573469889564154, 0.3594534674853037, 0.34415434015439805, 0.3300670843455746, 0.3174701710465269, 0.30671463845178665, 0.29821640187982734, 0.2924022738288904, 0.2896200004947053, 0.2900508447002277, 0.2936687387076717, 0.3002614140972679, 0.3094899324868591, 0.32094887643263964, 0.33420593627848344, 0.34882297647609867, 0.3643701697090158, 0.38044026724325236, 0.3966625498062639, 0.41271312269643384, 0.4283199695411416, 0.4432639828982653, 0.45737843843845327, 0.470548745708962, 0.4827128064373187, 0.49386103059245756, 0.5040345325296369, 0.5133202375906966, 0.5218422935922788, 0.5297500068235055, 0.5372032988362728, 0.5443572741628354, 0.5513478021136482, 0.5582799745122885, 0.5652208835441401, 0.5721974373710512, 0.5791990614043537, 0.5861843399890299 ], [ 0.5724059988982526, 0.5602578921458944, 0.547061804191107, 0.5328279796092671, 0.5175902302130623, 0.5014112708084904, 0.48438757515645253, 0.4666524802053027, 0.44837608105796145, 0.42976075193311253, 0.41103214557569395, 0.39242736421445024, 0.37418439134425313, 0.35653893109901263, 0.3397348747680089, 0.3240506621922905, 0.3098346591629729, 0.2975303081111146, 0.28766362752950364, 0.28077339455023576, 0.2772947173382075, 0.27744527862378693, 0.2811742438474605, 0.2881959738287, 0.29807569057816974, 0.3103142137055229, 0.32440241726891694, 0.33984809808409694, 0.3561903105089626, 0.3730105063879603, 0.3899410508328017, 0.40666881492882284, 0.4229337310370313, 0.43852494923829544, 0.4532778301342138, 0.4670735359946129, 0.47984088038440287, 0.4915586212824046, 0.5022559834648954, 0.5120096743159235, 0.5209365831547755, 0.5291823625017666, 0.5369069662407079, 0.5442688560726089, 0.551409914108211, 0.5584430593382435, 0.5654441415158123, 0.5724489429771912, 0.579455220725381, 0.5864288902613766 ], [ 0.5750511556280068, 0.5630765817648099, 0.5500132537128891, 0.5358567537184922, 0.5206247483152973, 0.5043625045273413, 0.4871480611560468, 0.46909589883514796, 0.4503577861414771, 0.43111973963757144, 0.41159495675831664, 0.39201428915169273, 0.37261813990240134, 0.35365581916374617, 0.33539877779731364, 0.3181704791819768, 0.30238611394630194, 0.28858103036550303, 0.27739520815644403, 0.2694871956560054, 0.26538698025631774, 0.26534957430332323, 0.2692905478557261, 0.27683553554456425, 0.2874386291476002, 0.30049662767320884, 0.31541991567191047, 0.3316643927365796, 0.3487443770595829, 0.36623876068678735, 0.38379229056703074, 0.40111095513085987, 0.41795305807514127, 0.43412013580690456, 0.449451639871741, 0.4638248633776868, 0.47715886391378104, 0.48941952936628524, 0.5006227591308609, 0.5108335630180726, 0.5201601121649209, 0.5287429775823055, 0.5367407564769084, 0.5443139445112242, 0.5516092309868816, 0.5587463393724058, 0.565809097410589, 0.5728416625512993, 0.5798499091524624, 0.5868071252496913 ], [ 0.5776209249025261, 0.5658095911055441, 0.5528692320689143, 0.5387814081804659, 0.5235484353638673, 0.5071991093866559, 0.4897942159318253, 0.47143076525294353, 0.45224373382687166, 0.4324043229143197, 0.41211458287969766, 0.39159985970963973, 0.37110279682190034, 0.35088491140091055, 0.33124250520328713, 0.3125403684756249, 0.29525684295168314, 0.28001737995839265, 0.26757804274941793, 0.25872339383446175, 0.25408472533024234, 0.25395431551299835, 0.2582043013106269, 0.26635594229377635, 0.2777380722911181, 0.29163556093207615, 0.30737724754795487, 0.3243714332226005, 0.34211540997997375, 0.3601947953682114, 0.3782759523287774, 0.3960918817086276, 0.41342503366326605, 0.4300927849948993, 0.4459400963216761, 0.460840329480668, 0.4747018383095321, 0.4874762810247423, 0.49916475448952197, 0.5098191105204051, 0.5195373904541065, 0.5284537119793489, 0.5367239786511131, 0.5445094395606037, 0.5519604170044713, 0.5592024363119783, 0.5663265332671917, 0.5733847420838516, 0.5803908339453507, 0.587325499537884 ], [ 0.580111112806323, 0.5684542297907149, 0.5556292163246671, 0.5416043680955017, 0.5263675579907846, 0.5099321866303488, 0.49234304346097724, 0.4736810954681213, 0.45406606774764574, 0.43365587522304977, 0.41264273333215484, 0.3912473039369304, 0.3697144949069322, 0.34831697244247384, 0.3273735650056477, 0.3072868629725095, 0.28859422839039606, 0.27200794816394336, 0.2583998432450085, 0.24868393123455945, 0.2435968540063708, 0.24346647935957644, 0.24811115970209482, 0.2569333910262824, 0.26912570249133994, 0.28385692993293515, 0.3003765315357991, 0.3180514848162594, 0.33637049474120284, 0.35493498338877, 0.37344139664475184, 0.3916566385014748, 0.4093920774578441, 0.42648353415563817, 0.4427822731652454, 0.4581572790305766, 0.4725050768090595, 0.4857617089481568, 0.4979120575619235, 0.5089934633569686, 0.5190925424806201, 0.5283356938902766, 0.536874878868699, 0.5448708874476477, 0.5524765488340367, 0.5598222170935223, 0.5670053787653576, 0.5740854446473911, 0.5810838488442442, 0.5879886932490966 ], [ 0.5825204873567008, 0.5710111589575508, 0.5582964294135592, 0.5443321930906734, 0.5290928887496521, 0.5125776858122876, 0.4948166990811888, 0.4758763138578675, 0.4558625503102331, 0.43492156058157005, 0.41323706021499385, 0.39102595957834535, 0.3685357192165007, 0.3460495453030659, 0.323907034694198, 0.30254547614842814, 0.2825568973594257, 0.26473563354338137, 0.2500657707874938, 0.23958991517174688, 0.23415000252121232, 0.23410539315922851, 0.2392106777226332, 0.24873867811937064, 0.2617399531268826, 0.27726836856301545, 0.29449963747951535, 0.31276717125250925, 0.33155944519496117, 0.35050172369958077, 0.3693275332639646, 0.38784306459229506, 0.4058920788794678, 0.4233304801694326, 0.4400160281326705, 0.45581259856057416, 0.4706037160517223, 0.4843085245613315, 0.4968944555180442, 0.5083831795033575, 0.518848771807973, 0.5284087982293781, 0.5372101479588843, 0.5454120276633627, 0.5531687078181191, 0.5606144335451694, 0.5678523979227811, 0.5749488819120278, 0.581932726955771, 0.5887994221620301 ], [ 0.584850362266692, 0.573483866267789, 0.5608771869809842, 0.5469747751733015, 0.5317387332080165, 0.5151552390879391, 0.4972411094892991, 0.4780496386819207, 0.45767469517936327, 0.43625219556126626, 0.41395873134493916, 0.39100853409281466, 0.3676522172560342, 0.34418345359841823, 0.3209615740007176, 0.2984561416051992, 0.2773095616568558, 0.25839198581905126, 0.24279249842652775, 0.231675526399376, 0.2259821572741917, 0.22609588590139015, 0.2316992785655853, 0.2419307698946554, 0.2557009742622213, 0.271955954820579, 0.28980656270008776, 0.3085611082348632, 0.3277152310983359, 0.34692425565830515, 0.3659637188971228, 0.3846825773441609, 0.40295895692044537, 0.4206694765491257, 0.4376780465972105, 0.45384254551560166, 0.4690324235882849, 0.48314887876495766, 0.496140937892287, 0.5080137140643551, 0.5188278591311029, 0.5286911774570355, 0.5377444976227802, 0.5461444206267758, 0.5540456605707805, 0.5615854539442652, 0.5688719674000258, 0.5759778337474885, 0.5829390157401768, 0.5897583222784036 ], [ 0.5871041614345553, 0.575878124744421, 0.563380232918472, 0.5495445320515873, 0.5343219611676777, 0.5176870098373184, 0.4996446179981606, 0.48023650302275933, 0.45954594225162043, 0.4377001542746091, 0.414870035172218, 0.3912683662072065, 0.36714984822773805, 0.3428191253769342, 0.3186550464233255, 0.2951578895602776, 0.27301649021633784, 0.25316932000193193, 0.23679904594373838, 0.22517788707059827, 0.2193320187191166, 0.21965785904222238, 0.22576110558007012, 0.2366500117996505, 0.2511066996867408, 0.26798289639576406, 0.2863360346174233, 0.3054576193053178, 0.3248561275438296, 0.3442207656626695, 0.3633715393999359, 0.3822015007138125, 0.4006235110592709, 0.4185345500166028, 0.4358039027853155, 0.45228254607708235, 0.4678250214837878, 0.4823138882676356, 0.49567918631439833, 0.5079089164899979, 0.519049696328971, 0.5291988497981149, 0.5384903108982099, 0.547077161691002, 0.5551136330966896, 0.5627390907990926, 0.570065949869443, 0.577172658600699, 0.5841019761624882, 0.5908639104221676 ], [ 0.5892869794962476, 0.5782014535196147, 0.5658160846792905, 0.5520556202855017, 0.5368610699410988, 0.5201965874832644, 0.5020566913878647, 0.4824730527957225, 0.4615199233860987, 0.439317373258906, 0.4160320860950091, 0.39187677326816833, 0.3671114770417861, 0.34205287257831757, 0.31709991703932605, 0.2927829545631359, 0.26983379337716606, 0.24925066340071858, 0.23229420104468712, 0.2203224362056938, 0.214423635033563, 0.21499212760618694, 0.22155704118434286, 0.23301144975066027, 0.24803036041645415, 0.265390244572578, 0.28410816056310406, 0.3034662068486026, 0.32298920693718675, 0.34240141816490516, 0.36156715322328864, 0.38042267324694035, 0.3989143567255863, 0.41695828431520693, 0.4344280327331803, 0.4511668928700888, 0.4670140248735728, 0.48183310569143484, 0.495535041390607, 0.5080905371877722, 0.5195318579600343, 0.5299453474106299, 0.5394573692317056, 0.5482166828142175, 0.5563761785745598, 0.5640765239238408, 0.5714336606981151, 0.5785312923941447, 0.5854186035456362, 0.5921126184403965 ], [ 0.5914051517251138, 0.5804625959774607, 0.5681964062520627, 0.5545231887502347, 0.5393753030341188, 0.5227079550901588, 0.5045067187352498, 0.48479475691184964, 0.4636388601096145, 0.4411535058725175, 0.4175026917592702, 0.3929005637238069, 0.3676140198621454, 0.34197327695468066, 0.31639864889608343, 0.2914506473024621, 0.2679010018075405, 0.2467981770619166, 0.22946128452221407, 0.21730465109061137, 0.21144728086967962, 0.21226366388397822, 0.21921294910476807, 0.23109889213130763, 0.24651949254222935, 0.2641992103183472, 0.28312844120334457, 0.3025860291834008, 0.32211447894326206, 0.34147172614337107, 0.3605637344984308, 0.3793669896181499, 0.3978586979254318, 0.4159720033162103, 0.4335835116706749, 0.45052827900750636, 0.46663006160938436, 0.48173391822419587, 0.4957319420272766, 0.5085777437625619, 0.5202892118147786, 0.5309414254542026, 0.5406526554618588, 0.5495666392884573, 0.5578341344677383, 0.5655963131665444, 0.5729719215251776, 0.5800493292595382, 0.5868837236086233, 0.5934988949774044 ], [ 0.5934658444518077, 0.5826710281563453, 0.5705334234856406, 0.5569626890979388, 0.5418838431369555, 0.5252445511998343, 0.5070229267745181, 0.48723515812027934, 0.4659421272174203, 0.4432542678268544, 0.419334435533798, 0.39439978633044853, 0.36872574408001557, 0.3426578419591608, 0.31663936358371353, 0.2912614531771461, 0.2673327464186209, 0.24594138833186174, 0.2284422750543599, 0.21627078918517417, 0.21053960887646592, 0.21158502184973008, 0.2188090230998305, 0.23096042551484106, 0.24659617603348322, 0.2644142484297851, 0.28339210758343364, 0.30281037113947074, 0.3222288079841322, 0.34143557020025783, 0.3603734998536515, 0.37905451094750425, 0.3974826933239593, 0.41560560098513444, 0.4333015482604832, 0.45039712406966304, 0.4667011550906216, 0.48204087140234575, 0.4962903401908575, 0.5093866512574468, 0.5213335714539183, 0.5321948322269204, 0.5420802297859444, 0.551127875764332, 0.559485660962404, 0.5672944912946856, 0.5746751904967404, 0.5817201738035438, 0.5884901538595231, 0.5950153658446364 ], [ 0.5954766750757386, 0.5848365077066856, 0.572839393369801, 0.5593892562457264, 0.5444050940511618, 0.5278284424216457, 0.5096314306783515, 0.48982478659307555, 0.46846500882806885, 0.44566000712621673, 0.42157301803638986, 0.3964257778606094, 0.3705039170079908, 0.34417006793598787, 0.3178920503501795, 0.2922918977114335, 0.2682115693592075, 0.2467671059384946, 0.22932435300217946, 0.21730189177313297, 0.21176777538490266, 0.21300387948367752, 0.22037253940335347, 0.23260603012124825, 0.24825804310104443, 0.2660259266372749, 0.28488767503044693, 0.3041300887362097, 0.3233287651193782, 0.34229722031744225, 0.3610088565197968, 0.3795048353698855, 0.39781122643362943, 0.41588691449223936, 0.43361064880180344, 0.45080067935642093, 0.46725187552398273, 0.48277493031363417, 0.4972271038417845, 0.510529876029041, 0.5226733957300463, 0.5337101404542424, 0.5437411743281457, 0.5528984635563456, 0.5613263500775997, 0.5691647247520526, 0.5765357561705854, 0.5835352520011516, 0.5902289181271178, 0.5966530418728114 ], [ 0.5974453686991458, 0.5869686712312981, 0.5751261359296851, 0.5618171684421231, 0.5469560621215808, 0.5304796185914792, 0.5123554337293708, 0.492590252083918, 0.47123766628806896, 0.4484045234521439, 0.4242558921309495, 0.39901956026453417, 0.37299288521899593, 0.3465570937583722, 0.32020559200331206, 0.29459070298996076, 0.2705828917301979, 0.24931292574727848, 0.23213203141616778, 0.2204054149983021, 0.21512218682473158, 0.21649829292185443, 0.22387587077766463, 0.23600767803598824, 0.25147959364363676, 0.2690127816553163, 0.2875988700648622, 0.3065352748326135, 0.3254118064447481, 0.34406191001555236, 0.3624823679773413, 0.3807365472668528, 0.3988669904006722, 0.4168406132731013, 0.43453546112165975, 0.45176193989175717, 0.4683023919661305, 0.48395270780372984, 0.49855493103131476, 0.5120161283243935, 0.524313542584463, 0.5354886401705304, 0.5456336011694011, 0.5548737998759629, 0.5633493932063273, 0.5711985283605845, 0.5785439805112867, 0.5854842663191838, 0.5920895006417567, 0.598401561887406 ], [ 0.5993794564758046, 0.5890766855063673, 0.5774046346243302, 0.5642593932067766, 0.5495518439387244, 0.533215417901361, 0.5152145842560346, 0.49555352462859437, 0.47428433058978275, 0.4515141542916347, 0.4274112168097741, 0.40221062723871215, 0.3762226512399665, 0.34984802208884175, 0.32360582136298954, 0.29817663257017357, 0.2744528690907937, 0.25356559695397407, 0.23682682213552028, 0.22551691749091396, 0.220520129728941, 0.22198111855663147, 0.2292403153047783, 0.2411018852811666, 0.25621353754783244, 0.2733418150388338, 0.29150459517561894, 0.3100148575422376, 0.32847555635797426, 0.3467348176961564, 0.3648054672308746, 0.38276573888038334, 0.40066892636077656, 0.418486668447833, 0.43609537103762275, 0.4532984325339926, 0.46986748403392686, 0.4855857051991396, 0.5002818070769705, 0.513849863150482, 0.5262550863219286, 0.537528294107395, 0.547752718467953, 0.5570467591306829, 0.565545794283393, 0.5733855195185622, 0.5806885759382022, 0.5875554802666236, 0.5940601257008233, 0.6002494580856895 ], [ 0.6012860189584583, 0.5911689559205702, 0.5796847085804562, 0.5667272224293913, 0.5522052235623505, 0.5360500853192594, 0.5182244934916248, 0.4987314083368135, 0.4776227257641419, 0.45500713798311987, 0.43105714692782415, 0.4060161490787099, 0.3802079965010089, 0.3540530089606009, 0.32809473479561174, 0.3030382051342874, 0.27978934454579646, 0.25946437744052986, 0.24331423672162808, 0.2325109892770099, 0.22781887666832643, 0.2293121030577692, 0.23634469004751765, 0.24779426630584905, 0.26239214372347214, 0.27896781701704615, 0.2965771781999873, 0.3145543695327853, 0.3325154099799324, 0.35031865198370526, 0.36798610548728883, 0.38560378535425066, 0.4032301857667875, 0.4208385558125021, 0.43830298184937005, 0.4554209851836622, 0.4719555930816559, 0.4876796225616686, 0.5024105425421811, 0.5160310116237691, 0.5284952085219029, 0.5398237567609333, 0.5500909493814333, 0.5594078865833838, 0.5679046160890459, 0.5757136979050439, 0.582956901934808, 0.5897360181323121, 0.5961280494749389, 0.6021844315293867 ], [ 0.6031714760750693, 0.5932528935010616, 0.5819747576649011, 0.5692299971773731, 0.5549263793162147, 0.5389944638925724, 0.5213964136980895, 0.5021352078450537, 0.4812637239674282, 0.4588932571322955, 0.43520146742132604, 0.410440612825525, 0.3849481785088722, 0.3591631535023603, 0.33365088325761433, 0.3091352041783856, 0.28652553688181615, 0.2669083404953017, 0.25145590362289166, 0.24121783268669839, 0.23683399974601516, 0.23831400180096013, 0.24503653202794823, 0.25596536214450394, 0.2699287797834462, 0.2858321207605687, 0.3027796186998349, 0.32013256294371073, 0.33752104090711776, 0.3548103336966095, 0.37202574591100057, 0.3892547117065977, 0.40655589278889037, 0.42390141257075015, 0.4411626470974643, 0.45813260397150296, 0.4745680035053538, 0.4902338000468979, 0.5049384310552762, 0.518554814905353, 0.5310271723209025, 0.5423664580777056, 0.5526380986776447, 0.5619456252815573, 0.5704132481799626, 0.578169737930542, 0.5853352680745837, 0.5920121670151542, 0.598279851760742, 0.6041936265607418 ], [ 0.6050414238806003, 0.5953347401347037, 0.5842815793199408, 0.5717749203148135, 0.5577226973322683, 0.5420558151653543, 0.5247370719604852, 0.5057705823826089, 0.48521122749838214, 0.4631737591035058, 0.4398415716442189, 0.4154759009437103, 0.39042720545512827, 0.36515117341549536, 0.3402308545661319, 0.3164016891035891, 0.29456567573492576, 0.2757658908280664, 0.26108365372187253, 0.25144100651275575, 0.2473580082809914, 0.2487887570751451, 0.25514358200346576, 0.26547696028718554, 0.278719887306276, 0.293861547424345, 0.31006275960949753, 0.3267177767424502, 0.34347261590513073, 0.36019744575049845, 0.3769162462032728, 0.39371258140445375, 0.4106410385870751, 0.4276703977301359, 0.4446692396215784, 0.4614275882468676, 0.47769824286590745, 0.4932408481586885, 0.5078570621471153, 0.5214117797445137, 0.5338403878066943, 0.5451447518134441, 0.5553815620107979, 0.5646465680301546, 0.5730576863560718, 0.5807392829292957, 0.5878092322222982, 0.5943696701484911, 0.6005017172599508, 0.6062638945258629 ], [ 0.6069005169299126, 0.597419450052988, 0.5866102542673864, 0.574366952889716, 0.5605986864877257, 0.5452377619341452, 0.5282486514676318, 0.5096375780466761, 0.48946226753221334, 0.4678415430913034, 0.44496477310896715, 0.42110179533033587, 0.3966146630115574, 0.37197280057446247, 0.3477716707627777, 0.32475007271177364, 0.30379163253419866, 0.28588470211622174, 0.27201278693703224, 0.2629728381177375, 0.25917582428699376, 0.2605309636362021, 0.26648384956216153, 0.27617826137373797, 0.2886475529642631, 0.3029681876825816, 0.3183632439595971, 0.33426494667820966, 0.3503375326640493, 0.366455145347224, 0.38263719035178356, 0.39895934048238463, 0.4154688320093747, 0.432129491339126, 0.44880732213707486, 0.46529099570231297, 0.4813317743572332, 0.49668651267246955, 0.5111523154877551, 0.5245877687534826, 0.5369205727854902, 0.5481441270559806, 0.5583065727274604, 0.567495727110624, 0.5758228151955667, 0.5834072321207487, 0.5903638848797875, 0.5967940027309373, 0.602779698047215, 0.6083820390608093 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x2", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\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": [ [ 0.9256453221891874, 0.9248610737324976, 0.9244187174851101, 0.9243223520748873, 0.9245750793167162, 0.9251789792594606, 0.9261350942909542, 0.9274434226035001, 0.9291029211085415, 0.9311115176709492, 0.9334661323218396, 0.936162706912181, 0.9391962424971402, 0.9425608435980128, 0.9462497683793456, 0.9502554837041812, 0.9545697239907739, 0.9591835527855684, 0.9640874259880781, 0.9692712557076073, 0.9747244737963008, 0.9804360941826077, 0.9863947732212321, 0.992588867375882, 0.9990064876577305, 1.0056355503540297, 1.0124638236954022, 1.0194789702266438, 1.0266685847632453, 1.0340202279321216, 1.041521455409883, 1.0491598430820428, 1.0569230084496606, 1.0647986287030669, 1.0727744559615586, 1.0808383302399398, 1.0889781907439497, 1.0971820861142603, 1.1054381842307075, 1.1137347821541388, 1.122060316723885, 1.1304033762464611, 1.1387527136102646, 1.1470972610467127, 1.1554261466377143, 1.1637287125481222, 1.1719945348476675, 1.1802134446852317, 1.188375550493454, 1.1964712608380057 ], [ 0.9207473291450083, 0.9199616400327357, 0.9195254578077194, 0.9194430865045427, 0.9197177985839802, 0.9203518077700927, 0.9213462514446576, 0.9227011829392935, 0.9244155738317028, 0.926487326114515, 0.9289132938739458, 0.9316893139025759, 0.934810244483893, 0.938270011434233, 0.9420616603722822, 0.9461774141108709, 0.9506087340274532, 0.9553463842662671, 0.9603804976520329, 0.9657006422469558, 0.9712958875549786, 0.9771548694641501, 0.9832658531163498, 0.9896167929997259, 0.9961953896706122, 1.0029891426265574, 1.0099853989701564, 1.0171713976219674, 1.024534308961246, 1.0320612698923157, 1.0397394144524497, 1.0475559001905728, 1.0554979306533507, 1.0635527744121736, 1.071707781147973, 1.0799503953762204, 1.0882681684386954, 1.096648769407677, 1.1050799955405703, 1.11354978288717, 1.1220462175888226, 1.1305575483216708, 1.1390722002286733, 1.1475787905635444, 1.156066146141423, 1.1645233225623783, 1.1729396250533854, 1.1813046306670383, 1.1896082114875697, 1.197840558428976 ], [ 0.9161840261881109, 0.9153983176449068, 0.9149695761559893, 0.9149023189584194, 0.9151999975761451, 0.9158649683127826, 0.9168984728006788, 0.9183006289870752, 0.9200704326836685, 0.9222057695463894, 0.9247034371012173, 0.9275591762006579, 0.93076771109564, 0.9343227971453413, 0.9382172750672986, 0.9424431305538736, 0.9469915580453967, 0.951853027452718, 0.9570173526557434, 0.9624737606646927, 0.9682109604108262, 0.9742172102279449, 0.9804803831907685, 0.9869880295874836, 0.9937274359193968, 1.0006856799389219, 1.00784968135696, 1.0152062479720334, 1.0227421170951976, 1.0304439922665436, 1.0382985753788876, 1.0462925944412496, 1.0544128273246618, 1.0626461219340895, 1.0709794133368653, 1.0793997384474991, 1.087894248915449, 1.0964502228837314, 1.1050550762786995, 1.1136963742547747, 1.1223618433517553, 1.1310393848307858, 1.1397170895417403, 1.1483832545462467, 1.1570264015850085, 1.165635297342609, 1.1741989753361461, 1.182706759142203, 1.1911482865859209, 1.1995135344487478 ], [ 0.9119756501264342, 0.911191438748, 0.9107714681466451, 0.910720476251309, 0.9110421020479771, 0.9117388535984416, 0.9128120866077103, 0.9142619939638856, 0.916087606398541, 0.918286804133954, 0.9208563391112864, 0.9237918671448915, 0.9270879891336157, 0.9307383002883385, 0.9347354462106697, 0.9390711845808238, 0.9437364511812478, 0.9487214289908279, 0.9540156191267415, 0.9596079124795799, 0.9654866609755582, 0.9716397475019619, 0.9780546536424098, 0.9847185244848415, 0.9916182298840776, 0.9987404216810953, 1.006071586502869, 1.0135980938886082, 1.021306239610848, 1.02918228418298, 1.0372124866658436, 1.0453831340051702, 1.0536805662448077, 1.062091198064285, 1.0706015371801867, 1.0791982002230078, 1.0878679267513014, 1.096597592087845, 1.1053742196562304, 1.1141849934585764, 1.1230172712669633, 1.131858599005519, 1.1406967266813308, 1.149519626088043, 1.158315510363678, 1.167072855342443, 1.17578042250818, 1.1844272832413578, 1.1930028439577065, 1.2014968716697196 ], [ 0.908142153546786, 0.9073610526496407, 0.906951246607527, 0.9069177011196972, 0.907264250934564, 0.9079935652723132, 0.9091071242743367, 0.9106052069490105, 0.9124868907855874, 0.9147500629028626, 0.9173914423064358, 0.92040661256029, 0.923790063950299, 0.927535244036787, 0.9316346153647688, 0.9360797190246157, 0.9408612427289105, 0.945969092086631, 0.9513924638068033, 0.9571199196410158, 0.9631394599709306, 0.9694385960563305, 0.9760044200753408, 0.9828236722088024, 0.9898828041421024, 0.9971680384796039, 1.0046654236885606, 1.0123608843115846, 1.0202402663092274, 1.0282893775170896, 1.0364940233240785, 1.0448400377985698, 1.053313310604438, 1.061899810155333, 1.0705856035493968, 1.0793568739022201, 1.0881999357485324, 1.0971012492086056, 1.106047433609999, 1.1150252812172619, 1.1240217716528558, 1.1330240874930553, 1.1420196314002249, 1.1509960450127694, 1.1599412296662805, 1.1688433688725963, 1.1776909523465637, 1.1864728012511405, 1.1951780942365433, 1.2037963937812302 ], [ 0.90470307694239, 0.9039267973722793, 0.9035286128758676, 0.9035137234824837, 0.9038861678195242, 0.9046487858268917, 0.9058031929539677, 0.9073497663564996, 0.909287643290544, 0.9116147315727692, 0.9143277316614554, 0.9174221696264139, 0.9208924400342244, 0.9247318575858287, 0.9289327162123288, 0.9334863542603449, 0.9383832243765751, 0.9436129667246993, 0.9491644842272977, 0.9550260186122974, 0.9611852261478158, 0.967629252065781, 0.9743448027954715, 0.9813182152517712, 0.9885355225455237, 0.9959825156054697, 1.0036448003222334, 1.0115078499458123, 1.0195570525891344, 1.027777753812308, 1.0361552943839372, 1.0446750434364944, 1.0533224273491884, 1.0620829548001933, 1.0709422385266008, 1.0798860144088158, 1.0889001585517606, 1.0979707030630264, 1.1070838512243064, 1.1162259927149132, 1.1253837194756284, 1.1345438427000307, 1.1436934113141466, 1.1528197321615505, 1.1619103919589662, 1.1709532809359282, 1.1799366179323958, 1.18884897660621, 1.197679312306391, 1.2064169891013619 ], [ 0.9016774152412104, 0.9009077655674933, 0.9005227224038617, 0.9005277260433067, 0.9009270268359315, 0.9017236450962851, 0.9029193429168934, 0.9045146084549331, 0.9065086529164214, 0.9088994201119822, 0.9116836081217239, 0.91485670230286, 0.9184130186185786, 0.9223457560696939, 0.9266470568771328, 0.931308072991003, 0.9363190374865549, 0.9416693394387712, 0.9473476009362158, 0.953341754990096, 0.9596391232072612, 0.9662264922171432, 0.9730901879687668, 0.980216147138373, 0.9875899850118479, 0.9951970593269001, 1.0030225296790078, 1.01105141221355, 1.0192686294455742, 1.0276590551682536, 1.036207554531874, 1.0448990194950818, 1.0537183999669157, 1.0626507310682123, 1.0716811570392497, 1.0807949524014975, 1.0899775410398052, 1.0992145139014617, 1.108491646006649, 1.1177949134285692, 1.1271105108308288, 1.1364248700475328, 1.1457246800633447, 1.1549969086044523, 1.16422882539622, 1.1734080269892972, 1.1825224629139313, 1.1915604627989762, 1.2005107639962413, 1.2093625391846559 ], [ 0.899083480505525, 0.8983223665466111, 0.8979520464752206, 0.8979782060514836, 0.8984053148288447, 0.8992365831712513, 0.9004739315575911, 0.9021179727909598, 0.9041680073662376, 0.9066220318776744, 0.9094767599906428, 0.9127276551813315, 0.9163689741804899, 0.920393819853686, 0.9247942021155879, 0.929561105406606, 0.9346845612509324, 0.9401537244551526, 0.9459569515840462, 0.952081880454052, 0.9585155095042002, 0.9652442760309603, 0.9722541324017389, 0.9795306194874682, 0.9870589366769376, 0.9948240079541097, 1.0028105436352381, 1.0110030974777862, 1.0193861189880213, 1.0279440008712337, 1.03666112168632, 1.0455218838853948, 1.0545107475351139, 1.06361226012729, 1.0728110829858775, 1.0820920148609203, 1.0914400133606212, 1.1008402149058218, 1.110277953891468, 1.1197387817050228, 1.1292084861824738, 1.1386731119806368, 1.1481189822157087, 1.1575327215708526, 1.1669012809191595, 1.176211963353301, 1.185452451370104, 1.1946108348353963, 1.2036756392590688, 1.2126358538459878 ], [ 0.896938762972485, 0.896188186626668, 0.8958342322556642, 0.8958828354633904, 0.8963386920349579, 0.8972052119991131, 0.8984844863050839, 0.9001772667821379, 0.902282959666695, 0.9047996325891761, 0.9077240345369202, 0.9110516279731518, 0.9147766320135252, 0.9188920753527605, 0.9233898574978281, 0.9282608167989603, 0.9334948037669124, 0.9390807582127894, 0.9450067888329494, 0.9512602539721082, 0.9578278424232527, 0.9646956532528776, 0.9718492737695609, 0.9792738548790811, 0.9869541831888444, 0.9948747493391736, 1.0030198121501759, 1.0113734582829197, 1.0199196572242035, 1.028642311516448, 1.037525302269266, 1.0465525301050582, 1.0557079518063288, 1.064975613042624, 1.0743396776557224, 1.0837844540666735, 1.0932944194315035, 1.1028542422080754, 1.1124488037997686, 1.1220632199097769, 1.1316828621726185, 1.141293380529325, 1.1508807266853422, 1.1604311788439152, 1.1699313677518264, 1.1793683039400484, 1.1887294058996847, 1.1980025288119895, 1.2071759933573352, 1.2162386140664068 ], [ 0.8952597929765517, 0.8945218503755041, 0.8941859637951973, 0.8942583221468203, 0.8947438539371173, 0.8956461783320446, 0.8969675690962378, 0.8987089321266968, 0.9008697968984243, 0.9034483217291922, 0.9064413123780535, 0.9098442531423818, 0.9136513493307916, 0.9178555797757126, 0.9224487579138301, 0.9274215999010995, 0.93276379823259, 0.9384640993925994, 0.9445103841538243, 0.9508897492609758, 0.9575885893635541, 0.9645926781943877, 0.971887248119578, 0.9794570673080361, 0.9872865138847176, 0.9953596465407276, 1.003660271179053, 1.0121720032784531, 1.0208783257625083, 1.0297626422682051, 1.038808325818347, 1.0479987630151182, 1.057317393984745, 1.0667477484129002, 1.0762734781110885, 1.0858783866407609, 1.0955464565874184, 1.105261875115347, 1.1150090584403218, 1.1247726758292733, 1.1345376736723602, 1.1442893000758387, 1.1540131303003873, 1.16369509322569, 1.1733214988690868, 1.1828790668346192, 1.1923549554286943, 1.2017367910600234, 1.2110126974503297, 1.2201713241233219 ], [ 0.8940620066008189, 0.8933388856588431, 0.8930228269285528, 0.8931202751053425, 0.8936363972878012, 0.8945750310208724, 0.8959386453983116, 0.8977283159913629, 0.8999437139560211, 0.9025831092457461, 0.9056433874505684, 0.9091200794229028, 0.9130074025559146, 0.9172983123640861, 0.921984562880963, 0.9270567743314422, 0.9325045065453197, 0.9383163366401353, 0.9444799396000354, 0.9509821704983606, 0.9578091472425403, 0.9649463328518757, 0.972378616405039, 0.9800903919128809, 0.9880656344816574, 0.9962879732345364, 1.0047407605575163, 1.0134071373319622, 1.0222700939138822, 1.031312526720439, 1.0405172903893456, 1.049867245584789, 1.059345302633726, 1.0689344612837577, 1.0786178469746683, 1.088378744102713, 1.0982006268245719, 1.1080671879894615, 1.1179623667985124, 1.1278703757668795, 1.1377757275051872, 1.1476632617455562, 1.157518172918319, 1.167326038447143, 1.1770728477821764, 1.1867450320436164, 1.1963294940128675, 1.2058136380935538, 1.2151853997773603, 1.2244332740941506 ], [ 0.8933596180999823, 0.8926535956002248, 0.8923591812370122, 0.8924830769211511, 0.8930306935176944, 0.8940060958700828, 0.8954119609773392, 0.8972495501372597, 0.8995186954437647, 0.9022178005906951, 0.9053438555187729, 0.9088924640743238, 0.9128578835498442, 0.9172330747588959, 0.9220097611650591, 0.9271784955307723, 0.9327287325658996, 0.9386489061216281, 0.9449265095773582, 0.9515481781910333, 0.9584997723135182, 0.9657664604969289, 0.9733328016487339, 0.9811828254953423, 0.9893001107212032, 0.9976678602437943, 1.0062689731741667, 1.0150861131007105, 1.0241017724229893, 1.0332983325559342, 1.0426581199229819, 1.0521634577598824, 1.0617967138568263, 1.0715403444720017, 1.0813769347490807, 1.0912892360594242, 1.101260200759259, 1.111273014897495, 1.1213111294250742, 1.1313582904388404, 1.1413985689406552, 1.15141639050804, 1.1613965651609552, 1.1713243175782628, 1.1811853176761975, 1.1909657114210912, 1.2006521516190953, 1.2102318283164128, 1.2196924983610127, 1.2290225136249657 ], [ 0.8931655021817304, 0.8924789406154621, 0.8922080422907117, 0.8923597666736527, 0.8929397728036627, 0.8939523613235817, 0.8954004296558192, 0.8972854411797229, 0.8996074088352257, 0.9023648931368431, 0.9055550141609877, 0.9091734766989794, 0.9132146074675687, 0.9176714030525299, 0.9225355871303729, 0.9277976754625514, 0.9334470471739609, 0.9394720208954759, 0.9458599344532465, 0.9525972269088174, 0.9596695218810571, 0.9670617112046865, 0.974758038094654, 0.9827421790892211, 0.9909973241372264, 0.9995062542791642, 1.008251416451458, 1.0172149950206975, 1.0263789797352703, 1.0357252298663426, 1.0452355344012383, 1.0548916682494374, 1.0646754445224467, 1.0745687630513352, 1.0845536554040838, 1.0946123267531365, 1.104727195015838, 1.1148809277394869, 1.125056477223887, 1.1352371143631437, 1.1454064616446014, 1.155548525667324, 1.1656477294404217, 1.1756889445998666, 1.1856575235509597, 1.1955393314119271, 1.2053207775127648, 1.2149888461008196, 1.2245311258278493, 1.233935837545578 ], [ 0.893491089085928, 0.892826433537389, 0.8925809772446802, 0.8927619364434047, 0.8933752219200356, 0.8944253780964015, 0.8959155351423469, 0.8978473750091582, 0.9002211118466974, 0.9030354868263986, 0.9062877769719135, 0.9099738172296629, 0.9140880347137806, 0.9186234938460338, 0.9235719509844504, 0.9289239170860344, 0.934668726967957, 0.9407946137994632, 0.9472887875573192, 0.9541375162941403, 0.9613262091896138, 0.9688395004691688, 0.9766613333795644, 0.9847750435030365, 0.9931634407727654, 1.001808889625016, 1.0106933867909138, 1.019798636298026, 1.0291061213213546, 1.0385971725990497, 1.0482530332107949, 1.0580549196070304, 1.0679840788729773, 1.078021842310565, 1.0881496755177267, 1.098349225233762, 1.1086023632940358, 1.1188912280912047, 1.1291982639679778, 1.1395062589638714, 1.149798381304666, 1.160058214958476, 1.1702697944926306, 1.1804176393551322, 1.1904867875850755, 1.2004628288350225, 1.210331936476689, 1.2200808984668052, 1.2296971465791733, 1.239168783566599 ], [ 0.8943462750401413, 0.8937060504778231, 0.8934880164860175, 0.8936996441296323, 0.8943470986101407, 0.8954351754750518, 0.8969672496188998, 0.898945237999391, 0.901369576570198, 0.9042392114969645, 0.9075516043104123, 0.9113027502868276, 0.9154872090550042, 0.9200981462202737, 0.9251273846728223, 0.9305654642018388, 0.9364017080548828, 0.9426242951470913, 0.949220336719367, 0.9561759563528553, 0.9634763723570962, 0.9711059816516948, 0.9790484443529559, 0.9872867683552147, 0.9958033932639836, 1.004580273096806, 1.0135989572225335, 1.022840669064332, 1.0322863821499995, 1.0419168931583391, 1.0517128916840623, 1.0616550265259135, 1.0717239683931965, 1.0819004690203728, 1.0921654167747965, 1.1024998889319226, 1.1128852008707621, 1.1233029525013678, 1.1337350722725021, 1.1441638591151102, 1.154572022655214, 1.1649427219789603, 1.1752596031558438, 1.1855068356308294, 1.1956691474893646, 1.2057318594911077, 1.2156809176671548, 1.2255029241900404, 1.2351851661624809, 1.2447156419326448 ], [ 0.8957393500933764, 0.8951261594793656, 0.8949375834206972, 0.8951813446882826, 0.8958638645853463, 0.8969901963746285, 0.8985639711347357, 0.900587356993819, 0.903061032279733, 0.9059841727049556, 0.9093544523049016, 0.913168057497558, 0.9174197133514614, 0.9221027209487848, 0.9272090046119699, 0.9327291677176603, 0.9386525558374184, 0.9449673260034337, 0.951660520982264, 0.9587181475354023, 0.9661252577404262, 0.9738660325333166, 0.9819238667066427, 0.9902814546603524, 0.9989208762524588, 1.007823682140515, 1.0169709780446141, 1.0263435074038647, 1.0359217319439458, 1.045685909727434, 1.0556161703220153, 1.0656925867961058, 1.0758952443349432, 1.086204305361089, 1.0966000711366173, 1.107063039915181, 1.1175739617941902, 1.128113890483909, 1.138664232255869, 1.1492067923528968, 1.1597238191350754, 1.17019804620042, 1.1806127326587128, 1.1909517016576086, 1.201199377169002, 1.2113408189494375, 1.2213617554994949, 1.2312486147716784, 1.2409885523199695, 1.2505694765517024 ], [ 0.8976769445616437, 0.8970934682143868, 0.8969364436708411, 0.8972138410632158, 0.8979323384127458, 0.8990972523886124, 0.9007124810039194, 0.9027804592134294, 0.9053021279887379, 0.9082769170467068, 0.9117027410281199, 0.9155760085912004, 0.9198916436194529, 0.9246431175542931, 0.9298224917508268, 0.9354204687114898, 0.9414264510634127, 0.9478286071946643, 0.9546139425354687, 0.961768375549084, 0.9692768175725717, 0.9771232557136774, 0.9852908380635617, 0.9937619605267796, 1.0025183546014247, 1.011541175468107, 1.0208110897702243, 1.0303083624941405, 1.0400129423900057, 1.0499045454159683, 1.0599627357409847, 1.0701670039072184, 1.0804968418294434, 1.0909318143958584, 1.10145162752654, 1.1120361926389233, 1.1226656875569632, 1.1333206139759284, 1.143981851652109, 1.154630709520912, 1.1652489739553582, 1.1758189543589097, 1.1863235262449598, 1.1967461718936585, 1.2070710186029356, 1.217282874471552, 1.2273672615764837, 1.2373104463415783, 1.2470994668462407, 1.2567221567944875 ], [ 0.9001639944107986, 0.8996129910455894, 0.899489673981404, 0.8998022550895638, 0.9005576685453558, 0.9017614990543589, 0.9034179213921737, 0.9055296522295129, 0.9080979148523255, 0.9111224170158554, 0.9146013418197654, 0.9185313511851412, 0.922907601269578, 0.927723768982802, 0.9329720886613817, 0.938643397918349, 0.9447271916884931, 0.9512116835268803, 0.9580838732704728, 0.9653296202297738, 0.972933721127456, 0.9808799920419815, 0.98915135364178, 0.9977299190133947, 1.0065970833963607, 1.0157336151432752, 1.0251197472292797, 1.0347352686451148, 1.0445596150257601, 1.0545719578949184, 1.064751291947417, 1.0750765198470327, 1.0855265340872458, 1.0960802955450182, 1.1067169084489654, 1.1174156915797668, 1.1281562456148917, 1.138918516615877, 1.1496828557278111, 1.1604300752118384, 1.171141500958877, 1.1817990216347807, 1.192385134585796, 1.2028829885915702, 1.2132764234970932, 1.2235500066926892, 1.233689066348697, 1.24367972125731, 1.2535089070928815, 1.2631643988783612 ], [ 0.90320372492659, 0.9026880347477306, 0.9026006500887842, 0.9029500175776739, 0.9037433256626262, 0.9049864304648899, 0.9066837921900576, 0.9088384230665001, 0.9114518474509641, 0.91452407440624, 0.9180535827396945, 0.9220373182173207, 0.9264707024503092, 0.9313476527971378, 0.9366606125311897, 0.9424005904828016, 0.9485572093623045, 0.9551187619914959, 0.9620722747008771, 0.9694035771790798, 0.9770973780808295, 0.9851373457086805, 0.9935061930813245, 1.002185766690104, 1.011157138229556, 1.0204006985705896, 1.0298962532313516, 1.0396231185928786, 1.0495602181092112, 1.0596861777757278, 1.0699794201492228, 1.0804182562583373, 1.0909809748060704, 1.1016459281445297, 1.1123916145941297, 1.1231967567805448, 1.1340403757662214, 1.1449018608530042, 1.15576103502105, 1.1665982160396935, 1.1773942733354588, 1.1881306807266434, 1.1987895651347547, 1.209353751362818, 1.219806802993908, 1.2301330594177533, 1.2403176689443987, 1.2503466179203013, 1.2602067557280623, 1.2698858155312356 ], [ 0.9067976510652427, 0.9063202011940379, 0.9062710517748074, 0.9066588757326486, 0.9074911124201839, 0.9087738912824641, 0.9105119651967801, 0.9127086544407321, 0.9153658019528648, 0.9184837402580952, 0.9220612701569286, 0.9260956510430298, 0.930582602530108, 0.9355163169397516, 0.9408894821239631, 0.9466933140583345, 0.9529175986316161, 0.9595507420596147, 0.9665798293546146, 0.9739906902764259, 0.9817679721741174, 0.9898952190981135, 0.9983549565228507, 1.0071287809757403, 1.0161974538226695, 1.0255409984179424, 1.0351387997913977, 1.0449697060190513, 1.055012130409364, 1.065244153637039, 1.0756436249723942, 1.086188261789514, 1.0968557465916386, 1.107623820867751, 1.1184703751881315, 1.1293735350543725, 1.140311742135663, 1.151263830639083, 1.1622090986710178, 1.1731273745406943, 1.1839990780304939, 1.1948052767072537, 1.205527737373218, 1.2161489727576302, 1.2266522835329037, 1.2370217957103535, 1.2472424934353705, 1.2573002471673997, 1.2671818372026826, 1.276874972480849 ], [ 0.9109455920246701, 0.9105094044215936, 0.9105008824108929, 0.910928915122905, 0.9118011877510965, 0.9131241032462474, 0.9149027126782603, 0.9171406551893106, 0.9198401082186047, 0.923001748436242, 0.9266247236009506, 0.9307066353697087, 0.935243532945012, 0.940229917348124, 0.9456587560485957, 0.9515215076492674, 0.9578081563081902, 0.9645072555607357, 0.9716059811765194, 0.9790901926406108, 0.9869445027863555, 0.9951523550314185, 1.0036961075851973, 1.01255712391142, 1.021715868650316, 1.0311520081345196, 1.0408445145740945, 1.0507717729404444, 1.0609116895473, 1.0712418013112295, 1.0817393846767378, 1.0923815632148326, 1.1031454129521223, 1.1140080645601607, 1.1249468016324604, 1.1359391543941662, 1.1469629883208958, 1.1579965872808988, 1.1690187309479032, 1.1800087663535974, 1.1909466735495775, 1.2018131254256774, 1.2125895417815427, 1.2232581377732952, 1.2338019668600468, 1.2442049583620305, 1.254451949719173, 1.264528713513244, 1.2744219792941622, 1.2841194502358577 ], [ 0.9156456968998006, 0.9152538987842562, 0.9152884995661477, 0.9157585926609185, 0.916672102097088, 0.9180357024952879, 0.9198547465908913, 0.9221332011778838, 0.924873592158141, 0.9280769591927808, 0.9317428202878946, 0.9358691465157161, 0.9404523469802075, 0.9454872640788731, 0.9509671790816192, 0.9568838280274673, 0.9632274279172385, 0.9699867131401286, 0.9771489820071788, 0.9847001531719886, 0.9926248316028188, 1.0009063836383665, 1.0095270205229452, 1.0184678896855093, 1.0277091729080141, 1.0372301904277272, 1.047009509933921, 1.0570250593542334, 1.0672542422764675, 1.0776740548199195, 1.0882612027587981, 1.0989922177121878, 1.1098435712557548, 1.1207917858821632, 1.1318135418403037, 1.142885779014259, 1.1539857931555384, 1.1650913259444835, 1.1761806485205344, 1.1872326382731346, 1.198226848817711, 1.209143573187341, 1.2199639003473282, 1.230669765188063, 1.2412439921732137, 1.2516703328220564, 1.2619334971926486, 1.2720191795135478, 1.2819140780924954, 1.2916059096158168 ], [ 0.9208944778357679, 0.920550314430927, 0.9206306527643658, 0.9211447765544896, 0.9221008394312786, 0.9235057835026328, 0.9253652642330281, 0.9276835824464651, 0.930463624125511, 0.9337068085515257, 0.9374130452317677, 0.9415806999925163, 0.9462065705854478, 0.9512858721473776, 0.9568122328592146, 0.9627777001484383, 0.9691727577554794, 0.9759863539225875, 0.983205940857889, 0.99081752547924, 0.9988057312610004, 1.0071538708072354, 1.015844028573521, 1.0248571529721204, 1.0341731569313082, 1.04377102584321, 1.053628931725775, 1.063724352338077, 1.0740341939220304, 1.0845349161955429, 1.095202658195419, 1.1060133635682525, 1.1169429039409207, 1.127967199074032, 1.139062332613648, 1.1502046624059477, 1.1613709245169042, 1.1725383302944197, 1.1836846560086458, 1.194788324794827, 1.2058284807901123, 1.2167850554933715, 1.227638826481233, 1.2383714686833962, 1.2489655984601085, 1.2594048107385016, 1.269673709461127, 1.2797579315852459, 1.289644164853587, 1.2993201595409933 ], [ 0.9266868468950564, 0.92639369613659, 0.9265225242514612, 0.9270827889512024, 0.9280828616864025, 0.9295299451590138, 0.931429995820868, 0.9337876520813307, 0.9366061688622204, 0.9398873590763315, 0.9436315425779604, 0.9478375031415023, 0.9525024540632347, 0.9576220130374606, 0.963190187012215, 0.9691993677579865, 0.9756403388641459, 0.9825022947961319, 0.9897728724964816, 0.997438195799347, 1.0054829326683836, 1.013890364985495, 1.0226424703370773, 1.0317200149894779, 1.04110265702794, 1.0507690584587583, 1.0606970049394628, 1.070863531695946, 1.0812450541035483, 1.091817501344757, 1.1025564515145698, 1.1134372665312247, 1.1244352252363556, 1.1355256531425837, 1.1466840474110958, 1.1578861958147177, 1.1691082886525384, 1.1803270228163754, 1.191519697449674, 1.2026643008692017, 1.2137395886251106, 1.2247251527457326, 1.2356014823442396, 1.2463500158554954, 1.2569531852255789, 1.2673944524005685, 1.2776583384625682, 1.2877304457481864, 1.2975974732650992, 1.3072472257029077 ], [ 0.9330161529074676, 0.9327775415611811, 0.9329577686746395, 0.933566447028569, 0.9346121512208412, 0.9361023345495717, 0.9380432494768774, 0.9404398722802807, 0.9432958324684628, 0.9466133475445193, 0.9503931637488396, 0.9546345035048316, 0.9593350204138926, 0.9644907627797192, 0.9700961467612028, 0.9761439403250503, 0.9826252591670086, 0.9895295756742548, 0.9968447418038555, 1.0045570264641208, 1.0126511676313492, 1.0211104390490784, 1.0299167309789035, 1.0390506441327898, 1.0484915956366982, 1.0582179356586443, 1.0682070731727151, 1.0784356092089358, 1.0888794758424194, 1.0995140790970275, 1.110314443881101, 1.1212553590461942, 1.1323115206796488, 1.1434576718198561, 1.1546687369259614, 1.1659199496374189, 1.177186972610754, 1.1884460085030586, 1.1996739014609814, 1.2108482287508373, 1.2219473824115403, 1.232950641016773, 1.2438382317893044, 1.2545913834196871, 1.2651923700071106, 1.275624546570063, 1.2858723765772198, 1.2959214519343407, 1.3057585058393364, 1.3153714188921974 ], [ 0.939874214855406, 0.9396938352948363, 0.9399285478532933, 0.9405880985511244, 0.9416812472099488, 0.9432156842061024, 0.9451979493399196, 0.9476333532799737, 0.9505259020640244, 0.9538782252126061, 0.9576915081422988, 0.9619654297489588, 0.9666981062519131, 0.9718860426203075, 0.9775240931065605, 0.983605432548187, 0.9901215401298766, 0.997062197195344, 1.0044155004537938, 1.0121678915516208, 1.0203042035113965, 1.0288077240273839, 1.037660275105419, 1.0468423080913816, 1.0563330127761834, 1.0661104390012877, 1.0761516290023692, 1.0864327585954447, 1.0969292852041514, 1.1076161006367353, 1.1184676864484586, 1.1294582696849536, 1.1405619768159059, 1.151752983754544, 1.163005660026037, 1.1742947053911617, 1.1855952775364156, 1.1968831097804846, 1.2081346180942611, 1.2193269970604628, 1.2304383046882827, 1.2414475362367356, 1.2523346873799917, 1.2630808071712163, 1.2736680413338277, 1.284079666439496, 1.294300115532105, 1.3043149957363152, 1.314111098358466, 1.3236764019541352 ], [ 0.9472513488279897, 0.9471330755324019, 0.9474255573026913, 0.9481386483874292, 0.9492812723055855, 0.9508613390513109, 0.9528856629150926, 0.9553598811970458, 0.9582883741580297, 0.9616741866943972, 0.9655189524363867, 0.9698228212545151, 0.9745843914901593, 0.9798006485743798, 0.9854669120128206, 0.9915767929419641, 0.9981221645497707, 1.0050931475613682, 1.012478112702441, 1.0202637015823686, 1.0284348668325936, 1.0369749316632848, 1.045865668342034, 1.0550873945219323, 1.064619085894996, 1.0744385033291841, 1.0845223324395183, 1.0948463334058962, 1.105385498743969, 1.1161142166376288, 1.1270064373556143, 1.1380358402210327, 1.149175998612046, 1.1604005405713558, 1.171683302802208, 1.1829984761248276, 1.1943207408350112, 1.205625390815353, 1.2168884456621643, 1.228086750476603, 1.2391980633032535, 1.2502011304679066, 1.26107575026539, 1.2718028255795293, 1.2823644060902528, 1.2927437207482737, 1.3029252011892443, 1.312894496729043, 1.3226384815400427, 1.3321452545649415 ], [ 0.9551363862182851, 0.9550842908677065, 0.9554380418163194, 0.9562075731124471, 0.9574019465198298, 0.9590292698382212, 0.9610966143370914, 0.9636099313558915, 0.9665739682332983, 0.9699921839267849, 0.9738666649811343, 0.9781980428933523, 0.9829854143801181, 0.9882262665408437, 0.9939164093646742, 1.0000499183838252, 1.0066190904536787, 1.0136144155849238, 1.0210245674318539, 1.0288364144661624, 1.0370350530937054, 1.045603863097853, 1.0545245849296998, 1.0637774176155568, 1.0733411354790605, 1.0831932214944404, 1.0933100148627024, 1.103666870272508, 1.1142383262126079, 1.1249982796061124, 1.1359201639410734, 1.1469771280056784, 1.158142212345279, 1.169388520676731, 1.1806893837410797, 1.192018513437091, 1.2033501455255455, 1.2146591696833602, 1.2259212461735731, 1.237112908842775, 1.2482116545357913, 1.2591960193127358, 1.2700456420648825, 1.2807413162579464, 1.2912650305971811, 1.3015999994226073, 1.311730683620211, 1.3216428027903273, 1.3313233393594341, 1.3407605352659933 ], [ 0.9635166816030616, 0.9635350454719827, 0.9639537981854682, 0.9647829215819868, 0.9660315860270117, 0.9677080705938182, 0.9698196808869017, 0.9723726642993462, 0.975372122630312, 0.9788219222359782, 0.9827246022604126, 0.9870812819877672, 0.9918915689538559, 0.9971534701044134, 1.0028633089204844, 1.009015651955546, 1.0156032485459252, 1.022616987476615, 1.030045874054735, 1.0378770303605895, 1.046095720479555, 1.054685401389915, 1.0636277990521108, 1.0729030082635183, 1.082489614109692, 1.0923648323838355, 1.1025046661103477, 1.112884075205111, 1.1234771562401797, 1.1342573291993765, 1.145197528012458, 1.156270391581556, 1.1674484520256638, 1.1787043170176257, 1.190010843392009, 1.2013412996476445, 1.212669515510621, 1.2239700173063046, 1.2352181484567344, 1.2463901749264095, 1.2574633758571951, 1.2684161199479802, 1.2792279283492805, 1.289879524966537, 1.3003528751162798, 1.3106312134742508, 1.3206990622126717, 1.3305422401607934, 1.3401478637521287, 1.3495043404522213 ], [ 0.9723781096021811, 0.9724714317936184, 0.9729591640094695, 0.9738513002288108, 0.9751570854168425, 0.9768849383781142, 0.9790423708573346, 0.9816359023789305, 0.9846709704593092, 0.9881518361051912, 0.9920814849465602, 0.9964615249490988, 1.0012920823902864, 1.0065716986180095, 1.0122972309593368, 1.0184637618963739, 1.0250645211443539, 1.0320908254235988, 1.0395320404185056, 1.0473755686374302, 1.0556068656951234, 1.064209486093008, 1.073165158092539, 1.0824538859824628, 1.0920540770895597, 1.101942690320126, 1.1120954027803351, 1.122486790972004, 1.133090523055223, 1.1438795586253985, 1.1548263523637163, 1.1659030578455039, 1.1770817278157657, 1.1883345074330984, 1.1996338173646235, 1.2109525241628931, 1.2222640960097397, 1.233542742600272, 1.2447635385916849, 1.2559025306075622, 1.26693682823712, 1.2778446797931322, 1.2886055337978919, 1.2992000872711449, 1.3096103219193072, 1.319819529293907, 1.3298123259206778, 1.3395746593158644, 1.3490938057176023, 1.3583583602767526 ], [ 0.9817050509413248, 0.9818780508656669, 0.9824389925089778, 0.9833978427839651, 0.9847638828632554, 0.9865456345628879, 0.9887507817020066, 0.9913860855958807, 0.9944572939699652, 0.9979690428707563, 1.0019247516262026, 1.0063265115900917, 1.0111749702850612, 1.0164692135940496, 1.0222066497532745, 1.028382899937418, 1.0349917010270868, 1.0420248265256669, 1.0494720313937285, 1.0573210257219643, 1.0655574807232715, 1.0741650686841355, 1.083125536573645, 1.0924188112879332, 1.102023133250318, 1.111915214382798, 1.1220704162277948, 1.1324629440347493, 1.1430660527244636, 1.1538522606722597, 1.1647935671950955, 1.1758616695674398, 1.1870281754427519, 1.1982648068103783, 1.2095435920992612, 1.2208370437119564, 1.2321183190558762, 1.243361363938761, 1.2545410379317232, 1.2656332219192463, 1.276614908523649, 1.2874642764103104, 1.2981607496630763, 1.3086850434924815, 1.3190191975302463, 1.3291465978992036, 1.339051989151892, 1.3487214770623037, 1.3581425231478015, 1.3673039317004534 ], [ 0.991480368915425, 0.9917379813192588, 0.9923766142897772, 0.9934061651682, 0.9948359087015721, 0.9966744278281343, 0.9989295383404162, 1.0016082062259595, 1.0047164565789695, 1.0082592732446327, 1.0122404888458805, 1.0166626655837379, 1.0215269682071706, 1.0268330317883811, 1.0325788283309865, 1.038760537630774, 1.0453724289874398, 1.0524067610777488, 1.0598537073052186, 1.0677013130888553, 1.075935489858599, 1.084540048206853, 1.0934967701016916, 1.1027855177608372, 1.1123843750948765, 1.1222698167149032, 1.1324168992664845, 1.142799470022802, 1.1533903879332754, 1.1641617524786798, 1.1750851356972851, 1.1861318127259848, 1.1972729863012752, 1.2084800010036243, 1.2197245436344537, 1.2309788269333977, 1.2422157547674804, 1.2534090678397298, 1.2645334697774033, 1.275564734111821, 1.2864797931321241, 1.2972568098897466, 1.307875234776168, 1.318315848125218, 1.3285607902390029, 1.3385935801332272, 1.3483991241696986, 1.3579637156099817, 1.3672750259982047, 1.3763220891706398 ], [ 1.0016853784525015, 1.0020327392605188, 1.00275378810921, 1.0038583074301974, 1.0053555190444652, 1.0072540201915303, 1.0095617125596568, 1.0122857227499615, 1.0154323126383518, 1.0190067783145789, 1.0230133367380556, 1.027455000010768, 1.0323334382652285, 1.037648833596791, 1.04339972916871, 1.0495828794292503, 1.056193109050033, 1.0632231893873443, 1.0706637416278542, 1.0785031750325274, 1.0867276667683599, 1.0953211869412383, 1.1042655691232295, 1.1135406235625058, 1.1231242879548544, 1.132992809427967, 1.1431209511505482, 1.1534822173433414, 1.1640490909865446, 1.174793278879382, 1.1856859588506774, 1.196698023978816, 1.207800318862533, 1.2189638634373363, 1.2301600605885932, 1.2413608847935378, 1.2525390500961178, 1.2636681567422194, 1.2747228166758957, 1.2856787587632699, 1.2965129150594048, 1.30720348968419, 1.3177300119641289, 1.3280733754703675, 1.338215864479668, 1.348141169240083, 1.3578343912610245, 1.367282039689998, 1.376472019694757, 1.3853936136496314 ], [ 1.012299810982642, 1.0127422322583688, 1.0135506438619086, 1.0147346658335712, 1.01630341732946, 1.0182654586568585, 1.0206287256963837, 1.0234004547866222, 1.0265870960897348, 1.0301942135834254, 1.0342263702117256, 1.0386869974544206, 1.0435782497129709, 1.0489008454970568, 1.0546538993987178, 1.0608347511205631, 1.0674388001000947, 1.074459356122245, 1.081887517230042, 1.089712085775278, 1.0979195313773988, 1.1064940060608086, 1.1154174125456953, 1.12466952248624, 1.134228138261705, 1.1440692902221408, 1.1541674610113322, 1.1644958292205039, 1.1750265255167027, 1.1857308950754908, 1.1965797605101034, 1.2075436796935206, 1.2185931931794185, 1.2296990565311345, 1.2408324537969513, 1.2519651895235455, 1.2630698579120705, 1.2741199888344492, 1.2850901713334506, 1.2959561558807526, 1.3066949370674832, 1.3172848185861952, 1.3277054623840991, 1.3379379237748201, 1.3479646741377798, 1.3577696126446166, 1.3673380682589582, 1.3766567930757394, 1.3857139479097884, 1.3944990809155966 ], [ 1.023301779290952, 1.023844711780152, 1.0247456222048197, 1.02601391950075, 1.0276585680832933, 1.0296880365168168, 1.0321102382487954, 1.034932462156592, 1.0381612904890898, 1.0418025017896917, 1.0458609566515553, 1.0503404647867638, 1.0552436329990371, 1.0605716953255055, 1.066324328883481, 1.0724994617275576, 1.0790930820078608, 1.0860990604206961, 1.0935089996763467, 1.1013121247724127, 1.1094952257930757, 1.1180426608177219, 1.1269364210391106, 1.1361562545941866, 1.1456798411921663, 1.1554830072051967, 1.1655399704964315, 1.1758236052333793, 1.1863057183531875, 1.1969573305200887, 1.2077489551297074, 1.2186508693559153, 1.229633371733291, 1.2406670215568092, 1.2517228564976455, 1.2627725861547785, 1.2737887605933935, 1.2847449140895386, 1.2956156852011713, 1.306376914885272, 1.3170057247022622, 1.327480577246341, 1.337781320877894, 1.3478892206696333, 1.3577869772633975, 1.367458735103129, 1.3768900812878824, 1.3860680360911397, 1.3949810360269825, 1.4036189102122063 ], [ 1.0346677474258144, 1.0353167294533887, 1.036315416438689, 1.037672957377696, 1.0393981086925284, 1.0414991899779487, 1.043984031792834, 1.0468599129679608, 1.0501334846127817, 1.053810677856708, 1.0578965924555153, 1.0623953638596322, 1.0673100073326212, 1.072642239381319, 1.0783922792218261, 1.0845586362427933, 1.0911378931947826, 1.098124498575424, 1.1055105845254283, 1.1132858274782296, 1.1214373669979487, 1.129949793520255, 1.1388052088472602, 1.147983355841496, 1.1574618076723135, 1.1672162034976374, 1.1772205168327063, 1.1874473442427191, 1.197868204132641, 1.208453837284718, 1.2191745020426719, 1.2300002578468041, 1.2409012315855263, 1.2518478622374833, 1.262811120584923, 1.273762702242449, 1.284675193652714, 1.2955222118755276, 1.3062785198430569, 1.3169201192619764, 1.3274243235566974, 1.3377698132399953, 1.347936675942173, 1.3579064330925636, 1.3676620549779703, 1.3771879656348718, 1.3864700387878492, 1.3954955858373765, 1.4042533367301793, 1.4127334144147368 ], [ 1.0463725114776632, 1.0471331034521028, 1.0482349233825714, 1.0496868126174135, 1.0514972665290738, 1.0536743975548302, 1.05622589055404, 1.0591589477455292, 1.0624802200711345, 1.066195721515211, 1.07031072279592, 1.074829621081729, 1.0797557831691929, 1.0850913611140562, 1.0908370818491093, 1.096992015952316, 1.1035533352940907, 1.1105160742305205, 1.117872913270864, 1.1256140063368947, 1.1337268715416493, 1.1421963602773864, 1.1510047110247374, 1.160131684676873, 1.1695547698836757, 1.1792494419649036, 1.1891894578615883, 1.1993471714362365, 1.2096938564960071, 1.2202000277599856, 1.2308357520069249, 1.2415709429743296, 1.2523756346952186, 1.2632202292174781, 1.2740757161289575, 1.2849138628704933, 1.2957073762401774, 1.3064300366086936, 1.3170568071026612, 1.3275639203871157, 1.3379289457576897, 1.3481308391261881, 1.3581499782331001, 1.3679681851134071, 1.3775687375250236, 1.3869363707532258, 1.3960572709448753, 1.404919060912028, 1.413510779175654, 1.4218228528947128 ], [ 1.0583891975522413, 1.0592669020083485, 1.0604772109093714, 1.0620286126795455, 1.0639292902783901, 1.066187091504421, 1.068809492143862, 1.071803549100279, 1.0751758400995337, 1.0789323860722764, 1.0830785519695936, 1.087618921724121, 1.0925571435564674, 1.0978957431437024, 1.1036359046437267, 1.1097772234627985, 1.1163174399619071, 1.1232521695171889, 1.1305746502932688, 1.1382755339568464, 1.146342744433173, 1.1547614245426157, 1.1635139804441919, 1.172580221627589, 1.1819375831605208, 1.1915614099378733, 1.201425280857407, 1.2115013531306644, 1.221760711132992, 1.2321737083051503, 1.2427102936770418, 1.253340316641983, 1.2640338051844167, 1.2747612142931852, 1.2854936429087993, 1.2962030193379412, 1.3068622564245107, 1.317445378750153, 1.3279276247066714, 1.3382855264850129, 1.34849697094967, 1.3585412441163804, 1.368399061608456, 1.378052587098334, 1.387485440386902, 1.396682696457961, 1.4056308765800387, 1.414317932314753, 1.4227332231292549, 1.4308674881931247 ], [ 1.070689283440498, 1.0716894514137243, 1.0730135104146794, 1.0746695543447087, 1.0766654055790408, 1.0790085922528803, 1.0817063191240748, 1.0847654291021287, 1.0881923518834444, 1.091993035470951, 1.0961728557715413, 1.100736499109562, 1.1056878126209604, 1.1110296184603317, 1.1167634900125316, 1.1228894922892196, 1.1294058946089147, 1.1363088711424707, 1.1435922126997973, 1.1512470790488125, 1.1592618224775355, 1.1676219083269195, 1.176309946920749, 1.1853058363521005, 1.1945870013187314, 1.204128703693467, 1.2139043975780988, 1.2238861042169482, 1.2340447876202127, 1.2443507173945079, 1.2547738096628263, 1.2652839399506473, 1.275851224058589, 1.2864462647617874, 1.2970403638826176, 1.3076057008138677, 1.3181154797710706, 1.3285440488272622, 1.3388669941302913, 1.349061212700593, 1.3591049669651913, 1.368977923808578, 1.3786611804961906, 1.3881372794076339, 1.3973902131380556, 1.4064054212027006, 1.4151697793170657, 1.4236715820204748, 1.4319005192603527, 1.4398476474493123 ], [ 1.0832426502357742, 1.0843703757761194, 1.0858132426037121, 1.0875789132439417, 1.0896748058618337, 1.0921080780249646, 1.0948856049078344, 1.0980139490576377, 1.1014993181021673, 1.1053475059707634, 1.1095638123873155, 1.1141529347250492, 1.1191188260434275, 1.1244645136668945, 1.1301918745741153, 1.1363013677669398, 1.1427917301215254, 1.1496596508346772, 1.1568994492359583, 1.1645027889254436, 1.1724584645832146, 1.180752293571556, 1.1893671320885872, 1.1982830179041337, 1.207477423913043, 1.216925594226667, 1.226600930055193, 1.236475395395881, 1.246519919321006, 1.2567047790366035, 1.2669999538369878, 1.2773754442127399, 1.287801553196806, 1.2982491291673899, 1.3086897710788283, 1.3190959984886812, 1.3294413897124397, 1.3397006919331556, 1.3498499071721763, 1.3598663577986914, 1.369728734843375, 1.3794171318911055, 1.3889130668322147, 1.398199493298543, 1.407260803219015, 1.4160828216087442, 1.4246527944527438, 1.4329593703549843, 1.4409925764872193, 1.4487437892812545 ], [ 1.0960176693893906, 1.0972776751157776, 1.098844084443201, 1.1007240971893095, 1.1029246892920548, 1.1054526023620548, 1.108314328599872, 1.1115160882889712, 1.1150637962705856, 1.1189630128761145, 1.1232188737841242, 1.1278359923087573, 1.1328183269666678, 1.1381690072517094, 1.1438901120161344, 1.1499823985107567, 1.1564449866586324, 1.1632750126281695, 1.1704672771170075, 1.1780139242241587, 1.1859041923887772, 1.1941242758623032, 1.202657322254746, 1.211483571540357, 1.220580620615592, 1.22992378173167, 1.2394864967449863, 1.249240771700255, 1.2591576041865737, 1.2692073850362304, 1.2793602635912487, 1.2895864711879763, 1.2998566011284427, 1.3101418458942649, 1.3204141941352434, 1.330646591170929, 1.3408130674046843, 1.3508888392157903, 1.3608503866764632, 1.3706755119760223, 1.3803433818570783, 1.3898345567741066, 1.3991310089350373, 1.4082161309108951, 1.4170747361062717, 1.425693052073109, 1.434058707413489, 1.4421607128441662, 1.4499894368760162, 1.4575365764859032 ], [ 1.1089813293842963, 1.1103778470470473, 1.1120720838085598, 1.1140707513704171, 1.1163803516930373, 1.1190071715243555, 1.121957273203909, 1.1252364790840832, 1.1288503460638202, 1.132804125711402, 1.137102704288819, 1.1417505157857215, 1.146751420067602, 1.1521085378919718, 1.1578240355563436, 1.1638988552431542, 1.1703323936233572, 1.17712214133047, 1.184263308585823, 1.1917484747270493, 1.199567307184475, 1.207706393971141, 1.2161492208632012, 1.224876302530248, 1.2338654525515367, 1.2430921583230627, 1.2525300183247845, 1.2621512011800073, 1.2719268946320945, 1.2818277232281734, 1.2918241228143577, 1.3018866667274307, 1.3119863430674037, 1.3220947853341445, 1.3321844605270086, 1.3422288198056744, 1.3522024171417015, 1.362081001205805, 1.3718415852099266, 1.3814624987273587, 1.3909234247816213, 1.4002054248115594, 1.4092909535284293, 1.4181638651942374, 1.4268094124655215, 1.4352142386526938, 1.4433663640271033, 1.4512551666546176, 1.458871358132294, 1.4662069545440517 ], [ 1.122099404360059, 1.1236360552863227, 1.1254618262147178, 1.1275829212444657, 1.1300053430675518, 1.1327348915943891, 1.1357771596916457, 1.1391375235232855, 1.1428211241189756, 1.146832835719219, 1.1511772151740614, 1.1558584252882904, 1.1608801237363713, 1.1662453084642945, 1.1719561110945071, 1.17801353276831, 1.1844171231623906, 1.1911646136746796, 1.1982515292598208, 1.205670817333453, 1.2134125418105512, 1.2214636904872191, 1.22980813172441, 1.2384267336549675, 1.247297632692461, 1.256396616550851, 1.2656975762682958, 1.2751729826401255, 1.2847943513416131, 1.2945326727436997, 1.3043587931403515, 1.3142437421788504, 1.3241590067088456, 1.3340767546497034, 1.3439700143897122, 1.353812816058334, 1.3635803010361434, 1.3732488055477434, 1.3827959233677813, 1.3922005517591318, 1.4014429238922155, 1.4105046302346174, 1.419368630776953, 1.4280192594704362, 1.4364422218769453, 1.4446245867568295, 1.4525547721212742, 1.4602225261416601, 1.4676189032229414, 1.4747362355015847 ], [ 1.1353366647304834, 1.1370163456375435, 1.138976655114522, 1.1412232757216307, 1.143761691798265, 1.146597191294881, 1.1497348654349973, 1.1531796038479767, 1.1569360819422276, 1.1610087361879045, 1.1654017216457508, 1.170118844588676, 1.1751634616245157, 1.1805383357831942, 1.1862454403234937, 1.1922857035890753, 1.1986586942440935, 1.2053622563554867, 1.2123921175104713, 1.2197415078400542, 1.2274008387051933, 1.2353574913989918, 1.2435957551014787, 1.2520969308446648, 1.2608395909412229, 1.2697999600398424, 1.278952371330416, 1.2882697509082381, 1.2977240916616477, 1.3072868901380468, 1.3169295314921463, 1.326623616771945, 1.3363412331191262, 1.346055171392196, 1.355739097823544, 1.3653676870641247, 1.3749167237586888, 1.3843631789987552, 1.3936852669401032, 1.4028624857774643, 1.4118756462808117, 1.4207068902740227, 1.4293397007873707, 1.4377589051218485, 1.445950671700146, 1.4539025013189888, 1.4616032132374261, 1.4690429264180889, 1.476213036167567, 1.483106186387932 ], [ 1.1486571272650583, 1.1504819071184191, 1.1525789437826792, 1.154953389240071, 1.1576101959957796, 1.1605541212582429, 1.163789729522887, 1.1673213913365976, 1.17115327515879, 1.1752893281345094, 1.1797332402511496, 1.1844883848266552, 1.1895577267772115, 1.1949436890599003, 1.2006479678044557, 1.206671288963853, 1.2130131049607962, 1.2196712395404579, 1.2266415024296098, 1.233917310040617, 1.2414893598157053, 1.2493454084762095, 1.2574701947747717, 1.2658455261618975, 1.2744505220008084, 1.283261982127328, 1.2922548355089478, 1.3014026216101366, 1.3106779642251243, 1.320053009214887, 1.3294998095479897, 1.3389906509198308, 1.3484983183138388, 1.3579963083689173, 1.367458994803528, 1.3768617549261786, 1.3861810649327408, 1.3953945707166804, 1.4044811396826509, 1.413420897822653, 1.4221952552327024, 1.43078692237171, 1.439179918690853, 1.4473595747643044, 1.4553125286949908, 1.4630267173211493, 1.4704913625828788, 1.4776969533031719, 1.4846352225792239, 1.4912991209551056 ], [ 1.1620243394884107, 1.1639953727822177, 1.1662304131060688, 1.1687340769241983, 1.171510776223191, 1.17456472424965, 1.1778999400730263, 1.1815202498684945, 1.1854292819742465, 1.1896304517021656, 1.1941269305675133, 1.198921593116697, 1.2040169330694346, 1.2094149394584504, 1.2151169235295884, 1.2211232893154234, 1.227433246072693, 1.2340444698809634, 1.2409527342733477, 1.2481515436451671, 1.2556318142539427, 1.263381650884783, 1.271386259158778, 1.2796280143847667, 1.2880866828672126, 1.296739768412713, 1.3055629420372874, 1.3145305091220127, 1.3236158737107218, 1.3327919701769657, 1.3420316440956936, 1.351307974289945, 1.3605945356454225, 1.369865607302748, 1.379096333573991, 1.3882628458717776, 1.3973423536317386, 1.4063132111780803, 1.4151549661635723, 1.4238483939046052, 1.4323755207899882, 1.4407196390258195, 1.4488653142834556, 1.4567983873115957, 1.4645059702173855, 1.4719764378784226, 1.4791994147892555, 1.486165757549956, 1.4928675331527534, 1.4992979932056762 ], [ 1.1754016908571239, 1.177519151897038, 1.1798924860941338, 1.1825257727533922, 1.1854228786197485, 1.1885874644742567, 1.1920229908351334, 1.1957327207580533, 1.1997197169210374, 1.2039868291514753, 1.2085366673077078, 1.2133715530380165, 1.2184934425977003, 1.2239038119943362, 1.229603495877978, 1.2355924736542374, 1.2418696011938546, 1.248432294834644, 1.2552761857672903, 1.2623947754643792, 1.2697791329749308, 1.2774176783032547, 1.285296089518173, 1.2933973547657043, 1.301701968090165, 1.3101882465002808, 1.318832731041718, 1.3276106295355432, 1.3364962621498202, 1.3454634798260077, 1.3544860362307707, 1.3635379037950148, 1.3725935322375662, 1.381628053368361, 1.390617439063061, 1.3995386205047566, 1.4083695766365667, 1.4170893988113338, 1.4256783373245634, 1.4341178341954766, 1.4423905453971826, 1.4504803547976872, 1.4583723813608833, 1.4660529806391653, 1.4735097412277707, 1.480731476606827, 1.487708212640928, 1.494431170912589, 1.500892748018874, 1.5070864909459436 ], [ 1.1887527412626457, 1.1910157828044992, 1.19352666704385, 1.1962889371076035, 1.199305913021002, 1.2025806985749086, 1.2061161874582162, 1.2099150667375895, 1.2139798149996457, 1.2183126915096723, 1.222915711596749, 1.2277906022282215, 1.2329387305746193, 1.238360997646588, 1.2440576893637416, 1.2500282794253854, 1.2562711828520556, 1.2627834664998054, 1.2695605328535233, 1.276595804339663, 1.2838804442706817, 1.2914031537203339, 1.2991500784240715, 1.3071048460887764, 1.3152487354456313, 1.3235609593252706, 1.332019030112949, 1.3405991699238093, 1.349276729467548, 1.3580265864795347, 1.3668235038352838, 1.3756424366499356, 1.3844587853529873, 1.3932485973018813, 1.4019887228964438, 1.4106569336688717, 1.4192320099302997, 1.4276938047843448, 1.4360232901350944, 1.4442025890571397, 1.4522149977539907, 1.4600449993933182, 1.467678271386046, 1.47510168714838, 1.4823033130148093, 1.4892724007198694, 1.4959993757062944, 1.5024758214219571, 1.508694459720346, 1.5146491274650458 ], [ 1.2020415561940327, 1.204448294273201, 1.2070949314130772, 1.2099844776952793, 1.213119707693338, 1.2165031671486453, 1.2201371789847906, 1.2240238468260745, 1.2281650534723576, 1.232562450904262, 1.237217437373421, 1.2421311160577377, 1.2473042288138412, 1.2527370580605783, 1.2584292902573782, 1.2643798364019212, 1.2705866090505946, 1.2770462618596223, 1.2837539061808534, 1.2907028284362896, 1.2978842394192212, 1.3052870894448836, 1.3128979792271827, 1.3207011852954031, 1.328678803022545, 1.3368109940428816, 1.3450763121867058, 1.3534520756240216, 1.3619147529493918, 1.3704403358995494, 1.3790046789846784, 1.3875837944371667, 1.3961540980855052, 1.404692607269473, 1.4131770954949985, 1.421586210333254, 1.4298995614847374, 1.4380977854255197, 1.4461625920680647, 1.4540767977376674, 1.461824347693621, 1.469390330517219, 1.4767609859731303, 1.483923707417965, 1.490867039449301, 1.4975806712290627, 1.5040554257470475, 1.5102832451893864, 1.5162571725248157, 1.5219713294042538 ], [ 1.2152330374982956, 1.2177805626526264, 1.22056011179745, 1.2235741670146032, 1.2268249611877584, 1.2303144841585678, 1.2340444882423764, 1.2380164913577245, 1.2422317753725527, 1.2466913764871568, 1.251396063593784, 1.2563462996630144, 1.261542180481148, 1.2669833447826275, 1.2726688503873453, 1.278597012838565, 1.2847652066739204, 1.291169635019762, 1.2978050803031276, 1.3046646563809263, 1.3117395883889515, 1.3190190488992282, 1.326490075869537, 1.3341375891602079, 1.3419445097472522, 1.3498919722561125, 1.3579596103675278, 1.3661258882544267, 1.3743684500712035, 1.382664462735117, 1.3909909331409116, 1.399324987804806, 1.407644109387648, 1.4159263297593112, 1.4241503828780364, 1.4322958227899136, 1.4403431127752213, 1.4482736914682002, 1.456070021043744, 1.4637156216133893, 1.4711950950154378, 1.4784941403375964, 1.4855995628221268, 1.492499277275143, 1.4991823067171641, 1.5056387767431345, 1.5118599058830435, 1.5178379921444725, 1.52356639585989, 1.5290395189381703 ] ], "zauto": true, "zmax": 1.5290395189381703, "zmin": -1.5290395189381703 }, { "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.09817901390815341, 0.09692647228372016, 0.09575789387046085, 0.09467524431029603, 0.093679726862727, 0.09277175446192523, 0.09195094130045038, 0.09121611540479525, 0.09056535272491348, 0.08999603224064001, 0.08950491057642634, 0.08908821369577069, 0.08874174249130115, 0.08846098854776491, 0.08824125605977962, 0.08807778583303115, 0.0879658774617247, 0.0879010061137705, 0.08787893081612852, 0.08789579166188281, 0.08794819390922488, 0.08803327747167619, 0.08814877078191843, 0.08829302843463169, 0.08846505237409791, 0.08866449669671757, 0.08889165639981139, 0.08914744064233995, 0.08943333130727511, 0.08975132788387812, 0.09010387993153904, 0.09049380864923667, 0.09092421935349795, 0.09139840695189196, 0.09191975677103123, 0.09249164333347357, 0.09311732984967892, 0.09379987127149297, 0.09454202371866138, 0.09534616292351968, 0.09621421403609538, 0.09714759470052306, 0.09814717277552285, 0.09921323946020628, 0.10034549794339255, 0.10154306706530039, 0.10280449890825996, 0.10412780875465655, 0.1055105154917698, 0.10694969031784655 ], [ 0.09560996674598937, 0.0943171132569346, 0.09311243392894215, 0.09199812318602786, 0.09097555254728722, 0.09004523542100824, 0.08920681359830042, 0.088459067327459, 0.08779994974639758, 0.08722664523966676, 0.08673565007357391, 0.08632287255513217, 0.0859837490517072, 0.08571337156618564, 0.08550662222095629, 0.08535830996111488, 0.08526330500977823, 0.08521666704028194, 0.08521376360352688, 0.08525037599487882, 0.08532279040271604, 0.0854278728021985, 0.08556312661185171, 0.08572673260202904, 0.08591757093259088, 0.08613522551233788, 0.08637997113310249, 0.08665274405774068, 0.08695509695589794, 0.08728913930277804, 0.08765746459807121, 0.0880630660308159, 0.08850924250900584, 0.08899949727835696, 0.08953743165259796, 0.09012663664007547, 0.09077058544670007, 0.09147252993039037, 0.0922354040495697, 0.0930617371680238, 0.09395357974469687, 0.09491244345857779, 0.09593925722084123, 0.0970343398474361, 0.09819738945390417, 0.09942748894179547, 0.10072312632247837, 0.10208222810989917, 0.10350220363728123, 0.1049799979271846 ], [ 0.09308429333700409, 0.091750727866693, 0.09050956922646804, 0.08936326362513523, 0.08831337204292987, 0.08736052660308982, 0.08650441096667706, 0.08574376714287815, 0.08507642982038296, 0.0844993878898209, 0.08400887137424494, 0.08360046065033097, 0.08326921374867147, 0.08300980675470905, 0.08281668193599266, 0.08268419819377025, 0.08260677873307966, 0.08257905139279369, 0.08259597778778979, 0.08265296820230514, 0.08274597995978841, 0.08287159772276383, 0.083027094809528, 0.08321047513745354, 0.08342049581749236, 0.08365667074637427, 0.08391925579598279, 0.08420921641152349, 0.08452817862829334, 0.08487836472572138, 0.08526251497333705, 0.08568379719538176, 0.08614570618674423, 0.08665195534003906, 0.08720636316875521, 0.08781273770261608, 0.08847476195167957, 0.08919588374718346, 0.0899792132370339, 0.09082743111897879, 0.09174271032757815, 0.09272665336223675, 0.09378024678171204, 0.0949038336401992, 0.09609710385673591, 0.09735910175257849, 0.09868824931567224, 0.10008238320279512, 0.10153880309836344, 0.1030543288270517 ], [ 0.0906109840379634, 0.0892363812729308, 0.08795840538524731, 0.0867797774653161, 0.08570226987583197, 0.08472665295256104, 0.08385266818174705, 0.08307903086853068, 0.08240346381892148, 0.08182276186141677, 0.08133288529677188, 0.08092907875880556, 0.08060601065087691, 0.08035792740546763, 0.08017881635434268, 0.08006257098971196, 0.080003152784926, 0.07999474443180593, 0.08003189022859117, 0.08010962030677041, 0.08022355632209281, 0.08036999708498152, 0.08054598332670977, 0.0807493413743326, 0.08097870594622902, 0.08123352260290528, 0.08151403062634047, 0.08182122729073672, 0.08215681466261308, 0.08252313025792403, 0.08292306310959023, 0.08335995707121356, 0.08383750350028936, 0.08435962581286155, 0.08493035875479896, 0.08555372555645667, 0.0862336163844614, 0.08697367163327777, 0.08777717357150826, 0.0886469496472607, 0.08958529035431802, 0.09059388397831146, 0.09167376981251503, 0.09282531060781825, 0.09404818416374934, 0.09534139314450499, 0.09670329147730203, 0.09813162511005216, 0.09962358450249541, 0.10117586601152023 ], [ 0.08819897792808794, 0.0867830950696057, 0.0854680077420314, 0.08425673450874689, 0.0831512813103806, 0.08215257718011369, 0.08126043898549226, 0.08047356896070351, 0.07978958707492058, 0.07920509828635175, 0.07871579266010492, 0.07831657439867934, 0.0780017142470662, 0.0777650186361571, 0.07760000839200246, 0.07750009985818733, 0.07745878177958826, 0.0774697821555436, 0.07752722034624043, 0.07762574086796539, 0.07776062642461673, 0.07792788871064586, 0.07812433633738758, 0.07834761986641695, 0.0785962543924609, 0.078869620435192, 0.07916794411465747, 0.07949225774388342, 0.07984434211584951, 0.08022665192666847, 0.08064222598718641, 0.08109458414510515, 0.08158761316738486, 0.0821254442027309, 0.08271232482616564, 0.08335248902079224, 0.08405002872658772, 0.08480877073282694, 0.08563216266497235, 0.08652317158877443, 0.08748419831349454, 0.08851700983639521, 0.08962269157018696, 0.09080162009234467, 0.09205345622196297, 0.09337715734103316, 0.0947710071016629, 0.09623266005208314, 0.09775919830505868, 0.09934719717260991 ], [ 0.08585700358410447, 0.08439968641401957, 0.0830472391795378, 0.08180299929643971, 0.08066922820467674, 0.07964703475043759, 0.07873633019413755, 0.07793581950033591, 0.07724303160265689, 0.0766543890020491, 0.07616531459664608, 0.07577037133026351, 0.07546342833877372, 0.07523784595836693, 0.0750866713322288, 0.07500283640513755, 0.07497935073248363, 0.07500948259508206, 0.07508692322205379, 0.07520593030682853, 0.07536144831322465, 0.07554920421055052, 0.0757657781965914, 0.07600864965382668, 0.0762762190578867, 0.07656780685949811, 0.07688363054400066, 0.07722476119100437, 0.0775930609611291, 0.07799110306957598, 0.07842207599712885, 0.0788896739534762, 0.07939797594449072, 0.07995131618631375, 0.08055414902099514, 0.08121091187369668, 0.08192589009463827, 0.08270308769311419, 0.08354610794600711, 0.08445804761534982, 0.085441408027232, 0.08649802556426378, 0.0876290232492825, 0.08883478411585047, 0.09011494605179832, 0.09146841684945944, 0.09289340737533427, 0.09438748014012674, 0.09594761014024539, 0.09757025466154369 ], [ 0.08359339911451273, 0.08209458537256009, 0.08070457538783075, 0.07942704480221799, 0.07826453156236761, 0.07721834563336157, 0.0762885129248316, 0.07547375913257658, 0.07477153697872993, 0.07417809762204441, 0.07368860410412682, 0.07329728193948683, 0.07299759966946683, 0.07278247062566098, 0.0726444664112082, 0.07257603269991998, 0.07256969875164228, 0.07261827334863696, 0.07271502144364897, 0.07285381745944518, 0.0730292727185055, 0.07323683579393868, 0.0734728656021609, 0.07373467779766539, 0.07402056551175153, 0.07432979575524613, 0.07466258294519222, 0.07502004108394737, 0.07540411617632803, 0.07581750056537553, 0.07626353103438362, 0.07674607277939319, 0.07726939170109687, 0.07783801787751438, 0.07845660352073379, 0.07912977913874489, 0.07986201195460743, 0.08065747081560533, 0.08151990179878389, 0.08245251844838719, 0.08345791005371263, 0.08453797061187725, 0.08569385016911418, 0.08692592917184765, 0.08823381537462123, 0.08961636183885553, 0.09107170369531059, 0.09259731069443733, 0.09419005216527618, 0.09584627084892748 ], [ 0.08141591524420477, 0.07987563413656093, 0.07844790109513836, 0.07713674651008426, 0.0759450042202668, 0.07487420629419976, 0.07392451451870959, 0.07309469550805275, 0.07238214386552917, 0.07178295470760174, 0.07129204345198857, 0.07090330749717033, 0.07060982168711279, 0.07040405757291086, 0.07027811561261657, 0.07022395958469936, 0.07023364347578384, 0.0702995226899922, 0.07041444332978475, 0.07057190525079604, 0.07076619638601274, 0.07099249733358393, 0.07124695634645416, 0.07152673565228905, 0.07183003051370816, 0.07215606268225795, 0.07250504998609607, 0.07287815380044932, 0.07327740615225871, 0.07370561826229713, 0.07416627246796204, 0.07466339971724055, 0.07520144517637899, 0.07578512492782541, 0.0764192772066872, 0.0771087120740923, 0.0778580637835881, 0.07867165029107445, 0.07955334432762928, 0.0805064601566146, 0.08153365956044865, 0.08263687977098971, 0.08381728502849166, 0.08507524231149623, 0.0864103206242233, 0.0878213121592908, 0.08930627275946848, 0.09086257844457471, 0.09248699438009397, 0.0941757525420719 ], [ 0.07933150759977614, 0.07774987421496457, 0.07628429333451739, 0.07493916292045169, 0.07371762972998047, 0.07262146803931376, 0.07165099738591216, 0.07080504761471695, 0.07008097678064298, 0.06947474390229048, 0.06898103459634086, 0.06859343376100137, 0.06830463622643002, 0.06810668404474568, 0.06799121805987562, 0.06794973157408447, 0.06797381512432864, 0.06805538328696825, 0.06818687669129246, 0.06836143471547763, 0.0685730364127618, 0.06881660891561649, 0.06908810382838683, 0.06938454295557364, 0.06970403518539965, 0.07004576654668945, 0.07040996547944439, 0.07079784530062137, 0.0712115257876444, 0.07165393580667227, 0.0721286990234136, 0.07264000497131866, 0.07319246811181716, 0.07379097797663364, 0.07444054398404375, 0.07514613900176502, 0.07591254611125622, 0.07674421323248891, 0.07764512022719844, 0.07861866276830833, 0.0796675566328642, 0.08079376517366252, 0.08199845161594538, 0.08328195660476022, 0.08464380020530593, 0.08608270644183326, 0.08759664754224615, 0.08918290439862092, 0.09083813938724476, 0.09255847760942372 ], [ 0.07734612689018532, 0.07572333039774633, 0.07421980061559305, 0.07284031142045148, 0.07158833643957534, 0.0704659108100242, 0.06947353397693921, 0.0686101233427357, 0.06787302561730524, 0.06725808871510988, 0.06675979247680695, 0.06637143197606604, 0.06608534333052071, 0.0658931592654999, 0.06578608044877572, 0.06575514882764733, 0.06579151062683769, 0.06588665892607179, 0.06603264839841118, 0.06622227746054812, 0.06644923546763105, 0.06670821450024851, 0.06699498667585087, 0.06730644879520425, 0.06764063658930082, 0.06799671097476735, 0.06837491867478125, 0.06877652942801372, 0.06920375188268775, 0.06965963022745933, 0.07014792369143913, 0.07067297127307894, 0.07123954442586483, 0.07185269090634006, 0.07251757352087738, 0.07323930801745122, 0.07402280477080624, 0.07487261911805858, 0.07579281514409858, 0.07678684734622596, 0.07785746391694033, 0.07900663440673929, 0.08023550333977512, 0.08154437005882702, 0.08293269379219445, 0.08439912177951815, 0.08594153736188727, 0.08755712429646202, 0.08924244322190555, 0.0909935161658583 ], [ 0.07546451812907098, 0.07380080292194871, 0.07225922966296, 0.07084495136350104, 0.06956177876863207, 0.06841202454111026, 0.06739639010127212, 0.06651390659333337, 0.06576193830083117, 0.06513625238989737, 0.06463115365649698, 0.06423967771929706, 0.06395383159228296, 0.0637648674084631, 0.0636635735928486, 0.0636405680172911, 0.06368657934019731, 0.0637927053798884, 0.06395064046989511, 0.06415286682535329, 0.06439280766262209, 0.06466494195738243, 0.06496488223573375, 0.06528941770868787, 0.06563652548912569, 0.06600535270832854, 0.06639617221669049, 0.06681031433732908, 0.06725007694645913, 0.06771861605799966, 0.06821981914146567, 0.06875816362145662, 0.06933856338556571, 0.06996620662776248, 0.07064638891357751, 0.0713843458887352, 0.07218509046953073, 0.07305325955856783, 0.07399297524611204, 0.07500772503898098, 0.07610026490087358, 0.07727254783190225, 0.07852567944558175, 0.07985990063422393, 0.08127459607767644, 0.08276832616762772, 0.08433887898789419, 0.08598333837060153, 0.08769816375757075, 0.08947927761622418 ], [ 0.07369004202747968, 0.07198568146654358, 0.07040595375599443, 0.06895638871376362, 0.06764114027009602, 0.06646281283744214, 0.06542233143458652, 0.06451886879146619, 0.0637498393909246, 0.06311096555049515, 0.06259641479989171, 0.06219900180976861, 0.061910442883516464, 0.0617216472969801, 0.06162302799992357, 0.061604814421716024, 0.06165735203762301, 0.06177137640426024, 0.06193825293962578, 0.062150177244524575, 0.06240033382890077, 0.06268301349023181, 0.06299369122848492, 0.06332906753242921, 0.06368707626829415, 0.0640668624082547, 0.06446873261645797, 0.06489408140975082, 0.06534529534475546, 0.06582563753717822, 0.06633911484403998, 0.06689033025424446, 0.06748432342389288, 0.06812640281700119, 0.06882197349809142, 0.06957636517958507, 0.07039466555043172, 0.07128156410418457, 0.07224121156441574, 0.07327709952756772, 0.07439196410909073, 0.07558771623891779, 0.07686539990282938, 0.0782251781941228, 0.07966634566250945, 0.0811873642515224, 0.08278591919894603, 0.08445899069305537, 0.08620293684211733, 0.0880135835972784 ], [ 0.07202453276707653, 0.07027979588794545, 0.06866175816676104, 0.06717631820983011, 0.06582797475814273, 0.06461963543891869, 0.06355246974297746, 0.06262582125885138, 0.061837190887078425, 0.06118229755504584, 0.06065521647717496, 0.06024858821230841, 0.0599538857292309, 0.0597617223260753, 0.05966218111475856, 0.05964514696089582, 0.059700623911438384, 0.05981902460765122, 0.05999142223577795, 0.06020975955345825, 0.06046701297014333, 0.06075731229657385, 0.06107601854891909, 0.06141976317717385, 0.06178645244794701, 0.06217524064232053, 0.06258647541990817, 0.06302161831392919, 0.0634831429878801, 0.06397441369244157, 0.06449954636430254, 0.06506325502329414, 0.06567068653156923, 0.06632724732777535, 0.06703842635982508, 0.06780961901095647, 0.06864595723459346, 0.06955215127882908, 0.07053234820976967, 0.07159001189245803, 0.07272782816734032, 0.07394763773173887, 0.07525039780761701, 0.07663617218772914, 0.07810414784645535, 0.07965267510952545, 0.08127932749248504, 0.0829809767906586, 0.08475387883562477, 0.08659376548651619 ], [ 0.07046820613150813, 0.06868331852930457, 0.06702673825024769, 0.06550471916541815, 0.06412210200925246, 0.06288210618571854, 0.061786165552244046, 0.06083382500349453, 0.06002271143873264, 0.05934858723278461, 0.05880548727837408, 0.05838593308185613, 0.05808121051160337, 0.057881692721763814, 0.05777718719835137, 0.0577572859424248, 0.05781170013789352, 0.057930564519018166, 0.058104701202646505, 0.05832583721658369, 0.05858677378686365, 0.058881508349975395, 0.05920531216778721, 0.05955476744414747, 0.05992776816709605, 0.06032348875514818, 0.060742324186956353, 0.06118580482407495, 0.061656488737621314, 0.062157834117723264, 0.06269405433279204, 0.06326995842674571, 0.06389078027102141, 0.06456200016370092, 0.0652891633007806, 0.06607770012270361, 0.06693275394475472, 0.06785902140273824, 0.0688606110053697, 0.06994092444526785, 0.0711025643015681, 0.07234727044434715, 0.07367588594679758, 0.07508835177415824, 0.07658372810050425, 0.07816023893457309, 0.07981533590364609, 0.08154577658914791, 0.08334771272039855, 0.08521678376451744 ], [ 0.06901963013653531, 0.06719473115600323, 0.0654992640156584, 0.06393981934220948, 0.06252157287993171, 0.061248061518227884, 0.06012100225964316, 0.059140172657238685, 0.05830336820360109, 0.057606446551104425, 0.05704346090290744, 0.05660687657153361, 0.05628785695448857, 0.05607659932088742, 0.05596269769796781, 0.055935510018865035, 0.055984509155104036, 0.056099601693352555, 0.05627140335277139, 0.056491464893957746, 0.05675244660785188, 0.05704824265813281, 0.05737405861564715, 0.05772644658990905, 0.0581033026573898, 0.0585038310686209, 0.05892847923137912, 0.05937884691971101, 0.059857572702276866, 0.06036820032011533, 0.0609150277266602, 0.06150294173887256, 0.062137241704329965, 0.06282345619295986, 0.0635671573729833, 0.06437377830597418, 0.06524843877042034, 0.06619578528400195, 0.06721985066530915, 0.06832393772844719, 0.0695105305733111, 0.07078123551185306, 0.07213675209361757, 0.07357687312158777, 0.0751005111374082, 0.07670574772950099, 0.07838990125874126, 0.08014960823145767, 0.08198091355581469, 0.08387936523472424 ], [ 0.06767576679043383, 0.06581086598375686, 0.06407602136271542, 0.062478137637109646, 0.061022714947019975, 0.059713610759446194, 0.05855284284047513, 0.05754045337673355, 0.05667445159940423, 0.055950846672845805, 0.055363774711386926, 0.054905714764787686, 0.05456778000738597, 0.054340063675091144, 0.05421201556313694, 0.054172824468571114, 0.054211784463205515, 0.054318627427929755, 0.05448380977537485, 0.05469874672849981, 0.05495599217818472, 0.05524936562780301, 0.05557402996810262, 0.05592652495164555, 0.056304761510736843, 0.05670798178130062, 0.05713668913246038, 0.057592551884913516, 0.05807828389769401, 0.058597504919867545, 0.05915458359302553, 0.059754466252552214, 0.060402495166316524, 0.06110422048409112, 0.061865210835088474, 0.06269086807138413, 0.06358625197905882, 0.06455592075412642, 0.06560379259601165, 0.06673303289459803, 0.06794597022933589, 0.06924404287140837, 0.0706277758354929, 0.07209678693498633, 0.07364981891013525, 0.07528479364166091, 0.07699888380070319, 0.07878859703037863, 0.08064986786745439, 0.08257815302161632 ], [ 0.06643208866066587, 0.06452702508793598, 0.06275213480278778, 0.06111461081230257, 0.05962026414684799, 0.058273273713778245, 0.057075974531452786, 0.056028705722278103, 0.05512973738683194, 0.054375290075112485, 0.05375965248358444, 0.053275393423368025, 0.05291365468470056, 0.05266450385708775, 0.052517321706654005, 0.05246119785454854, 0.052485310921969015, 0.05257927407370443, 0.05273343279842128, 0.05293910767583392, 0.05318877996379852, 0.05347622164312072, 0.05379657398650621, 0.05414637992333238, 0.05452357574282084, 0.05492744734543732, 0.05535855562356949, 0.05581863487844116, 0.056310467643202904, 0.056837738994702236, 0.057404873447779024, 0.05801685782819868, 0.058679054055240834, 0.05939700643314195, 0.06017624872174517, 0.0610221167866814, 0.06193957287932941, 0.0629330474574194, 0.06400630386868039, 0.06516233018838789, 0.06640326110091341, 0.06773033107830974, 0.06914385840493871, 0.07064325800217822, 0.0722270796755191, 0.07389306744555305, 0.0756382350847732, 0.07745895285576417, 0.0793510406790413, 0.08130986346475841 ], [ 0.06528276804508215, 0.06333717625696503, 0.061521369960988614, 0.05984280273269497, 0.058307580949306076, 0.05692020406499599, 0.05568333977687609, 0.05459765645218082, 0.053661733525422965, 0.05287206554287992, 0.052223167459300494, 0.051707778814710344, 0.051317154268703986, 0.051041419515625325, 0.05086996632149475, 0.05079185899196256, 0.0507962267736752, 0.05087262155975337, 0.051011326513629926, 0.05120360758029577, 0.05144190536849568, 0.051719969034689915, 0.05203293644957424, 0.05237736623850221, 0.05275122757571381, 0.05315385324536239, 0.05358586080238488, 0.0540490459505718, 0.054546251702047625, 0.055081216609963644, 0.05565840541988888, 0.056282825845260114, 0.05695983576384149, 0.05769494583701071, 0.05849362322412085, 0.05936110254410671, 0.06030221038322209, 0.06132120935882062, 0.062421666981740814, 0.06360635334482001, 0.0648771701040835, 0.06623511146928189, 0.06768025616802824, 0.06921178777301241, 0.07082803953161645, 0.07252655900275759, 0.07430418741474243, 0.07615714868070977, 0.07808114337149223, 0.0800714435523617 ], [ 0.06422093049086407, 0.06223421687642233, 0.060376407313634896, 0.05865518743916615, 0.05707694225522899, 0.05564648958866865, 0.05436684423156778, 0.05323903574829488, 0.05226200198207927, 0.051432575830299976, 0.05074557503147385, 0.05019399454611348, 0.04976929036457837, 0.04946173425336169, 0.049260812758112935, 0.049155641620152915, 0.049135368551849086, 0.04918954213611798, 0.04930843109596386, 0.049483284932214794, 0.04970653287124685, 0.04997192257708978, 0.050274602986076326, 0.050611157069430514, 0.05097959066116469, 0.051379283108586714, 0.05181090479021353, 0.05227630580804535, 0.05277837961423341, 0.05332090510004975, 0.05390837079681678, 0.054545785279204985, 0.055238478525144845, 0.055991899731934115, 0.05681141774785453, 0.05770213068375041, 0.05866869127630013, 0.05971515409411797, 0.060844849690988786, 0.0620602893799013, 0.06336310256290693, 0.06475400668897946, 0.06623280812648047, 0.06779843070986206, 0.06944896758503097, 0.07118175130221716, 0.07299343689033111, 0.07488009283732462, 0.07683729540468066, 0.07886022241227354 ], [ 0.06323895899412695, 0.061210291597526265, 0.05930917241288062, 0.05754349088600994, 0.05591989349693636, 0.05444351337854118, 0.05311772579948391, 0.051943952683113456, 0.050921539179581435, 0.05004772159597649, 0.04931769865672282, 0.04872480797063126, 0.04826079841513392, 0.04791617902360224, 0.047680617795747095, 0.04754336080226355, 0.04749364314151528, 0.04752106789560613, 0.04761593582144309, 0.04776951559539911, 0.04797425078966976, 0.04822390465704091, 0.048513646992447, 0.04884008895870056, 0.049201272168405696, 0.049596617944634984, 0.05002684196011489, 0.050493838718589173, 0.05100053983009964, 0.051550749872830925, 0.05214896385817543, 0.05280017086744833, 0.05350964918478097, 0.054282759041656796, 0.055124739723928784, 0.0560405180911379, 0.05703453538106615, 0.058110598449326145, 0.05927176033985181, 0.06052023340129937, 0.061857336230825656, 0.06328347375458335, 0.06479814795706562, 0.06639999532545811, 0.06808684609270646, 0.06985579988170262, 0.07170331234166126, 0.07362528774329612, 0.07561717314999197, 0.07767405059005422 ], [ 0.062328831169603326, 0.060257145150434586, 0.05831120314891221, 0.056499071222109926, 0.05482764030432284, 0.05330235509304422, 0.051926963519589406, 0.0507033097009843, 0.04963119396298909, 0.04870832072398116, 0.04793034843933687, 0.047291046055395206, 0.04678254907182641, 0.04639569750272455, 0.046120429864699615, 0.045946203239020024, 0.045862409828509906, 0.0458587645783333, 0.04592564496301981, 0.046054371363142554, 0.046237423200597684, 0.04646859129902836, 0.04674307044852686, 0.04705749797980166, 0.04740994466091923, 0.04779986389707637, 0.04822800450572452, 0.04869629163531315, 0.04920767995591702, 0.049765983207923414, 0.05037568456651867, 0.05104173298241878, 0.05176933153420615, 0.05256372466977499, 0.053429991807691375, 0.05437285492176239, 0.055396507315088404, 0.05650446976272082, 0.057699478626374805, 0.05898340857510395, 0.06035723040309061, 0.061821002363138304, 0.06337389165431352, 0.06501422137724343, 0.06673953748339227, 0.06854668999444995, 0.07043192298688063, 0.07239096841145519, 0.07441913961836624, 0.07651142136072975 ], [ 0.06148246947715194, 0.059366489237370514, 0.057374031976457164, 0.05551331471395328, 0.053791456214890204, 0.052214208310247597, 0.05078570223628209, 0.04950823213632176, 0.04838209941463776, 0.04740553986601942, 0.046574749892096715, 0.04588401900873373, 0.045325964597163544, 0.04489185354164393, 0.04457198627125972, 0.04435611349471459, 0.04423385526651959, 0.044195095494210426, 0.04423033127720151, 0.044330963900108815, 0.04448952538125402, 0.04469984017159841, 0.04495712545776825, 0.04525803558769955, 0.045600656777626314, 0.04598445798916429, 0.046410203200941025, 0.046879829664790845, 0.047396296418042286, 0.047963407457234486, 0.048585614559362625, 0.049267805644035254, 0.05001508559789472, 0.050832557383438635, 0.05172511178092211, 0.052697234066535724, 0.05375283520253984, 0.05489511370964372, 0.05612645243135465, 0.05744835210157579, 0.05886140126336864, 0.0603652799304222, 0.06195879265703932, 0.06363992552589318, 0.06540592101737851, 0.06725336474340307, 0.06917827850171514, 0.07117621489140503, 0.073242349679927, 0.07537156909907351 ], [ 0.060692084372450036, 0.058530362148464146, 0.056489560672672384, 0.054578023995204235, 0.05280308246355913, 0.05117078964225218, 0.04968566860240954, 0.04835048849824665, 0.04716609469827162, 0.046131315076082875, 0.04524296063156853, 0.0444959304526722, 0.04388342020133195, 0.04339722175135468, 0.04302809162595602, 0.04276615944534092, 0.04260134572676472, 0.04252376092192221, 0.04252406337104961, 0.04259376122872147, 0.04272545073620738, 0.042912989279138655, 0.04315160588097194, 0.043437954107000555, 0.04377011314803476, 0.04414754266977332, 0.044570996426126094, 0.04504239911864985, 0.04556469085464001, 0.046141643947215816, 0.04677765767518325, 0.047477537804544424, 0.04824626890034846, 0.04908878842444022, 0.05000977204210277, 0.05101343924931636, 0.052103387306114475, 0.05328245958877891, 0.054552652055197395, 0.05591505884904936, 0.05736985547847991, 0.05891631579076956, 0.0605528573402447, 0.06227710881337715, 0.06408599292157754, 0.06597581849738535, 0.0679423762782509, 0.0699810338617983, 0.07208682640860681, 0.07425454072723942 ], [ 0.059950491834617016, 0.05774146139424896, 0.055650406895605346, 0.0536857770688288, 0.05185509766084367, 0.050164717062758664, 0.04861955580126043, 0.047222879136972415, 0.04597611506329975, 0.044878740440794644, 0.04392825489253943, 0.04312025515538088, 0.04244861253941239, 0.04190574467876501, 0.041482962126729875, 0.04117086272458406, 0.04095974343983795, 0.040840000732016914, 0.0408024955439456, 0.04083886611698015, 0.040941779249365984, 0.04110511697974687, 0.04132410021839259, 0.041595353429340766, 0.0419169154225191, 0.04228820123678072, 0.0427099196210035, 0.0431839502877253, 0.043713185266492774, 0.04430133944557275, 0.04495273667560165, 0.04567207936799671, 0.046464211006430924, 0.047333882031189885, 0.04828552983909573, 0.04932308297637151, 0.05044979796624325, 0.05166813476439444, 0.05297967387705708, 0.05438507509547244, 0.05588407498516664, 0.05747551803399591, 0.05915741489761769, 0.060927020533097766, 0.06278092510200384, 0.06471515119086114, 0.06672525193614859, 0.06880640585536688, 0.07095350540857696, 0.07316123742818496 ], [ 0.05925138969771922, 0.05699343278940995, 0.054850205089021865, 0.0528302388654318, 0.05094123861090059, 0.04918983837676229, 0.04758135785450446, 0.04611957437518296, 0.04480653158622385, 0.04364240703244003, 0.04262545915074717, 0.041752068725017404, 0.04101688095991346, 0.04041304335663024, 0.03993252361468219, 0.03956648311581779, 0.039305676882363465, 0.039140850862653176, 0.03906311138906387, 0.03906424820281557, 0.039136999750240604, 0.039275255979097104, 0.03947419865209799, 0.039730381986137514, 0.04004175752196029, 0.04040764716184091, 0.04082866799744469, 0.041306612490328846, 0.04184428813594461, 0.04244532203572255, 0.04311393765979873, 0.043854713151617306, 0.04467233234809771, 0.04557134081229124, 0.04655591925123982, 0.04762968555602941, 0.04879553441645562, 0.05005552030762361, 0.051410786053967955, 0.052861535641484464, 0.054407046919360685, 0.05604571762660965, 0.057775136942091486, 0.05959217446108974, 0.061493078989606334, 0.06347358058587528, 0.06552899061880117, 0.06765429603481414, 0.06984424536190764, 0.07209342512758787 ], [ 0.05858958104967002, 0.05628110347848956, 0.0540838485118329, 0.052006411518684896, 0.05005665794639083, 0.04824149519809129, 0.046566638780096904, 0.04503638750499901, 0.043653426439115545, 0.04241867861005236, 0.04133122612988667, 0.040388317550475755, 0.03958547088332022, 0.03891667169994243, 0.03837465489281331, 0.03795124926631823, 0.03763775810826562, 0.037425347304259414, 0.03730541521280261, 0.037269924179799754, 0.03731168046571115, 0.03742455580354256, 0.037603648666465705, 0.03784538620493939, 0.038147568977714624, 0.038509360730228176, 0.038931225370810126, 0.03941481363816616, 0.03996280313222901, 0.040578697438055616, 0.041266592732595614, 0.042030923023897264, 0.04287619743296674, 0.043806744136493055, 0.04482647536851306, 0.04593868612000313, 0.04714589606504139, 0.04844974022292753, 0.04985090953468508, 0.051349138504362714, 0.052943233833128864, 0.05463113586041021, 0.05641000369608919, 0.05827631505773882, 0.06022597276354699, 0.06225441126779641, 0.06435669826961568, 0.06652762804254538, 0.06876180456365824, 0.07105371368201273 ], [ 0.05796113714743659, 0.05560065080901944, 0.05334766376389657, 0.051210814228595344, 0.049198109012834314, 0.047316712529735065, 0.045572726499518615, 0.04397097253838323, 0.04251479378021738, 0.0412058946071638, 0.040044238402064294, 0.03902802105377001, 0.03815373234285009, 0.03741630876744255, 0.03680937123631748, 0.036325531407375475, 0.035956743360644076, 0.03569467416389434, 0.035531067971460856, 0.03545808268759524, 0.03546858428012159, 0.03555638980019781, 0.03571645476590191, 0.035945003285722595, 0.03623960037085285, 0.03659916605971171, 0.037023931160511094, 0.03751533535776965, 0.038075870508488575, 0.03870887511207721, 0.03941828972174209, 0.04020838676154915, 0.04108349103810156, 0.042047708521084144, 0.04310468032365524, 0.044257376228410805, 0.045507937944026966, 0.04685757720421842, 0.04830652863032604, 0.04985405271990179, 0.05149848094183987, 0.05323729297280227, 0.05506721557464897, 0.05698433324340856, 0.058984202194392724, 0.061061961102558904, 0.06321243396196974, 0.06543022222295165, 0.067709784868335, 0.07004550624325605 ], [ 0.05736349642195748, 0.05494970329430875, 0.05263951367525994, 0.05044158816993901, 0.04836405303517329, 0.04641430857233179, 0.044598825775209065, 0.04292294076643009, 0.0413906602749192, 0.04000449459522425, 0.03876533620358706, 0.03767240154510698, 0.0367232498213697, 0.035913885935853825, 0.03523894600449454, 0.034691954687541424, 0.03426563602163808, 0.03395225503138563, 0.03374396682506383, 0.03363315261866327, 0.03361272678336839, 0.03367640388366962, 0.03381891843097094, 0.03403619215710273, 0.03432544428173368, 0.03468524035865803, 0.03511547586292126, 0.03561729252386696, 0.03619292883316286, 0.036845510910791544, 0.03757879526896771, 0.038396879971979166, 0.03930390422914683, 0.04030375778741414, 0.04139982024077268, 0.04259474669033456, 0.04389031069448694, 0.04528730908952394, 0.04678552707487107, 0.04838375683177451, 0.050079859448062376, 0.051870858233492564, 0.053753051467328464, 0.055722133829133276, 0.05777331774217701, 0.0599014481474722, 0.062101106465295444, 0.06436670145510702, 0.06669254623694901, 0.06907292186333566 ], [ 0.05679549994371514, 0.054327373894472133, 0.05195882854970691, 0.04969852609731093, 0.04755468778269972, 0.04553492346892569, 0.04364604835031851, 0.041893893803191716, 0.0402831225513916, 0.03881706137033735, 0.037497566743424, 0.036324939401299806, 0.03529790182486525, 0.0344136483185552, 0.03366797059470995, 0.0330554541187102, 0.03256973337080928, 0.03220378921416043, 0.03195026956744702, 0.031801815395800175, 0.031751376583722096, 0.031792505079206626, 0.03191961461456406, 0.03212819689257907, 0.03241498382152958, 0.032778045231157495, 0.033216812655960735, 0.03373202301799775, 0.03432558149935846, 0.03500034997186369, 0.03575987490526162, 0.03660807531076354, 0.03754891569086833, 0.038586090256303385, 0.039722742546537106, 0.04096123944642973, 0.04230301140261083, 0.04374846271983628, 0.045296948478503934, 0.046946808889941946, 0.04869544835324425, 0.050539445150856364, 0.05247467827561102, 0.05449645975186643, 0.056599663382334665, 0.05877884358979986, 0.06102834054849709, 0.06334236989528794, 0.06571509689314815, 0.06814069600229643 ], [ 0.05625736706230192, 0.05373422936440602, 0.05130656940783734, 0.0489830300262522, 0.046771900671080245, 0.04468096931597585, 0.042717361879230246, 0.04088737389922834, 0.039196301618401715, 0.03764828211203673, 0.03624615418620992, 0.03499135288916184, 0.03388385007632929, 0.0329221512101643, 0.032103354570426734, 0.03142327393621189, 0.030876620613306358, 0.03045723648490107, 0.03015836719332944, 0.029972963510057495, 0.029893998633246346, 0.029914788536805438, 0.03002930091217947, 0.030232435823590035, 0.030520258903934856, 0.030890167168999328, 0.03134096959718633, 0.031872870112530344, 0.03248734919017079, 0.033186950773693026, 0.03397499178737658, 0.034855220340224334, 0.03583145414222419, 0.03690723172267367, 0.0380855056468904, 0.03936839983927166, 0.04075704378466759, 0.04225148655720767, 0.043850684956704696, 0.04555255367949812, 0.04735406191501279, 0.04925135991519596, 0.05123992035772807, 0.0533146819439339, 0.05547018588312575, 0.0577006991190279, 0.06000032096215936, 0.062363072014607356, 0.06478296587075773, 0.06725406510548869 ], [ 0.05575061779003178, 0.05317220246442854, 0.050685130084812534, 0.04829800369582419, 0.04601915261232659, 0.043856507093408256, 0.04181746239216761, 0.03990873516510644, 0.03813621670372933, 0.036504828982784183, 0.03501839088527354, 0.03367950290258669, 0.03248945888935033, 0.03144819297730473, 0.03055426863042431, 0.029804915364194967, 0.02919611722206598, 0.028722755867743477, 0.02837880984333379, 0.02815760942551808, 0.028052142690418395, 0.028055402377362367, 0.02816075535508042, 0.02836230846000696, 0.02865523842793726, 0.029036051763930364, 0.029502744037534348, 0.030054837281451533, 0.030693287606980892, 0.03142027056431029, 0.03223886649920673, 0.03315267968561619, 0.03416543147471725, 0.035280568197675014, 0.03650091932367426, 0.03782843170887004, 0.03926399373096307, 0.04080735098975461, 0.0424571050611039, 0.044210779790028264, 0.04606493618759284, 0.048015316780106544, 0.05005700239162957, 0.05218456781565242, 0.05439222674594555, 0.056673960031797525, 0.059023624415670634, 0.061435041251688985, 0.06390206630390305, 0.06641864268749131 ], [ 0.05527795088133204, 0.05264445643920441, 0.05009818787256397, 0.047647689555935284, 0.04530130211589438, 0.04306705942897662, 0.04095257824464121, 0.03896494233429653, 0.037110583558175765, 0.03539516255015088, 0.0338234517753541, 0.0323992235496794, 0.03112514544296823, 0.030002685767036828, 0.029032033179877948, 0.028212037320188028, 0.027540181789090113, 0.027012605713564314, 0.02662419345623366, 0.026368751086172725, 0.02623928085883689, 0.026228350925225675, 0.026328539165545763, 0.026532911923560037, 0.026835485577431425, 0.027231615099910577, 0.02771826028847459, 0.02829409577742559, 0.028959451974188557, 0.029716096604338132, 0.030566886700413232, 0.03151533554316855, 0.03256514633812566, 0.033719763705458754, 0.03498198617783451, 0.036353669857458006, 0.03783553797831187, 0.039427096275937816, 0.04112664215211943, 0.04293134797573322, 0.04483739568778856, 0.046840140472644586, 0.04893428442081103, 0.05111404556603993, 0.05337331237394564, 0.055705777981512536, 0.05810505187191914, 0.06056474912203837, 0.06307855895391991, 0.06564029521321754 ], [ 0.05484308846272122, 0.052155213353516666, 0.04955051488949881, 0.04703746284225694, 0.0446243822795685, 0.04231937151131336, 0.040130217054950346, 0.03806430722137475, 0.03612854552594029, 0.034329264119252294, 0.03267213573756874, 0.03116208048889668, 0.02980316176371135, 0.028598464904662932, 0.02754995465333645, 0.026658314381945637, 0.0259227821493828, 0.025341013788148806, 0.024909016689501746, 0.02462120291226322, 0.02447060081643245, 0.024449239269460833, 0.024548682815031034, 0.02476066041431044, 0.02507770557854736, 0.025493718976764494, 0.02600437663066787, 0.02660733290029233, 0.02730220034585641, 0.028090321125799053, 0.028974371470695155, 0.029957858634085614, 0.03104457710533942, 0.03223808794117347, 0.033541273475265025, 0.03495600229742448, 0.036482919896719986, 0.03812136233704293, 0.039869376520386676, 0.041723822351594476, 0.043680529379690664, 0.045734482130257846, 0.04788001275029546, 0.050110985183959775, 0.05242096066696794, 0.05480333911990316, 0.05725147470901568, 0.05975876640179839, 0.06231872591933643, 0.06492502629463875 ], [ 0.05445059943288868, 0.05170955956197599, 0.04904776444239346, 0.046473597841947684, 0.04399534635575442, 0.041621136028335254, 0.03935887115244943, 0.03721617735334152, 0.03520035003393438, 0.0333183070594414, 0.031576540948351856, 0.02998106092935016, 0.0285373098757924, 0.027250037306053396, 0.02612311050989343, 0.025159255171965638, 0.02435973715520646, 0.023724026945913506, 0.02324951982928161, 0.022931404417140453, 0.022762765347988594, 0.022734966657846536, 0.022838298992407163, 0.02306280775553664, 0.02339917393357325, 0.023839508454318033, 0.024377943571688453, 0.025010949057727137, 0.025737352065527845, 0.026558085622403412, 0.027475725131937623, 0.028493892487755974, 0.02961661343900173, 0.030847707209184522, 0.032190270780825134, 0.03364629755496505, 0.035216445783745734, 0.03689995054948187, 0.03869465723297899, 0.040597145696131196, 0.042602912360833446, 0.04470658034972499, 0.046902113765771566, 0.049183019109103575, 0.051542523379992065, 0.05397372382381824, 0.056469708270538196, 0.05902364767060065, 0.06162886396424347, 0.06427887712342177 ], [ 0.054105714546713445, 0.05131324261217825, 0.04859624810328709, 0.04596302346713379, 0.043421800268769434, 0.04098070147358683, 0.03864770134400076, 0.03643059629173107, 0.03433698872164735, 0.03237428287966378, 0.030549686375233233, 0.028870203131497015, 0.027342593678199863, 0.025973269289516432, 0.024768082198242815, 0.023731981909201175, 0.02286853445244038, 0.022179349335660657, 0.021663518774467483, 0.02131722208481935, 0.02113365443025454, 0.021103384158971075, 0.021215136925416964, 0.021456887871160464, 0.0218170631901377, 0.022285636476605718, 0.0228549480703933, 0.023520150460391912, 0.024279260933823814, 0.025132865702757308, 0.026083561109018914, 0.027135237781262644, 0.028292315895884393, 0.029559027474324737, 0.030938818754799334, 0.03243391672424961, 0.034045074158197054, 0.03577148197269417, 0.03761081981581822, 0.03955940684543385, 0.041612413640554444, 0.04376410088992695, 0.04600805822047543, 0.048337424975393575, 0.05074508238611715, 0.05322381263448058, 0.05576642459299565, 0.05836584874032357, 0.061015205209180766, 0.06370784949171814 ], [ 0.05381414593089348, 0.05097247397582786, 0.048202719711913686, 0.045513086297967395, 0.04291174225404126, 0.04040678591548665, 0.038006222702062845, 0.03571796030936529, 0.03354982576790533, 0.031509604996237915, 0.029605098943344156, 0.027844179763663435, 0.026234815633038873, 0.024785015796063774, 0.023502633895247507, 0.0223949680089275, 0.021468123924853928, 0.020726174429316697, 0.0201702461176053, 0.019797762728471033, 0.019602113099065628, 0.019572944309648965, 0.01969711139239525, 0.01996011510049851, 0.020347722717525205, 0.02084744630847203, 0.021449632770629487, 0.022148044445346845, 0.02293992526355705, 0.02382562931841713, 0.024807933827078694, 0.025891174446628164, 0.027080336150503953, 0.028380213151125294, 0.02979472112270869, 0.031326409155722074, 0.032976183302855115, 0.03474322392995094, 0.03662505924839715, 0.03861774848151828, 0.040716128601995985, 0.04291408541564263, 0.0452048196191061, 0.04758108862488113, 0.05003541374099419, 0.05256024898624142, 0.055148112365185464, 0.05779168313992771, 0.060483869969915685, 0.06321785518413289 ], [ 0.05358192255339516, 0.05069375087510061, 0.047874181613449654, 0.04513133876163053, 0.042473329937722515, 0.03990821941288199, 0.037444018447261446, 0.03508870006918407, 0.032850244795298314, 0.030736720765074235, 0.028756394833849293, 0.026917858614251628, 0.025230134028389372, 0.023702697364795213, 0.022345334446356963, 0.021167725420471357, 0.02017867798032459, 0.019385007120642984, 0.018790204858758517, 0.018393215381224, 0.01818773477747079, 0.018162386661991128, 0.01830186773701136, 0.018588827447761826, 0.019006020366547163, 0.019538248084244925, 0.02017375204253111, 0.020904919270247582, 0.021728328821569665, 0.022644265740355652, 0.023655871119334107, 0.024768102305215197, 0.025986661973005216, 0.027317026186818853, 0.028763663589366533, 0.03032949497780185, 0.03201560094401527, 0.033821151466541105, 0.03574350975132396, 0.03777845418597489, 0.03992046476685579, 0.04216302980283381, 0.04449894099786117, 0.046920557044602886, 0.04942002583130232, 0.051989462641886496, 0.05462108643820551, 0.057307318947398905, 0.06004085241881788, 0.0628146920871064 ], [ 0.053415250752849856, 0.050483707892772574, 0.0476177257851954, 0.04482536752342103, 0.042114692874216285, 0.03949373657345859, 0.036970507367124227, 0.0345530169218651, 0.032249347881898045, 0.030067768129686496, 0.02801689182726877, 0.026105874553352115, 0.024344607122340736, 0.022743839121353786, 0.021315122158337415, 0.02007042790916129, 0.01902129699254768, 0.01817745498690281, 0.017545023843193442, 0.017124728523691766, 0.016910710607242165, 0.01689051894225262, 0.017046477169853753, 0.017358105851174678, 0.017804918715620247, 0.01836889753266026, 0.019036199040561922, 0.019797956348387272, 0.020650261312028222, 0.02159352299408694, 0.022631425007860362, 0.02376969247678306, 0.02501485076323816, 0.026373120382831995, 0.027849547179884176, 0.029447417081721525, 0.03116795715262701, 0.03301028681121592, 0.03497156007612684, 0.03704723232528388, 0.03923139015308028, 0.04151709541781924, 0.043896709560260073, 0.046362178218256334, 0.04890526723373636, 0.05151774888038468, 0.05419154188458732, 0.05691881125999983, 0.05969203485100658, 0.0625040433856622 ], [ 0.05332040535141788, 0.05034900498148274, 0.04744041794247186, 0.04460267216062523, 0.04184380323777947, 0.039171835360772095, 0.036594785167349424, 0.03412069936806208, 0.03175773796543846, 0.02951431380757796, 0.02739929385883416, 0.025422254821650177, 0.023593761533777322, 0.021925597053599536, 0.02043081844201994, 0.019123453233815705, 0.018017622565954506, 0.01712594129569171, 0.016457272753021286, 0.01601430220390719, 0.015791760592895623, 0.015776157046180787, 0.01594737965850714, 0.01628174121663307, 0.01675550480803345, 0.01734792876178981, 0.018043270591305317, 0.018831638621077604, 0.01970886401481947, 0.020675670906845297, 0.021736423860601328, 0.022897696675852633, 0.024166864046472086, 0.02555087178050745, 0.027055289514018283, 0.028683693525633953, 0.030437373680932238, 0.03231531681965287, 0.0343143950220266, 0.03642968156983781, 0.038654825751570865, 0.040982433613852544, 0.043404419545224976, 0.04591230933925188, 0.04849748736144608, 0.05115138842471872, 0.05386563958664787, 0.056632159225500134, 0.05944322128933265, 0.06229149221773587 ], [ 0.053303652380014915, 0.050296253173813504, 0.04734922646932587, 0.04447059691889888, 0.04166840901820628, 0.03895070887964484, 0.036325549960019646, 0.033801034704462565, 0.03138540592221747, 0.029087201765990903, 0.026915484292081925, 0.02488014023111019, 0.02299222868336004, 0.02126430781287166, 0.019710607145112313, 0.01834683032383699, 0.01718930898499692, 0.016253261004234063, 0.015550147927784306, 0.015084623058207914, 0.014852117507274056, 0.01483825613557227, 0.015020673860038705, 0.015372707924347412, 0.01586767221060348, 0.016482455539987093, 0.01719977654968601, 0.018009036177424696, 0.018906045717027097, 0.01989199507998009, 0.020971992383445128, 0.02215344595538831, 0.023444505095122137, 0.024852723963906698, 0.026384055611534892, 0.028042220336923256, 0.029828433051970984, 0.03174142917332405, 0.033777704616489795, 0.035931882461097145, 0.038197131020462134, 0.040565577658050654, 0.043028683159918306, 0.04557755876270136, 0.04820322049678188, 0.05089678345952443, 0.05364960291660223, 0.05645337085753743, 0.059300176781349294, 0.0621825407807431 ], [ 0.05337119955154654, 0.050331973348311417, 0.04735099079739599, 0.04443630960363094, 0.0415960235378163, 0.038838244316784135, 0.036171107381349606, 0.0336028140805503, 0.031141725212344592, 0.028796521876047223, 0.026576447081803862, 0.02449163193880751, 0.022553487808078, 0.02077510274315697, 0.019171509229873637, 0.017759591751612003, 0.016557306759518015, 0.015581881668999419, 0.014846892579276702, 0.014358698598532183, 0.014113448912621104, 0.01409617240279508, 0.014282752093055469, 0.014644184084112782, 0.015151510629249262, 0.015779884193519795, 0.01651100563986865, 0.017333941443932382, 0.01824470163687974, 0.019245020332946134, 0.0203407117541091, 0.021539893365821954, 0.022851304176272624, 0.024282889723192754, 0.025840762410905417, 0.027528576246350314, 0.02934728969078519, 0.031295242598238744, 0.033368450334039866, 0.035561018723548846, 0.03786559991526789, 0.0402738324353742, 0.04277673146718765, 0.04536501371821713, 0.048029353947874893, 0.05076057785254285, 0.05354979978268929, 0.05638851499923539, 0.059268655920971296, 0.06218262081262359 ], [ 0.05352916605797037, 0.05046257774936649, 0.04745241681278818, 0.04450681287096226, 0.04163395414367783, 0.03884206957874763, 0.036139434002736795, 0.033534408713634875, 0.031035532650888462, 0.028651680831132512, 0.02639230518402973, 0.024267764752798567, 0.02228973160475627, 0.020471617141510707, 0.018828891052678123, 0.01737905881451623, 0.01614094794476468, 0.01513291626294897, 0.01436980717932229, 0.013859091147555572, 0.013597493485714514, 0.01356983363727157, 0.013751066638552148, 0.014110900573456145, 0.014619162359154822, 0.015250162038152156, 0.015985234354580196, 0.016813510072806546, 0.01773137254690191, 0.01874109431388444, 0.019849055231851386, 0.02106384961292202, 0.02239452128778421, 0.023849104858635603, 0.025433582113534508, 0.02715128560467817, 0.029002710806275648, 0.03098564929529355, 0.03309553502967695, 0.035325900786645215, 0.037668862638283035, 0.04011557666494242, 0.04265663646369135, 0.04528239872080812, 0.04798323649329105, 0.05074972684490675, 0.0535727826213222, 0.05644373885455733, 0.05935440365147029, 0.06229708217164909 ], [ 0.05378355987007116, 0.05069435967652318, 0.04766008142720187, 0.044688966213502185, 0.041789343956515936, 0.03896961658351104, 0.03623826274543597, 0.03360387581674759, 0.031075249550125833, 0.028661527361061187, 0.026372429975037234, 0.02421856876068121, 0.02221183287497605, 0.02036579888339214, 0.01869604170306911, 0.017220121024581148, 0.015956899172687937, 0.014924798694579643, 0.014138801314142982, 0.013606592115282343, 0.013325133478225514, 0.013279429865680339, 0.013444541453012656, 0.013790250008529932, 0.014286511269355394, 0.014907883718333683, 0.01563608237146033, 0.016460714954916206, 0.017378674215434164, 0.018392697951077203, 0.01950951204328251, 0.020737876873973143, 0.02208678755821274, 0.023564012808390888, 0.02517508005592141, 0.02692272988651088, 0.028806788251334786, 0.030824356600332788, 0.03297020370283484, 0.0352372528578749, 0.03761708301742905, 0.04010039094025107, 0.042677386531022314, 0.045338111888114874, 0.04807268616767708, 0.050871484528222495, 0.0537252618572803, 0.056625232187315834, 0.05956311375580429, 0.06253114823873895 ], [ 0.054140249230348034, 0.051033474854511186, 0.047980425961471715, 0.04498949362310548, 0.04206919607662548, 0.03922816402628042, 0.036475145545130754, 0.03381904109751663, 0.031268981407854064, 0.028834462046822953, 0.026525546980583816, 0.024353145843965314, 0.022329351207359308, 0.020467785017996874, 0.018783839063857426, 0.017294599911638987, 0.01601814585058658, 0.014971869783700716, 0.014169669661786708, 0.013618399277242023, 0.013314760156182071, 0.01324423147942402, 0.013382997161444688, 0.013702335209335297, 0.014173765229331448, 0.014773265258127602, 0.015483727069020164, 0.01629566610840958, 0.017206613405865316, 0.01821967581677339, 0.01934167639271492, 0.02058120422007599, 0.02194683515106395, 0.023445713508707756, 0.02508259888339919, 0.026859390732177836, 0.02877506693829329, 0.0308259269111757, 0.033006018521838036, 0.035307642957976004, 0.03772185949409233, 0.04023894187271769, 0.042848762709263556, 0.04554109969191803, 0.04830586779681528, 0.05113328693543904, 0.054013996205498724, 0.05693912569636654, 0.059900335620106916, 0.06288983101734853 ], [ 0.05460491591126342, 0.05148589910992488, 0.04841971935396389, 0.045414953521353045, 0.042480351450753594, 0.039624824315095605, 0.036857450208032425, 0.034187505751430786, 0.031624534007014, 0.02917845922417221, 0.026859756359599467, 0.024679675063183065, 0.022650499516904607, 0.020785791111818584, 0.019100504698658458, 0.01761079232766741, 0.016333234974441134, 0.015283242247869566, 0.014472551333054844, 0.013906227670303483, 0.013580182095465626, 0.013480486774958323, 0.013585210155391192, 0.013868295612581249, 0.014304080163404759, 0.014871039212791395, 0.015554012402196409, 0.01634486646726094, 0.017241928230826015, 0.018248610976711866, 0.019371622585271465, 0.02061908510225739, 0.021998833548502555, 0.02351708558453643, 0.02517758000592649, 0.02698118608898594, 0.028925909940106256, 0.031007182954875506, 0.03321831166457307, 0.035550987076381615, 0.03799578128769518, 0.040542588706049404, 0.04318099271410444, 0.04590055448246572, 0.048691029765605076, 0.05154252375415337, 0.05444559520819061, 0.05739132055300044, 0.060371327303690624, 0.06337780464033498 ], [ 0.05518298108339476, 0.052057351165353254, 0.048983977529700164, 0.045971654281139536, 0.04302940006222346, 0.040166449907385916, 0.03739226137436563, 0.03471654159585997, 0.03214930240363983, 0.029700949723658922, 0.027382409524761224, 0.025205283334014, 0.023182008297975117, 0.021325966085690474, 0.01965143962920895, 0.0181732630163358, 0.016905973742739222, 0.015862315245709305, 0.015051128755094354, 0.014475044104491904, 0.014128783056297228, 0.013998982809781575, 0.014065964404231506, 0.01430701190688988, 0.014700095975721953, 0.015226972171868958, 0.01587505206751451, 0.01663796171163437, 0.017515015312382805, 0.018509943382217696, 0.019629221812331576, 0.0208803182530537, 0.022270120135721702, 0.02380373086516587, 0.02548372305599101, 0.027309840953776438, 0.029279071809198604, 0.031385970546753225, 0.03362312120486153, 0.0359816401396623, 0.038451655979834465, 0.04102272963918693, 0.04368419938192323, 0.046425450067831685, 0.04923611351229489, 0.052106210266679866, 0.05502624378956166, 0.05798725721564252, 0.06098086155620024, 0.06399924265149051 ], [ 0.0558794998187503, 0.0527531759850693, 0.049678833721254624, 0.046665509438569085, 0.043722518809263845, 0.04085945164747721, 0.03808617741199813, 0.03541286540681887, 0.032850023166718326, 0.030408554245387496, 0.028099831386263294, 0.025935771045661842, 0.023928878359547344, 0.022092206513369426, 0.02043914300700783, 0.018982907701680166, 0.01773564861597328, 0.016707091593142948, 0.015902875313257906, 0.01532296285763534, 0.014960732102824533, 0.014803301868954882, 0.014833252981337124, 0.015031340711091504, 0.015379426625580499, 0.01586288346422536, 0.016472035673571955, 0.017202546020282018, 0.018054894171861565, 0.01903320546004387, 0.020143724645541313, 0.02139322393547686, 0.022787593678894803, 0.0243307890526921, 0.026024209639593766, 0.027866495713199005, 0.029853658560923643, 0.031979432626274944, 0.03423574023111602, 0.03661318233500449, 0.03910149788498952, 0.04168996069879728, 0.04436770244101625, 0.04712396267483239, 0.049948273588378826, 0.0528305896491991, 0.05576137274149711, 0.058731642441133006, 0.06173299970487135, 0.06475763079445515 ], [ 0.056699026427044726, 0.053578191944754695, 0.05050936447981118, 0.04750183930698677, 0.04456524540527023, 0.04170954187252179, 0.038945020426123356, 0.036282315197201105, 0.033732419344950554, 0.031306704563562195, 0.029016933386200424, 0.026875244287609488, 0.02489407537161982, 0.023085974979922663, 0.021463231827296467, 0.02003725493531968, 0.018817664256195053, 0.017811137615153152, 0.017020201114360718, 0.016442303233480848, 0.016069576883560022, 0.015889568742003684, 0.015886906557338706, 0.016045534714432742, 0.01635096845530191, 0.016792070889522406, 0.01736206235706451, 0.018058696197514434, 0.018883700387740468, 0.019841682224300435, 0.020938741469822972, 0.022181046229432774, 0.02357359429061917, 0.02511931346608966, 0.026818564113691327, 0.02866902124299202, 0.030665854431847578, 0.03280209958855414, 0.03506912203198516, 0.03745709292960253, 0.039955428548840745, 0.04255316599152266, 0.04523926672469202, 0.04800285017170674, 0.05083336529371726, 0.05372071021557946, 0.05665531000664743, 0.059628161755889315, 0.0626308547233106, 0.06565557195692953 ], [ 0.057645458824623755, 0.054536512600248215, 0.05147988547689236, 0.048485137359433016, 0.04556221209295004, 0.04272143289923231, 0.039973498428914976, 0.0373294776427661, 0.034800799135095095, 0.03239922626223371, 0.030136803079160866, 0.028025747509241566, 0.02607825827943777, 0.024306193942643387, 0.022720582159423554, 0.021330935537909722, 0.020144398054533476, 0.019164827136863023, 0.018392013154389538, 0.017821302750121126, 0.01744386389744067, 0.01724768045690201, 0.017219139746662632, 0.017344885852439797, 0.017613545361881023, 0.018017001094651236, 0.01855103250228739, 0.019215288310559443, 0.020012671480394286, 0.020948294992404127, 0.022028213997602086, 0.023258153365610934, 0.0246424240310517, 0.02618315960403141, 0.027879923250747188, 0.029729658301647297, 0.03172690425213863, 0.03386417982261147, 0.036132441192708906, 0.03852154495051335, 0.041020670655735815, 0.043618680066827495, 0.046304406103224796, 0.04906687447747354, 0.05189546596518659, 0.054780029088221965, 0.05771095292230003, 0.06067920875521248, 0.06367636800176003, 0.06669460244508002 ], [ 0.05872187482328249, 0.05563135949383242, 0.05259373799218906, 0.049618827823278935, 0.04671687244598843, 0.04389853244014291, 0.04117487101141623, 0.03855732918121961, 0.03605768282465689, 0.03368796926785355, 0.03146036553240227, 0.02938699429757388, 0.027479629290637547, 0.02574927306626778, 0.02420559298409943, 0.022856232167892905, 0.021706063985238905, 0.0207565227410894, 0.020005194832661142, 0.019445856868068108, 0.01906907310287163, 0.018863323937940324, 0.018816484010309477, 0.0189173704200543, 0.019157075255139218, 0.019529867635955118, 0.020033555572999247, 0.020669299215116316, 0.021440948868856866, 0.022354042623350584, 0.02341463878005233, 0.02462817087645825, 0.02599849099615298, 0.027527212702677568, 0.029213393433835638, 0.031053529090410373, 0.0330417881982211, 0.03517039562537365, 0.03743008184614713, 0.03981053317455745, 0.04230080148643955, 0.04488965227680871, 0.04756584473148181, 0.050318346710224185, 0.05313649229248421, 0.05601009127013184, 0.05892949992984679, 0.06188566153984194, 0.06487012369709863, 0.06787503840918131 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x2", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\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.17501088473773835, -0.5394653951042456, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8831337120029432, -1.8831337120029432, -1.946138064017751, -2.7027488120760657, -3.094288748114294, -3.094288748114294, -3.094288748114294, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.162039264835536, -3.162039264835536, -3.162039264835536, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723 ] }, { "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.17501088473773835, -0.5394653951042456, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8831337120029432, -1.8831337120029432, -1.946138064017751, -2.7027488120760657, -3.094288748114294, -3.094288748114294, -3.094288748114294, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.162039264835536, -3.162039264835536, -3.162039264835536, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723 ] }, { "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.17501088473773835, -0.5394653951042456, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8447008413472796, -1.8831337120029432, -1.8831337120029432, -1.946138064017751, -2.7027488120760657, -3.094288748114294, -3.094288748114294, -3.094288748114294, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.1611535514149702, -3.162039264835536, -3.162039264835536, -3.162039264835536, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723, -3.179517084554723 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\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 }