{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "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 18:28:26] 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", "from ax import (\n", " Arm,\n", " ComparisonOp,\n", " RangeParameter,\n", " ParameterType,\n", " SearchSpace, \n", " SimpleExperiment, \n", " OutcomeConstraint, \n", ")\n", "\n", "from ax.metrics.l2norm import L2NormMetric\n", "from ax.modelbridge.cross_validation import cross_validate\n", "from ax.modelbridge.registry import Models\n", "from ax.plot.contour import interact_contour, plot_contour\n", "from ax.plot.diagnostic import interact_cross_validation\n", "from ax.plot.scatter import(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\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. Create experiment and run optimization\n", "\n", "The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Developer API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n", "\n", "def noisy_hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(p_name) for p_name in param_names])\n", " noise1, noise2 = np.random.normal(0, noise_sd, 2)\n", "\n", " return {\n", " \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n", " \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n", " }\n", "\n", "hartmann_search_space = SearchSpace(\n", " parameters=[\n", " RangeParameter(\n", " name=p_name, parameter_type=ParameterType.FLOAT, lower=0.0, upper=1.0\n", " )\n", " for p_name in param_names\n", " ]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "exp = SimpleExperiment(\n", " name=\"test_branin\",\n", " search_space=hartmann_search_space,\n", " evaluation_function=noisy_hartmann_evaluation_function,\n", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\n", " OutcomeConstraint(\n", " metric=L2NormMetric(\n", " name=\"l2norm\", param_names=param_names, noise_sd=0.2\n", " ),\n", " op=ComparisonOp.LEQ,\n", " bound=1.25,\n", " relative=False,\n", " )\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1c. Run the optimization and fit a GP on all data\n", "\n", "After doing (`N_BATCHES=15`) rounds of optimization, fit final GP using all data to feed into the plots." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "N_RANDOM = 5\n", "BATCH_SIZE = 1\n", "N_BATCHES = 15\n", "\n", "sobol = Models.SOBOL(exp.search_space)\n", "exp.new_batch_trial(generator_run=sobol.gen(N_RANDOM))\n", "\n", "for i in range(N_BATCHES):\n", " intermediate_gp = Models.GPEI(experiment=exp, data=exp.eval())\n", " exp.new_trial(generator_run=intermediate_gp.gen(BATCH_SIZE))\n", "\n", "model = Models.GPEI(experiment=exp, data=exp.eval())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Contour plots\n", "\n", "The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n", "\n", "The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them." ] }, { "cell_type": "code", "execution_count": 5, "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.22132015863792773, -0.22540613892185232, -0.22930089797727693, -0.2329573036353893, -0.23632783095879908, -0.23936546011397805, -0.24202464886253633, -0.24426235445067712, -0.24603907460758867, -0.24731987330204075, -0.24807535425470276, -0.24828254430542776, -0.24792564983291238, -0.24699665262455556, -0.24549571684076588, -0.24343138578369158, -0.24082055567864252, -0.23768822309054255, -0.23406701232665952, -0.22999649859198076, -0.2255223511680429, -0.22069532796904784, -0.21557015810862293, -0.21020435235913884, -0.20465698253728828, -0.19898746999051006, -0.19325442070168333, -0.18751454038099177, -0.18182165763730468, -0.17622587730123124, -0.17077287958323906, -0.1655033743353035, -0.1604527135381147, -0.1556506594967203, -0.15112130127640439, -0.14688310777220298, -0.142949102552336, -0.13932714327402063, -0.1360202870247595, -0.13302722234344, -0.13034274884457986, -0.12795828620414634, -0.12586239564869278, -0.12404129889378024, -0.1224793815729856, -0.12115967045946074, -0.12006427609210307, -0.11917479467658898, -0.1184726652543418, -0.11793948005610672 ], [ -0.23146646553903752, -0.23612198096166412, -0.24057439168922412, -0.2447699988533273, -0.24865441651582723, -0.25217360149391577, -0.2552749780828618, -0.2579086285873744, -0.260028514093414, -0.2615936845883199, -0.26256943389838605, -0.2629283534238687, -0.2626512396529299, -0.2617278140945109, -0.26015722054033724, -0.2579482731761453, -0.2551194395246046, -0.25169855385308737, -0.2477222687391077, -0.24323526413697344, -0.23828924375600274, -0.23294175718578108, -0.22725489250470218, -0.221293887810674, -0.21512571116048793, -0.2088176569401343, -0.2024360030196811, -0.19604476759686154, -0.18970459789133015, -0.18347181532033668, -0.17739763394500818, -0.17152756124861263, -0.16590098304560663, -0.16055092779429836, -0.15550399998826686, -0.1507804677501759, -0.14639448629923596, -0.14235443660802471, -0.13866335725791612, -0.13531944716063066, -0.1323166173239293, -0.12964507106935574, -0.1272918939137051, -0.12524163655275838, -0.12347687688700709, -0.12197874966426092, -0.12072743495708604, -0.11970259923636084, -0.11888378515961201, -0.11825074830055915 ], [ -0.24238478935008395, -0.24767056173813676, -0.25274171547899427, -0.2575372262633017, -0.2619950116270841, -0.26605310877434873, -0.26965097232209845, -0.2727308585955174, -0.27523925484543155, -0.27712830481090506, -0.27835717710286223, -0.27889332056520716, -0.2787135515543215, -0.2778049222202801, -0.27616532635180857, -0.27380380983849784, -0.2707405656947003, -0.26700660802556697, -0.26264313428459496, -0.2577005996079025, -0.2522375399054275, -0.2463191908955409, -0.24001595777739404, -0.2334017944176609, -0.22655255174833547, -0.21954435275681236, -0.21245204643662322, -0.20534778593781672, -0.19829976756187107, -0.1913711578436171, -0.18461922635941566, -0.17809469261830957, -0.17184128684608807, -0.16589551696388366, -0.16028662778845937, -0.1550367335408681, -0.1501611011638846, -0.14566855967263082, -0.14156200970407784, -0.13783900746018185, -0.13449239820174824, -0.13151097617559843, -0.12888015016916854, -0.12658259660809962, -0.12459888507535177, -0.12290806418080702, -0.12148819871333283, -0.12031685185097402, -0.11937150880249708, -0.11862994054360948 ], [ -0.25408930743071684, -0.2600699152658824, -0.2658250318314136, -0.27128548979677736, -0.2763806006328732, -0.28103949751690116, -0.2851926289263155, -0.2887733648785781, -0.29171966728739723, -0.29397576686999766, -0.29549378236438917, -0.29623521434053224, -0.29617224627659733, -0.29528879020263177, -0.29358122311022394, -0.29105877310832695, -0.28774353020093535, -0.283670074471986, -0.27888473306954886, -0.27344449529332915, -0.26741563099386023, -0.26087207029424675, -0.2538936115760641, -0.24656402934269384, -0.23896915398675772, -0.23119499199124308, -0.22332594830408234, -0.21544320333485223, -0.20762328609559003, -0.199936873296173, -0.1924478324745306, -0.18521251612929543, -0.1782793038112928, -0.17168838055009839, -0.1654717330303172, -0.15965333965581785, -0.15424952701878214, -0.1492694632215401, -0.14471575782896584, -0.1405851387706764, -0.13686917805919296, -0.13355504052879458, -0.13062623271765073, -0.12806333230989508, -0.12584468203718052, -0.12394703544462576, -0.12234614531273874, -0.12101728868148337, -0.11993572526061314, -0.11907708847549342 ], [ -0.26658646562261584, -0.27333011905635657, -0.2798383717329771, -0.2860330390999184, -0.2918338429081675, -0.29715993708286115, -0.3019316219610958, -0.30607220386006717, -0.30950994366274165, -0.31218002640015274, -0.31402647485712476, -0.31500392515694514, -0.31507918200687784, -0.3142324763747495, -0.3124583589125125, -0.30976617800699974, -0.3061801109527619, -0.3017387389896604, -0.29649418011166334, -0.29051081581202687, -0.28386366756993375, -0.2766364944904306, -0.2689196941117206, -0.2608080935378644, -0.25239871780640755, -0.24378861728008994, -0.23507282672393176, -0.2263425166659237, -0.21768338378497443, -0.20917431252004515, -0.20088632580935742, -0.19288182961683853, -0.18521414423996782, -0.17792730566597353, -0.1710561126140565, -0.16462638938092616, -0.15865543109205488, -0.15315259626866196, -0.14812001151750231, -0.14355335437763744, -0.13944268264722093, -0.13577328159980512, -0.13252650413300188, -0.1296805828421061, -0.12721139707252677, -0.1250931820019046, -0.12329917059164297, -0.12180216271714644, -0.12057501885774863, -0.11959107835331106 ], [ -0.2798734679908334, -0.2874516579232218, -0.29478587630798514, -0.30178799503019055, -0.3083670903613003, -0.31443117010441796, -0.3198891350541634, -0.32465292653793326, -0.32863979505480706, -0.3317746099106323, -0.3339921178066853, -0.3352390510781587, -0.3354759849630027, -0.3346788487375863, -0.3328400080000965, -0.32996885432085626, -0.32609186269842794, -0.32125210493325806, -0.3155082359137343, -0.3089329975141515, -0.3016113090881066, -0.29363803257359944, -0.2851155127826336, -0.27615099900544593, -0.26685405278902646, -0.2573340394182764, -0.24769778843736337, -0.23804749294386854, -0.2284788998725758, -0.21907982546358046, -0.2099290127739301, -0.20109533236138735, -0.1926373137679144, -0.18460298450691656, -0.17702998502326778, -0.16994592247420764, -0.16336892296590277, -0.15730834078447709, -0.15176558384722033, -0.14673501672102185, -0.14220490576931322, -0.13815837497523942, -0.1345743454561067, -0.1314284363755806, -0.12869380965616323, -0.12634194541447413, -0.12434333924391888, -0.12266811624952972, -0.12128656002999283, -0.12016955756665065 ], [ -0.29393666204645486, -0.30242365942064203, -0.3106598850798096, -0.31854629617689956, -0.3259802004040218, -0.33285720260672086, -0.33907344148391727, -0.3445280629362523, -0.34912585557051345, -0.35277995441616944, -0.35541450305927946, -0.35696715415170716, -0.35739128535172293, -0.35665781339563063, -0.3547565035994476, -0.35169669510684654, -0.34750739212148274, -0.34223670582829646, -0.33595066778270866, -0.3287314700873507, -0.320675217742402, -0.31188930177415164, -0.3024895165741109, -0.29259705072820885, -0.2823354778205971, -0.2718278633754171, -0.26119408791289644, -0.25054846598256275, -0.2399977189618286, -0.22963933716013243, -0.2195603458169833, -0.20983647100857014, -0.20053168596600576, -0.19169810618076033, -0.18337619295283075, -0.17559521952547585, -0.16837395129955512, -0.1617214914004365, -0.15563824461955278, -0.150116956015153, -0.1451437848065522, -0.1406993792506897, -0.13675992361669692, -0.13329813389316036, -0.13028418424496124, -0.1276865513024255, -0.125472767981683, -0.12361008261098683, -0.1220660226210572, -0.12080886492966819 ], [ -0.3087498435230588, -0.31822202317994147, -0.3274388906812364, -0.33628948320897367, -0.34465815769466995, -0.3524267742380439, -0.35947723695379785, -0.36569433389410255, -0.3709687913403517, -0.3752004328232326, -0.3783013122858037, -0.3801986765082458, -0.3808376066564703, -0.3801831943311484, -0.378222124491598, -0.37496356555822075, -0.3704393039785946, -0.3647031035263098, -0.3578293147345169, -0.3499108030043833, -0.3410563012049681, -0.33138732091243156, -0.32103477388266644, -0.3101354612685114, -0.29882858307722326, -0.2872524060243125, -0.27554120656022607, -0.26382258001650444, -0.2522151790942846, -0.2408269175585777, -0.22975364979874668, -0.21907831512190357, -0.2088705179831737, -0.19918650207986266, -0.19006946723137053, -0.1815501728576503, -0.17364777012102128, -0.16637080580036478, -0.15971834410540892, -0.15368115732943133, -0.14824294195996396, -0.14338152317123998, -0.13907001713750822, -0.135277927034753, -0.13197215470893536, -0.1291179156115116, -0.12667954962104283, -0.12462122471324999, -0.12290753408083077, -0.12150399024202968 ], [ -0.3242725155483571, -0.33480747788443416, -0.3450853918629319, -0.3549823502492629, -0.3643685305300904, -0.37311063062587885, -0.3810747428657416, -0.3881296036756644, -0.394150123604065, -0.39902107047716984, -0.4026407509269938, -0.40492451578076094, -0.4058079061140048, -0.4052492616350445, -0.4032316326627876, -0.39976387077456815, -0.3948808189164306, -0.3886425754429162, -0.3811328631173003, -0.3724565880744666, -0.36273672002642826, -0.3521106595633827, -0.34072627883628637, -0.32873782753223285, -0.3163018878609583, -0.30357354256042346, -0.2907028918301019, -0.27783202205545443, -0.2650924945007537, -0.2526033886499254, -0.2404699047244776, -0.22878250452348114, -0.2176165498329066, -0.20703238336878446, -0.19707578823124589, -0.187778757537034, -0.17916050548683665, -0.17122865377827645, -0.16398053218988906, -0.15740453860727444, -0.1514815111145258, -0.14618607251838256, -0.14148791540365535, -0.137353003228868, -0.1337446698384292, -0.13062460594199482, -0.12795372650310793, -0.12569291754709222, -0.12380366464179893, -0.12224856825473884 ], [ -0.34044814980213856, -0.35212361348037235, -0.36354369145787113, -0.37457050803411784, -0.385058803842589, -0.39485863623672357, -0.40381861431113375, -0.41178960312996216, -0.41862879107438994, -0.4242039737739478, -0.4283978720179412, -0.4311122739749773, -0.43227177844064496, -0.4318269192334837, -0.42975647314944965, -0.42606879470400877, -0.42080207740094583, -0.41402350837157725, -0.4058273542412362, -0.39633208372558126, -0.38567668998881244, -0.37401641797990726, -0.36151812575539666, -0.34835551356425565, -0.3347044417926973, -0.32073853201519353, -0.3066252086405336, -0.29252229653385753, -0.2785752467816903, -0.26491502196008343, -0.25165663642613934, -0.23889831784323398, -0.22672123402467262, -0.2151897141568962, -0.20435188492811462, -0.1942406391003064, -0.1848748555297158, -0.17626079445662646, -0.16839359902225842, -0.16125884253635459, -0.1548340702786467, -0.14909029399486134, -0.14399340631331975, -0.1395054907573755, -0.13558601066208437, -0.1321928670040478, -0.12928332086999395, -0.12681478102102772, -0.12474546079182697, -0.12303491146101225 ], [ -0.35720251190405844, -0.3700949524927728, -0.3827377037067121, -0.39497792263389486, -0.40665365078528787, -0.41759678686111856, -0.4276367081551631, -0.4366044744143228, -0.44433749794217664, -0.4506845126157205, -0.45551062750217897, -0.45870221395510047, -0.46017135449040764, -0.4598595824344605, -0.4577406662399024, -0.4538222414443141, -0.44814616307217503, -0.4407875352663018, -0.43185246424111856, -0.421474665586595, -0.40981112856039303, -0.39703709145701016, -0.38334060964088756, -0.3689170008809703, -0.3539634336871185, -0.3386738880506769, -0.3232346701303257, -0.3078206089966098, -0.2925920099653714, -0.27769238962422405, -0.26324697536882646, -0.2493619187696621, -0.2361241478774795, -0.2236017682374641, -0.21184491489681168, -0.2008869566931094, -0.1907459581188448, -0.1814263116346268, -0.17292046316890985, -0.16521066462385914, -0.15827069866086685, -0.15206753223619374, -0.14656286585792683, -0.1417145550569071, -0.13747788894657342, -0.13380671792282928, -0.13065442852594616, -0.12797476830100962, -0.12572252723280813, -0.12385408509763551 ], [ -0.3744421295402755, -0.38862514281971106, -0.4025688559961782, -0.4161045161107792, -0.42905222917103913, -0.441224206469945, -0.45242879318158863, -0.46247521547379306, -0.4711789213034652, -0.4783673258592517, -0.4838857117624855, -0.48760298445487527, -0.4894169528635984, -0.4892588015676143, -0.48709644781590283, -0.48293653545012394, -0.47682490398984945, -0.4688454763468816, -0.4591176211323056, -0.44779215235496644, -0.4350462185517849, -0.4210773961019286, -0.40609733295450146, -0.3903252890641126, -0.3739818922400244, -0.35728337938483234, -0.3404365310713384, -0.3236344399292619, -0.30705318722635255, -0.29084944255619766, -0.27515895207916824, -0.2600958429504878, -0.24575264559836396, -0.23220092049602187, -0.2194923704308153, -0.20766032110482036, -0.19672146024262702, -0.18667773641135443, -0.1775183319094677, -0.16922163809659818, -0.16175717546896123, -0.1550874139691979, -0.1491694610285993, -0.14395659543475914, -0.13939963420034324, -0.13544812718026916, -0.13205138031341906, -0.12915931316155538, -0.1267231600169319, -0.12469602639730198 ], [ -0.3920529991289943, -0.40759537463004064, -0.4229141932653946, -0.4378239415141996, -0.45212561762154274, -0.4656102439844686, -0.47806331682311853, -0.4892701363055558, -0.49902188642794626, -0.5071222539212212, -0.5133942971442967, -0.5176872093637623, -0.5198825769697452, -0.5198997220544052, -0.517699747241373, -0.5132879703758403, -0.5067145429588497, -0.4980731780887929, -0.48749805560249454, -0.4751591067181625, -0.461255991824827, -0.4460111614215257, -0.42966242579574404, -0.4124554542699619, -0.39463658540228835, -0.37644626452733826, -0.358113345028489, -0.3398504049454676, -0.32185014950190816, -0.3042828991153498, -0.2872951051688374, -0.27100879376408465, -0.2555218105271216, -0.24090872572838748, -0.22722225620985637, -0.2144950662961698, -0.20274182146921066, -0.1919613838418112, -0.1821390555029665, -0.1732487931801565, -0.1652553343414097, -0.15811619016595874, -0.15178347436280404, -0.14620554844510325, -0.1413284737639005, -0.13709726845803877, -0.13345697364016068, -0.13035353779518316, -0.12773453171305138, -0.12554970850624336 ], [ -0.40989964415583885, -0.42686314506647594, -0.44362481829691647, -0.459981673448517, -0.4757145388107781, -0.4905918213782329, -0.5043743817398235, -0.5168214800520198, -0.5276976609564306, -0.5367803464237513, -0.5438678054890431, -0.5487870813783376, -0.5514013941779583, -0.5516165149511065, -0.5493856353396498, -0.5447123387251659, -0.5376514097405329, -0.5283073842824969, -0.5168309214853687, -0.5034132489992122, -0.4882790719763501, -0.4716784290177972, -0.45387801790706345, -0.4351525017515664, -0.4157762506008873, -0.3960158874442515, -0.3761239048556894, -0.3563335126185623, -0.3368547780094221, -0.3178720363365641, -0.2995424837679786, -0.2819958185345601, -0.2653347691732029, -0.24963633707771207, -0.23495358201699215, -0.22131779004124874, -0.2087408801202556, -0.1972179261869194, -0.1867296928014814, -0.17724510379160502, -0.1687235828733974, -0.16111722277128498, -0.15437275442587994, -0.14843330045024777, -0.1432399071716169, -0.1387328575805749, -0.13485277355539166, -0.13154152010333586, -0.12874292732667597, -0.12640334762411587 ], [ -0.42782465419105375, -0.4462615148607963, -0.46452482639909815, -0.4823935858124056, -0.49962755260452535, -0.515971224746247, -0.5311591300489494, -0.5449224101714463, -0.5569965702078951, -0.5671301459308051, -0.5750939141630188, -0.5806901552015352, -0.5837613888500092, -0.5841979668000205, -0.5819439290694737, -0.5770006275101769, -0.5694277796390715, -0.5593418233408077, -0.5469116697845208, -0.5323521666257489, -0.5159157574097274, -0.49788293579563797, -0.478552136274384, -0.4582296797219601, -0.4372203148689038, -0.41581878324232946, -0.39430270419273855, -0.37292694508823016, -0.3519195225579563, -0.3314789820983389, -0.311773129350455, -0.29293893726612774, -0.27508342699775323, -0.25828531292701723, -0.2425972093773935, -0.22804821381853896, -0.2146467047929473, -0.20238321909113408, -0.19123329936382102, -0.18116022863366915, -0.1721175909582352, -0.16405161723115996, -0.15690329161301758, -0.15061020744698972, -0.14510817199144882, -0.1403325672306519, -0.13621947977433824, -0.13270661678922951, -0.1297340273553027, -0.12724464990568224 ], [ -0.44564884594440124, -0.4655990184790138, -0.48541091633419736, -0.5048452179921613, -0.5236399381698643, -0.5415145727932762, -0.5581757820033261, -0.5733246194384441, -0.5866651948852375, -0.59791451149504, -0.6068130602188042, -0.6131356020865832, -0.6167014482228275, -0.6173834845742789, -0.6151152055650316, -0.609895129674422, -0.6017881654167034, -0.5909237558265978, -0.5774909166459785, -0.5617305551990317, -0.543925674472036, -0.5243902034442558, -0.5034572401454562, -0.48146745437994115, -0.45875829077621455, -0.4356544641964136, -0.4124600734940349, -0.389452497449676, -0.36687809393003223, -0.3449496090725814, -0.3238451211143282, -0.3037082925045764, -0.2846496803948469, -0.2667488541273196, -0.25005708308848207, -0.23460038367463049, -0.22038274530625349, -0.20738938859802206, -0.1955899411464828, -0.18494144609928248, -0.17539114467670452, -0.16687899570157216, -0.1593399129641433, -0.15270571518853965, -0.14690679391298977, -0.1418735122455025, -0.1375373527082488, -0.13383183570103868, -0.13069323190646248, -0.1280610925765976 ], [ -0.46317219378437363, -0.4846604009665165, -0.5060528774397477, -0.527091956352836, -0.5474935178410908, -0.5669512393875258, -0.5851426264961874, -0.6017368749478037, -0.6164044777767088, -0.6288283166689862, -0.6387157814572394, -0.6458112653879323, -0.6499082193151369, -0.6508598507815665, -0.6485875564106172, -0.6430862971177838, -0.6344263624769348, -0.6227512951412673, -0.6082721097735168, -0.5912582853944156, -0.5720262825001834, -0.5509265013374635, -0.5283296435859994, -0.5046133770358434, -0.48015005810811895, -0.4552960737676536, -0.43038315522647563, -0.4057118174817573, -0.38154690936448554, -0.3581151280788371, -0.3356042627122309, -0.3141638802144701, -0.29390714899103565, -0.27491350213971244, -0.2572318668923018, -0.24088422209407676, -0.22586928582926713, -0.21216617621714776, -0.19973792693902548, -0.18853477336809354, -0.17849715436148333, -0.1695583986298208, -0.16164708337959405, -0.15468906715418368, -0.14860920913293263, -0.1433327942616075, -0.1387866881217258, -0.13490024796844463, -0.13160601736009614, -0.12884023166503006 ], [ -0.4801756735997716, -0.5032083563083721, -0.5261951612291724, -0.5488603743697829, -0.5708977014679931, -0.5919745431304864, -0.6117383078524393, -0.6298248709536607, -0.6458691334513063, -0.659517432390296, -0.6704413154815219, -0.6783519436766059, -0.6830141644653547, -0.6842591538057187, -0.6819945017932747, -0.6762107470202046, -0.6669836486820474, -0.6544718899588676, -0.6389103664868978, -0.6205996507664242, -0.5998925649333089, -0.5771789934056006, -0.552870110110369, -0.527383099904555, -0.5011272585521055, -0.4744921059556718, -0.4478378858302055, -0.42148858448843934, -0.3957274027127098, -0.3707944673961639, -0.3468864744638906, -0.3241579062354045, -0.30272345620710994, -0.28266131232406844, -0.26401698656510275, -0.246807425707918, -0.231025188804756, -0.21664252634024067, -0.20361524110853665, -0.19188624979977206, -0.18138879647310735, -0.17204929461941448, -0.1637897939540432, -0.1565300822477203, -0.1501894423003149, -0.14468809046142483, -0.13994832669004786, -0.1358954276947006, -0.13245831475700143, -0.12957002685506464 ], [ -0.4964241469518412, -0.5209864291509636, -0.5455597386614628, -0.5698509755781017, -0.5935320407633298, -0.6162440393976478, -0.6376037888146386, -0.6572128102470095, -0.6746688168290174, -0.6895794787430971, -0.7015779610823859, -0.7103394183082277, -0.7155973376944975, -0.717158414545897, -0.7149145788112934, -0.7088509239309422, -0.6990486248525214, -0.6856824337207935, -0.6690129239555742, -0.6493742084725743, -0.6271582866656324, -0.6027974145345685, -0.5767459282250926, -0.5494628113955565, -0.5213960358232275, -0.49296938456604805, -0.4645721426405469, -0.43655175135931285, -0.40920929224981234, -0.38279750335198637, -0.3575209324631044, -0.3335377896740037, -0.3109630631544126, -0.28987249470868387, -0.2703070632351282, -0.25227768494381764, -0.23576990144704824, -0.2207483854140829, -0.20716114523143506, -0.194943353544609, -0.18402075939859525, -0.17431267045744153, -0.1657345114322104, -0.1581999785371675, -0.1516228186966856, -0.14591826741883457, -0.1410041816686461, -0.1368019044837624, -0.13323689708860958, -0.130239172351019 ], [ -0.511670378402522, -0.5377232090800199, -0.5638504151857289, -0.5897425605648214, -0.6150505691538442, -0.6393897480116668, -0.6623463814451298, -0.6834871622948575, -0.7023715502178043, -0.7185668886924457, -0.7316657787179077, -0.7413048250272694, -0.7471834933519943, -0.7490815222802492, -0.7468732087841914, -0.7405370057785267, -0.7301592597495499, -0.7159315339408714, -0.6981416976276569, -0.6771596676028084, -0.6534192275064351, -0.6273976391903202, -0.5995947822218887, -0.5705133568433982, -0.5406413398922296, -0.5104374759770324, -0.4803201874411592, -0.45065994356414185, -0.42177486643177015, -0.3939291739156676, -0.3673339626906418, -0.3421498025396936, -0.318490630865949, -0.29642848697660434, -0.2759986949057007, -0.25720517976709756, -0.24002567749459938, -0.22441666590262258, -0.21031790333610034, -0.197656508710078, -0.18635055370794687, -0.17631216534466398, -0.1674501564314806, -0.15967221423282296, -0.15288668524156335, -0.1470039978001751, -0.1419377653326191, -0.1376056120791357, -0.1339297611003027, -0.13083742142712096 ], [ -0.5256602246992943, -0.5531378896874278, -0.580758717964927, -0.6081983835316863, -0.6350881523367756, -0.6610186085982763, -0.6855462095251018, -0.7082030343903025, -0.7285099146138287, -0.7459928516278812, -0.7602022486315253, -0.77073402482012, -0.7772512035274332, -0.7795041619753422, -0.7773475167734527, -0.7707517046452851, -0.759807756480436, -0.7447245149144505, -0.7258184708907491, -0.7034972925829897, -0.6782388006703131, -0.6505674914795512, -0.6210307081491757, -0.5901762771799139, -0.5585329735143497, -0.5265946635284656, -0.49480848982338865, -0.46356705908225476, -0.4332042985626544, -0.4039944594338954, -0.37615365345372814, -0.34984329371063605, -0.3251748486966678, -0.3022153915253963, -0.280993515583308, -0.2615052812298326, -0.24371994632982097, -0.2275853110058093, -0.21303257151361293, -0.19998062913916548, -0.18833983840044846, -0.17801520626883655, -0.1689090725416179, -0.16092331283395406, -0.1539611116607738, -0.14792835522585152, -0.1427346930173976, -0.13829431504674, -0.13452648824435687, -0.13135589163882894 ], [ -0.5381389589432696, -0.5669471804924524, -0.5959713781482014, -0.6248741672998398, -0.6532689763198388, -0.6807233598661768, -0.7067653778954983, -0.7308935166758487, -0.7525904526313848, -0.7713406655185155, -0.7866514855523957, -0.7980766265619765, -0.8052406703405781, -0.8078624312358104, -0.805774792557636, -0.7989386235748827, -0.7874488577426126, -0.7715317153246266, -0.7515332134078505, -0.7279002505269627, -0.7011564150834279, -0.6718750861746905, -0.6406523578925054, -0.6080819260080941, -0.574733484386319, -0.5411355360454765, -0.5077629390839634, -0.47502904166309956, -0.4432819339527512, -0.41280415254167835, -0.38381509336825675, -0.3564753955972422, -0.3308926234779408, -0.30712767150512055, -0.285201430383316, -0.26510136292977665, -0.24678774077778953, -0.2301993794842236, -0.2152587795910109, -0.20187663475605164, -0.18995570699551378, -0.17939409573162868, -0.1700879442200488, -0.16193363637821195, -0.15482954107300834, -0.14867736120205033, -0.14338314270309094, -0.13885799491214845, -0.13501856915572508, -0.1317873375870829 ], [ -0.5488585978728899, -0.5788734490402293, -0.609179304185514, -0.6394279033066333, -0.6692171440905494, -0.6980938739398088, -0.7255599550712563, -0.7510821954061934, -0.77410657328841, -0.794076884197103, -0.8104574844664563, -0.8227592070882745, -0.830566826428445, -0.833565760816243, -0.8315652002204978, -0.8245147451899567, -0.8125121146484672, -0.7958005408425386, -0.7747559158963904, -0.749865215216905, -0.721698819922607, -0.6908798680937502, -0.6580536726021846, -0.6238597062632991, -0.5889078911640968, -0.5537601336682415, -0.5189173511783786, -0.4848117058509164, -0.45180340826040816, -0.42018126395404204, -0.39016607646307133, -0.3619160557266506, -0.3355334768750766, -0.31107196190411096, -0.2885438935951311, -0.26792760159868556, -0.249174075569437, -0.23221305524973315, -0.21695842166022244, -0.2033128685632049, -0.1911718718252864, -0.18042699936386136, -0.170968619093456, -0.16268806942323033, -0.15547935866113127, -0.14924045793755591, -0.1438742483172758, -0.13928917759759168, -0.13539967657201601, -0.13212637872488792 ], [ -0.5575859922782537, -0.5886538393466356, -0.6200877851017854, -0.6515311779783873, -0.6825691379951111, -0.7127307351606, -0.7414946099631246, -0.7682987460883453, -0.7925549574560153, -0.813668355182591, -0.8310615886196803, -0.8442030030528425, -0.8526370582295258, -0.8560145039252647, -0.8541191010698632, -0.8468873886233187, -0.8344184066665354, -0.8169714977552605, -0.7949521006973113, -0.7688873204313952, -0.7393944606047604, -0.7071463202689255, -0.6728368827961813, -0.6371502972195986, -0.6007350749524764, -0.5641844516640873, -0.5280230491693643, -0.4926993787120821, -0.4585833567395273, -0.4259678260401908, -0.3950730446775773, -0.36605317669624005, -0.33900395096320474, -0.3139708143218968, -0.2909570678606075, -0.26993162442811464, -0.25083615275200893, -0.23359147540215427, -0.21810316495925247, -0.20426633787881654, -0.19196968246421028, -0.18109878002896018, -0.17153879036911895, -0.16317657715798156, -0.15590234827527677, -0.1496108822622086, -0.14420240641851345, -0.13958318548574278, -0.1356658730353535, -0.13236967101097008 ], [ -0.5641113308184396, -0.59604997461089, -0.6284274900471034, -0.6608815538440981, -0.6929876458996594, -0.7242605437821882, -0.7541593834753351, -0.782097109990072, -0.8074550140838055, -0.8296027654311957, -0.8479238763475991, -0.8618458494879857, -0.8708733910440649, -0.8746220733613153, -0.8728488817605706, -0.8654755157888476, -0.8526005671033847, -0.834498028318783, -0.8116017943116952, -0.7844782165243036, -0.7537905707335988, -0.7202600387257747, -0.6846275092123026, -0.647619526076716, -0.6099204759973851, -0.5721519341389765, -0.5348591488238972, -0.4985039973582801, -0.4634633680777474, -0.43003176849729635, -0.39842696727789517, -0.36879759220440944, -0.34123177933482146, -0.31576616240035454, -0.2923946800419951, -0.2710768454507879, -0.2517452607181957, -0.2343122650739421, -0.21867568442353352, -0.20472370343157623, -0.19233891573383038, -0.18140162743491522, -0.17179249798469548, -0.16339460417646562, -0.15609500995639441, -0.1497859188788171, -0.14436547873091737, -0.13973829999480292, -0.13581574200365376, -0.13251601323802076 ], [ -0.5682566123597808, -0.6008577274023814, -0.6339656679168896, -0.6672153235508151, -0.7001759801868839, -0.7323520857643503, -0.7631876565160078, -0.7920752525469943, -0.8183703475300512, -0.8414116467527037, -0.8605474381049057, -0.8751673761224563, -0.8847381945574158, -0.8888407300458396, -0.8872044284987195, -0.8797345594160453, -0.8665273174515338, -0.8478693851999093, -0.8242212362823574, -0.7961865412782678, -0.7644723435117509, -0.729845543820892, -0.6930907555099242, -0.6549732937667205, -0.6162095244405188, -0.5774454092097931, -0.5392430287939641, -0.5020741751974395, -0.4663197342751849, -0.43227345979119924, -0.400148795090194, -0.3700875615606263, -0.3421695493456215, -0.3164222741648527, -0.2928303772258506, -0.2713443276439088, -0.25188823256369963, -0.23436666971341324, -0.21867053457336305, -0.20468194548197166, -0.19227828083566093, -0.18133543850051753, -0.17173041315963317, -0.16334328610143184, -0.1560587165396387, -0.14976701582071789, -0.14436487710427354, -0.13975582413742205, -0.13585043410629277, -0.1325663815335928 ], [ -0.5698835799264392, -0.6029164547163016, -0.6365168327025353, -0.670319793049375, -0.7038920981850739, -0.73673221280423, -0.7682739823240222, -0.7978949932116199, -0.824930559154212, -0.8486940256926139, -0.8685036316192498, -0.8837155005610281, -0.8937614460863175, -0.8981891000754367, -0.8967004008814697, -0.8891830352283089, -0.875728907893335, -0.8566350919988577, -0.8323860209201104, -0.8036196370292968, -0.7710831280569158, -0.7355848641175327, -0.6979484010470693, -0.6589727241301107, -0.6194010305320765, -0.5798987473909896, -0.5410403261168375, -0.5033036397722638, -0.4670704637959353, -0.43263144653601776, -0.4001940852907845, -0.36989243879658823, -0.34179756736728945, -0.3159279532759679, -0.2922593888793025, -0.2707340145898633, -0.2512683394780394, -0.23376018690380532, -0.21809458235441764, -0.20414864789163364, -0.19179559427704468, -0.18090791393525396, -0.17135988020157716, -0.1630294543802837, -0.15579969460428666, -0.14955975113301, -0.14420552274444753, -0.13964003902479133, -0.13577362408120025, -0.13252388873745952 ], [ -0.5689005967972489, -0.6021170724015081, -0.6359521817477759, -0.6700441879429329, -0.7039611340239585, -0.7372001235230277, -0.7691902185018313, -0.7993000549250324, -0.8268512267313036, -0.8511382644290282, -0.8714556049430044, -0.8871313242315773, -0.8975665709201903, -0.9022784618417978, -0.9009424749086511, -0.8934283240246854, -0.8798221227918632, -0.8604289392483591, -0.8357538929598123, -0.8064649647556641, -0.7733442823252196, -0.737235663504096, -0.6989950742948863, -0.659448510824762, -0.6193595962954437, -0.5794073923659715, -0.54017369500551, -0.5021383701214437, -0.4656809751797815, -0.43108689414833673, -0.39855638085054224, -0.3682151740509277, -0.34012564995338646, -0.3142977684952444, -0.29069932210036536, -0.26926519802766047, -0.24990551744555556, -0.23251262143916904, -0.21696694458636154, -0.20314185917295013, -0.19090759531077472, -0.1801343505119819, -0.17069470151627963, -0.16246542490998378, -0.15532882379943225, -0.14917364717941806, -0.14389567775041529, -0.13939805344876288, -0.13559137823655876, -0.13239366893609805 ], [ -0.5652679905401117, -0.5984083972662327, -0.6322070581737724, -0.666308352403942, -0.700285437473029, -0.7336388265561742, -0.7657984744884038, -0.7961305280877157, -0.8239498844933364, -0.8485395147385852, -0.8691771242299238, -0.8851691582826646, -0.8958914123109245, -0.9008343542095646, -0.8996492787701437, -0.8921886548526463, -0.8785320575341509, -0.8589902938706593, -0.8340852925235127, -0.8045095545430325, -0.7710732001857121, -0.7346475621944808, -0.6961126675916521, -0.6563133259836984, -0.6160260180822759, -0.5759368437907612, -0.5366295222496283, -0.49858174079900036, -0.4621678883429755, -0.427666248882029, -0.39526895776138476, -0.3650933419146466, -0.3371936050957174, -0.3115721331932018, -0.28818995844513373, -0.2669761266613073, -0.24783586113809553, -0.2306575191098503, -0.21531840143733266, -0.2016895134844595, -0.1896393929975028, -0.17903712571519476, -0.1697546661763728, -0.1616685731405888, -0.15466125851172896, -0.14862183718122474, -0.14344665375049415, -0.1390395512280188, -0.1353119368388001, -0.13218269117403403 ], [ -0.559001489356496, -0.5918013106944146, -0.6252859313316712, -0.6591086234364806, -0.6928513968054205, -0.7260229355512233, -0.7580598655772633, -0.7883325361540727, -0.8161565315092583, -0.8408110013997685, -0.8615645895065516, -0.877709268760545, -0.8886017410346099, -0.893710905415722, -0.8926675804524322, -0.8853091183304675, -0.8717087879015382, -0.8521810840143851, -0.8272601704920408, -0.7976561026100335, -0.7641981743751785, -0.7277753598880164, -0.6892816642090528, -0.6495711484803929, -0.6094246473230823, -0.5695281846079926, -0.5304618240824922, -0.4926970289295517, -0.4566003940876109, -0.42244171392334917, -0.39040463021631433, -0.3605984687229604, -0.33307024200235125, -0.3078161256354211, -0.2847919829991502, -0.2639227164421041, -0.2451103663655993, -0.22824097513253477, -0.21319029142546816, -0.19982842294485367, -0.18802355948616759, -0.17764489074278067, -0.168564838179665, -0.1606607111585555, -0.1538158862848198, -0.147920597067568, -0.14287240929858952, -0.1385764465704527, -0.13494542034058538, -0.1318995100215698 ], [ -0.5501735088487785, -0.5823704683215247, -0.6152645919167367, -0.6485205606371971, -0.6817327275267697, -0.7144225038575074, -0.7460388340040696, -0.7759629381633041, -0.8035185861982659, -0.8279891221712614, -0.8486422657088639, -0.8647633816828393, -0.875697352834605, -0.8808979494661797, -0.8799808066513062, -0.8727717492695384, -0.8593388373332231, -0.8399981399927933, -0.8152904863106383, -0.7859348770588637, -0.7527690755687914, -0.7166880491947347, -0.6785882608337084, -0.6393224596929272, -0.5996667694829254, -0.560299850900657, -0.5217926689351733, -0.48460677060900215, -0.4490988170192616, -0.41552926585336203, -0.38407343151934037, -0.3548335486894355, -0.3278508537634493, -0.303117033714896, -0.280584656259745, -0.2601763900856751, -0.2417929587544569, -0.22531985955712633, -0.21063293132932848, -0.1976028833398243, -0.1860989088506774, -0.1759915076976722, -0.16715463642039718, -0.15946729494779494, -0.15281464753564422, -0.1470887638074202, -0.14218905415456473, -0.1380224628732764, -0.1345034725037768, -0.13155396400277586 ], [ -0.5389121896891425, -0.5702534555863115, -0.6022894783535432, -0.6346984951130101, -0.6670902859743341, -0.6990031247461009, -0.7299035271001858, -0.7591899414641422, -0.7862016682596309, -0.8102343526178662, -0.8305633549443077, -0.8464761356712744, -0.8573143050569125, -0.862524543016322, -0.8617142137083315, -0.8547023806284222, -0.8415533109029135, -0.8225818740250483, -0.7983285835864011, -0.7695110342218465, -0.7369630772312772, -0.7015726751966971, -0.6642263187538738, -0.6257644176136046, -0.5869492458222226, -0.5484450456495168, -0.5108086844208498, -0.47448866796013023, -0.43983019446675325, -0.407084130792117, -0.37641816261267713, -0.3479287916705603, -0.32165324845821475, -0.2975807181614979, -0.2756625307055359, -0.25582114808829415, -0.23795790642658773, -0.22195955002722967, -0.20770364252076057, -0.19506296539777765, -0.1839090244936541, -0.1741147853771372, -0.16555675294856248, -0.15811650142662087, -0.15168175005071688, -0.14614706841173652, -0.14141428409567863, -0.13739265474032375, -0.1339988569220344, -0.13115683562771607 ], [ -0.5253982132502117, -0.5556474313930237, -0.5865742089456576, -0.6178720343610197, -0.6491686569141573, -0.680022737357333, -0.7099229800875707, -0.7382908374980016, -0.7644880754655601, -0.7878306607664678, -0.8076105550477948, -0.8231269924860005, -0.8337283468897476, -0.8388639417394484, -0.8381411662652133, -0.8313776489781771, -0.8186348047404615, -0.8002222242612663, -0.7766714594727013, -0.7486867846871498, -0.7170845865444591, -0.682732144051769, -0.6464933299046408, -0.6091853530795588, -0.5715479464061783, -0.5342245059365077, -0.4977535177417652, -0.46256804547164965, -0.42900096680460104, -0.39729388145774436, -0.36760800855426934, -0.3400358206091947, -0.31461254857704885, -0.29132700503096903, -0.2701314070344393, -0.25095004685398614, -0.233686771677718, -0.21823130658307505, -0.20446449935351715, -0.1922625899792722, -0.18150061815047297, -0.1720550833712055, -0.16380596779163664, -0.15663822381388343, -0.15044281861556996, -0.14511741708123105, -0.14056677399043516, -0.13670289616565962, -0.13344502591984425, -0.13071948871162864 ], [ -0.509859521546781, -0.5388033966141911, -0.5683934686195937, -0.5983396888138912, -0.6282897083927386, -0.657825380071269, -0.686461430242122, -0.7136473295572641, -0.7387736432126149, -0.761184418519795, -0.7801974313590176, -0.7951342090918251, -0.8053612055835009, -0.8103414133829139, -0.8096912777939285, -0.803232110553491, -0.7910223184204509, -0.773360599430484, -0.7507594681039385, -0.7238970029056003, -0.6935581909039528, -0.6605760831620502, -0.6257798089138736, -0.5899532854202783, -0.5538059151823852, -0.5179547568340627, -0.4829165229673088, -0.44910722069324494, -0.4168471939266571, -0.38636958587606635, -0.35783064464584635, -0.33132071439707683, -0.30687511850228744, -0.2844844265693982, -0.2641038077499893, -0.24566132198565316, -0.22906510337281286, -0.21420945790370388, -0.20097994088869692, -0.18925750440774833, -0.17892181739851054, -0.1698538643641761, -0.16193792609159896, -0.1550630393804075, -0.1491240241924484, -0.14402215698684478, -0.13966555911194145, -0.13596935951902644, -0.1328556820816657, -0.1302534996396505 ], [ -0.4925641456343428, -0.5200182862599818, -0.5480744225015248, -0.5764597318670096, -0.6048431134905727, -0.6328317025265073, -0.6599692774718825, -0.6857375271472466, -0.7095614424000165, -0.7308204504904212, -0.7488672554676774, -0.7630564562361613, -0.7727843269753734, -0.7775387862293361, -0.7769540716226935, -0.7708594094932378, -0.7593088441289926, -0.7425835068290936, -0.7211662322709458, -0.6956960777255495, -0.6669132886001177, -0.6356041145975115, -0.6025519959247296, -0.5684987181903743, -0.534116782052234, -0.49999252303075176, -0.46661842485310234, -0.43439255835067514, -0.40362304345227107, -0.3745357013080457, -0.3472834572437008, -0.32195644554503483, -0.29859209349542537, -0.27718471213600715, -0.25769430475544186, -0.2400544362635822, -0.2241791005095524, -0.2099685880084669, -0.19731440044375992, -0.18610328591623482, -0.17622048426674358, -0.1675522781551354, -0.15998794555225154, -0.1534212049777786, -0.1477512378131322, -0.14288336355410136, -0.13872943482790462, -0.13520800999837956, -0.13224435262437806, -0.12977029916250976 ], [ -0.47381142026899176, -0.49962514948876996, -0.5259858692881226, -0.552638393839176, -0.5792737309590061, -0.6055257753501397, -0.6309696696219793, -0.6551227429456892, -0.6774492605392418, -0.697370601989766, -0.7142828372483455, -0.7275837034034179, -0.7367101331507319, -0.7411850253161455, -0.7406677317320658, -0.7349983244731664, -0.7242243425343161, -0.708602640565583, -0.6885764424999581, -0.6647342392304323, -0.6377598075539563, -0.6083817638893698, -0.5773286267433702, -0.5452927892802569, -0.5129046540756269, -0.4807165732857003, -0.4491951976672593, -0.41872035811926095, -0.3895885831797315, -0.36201961562787954, -0.3361646508580233, -0.3121153613297277, -0.28991304820623565, -0.2695574708224563, -0.25101506069844826, -0.23422634374778276, -0.21911248220143836, -0.20558091292413844, -0.19353010549454144, -0.18285349499507914, -0.1734426638748474, -0.16518985722091784, -0.15798991872256807, -0.15174173261315366, -0.1463492516211316, -0.14172218377995244, -0.1377764028263318, -0.13443413856391007, -0.13162399546124143, -0.12928084018868424 ], [ -0.45392194785446527, -0.4779817815388762, -0.5025254640965996, -0.5273156274462649, -0.552065901439879, -0.5764379440228914, -0.6000399712458347, -0.6224276389684084, -0.6431084488022896, -0.6615512168184305, -0.6772024320477452, -0.6895112449233461, -0.6979638583136567, -0.7021257395096517, -0.70168644732825, -0.6964984350476571, -0.6866004300912694, -0.6722193659026127, -0.6537508876484724, -0.6317238027399572, -0.6067562240025478, -0.5795106984048612, -0.5506537134549876, -0.5208227901847744, -0.49060244496878186, -0.4605088164392496, -0.4309817874833268, -0.4023829921548409, -0.3749980801113668, -0.3490418373109536, -0.32466506236513176, -0.3019623733679197, -0.28098033862056576, -0.26172549183891053, -0.24417192277061714, -0.22826823874605623, -0.2139437772441906, -0.20111401655626993, -0.18968518255099828, -0.17955808600411444, -0.17063124899160836, -0.16280339276554834, -0.15597536565326775, -0.15005158996660933, -0.1449411034842345, -0.14055826522618964, -0.13682318808095134, -0.1336619531733877, -0.13100665323032157, -0.12879530496585478 ], [ -0.43322677295877016, -0.45545831027190126, -0.4781055410189081, -0.500948979781366, -0.5237251667548929, -0.5461241675683273, -0.567788451884507, -0.5883139344196254, -0.6072542510415282, -0.6241296471134595, -0.6384420416563226, -0.6496976267192833, -0.6574373748422043, -0.6612737625751636, -0.660929134460891, -0.656268631871875, -0.6473202400471597, -0.6342771572413791, -0.6174822858086498, -0.5973988534599883, -0.5745733048141929, -0.549596558382976, -0.5230683751470386, -0.49556781509109227, -0.46763108514290547, -0.4397367545427691, -0.41229745005631613, -0.38565675220238094, -0.3600899868602891, -0.3358077751560057, -0.31296142403090027, -0.2916494355542818, -0.2719245687205225, -0.2538010130812121, -0.23726134110774796, -0.22226300144023506, -0.20874419866660346, -0.19662907552633832, -0.18583216934529653, -0.1762621562186149, -0.16782492526660991, -0.16042604321227172, -0.15397267884559634, -0.14837505984876592, -0.143547532884082, -0.13940929336866692, -0.13588484519389477, -0.13290424368879594, -0.13040316800178053, -0.12832286219746575 ], [ -0.4120563231943685, -0.43242438821230433, -0.4531382983019319, -0.47399647055847477, -0.4947584884237366, -0.5151431603637163, -0.5348278626483082, -0.5534498646107434, -0.5706105694895974, -0.5858838231093859, -0.5988295212561823, -0.6090134666894389, -0.6160335223613775, -0.6195504421919868, -0.6193196222834711, -0.6152182871260672, -0.6072624480457538, -0.5956098814431529, -0.5805486793328662, -0.5624741169708916, -0.5418584482423175, -0.5192185161610204, -0.4950852124607073, -0.4699774619941902, -0.4443820198939106, -0.41873924101578636, -0.3934342505876433, -0.3687926119854176, -0.3450795411540892, -0.322501809926917, -0.30121160354036425, -0.2813117058945991, -0.26286147781719327, -0.24588317992037942, -0.23036827931162657, -0.21628346757361377, -0.20357620110848657, -0.1921796489350409, -0.18201699397408438, -0.17300508066466602, -0.16505743513711957, -0.15808670593273272, -0.15200658566432285, -0.14673327933094532, -0.14218658526881667, -0.13829065162582777, -0.13497446610663077, -0.13217213052891041, -0.12982296515309105, -0.1278714812636908 ], [ -0.3907297346708676, -0.40923674996971854, -0.4280212904816258, -0.4468996668335558, -0.46565449036568746, -0.4840333237579468, -0.5017485249061725, -0.5184788793901848, -0.5338737864074945, -0.5475608944240068, -0.5591580745119384, -0.5682903188631825, -0.5746114025650321, -0.5778289087016775, -0.5777297307235476, -0.5742020140964882, -0.5672493817351769, -0.5569945416284742, -0.5436716242857316, -0.5276089353579547, -0.5092053866642224, -0.488904346026374, -0.467168191135795, -0.4444558760202188, -0.4212047330729613, -0.3978168346720973, -0.37464966320904347, -0.3520105709564734, -0.3301544413949902, -0.3092839735149568, -0.2895520327505832, -0.27106553264319433, -0.253890341192953, -0.23805675553899253, -0.22356515828293108, -0.21039155064497392, -0.19849274149404397, -0.18781104854541691, -0.17827843336100418, -0.16982004309216753, -0.16235716939185357, -0.1558096602023591, -0.1500978354227237, -0.14514396509391625, -0.14087337082343704, -0.13721520947547466, -0.13410299407709764, -0.13147490148557311, -0.1292739103798829, -0.12744780709506387 ], [ -0.36954518351201293, -0.38622791974383663, -0.40312422903398604, -0.42006824601205134, -0.436865406056033, -0.453291662510106, -0.4690937928006061, -0.483991273737968, -0.4976803122242105, -0.5098406755606869, -0.5201459041722768, -0.5282772166479591, -0.5339408545723989, -0.5368877666887962, -0.5369335611960822, -0.5339759023284848, -0.5280063985407059, -0.5191147573064352, -0.5074844197245183, -0.493380538263598, -0.4771324451406172, -0.4591133234979449, -0.4397196284527785, -0.419352159249244, -0.3983998949822714, -0.3772270466476625, -0.35616336559693107, -0.33549754971843726, -0.31547349886847875, -0.29628910433494204, -0.27809718621425117, -0.2610081323794403, -0.24509376566569588, -0.23039198134289793, -0.21691174905590818, -0.20463814822548193, -0.1935371886105851, -0.18356024684438488, -0.1746480182636191, -0.16673393819353705, -0.1597470677597539, -0.1536144676522136, -0.14826310120205122, -0.14362131795864325, -0.13961997281630473, -0.1361932354605621, -0.1332791419376611, -0.1308199356028399, -0.12876223937512493, -0.12705709567529422 ], [ -0.34877177514748914, -0.36369677236477826, -0.3787779945939804, -0.3938672108638104, -0.4087922286338821, -0.4233566022419807, -0.4373403043171977, -0.45050172311161873, -0.46258140206834975, -0.47330794552079875, -0.4824064338210806, -0.48960947640346136, -0.49467065174574, -0.4973795520388833, -0.4975770533578288, -0.49516893967144204, -0.49013584413180145, -0.4825378117983962, -0.4725126356289946, -0.4602682344247023, -0.4460703449361874, -0.43022736697126185, -0.413074227760325, -0.3949567559291601, -0.37621753667181185, -0.35718378571996645, -0.3381575196676352, -0.31940816738405076, -0.30116766618408103, -0.28362796026681797, -0.26694067339253147, -0.25121860075983216, -0.23653858862228497, -0.2229453537929614, -0.21045582903966972, -0.19906368605516783, -0.18874376688170638, -0.17945623350721096, -0.17115031532493974, -0.1637675912845153, -0.15724478704544048, -0.15151609833579538, -0.14651507198417352, -0.1421760879607573, -0.1384354913551522, -0.13523242436676408, -0.13250940657117594, -0.13021270809395274, -0.12829255571141757, -0.12670320689819103 ], [ -0.3286434048369089, -0.34190147218006584, -0.35526652612900983, -0.36860759726879233, -0.3817741145686178, -0.39459599588234734, -0.4068845552394596, -0.418434480574331, -0.42902715207266023, -0.4384355523603543, -0.4464309459557487, -0.4527913603905612, -0.4573116772034657, -0.4598148425875073, -0.460163360506801, -0.45826989933528867, -0.45410564421917426, -0.44770510725097984, -0.439166547618174, -0.4286478713285786, -0.41635863117982974, -0.40254926201895486, -0.3874988286286124, -0.37150239554514103, -0.3548588371940397, -0.3378596667387622, -0.3207793315345331, -0.3038673482813751, -0.28734254923368574, -0.27138954821269534, -0.25615733959316384, -0.24175976798879117, -0.22827749045487727, -0.21576100786694208, -0.2042343567813764, -0.19369910698766765, -0.18413838269684943, -0.17552070128505992, -0.16780349293011654, -0.16093622244786115, -0.15486307970224578, -0.14952523776373872, -0.14486270021729536, -0.14081577274020107, -0.13732620131675455, -0.1343380220285147, -0.13179816673552702, -0.12965686630175266, -0.12786788918144248, -0.12638864879259443 ], [ -0.30935481731175996, -0.32105506989701527, -0.3328219276187665, -0.34454108018677365, -0.3560825075042805, -0.3673008284712927, -0.37803630836843916, -0.38811668533935195, -0.3973599721858913, -0.4055783637228339, -0.4125833282122992, -0.4181918829209372, -0.42223394710626283, -0.4245605224430194, -0.42505225786309553, -0.42362771875246225, -0.42025046128219795, -0.4149339336671914, -0.4077434009746096, -0.3987945194640732, -0.3882487232154411, -0.37630602103671734, -0.3631960022310678, -0.34916783189080125, -0.33447990360386914, -0.3193897300337993, -0.30414462123214564, -0.2889736727172368, -0.27408149226521417, -0.2596439181647916, -0.24580576162998505, -0.23268040217611857, -0.2203509209529634, -0.2088723874413972, -0.1982749101385545, -0.18856710161859558, -0.1797396717013986, -0.17176893287551181, -0.16462006882029967, -0.1582500740757417, -0.15261031845265804, -0.14764872376289384, -0.14331156419551805, -0.1395449169897035, -0.1362957988409531, -0.1335130274388448, -0.1311478481144313, -0.12915436392277496, -0.12748980447545616, -0.1261146651088056 ], [ -0.2910598912172937, -0.3013237734374771, -0.31162278717807224, -0.3218584320004919, -0.33191986432956216, -0.34168438410638924, -0.35101842121098403, -0.3597791098009152, -0.36781652681585697, -0.37497665081301523, -0.38110507301255664, -0.3860514681991891, -0.3896748056034184, -0.39184922935312316, -0.39247043131107606, -0.3914621563505226, -0.388782256195384, -0.38442754489232783, -0.37843672300897696, -0.37089086818403044, -0.3619113548715961, -0.3516554156606669, -0.3403097770739891, -0.3280828845596453, -0.3151962466049332, -0.30187545002627736, -0.28834143793876954, -0.2748026492379766, -0.26144854026507613, -0.24844483805874917, -0.23593065218181436, -0.2240173585053315, -0.21278900876199808, -0.2023039314090214, -0.19259716631117918, -0.1836834000334785, -0.17556012015436734, -0.168210769441898, -0.16160774262395255, -0.1557151232952716, -0.15049110334575028, -0.1458900616601529, -0.14186430358456514, -0.13836547927096898, -0.1353457091655873, -0.13275845018114224, -0.13055913785855283, -0.12870563919688516, -0.1271585486798426, -0.12588135700092512 ], [ -0.27387198678811664, -0.28282766930152253, -0.2917953984185754, -0.30069140235284264, -0.3094223871068819, -0.3178860573175467, -0.32597198872648486, -0.33356288971302983, -0.34053627893659427, -0.34676659826049566, -0.35212778142147383, -0.35649631302858564, -0.35975483152295407, -0.3617963271877072, -0.3625289225635868, -0.36188107135175307, -0.3598067959594569, -0.35629038679048786, -0.3513499119027101, -0.3450389861102127, -0.3374464844331204, -0.32869415494275644, -0.3189323024304425, -0.3083338545154242, -0.297087219813725, -0.285388440662608, -0.27343322640524426, -0.2614094849027505, -0.24949090960150003, -0.23783202546026114, -0.2265648885054037, -0.21579742574238744, -0.20561323819617897, -0.19607258958003254, -0.18721426453155854, -0.17905798922472738, -0.17160714574880814, -0.16485156428396314, -0.15877023239795296, -0.15333381169117877, -0.14850689497688147, -0.14424997106897208, -0.1405210894021372, -0.13727723423137622, -0.13447542944651675, -0.1320736014957527, -0.13003123080408308, -0.1283098224570422, -0.12687322564112824, -0.12568782903445613 ], [ -0.25786604806632824, -0.26564348919969344, -0.2734173520866905, -0.2811173229383376, -0.2886658543087016, -0.29597864111928607, -0.30296531956818806, -0.30953039528686815, -0.31557440313644236, -0.3209953065382496, -0.3256901651851769, -0.3295571369939789, -0.33249792125499406, -0.33442076654602454, -0.3352441214528104, -0.33490087473597385, -0.3333429321765161, -0.33054567686180747, -0.3265117438808566, -0.32127356137767515, -0.3148942538548744, -0.3074667070317654, -0.2991107922121595, -0.2899689150973791, -0.2802001977647587, -0.26997373461574636, -0.2594614702206516, -0.24883129399515802, -0.23824090422807057, -0.22783286353635965, -0.21773108303288213, -0.2080387807943988, -0.19883780132746287, -0.19018907724972328, -0.18213396419393602, -0.1746961748780131, -0.16788406370113879, -0.16169305509521276, -0.15610805627944618, -0.15110574079785116, -0.1466566292130813, -0.1427269258809798, -0.13928009565670002, -0.13627818236871692, -0.13368288302511855, -0.1314563991755902, -0.12956209076618846, -0.12796495916871592, -0.12663198564275296, -0.1255323499235781 ], [ -0.24308205838473695, -0.2498089099095456, -0.25652284661098623, -0.2631656132570491, -0.2696735180025514, -0.2759778116222721, -0.2820051853915347, -0.2876783787137413, -0.292916891560249, -0.2976378135759564, -0.3017568150615453, -0.30518939226371766, -0.3078525062033669, -0.30966677360200523, -0.31055932865401054, -0.31046735757350724, -0.30934212954202484, -0.3071531605824242, -0.3038920187241024, -0.2995752556970131, -0.2942460329201386, -0.28797416050796476, -0.28085444261183024, -0.27300339402794327, -0.2645545549536512, -0.2556527786270395, -0.2464479824595258, -0.2370889086125252, -0.22771741370577614, -0.21846370216501254, -0.20944276105085366, -0.20075208513165593, -0.1924706340027314, -0.18465885843420715, -0.17735957566215987, -0.17059945686912548, -0.16439090332261463, -0.15873411865540882, -0.15361922365031755, -0.14902829956593833, -0.14493728217742058, -0.1413176591419777, -0.13813794737156987, -0.13536494506859753, -0.1329647657077263, -0.13090366947476906, -0.1291487124602554, -0.1276682361217369, -0.126432219913862, -0.12541251913500834 ], [ -0.2295294125389944, -0.23532784311506022, -0.2411090455089003, -0.24682536279279846, -0.2524250666181779, -0.257852612855654, -0.26304893758792147, -0.26795178061740405, -0.2724960348027216, -0.2766141440185358, -0.2802366115651279, -0.28329272922438375, -0.285711680157431, -0.2874241830160801, -0.28836480544447246, -0.2884749707911872, -0.28770652627746185, -0.28602557499547654, -0.2834161500407739, -0.2798832651644183, -0.27545492026278773, -0.2701827516087847, -0.26414116561120937, -0.25742495716703684, -0.2501455751137355, -0.24242634497617457, -0.2343970737929359, -0.22618852025241373, -0.21792720049207745, -0.20973091863721377, -0.20170528299041435, -0.19394132482322277, -0.18651420586989348, -0.17948290161934788, -0.172890687011846, -0.1667662263468786, -0.16112507202165488, -0.15597139758807266, -0.151299820923939, -0.14709720648225683, -0.14334436724256766, -0.14001761467065532, -0.1370901276401741, -0.1345331287613773, -0.1323168693258724, -0.13041143280707923, -0.12878737233035875, -0.12741620049229213, -0.12627075102648305, -0.12532543163515597 ], [ -0.21719178407878081, -0.22217620425784446, -0.2271428676519317, -0.23205326004315324, -0.2368657985581019, -0.24153595752213414, -0.24601638079704707, -0.25025697088793075, -0.2542049615147027, -0.25780500872594014, -0.26099937508900856, -0.26372832543101987, -0.2659308873106824, -0.2675461358200266, -0.2685151225726002, -0.26878347604314157, -0.2683045672452834, -0.2670429925905784, -0.2649780141360737, -0.2621065470652053, -0.25844530546634414, -0.2540318003526102, -0.2489240081273219, -0.24319867307930915, -0.23694835721405438, -0.23027748850274002, -0.2232977657239254, -0.2161233358926598, -0.20886615769914055, -0.20163190399628395, -0.19451665458651712, -0.18760451147421722, -0.18096615583656228, -0.1746582757963444, -0.16872373415351016, -0.1631923152170741, -0.15808188450963728, -0.15339980712695828, -0.14914449278967756, -0.14530696227547663, -0.14187235678848192, -0.13882133630473903, -0.13613133368669167, -0.13377764794331487, -0.13173437255639603, -0.1299751637469787, -0.1284738595085526, -0.1272049637990431, -0.12614401203332354, -0.12526783444740225 ] ], "zauto": true, "zmax": 0.9022784618417978, "zmin": -0.9022784618417978 }, { "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.398026997349526, 0.397626987612658, 0.39721735279304227, 0.39680220448077425, 0.39638615038377756, 0.39597420485429385, 0.395571672649617, 0.39518400899178663, 0.3948166610520718, 0.39447489792893137, 0.3941636377949456, 0.393887281942579, 0.3936495657763735, 0.3934534362600169, 0.3933009639007935, 0.39319329511729056, 0.39313064797089753, 0.3931123510182387, 0.3931369217866461, 0.39320217842709526, 0.3933053757641457, 0.39344335547145187, 0.3936126995824769, 0.3938098770120062, 0.3940313741173706, 0.3942738023804413, 0.39453397879263025, 0.3948089771982598, 0.39509615142593263, 0.39539313327700487, 0.39569781016523986, 0.3960082883014635, 0.39632284775397697, 0.39663989552143225, 0.39695792202070507, 0.3972754652525283, 0.39759108552195066, 0.39790335212448796, 0.3982108420151205, 0.3985121492816511, 0.3988059033344501, 0.3990907931472275, 0.399365594643043, 0.39962919838583444, 0.39988063505360494, 0.4001190966629068, 0.4003439521084286, 0.40055475620381814, 0.4007512519991463, 0.4009333666608516 ], [ 0.3974652388800759, 0.3970129706658021, 0.39655008715798745, 0.3960813607853401, 0.3956121355313118, 0.3951482198855118, 0.39469574800385093, 0.3942610128810512, 0.3938502778656858, 0.39346957521710224, 0.39312450233832674, 0.39282002754570117, 0.3925603175255002, 0.3923485978374021, 0.39218705593214287, 0.39207679327242495, 0.39201782953391917, 0.3920091578770609, 0.39204884634163717, 0.3921341769483016, 0.3922618114595125, 0.3924279712142759, 0.39262861812469363, 0.39285962477877084, 0.39311692347165844, 0.39339662662396874, 0.39369511411928004, 0.394009086266347, 0.39433558405192426, 0.3946719808395006, 0.3950159515047144, 0.39536542608121455, 0.3957185353066631, 0.39607355506840974, 0.39642885577406145, 0.3967828612779142, 0.3971340203654851, 0.3974807921208839, 0.3978216449423521, 0.3981550676628816, 0.3984795902645349, 0.3987938110886729, 0.39909642723634725, 0.39938626498238183, 0.3996623074246958, 0.3999237171736866, 0.40016985256820553, 0.40040027660471017, 0.40061475841834154, 0.40081326771066367 ], [ 0.3968206692983943, 0.39630751730319036, 0.39578254111447464, 0.3952513026969653, 0.39472002998457717, 0.39419548872164856, 0.39368481606020417, 0.3931953205862422, 0.39273425658837047, 0.39230858332340846, 0.3919247224177274, 0.39158832801666393, 0.3913040845642591, 0.3910755459857205, 0.39090502754162854, 0.3907935578973175, 0.3907408943512141, 0.3907455991762512, 0.39080517020077565, 0.39091621462741644, 0.3910746521034989, 0.39127593150144657, 0.39151524583886904, 0.3917877311722282, 0.3920886378808916, 0.39241346615505074, 0.3927580612945298, 0.39311866820394614, 0.3934919478723949, 0.3938749613755315, 0.3942651288573148, 0.39466017196345277, 0.39505804832988484, 0.39545688607877344, 0.39585492500300695, 0.3962504694272331, 0.3966418558323595, 0.39702743642680755, 0.397405578120147, 0.3977746749400548, 0.3981331709185901, 0.3984795898928509, 0.3988125685039026, 0.3991308888825579, 0.39943350799985566, 0.39971958133869284, 0.39998847931455117, 0.4002397956504887, 0.4004733476240025, 0.40068916870103 ], [ 0.39608143925210043, 0.39549727628139353, 0.3948997911151914, 0.39429548730626524, 0.3936916530337128, 0.393096207744587, 0.3925175022444134, 0.3919640779116958, 0.3914443946634641, 0.39096654101192435, 0.39053794255740487, 0.3901650870946079, 0.3898532847823977, 0.3896064803152312, 0.38942713073126517, 0.3893161576435997, 0.38927297676885947, 0.38929560130820995, 0.389380809743387, 0.3895243636384488, 0.389721257632612, 0.3899659822893393, 0.3902527808885923, 0.39057588342095345, 0.39092970457626763, 0.3913089969086868, 0.39170895506168524, 0.3921252714456653, 0.392554147664108, 0.3929922689918348, 0.39343675116345905, 0.3938850695993466, 0.3943349810548639, 0.3947844466828311, 0.39523156386035835, 0.39567451208918103, 0.3961115160757747, 0.39654082695727944, 0.39696072074772576, 0.3973695115723428, 0.3977655762153114, 0.39814738595088456, 0.3985135415311222, 0.3988628074971828, 0.39919414257028996, 0.39950672365627504, 0.39979996185858885, 0.4000735097457041, 0.40032725988622764, 0.40056133529816834 ], [ 0.39523477612390323, 0.3945677957164234, 0.393885619087219, 0.39319586948863666, 0.39250710413035755, 0.39182863095420845, 0.39117026815887623, 0.39054205327558617, 0.38995391362153226, 0.38941531471453433, 0.3889349070993726, 0.3885201943902571, 0.3881772456559037, 0.38791047325947436, 0.3877224929148471, 0.3876140763785799, 0.3875841995312214, 0.38763018051147374, 0.3877478950391797, 0.38793205000761344, 0.38817649252350434, 0.388474530176154, 0.38881923941269064, 0.38920374214422754, 0.38962143552709705, 0.3900661655511431, 0.39053234091404504, 0.39101498904720833, 0.39150976061695175, 0.3920128920647727, 0.39252113765739993, 0.3930316831270142, 0.3935420524464736, 0.3940500178341901, 0.3945535209919884, 0.39505061113214496, 0.3955394028180938, 0.3960180542636473, 0.3964847646949614, 0.39693778780579114, 0.3973754572953327, 0.39779621997497605, 0.398198671919971, 0.3985815935396872, 0.39894398013703836, 0.3992850654060139, 0.3996043362631642, 0.39990153832679115, 0.4001766721712994, 0.4004299811437616 ], [ 0.3942671227703459, 0.3935036647177749, 0.3927226545904455, 0.39193304212220853, 0.3911448987986889, 0.39036919952294713, 0.3896175332686462, 0.3889017507442775, 0.38823356353696004, 0.3876241153736267, 0.3870835512027432, 0.38662061291505284, 0.38624229097329105, 0.38595355858525227, 0.38575720932937774, 0.3856538108065926, 0.38564177687372225, 0.3857175505532976, 0.3858758801558152, 0.38611016370131923, 0.3864128322484666, 0.3867757416122053, 0.3871905440482528, 0.3876490162391753, 0.38814332647600425, 0.3886662313164895, 0.38921119928849757, 0.38977246563676776, 0.39034502716340136, 0.39092458962074333, 0.3915074818415743, 0.39209055097659556, 0.3926710521151366, 0.3932465435203923, 0.3938147960645716, 0.3943737225373131, 0.3949213296191783, 0.39545569270267833, 0.3959749515835337, 0.39647732344402825, 0.39696112855117166, 0.3974248236775305, 0.3978670383552355, 0.39828660959154166, 0.3986826114851895, 0.399054377159818, 0.39940151145560043, 0.399723893793677, 0.4000216714752547, 0.40029524435100816 ], [ 0.39316433234864173, 0.3922887171065605, 0.391392584909801, 0.3904864498098893, 0.3895821832323915, 0.3886927547594336, 0.387831884239571, 0.387013614511287, 0.38625182234321204, 0.3855596932745919, 0.3849491927717515, 0.3844305703395152, 0.38401193394225314, 0.3836989286916113, 0.38349454622673185, 0.3833990802073357, 0.38341023015180326, 0.38352334220671763, 0.3837317631799412, 0.3840272749291256, 0.38440057106992764, 0.3848417373518876, 0.3853407006283768, 0.3858876182201348, 0.3864731883857302, 0.3870888722193294, 0.38772702638437484, 0.388380953740926, 0.3890448845760668, 0.38971390459723537, 0.39038384718790936, 0.3910511669511862, 0.39171280969430994, 0.3923660911916199, 0.39300859374404834, 0.39363808611667694, 0.39425246919582463, 0.39484974689699776, 0.39542801962739127, 0.3959854960381152, 0.39652051790074533, 0.3970315926620783, 0.3975174284783751, 0.39797696718535536, 0.3984094115887541, 0.3988142445292728, 0.39919123826529124, 0.399540453728686, 0.3998622300724308, 0.40015716560039505 ], [ 0.39191192471940167, 0.39090630376526064, 0.38987644070386873, 0.38883468477953337, 0.3877950372424211, 0.3867728450466827, 0.38578438328741427, 0.38484633686485437, 0.3839752026424618, 0.383186644028408, 0.3824948389598731, 0.3819118681006628, 0.3814471912601955, 0.38110725571949716, 0.3808952702404855, 0.3808111639395787, 0.38085173173029757, 0.38101095009858893, 0.3812804311357533, 0.3816499712196497, 0.38210814491553874, 0.382642894950738, 0.3832420748799594, 0.38389391089865194, 0.3845873613581305, 0.38531236503157856, 0.3860599804977143, 0.38682242804736283, 0.3875930517118951, 0.3883662222840667, 0.38913720284568104, 0.38990199685746063, 0.39065719592693066, 0.39139984056626287, 0.39212730312632427, 0.3928371980795661, 0.39352732123880035, 0.3941956165454238, 0.39484016684557127, 0.3954592036213427, 0.3960511299177294, 0.39661455061709694, 0.39714830464210016, 0.397651494476558, 0.3981235094395504, 0.3985640402961464, 0.3989730839218367, 0.3993509377646704, 0.39969818470511576, 0.4000156695627978 ], [ 0.3904954090224265, 0.38933963931698906, 0.3881549640297212, 0.38695587287595845, 0.3857588744866409, 0.384582136586929, 0.3834449861312729, 0.38236728085691785, 0.38136867772062505, 0.38046783783003835, 0.3796816197510942, 0.3790243212318041, 0.3785070314057522, 0.3781371501087147, 0.37791811789359164, 0.37784938088765135, 0.37792659133485473, 0.3781420209133978, 0.3784851433076325, 0.3789433280576691, 0.3795025812248969, 0.38014827021227143, 0.38086577905173313, 0.3816410544659351, 0.3824610193969292, 0.38331384692308956, 0.3841891015237671, 0.3850777652108086, 0.3859721726167268, 0.3868658818598204, 0.38775350750396026, 0.3886305390419645, 0.3894931639542601, 0.3903381093428137, 0.3911625110682815, 0.3919638146945766, 0.392739708661807, 0.3934880871099212, 0.39420703769217375, 0.39489484849997397, 0.3955500277660083, 0.39617133018610057, 0.3967577843518637, 0.3973087167627562, 0.3978237690421555, 0.3983029061879092, 0.398746414836271, 0.3991548915282543, 0.3995292217861606, 0.39987055140901484 ], [ 0.3889006758281146, 0.38757222767329214, 0.38620906444843567, 0.38482815647962737, 0.3834489478461764, 0.3820929366920684, 0.38078307897385705, 0.37954302758423514, 0.37839623699866975, 0.3773649824295861, 0.376469359213416, 0.3757263396782853, 0.37514896812418974, 0.3747457678148118, 0.3745204166776846, 0.3744717223978675, 0.3745938963424149, 0.3748770941108382, 0.37530816353853885, 0.37587152283530134, 0.37655008455248773, 0.37732614536531395, 0.37818217533503845, 0.37910146011248713, 0.380068571682379, 0.3810696642565656, 0.38209260921419075, 0.3831269951081028, 0.3841640253657647, 0.3851963479366002, 0.3862178488478559, 0.3872234367200436, 0.38820883901482606, 0.3891704241908978, 0.39010505779191706, 0.39100999526112334, 0.3918828101977169, 0.3927213538809736, 0.39352374010602714, 0.3942883485464699, 0.3950138397986991, 0.3956991757813236, 0.3963436400798399, 0.39694685398002144, 0.397508785183123, 0.3980297474268639, 0.3985103903589977, 0.3989516799622932, 0.3993548705736865, 0.399721470062313 ], [ 0.3871144607575921, 0.3855883695214611, 0.3840203675021273, 0.3824302798197675, 0.38084096645979654, 0.37927783696034695, 0.3777681424102802, 0.3763400562628894, 0.37502157913398937, 0.3738393278915753, 0.3728172922895321, 0.3719756587751755, 0.3713298066738014, 0.3708895737277842, 0.370658865250472, 0.37063564619192035, 0.37081231327329417, 0.3711764019582003, 0.3717115475914469, 0.37239859729007907, 0.37321676209285604, 0.3741447071784616, 0.3751614985112416, 0.3762473521422502, 0.3773841621949533, 0.37855581061422555, 0.3797482828204254, 0.38094962695729195, 0.3821498004635343, 0.38334044736401685, 0.38451464471106234, 0.38566664890305996, 0.38679166386725733, 0.3878856446279606, 0.38894514244769757, 0.3899671919626743, 0.390949236637354, 0.39188908631351077, 0.3927848993799798, 0.3936351818485889, 0.3944387961042677, 0.39519497305258977, 0.395903322610431, 0.3965638388139157, 0.39717689713060617, 0.39774324277135964, 0.3982639698407562, 0.3987404920066053, 0.3991745059925023, 0.39956794960399694 ], [ 0.38512487963688696, 0.38337375306279864, 0.38157185818886213, 0.37974228057811815, 0.3779118294091216, 0.3761104821342433, 0.37437054847922313, 0.3727255633132376, 0.3712089486138523, 0.3698525183348681, 0.36868493153918647, 0.36773022254302384, 0.3670065458570981, 0.3665252638429438, 0.3662904749396096, 0.366299033090443, 0.36654105185177316, 0.36700082958530006, 0.3676580854195003, 0.3684893672824187, 0.3694694869924797, 0.3705728520579205, 0.37177459437475974, 0.3730514350568231, 0.3743822645495754, 0.3757484517289391, 0.3771339209413726, 0.3785250504715919, 0.37991045039534294, 0.38128067424454126, 0.3826279100711934, 0.3839456850275118, 0.38522860572423984, 0.38647214597432084, 0.38767248497754236, 0.38882639286916837, 0.3899311567307338, 0.39098453827899365, 0.3919847540393051, 0.3929304694046622, 0.39382079917885426, 0.3946553086905013, 0.3954340111235903, 0.39615735819569636, 0.3968262226410203, 0.3974418720754434, 0.39800593471527196, 0.3985203580880233, 0.39898736232240317, 0.3994093898542884 ], [ 0.38292203309565437, 0.38091612728618157, 0.3788486202200689, 0.37674629004274574, 0.374640479580753, 0.37256646903904017, 0.37056249558678894, 0.36866842489942936, 0.36692411940973707, 0.36536759289047216, 0.3640330844917457, 0.3629492188636576, 0.36213743346807076, 0.36161084263740056, 0.3613736680567564, 0.36142130122036076, 0.36174098546629607, 0.36231302794851145, 0.36311239018364316, 0.36411047069618013, 0.36527688933530705, 0.3665811074621505, 0.36799376320606625, 0.36948765539844286, 0.3710383629072394, 0.3726245297375191, 0.3742278758668488, 0.3758330083590223, 0.3774271086311566, 0.3789995632739352, 0.3805415915305195, 0.38204590611396766, 0.383506428351618, 0.38491806552791863, 0.3862765486126075, 0.3875783223831761, 0.38882047683304205, 0.3900007079910776, 0.3911172970998514, 0.39216909882691997, 0.3931555312849221, 0.39407656274828406, 0.39493269186130436, 0.3957249197313686, 0.39645471356426876, 0.39712396244134474, 0.39773492649586917, 0.3982901811603502, 0.3987925583680841, 0.39924508663900626 ], [ 0.38049867599667064, 0.3782060547641183, 0.37583866989349923, 0.3734274425390364, 0.37100888011723376, 0.3686243792073257, 0.366319085358417, 0.36414030652776297, 0.3621355279319953, 0.36035013598956783, 0.35882501911716647, 0.35759426130594274, 0.35668316735541844, 0.35610684562974276, 0.3558695211500799, 0.355964664261697, 0.3563759131511629, 0.35707866344030165, 0.3580421164319766, 0.3592315347442097, 0.36061045533652875, 0.36214265000184204, 0.3637936892112942, 0.3655320405602652, 0.3673297031274234, 0.3691624333665365, 0.3710096517429146, 0.3728541322443426, 0.37468157273547337, 0.3764801283057531, 0.37823996799897397, 0.3799528925284549, 0.3816120303164389, 0.3832116134641387, 0.38474682471993976, 0.3862137008234884, 0.38760907581923115, 0.38893054887759926, 0.39017646369911574, 0.39134588977515283, 0.3924385989791336, 0.39345503376860125, 0.3943962655124851, 0.3952639430904856, 0.39606023300280974, 0.3967877528778977, 0.3974495005791252, 0.3980487811828493, 0.39858913400495516, 0.39907426164782994 ], [ 0.37785094406289726, 0.3752377382984996, 0.3725338813399138, 0.3697748935590909, 0.367003115422878, 0.3642669491606273, 0.3616195464389093, 0.3591169245032616, 0.3568155584779255, 0.354769577315324, 0.3530277739960464, 0.35163071002487256, 0.35060823043710393, 0.3499776917667225, 0.3497431346633349, 0.349895512487696, 0.35041393946732724, 0.35126777840941864, 0.3524192799051147, 0.35382643382267126, 0.3554457052744999, 0.35723439104227545, 0.35915242802199104, 0.3611635888707654, 0.36323609143348157, 0.36534271476469177, 0.36746055088036145, 0.3695705298140547, 0.37165684250066144, 0.3737063596567301, 0.37570811310870134, 0.3776528753071901, 0.3795328472588004, 0.38134144683022325, 0.38307317855510237, 0.3847235616926946, 0.3862890936989566, 0.3877672296839894, 0.3891563632566881, 0.3904557991954038, 0.39166571286136903, 0.3927870948032822, 0.3938216814911922, 0.39477187465568736, 0.3956406524777714, 0.3964314760842891, 0.39714819464476975, 0.3977949519918911, 0.3983760972108117, 0.39889610113574636 ], [ 0.37497912627515634, 0.37200991243520987, 0.3689309974754458, 0.3657829448469365, 0.3626146190739572, 0.35948238435297303, 0.3564486137983102, 0.3535794686713708, 0.35094198944884775, 0.3486006465456772, 0.34661361356544745, 0.34502912640968986, 0.34388234839354237, 0.3431931487165036, 0.3429651070144537, 0.34318589016542256, 0.34382894195768016, 0.3448562289100287, 0.3462216425793872, 0.3478745997064878, 0.34976341128383004, 0.35183809158859525, 0.3540524160299717, 0.35636517788236505, 0.3587407115107847, 0.36114882831886563, 0.363564347977855, 0.3659664070567722, 0.36833770049334225, 0.37066377034220604, 0.3729324116060323, 0.3751332246664751, 0.37725731262413853, 0.3792971014714923, 0.38124625089234915, 0.38309962159867356, 0.38485326886570376, 0.3865044387408853, 0.3880515511700043, 0.38949416153144534, 0.3908328979594925, 0.3920693760575617, 0.39320609520649813, 0.3942463219261844, 0.3951939659985845, 0.39605345465080505, 0.3968296093182269, 0.3975275285779659, 0.3981524799075416, 0.39870980206795287 ], [ 0.3718884665328409, 0.36852678629816477, 0.3650327175714914, 0.3614522731185006, 0.35784153188103934, 0.3542658265883352, 0.3507980789060495, 0.3475162053327704, 0.3444996199710185, 0.34182500022243517, 0.3395616407410362, 0.33776686679307505, 0.3364820673855384, 0.3357299003270919, 0.3355130946804934, 0.3358150438700562, 0.3366020944064501, 0.33782716241128824, 0.3394341212632852, 0.34136233942256355, 0.3435508091235648, 0.345941461243041, 0.3484814588094684, 0.3511244520180524, 0.3538309260205168, 0.35656786262838447, 0.35930796846906754, 0.36202870628412087, 0.3647113193662516, 0.3673399783576993, 0.3699011187336287, 0.3723829858705458, 0.374775367634302, 0.37706947291376525, 0.37925790662118897, 0.38133469394382, 0.3832953151779352, 0.38513672379258945, 0.386857331775365, 0.3884569560998692, 0.38993672750536723, 0.39129896755087007, 0.3925470423909191, 0.3936852024246605, 0.39471841645049743, 0.395652207719144, 0.39649249771707457, 0.39724546191122023, 0.3979174002182433, 0.3985146237166719 ], [ 0.3685899708997311, 0.3647990172861886, 0.3608488466358025, 0.3567912556964505, 0.3526901934648625, 0.3486209893866633, 0.34466853597226393, 0.340924294225695, 0.3374821160114406, 0.33443306064985967, 0.33185960320563185, 0.32982984423962025, 0.32839247112078607, 0.3275732247027046, 0.3273734556172051, 0.3277710282138894, 0.32872342223768836, 0.33017250270323945, 0.33205017948793536, 0.33428411522268403, 0.3368027556124822, 0.3395391928752841, 0.34243365261359643, 0.34543464772093607, 0.34849902589865606, 0.3515912345463142, 0.3546821451214182, 0.3577477385129138, 0.36076787797103654, 0.3637253094600567, 0.36660494854906955, 0.36939344917656386, 0.37207900751254447, 0.3746513332705534, 0.377101717383288, 0.3794231335517634, 0.3816103263084234, 0.38365985528856905, 0.3855700811323876, 0.3873410909982755, 0.3889745703913388, 0.39047363306204474, 0.39184262274748605, 0.39308690033594124, 0.39421262844450417, 0.3952265630919626, 0.39613585963431724, 0.39694789774545974, 0.39767012816122493, 0.3983099422414701 ], [ 0.36510118643103484, 0.36084468431860545, 0.35639748159476203, 0.35181737843398736, 0.3471767670671805, 0.342561978405528, 0.33807135999221666, 0.3338118727346349, 0.3298941427792029, 0.32642614142029497, 0.32350596903580103, 0.3212145288110493, 0.3196090973854286, 0.3187188293975651, 0.31854300702992605, 0.3190523837712242, 0.32019338877783105, 0.32189442582947797, 0.32407317385701356, 0.3266437483424447, 0.3295227876948167, 0.3326338870147991, 0.335910194239461, 0.3392953150251955, 0.3427428912800707, 0.3462153143753949, 0.3496820267902228, 0.3531177880183794, 0.3565011668775125, 0.3598134027717189, 0.363037674337656, 0.36615873724299186, 0.36916284726423565, 0.37203786733577054, 0.37477346140251494, 0.3773612956230546, 0.3797951912816793, 0.38207119786419785, 0.38418757539404486, 0.3861446905077102, 0.38794484055964185, 0.38959202493006745, 0.39109168377889914, 0.3924504229666989, 0.3936757408512901, 0.39477576903668343, 0.3957590355118919, 0.3966342553481782, 0.3974101514138694, 0.3980953054712591 ], [ 0.36144690297420384, 0.356690212494349, 0.35170619147127613, 0.3465586946018894, 0.34132898457058275, 0.33611530857824506, 0.33103095745364447, 0.32620047861219037, 0.3217538822285786, 0.3178189790736517, 0.3145124023638048, 0.3119303179447271, 0.3101401773677199, 0.3091749514927757, 0.309030984645827, 0.30966995072420467, 0.3110245512496605, 0.3130068422766138, 0.315517649477826, 0.31845552517694703, 0.3217240511897351, 0.3252368287270274, 0.3289200411218429, 0.3327128995634228, 0.33656653185961916, 0.340441954243866, 0.34430771509981944, 0.348137667610724, 0.35190916351699975, 0.3556018000913706, 0.3591967219470268, 0.3626763903931125, 0.3660246869121946, 0.36922720746303894, 0.3722716201636597, 0.3751479891452842, 0.3778490021966527, 0.38037007221548547, 0.3827093084173142, 0.3848673712377489, 0.3868472352179918, 0.38865388822455693, 0.3902939948539854, 0.39177554850518337, 0.3931075317837781, 0.39429959968748174, 0.39536179510269615, 0.39630430191188065, 0.3971372376325298, 0.3978704849921099 ], [ 0.3576597097771949, 0.3523711763532417, 0.3468131197639276, 0.34105527217429565, 0.33518796873917234, 0.3293221057958509, 0.32358731840337207, 0.3181278871163067, 0.31309605921718625, 0.3086428357830924, 0.3049068332279171, 0.30200248503288396, 0.30000940416559246, 0.29896491356020743, 0.2988613685010054, 0.29964895019384763, 0.3012433821572987, 0.3035369454305094, 0.30641061303150124, 0.3097452096860481, 0.31343008602567773, 0.317368594061135, 0.32148039485707514, 0.3257011582260801, 0.32998048194441615, 0.33427889747593464, 0.33856470895714386, 0.3428112056760412, 0.3469945581032978, 0.35109249937283366, 0.3550837353757722, 0.3589479278898972, 0.3626660534489046, 0.3662209440984808, 0.36959784900346965, 0.37278490259706426, 0.3757734332404868, 0.3785580881013122, 0.381136781197299, 0.38351049153914735, 0.3856829483353983, 0.3876602425783482, 0.3894504015003546, 0.3910629565968003, 0.3925085288913081, 0.39379844807852576, 0.39494441585773526, 0.3959582185354876, 0.39685148993524644, 0.39763552274885194 ], [ 0.3537803148700113, 0.34793287574445736, 0.3417678942061016, 0.3353605151263114, 0.3288100323665781, 0.3222404239954615, 0.31579885000761027, 0.3096514071789417, 0.3039755934306085, 0.29894936040427106, 0.294737366274765, 0.29147598736734437, 0.2892595238945211, 0.2881304178903126, 0.2880758273405147, 0.2890315417077888, 0.2908924143207271, 0.2935269347018383, 0.2967928481436649, 0.30055099266968993, 0.30467547533391326, 0.30905947981031423, 0.31361699551838457, 0.3182813939956072, 0.32300203603245353, 0.3277400555177187, 0.33246424358002113, 0.3371476507983127, 0.34176521438299484, 0.34629245412791204, 0.35070509401675903, 0.35497936264354585, 0.3590926956319619, 0.3630245876316687, 0.3667573976495757, 0.37027697907261753, 0.3735730697555727, 0.3766394292198742, 0.3794737460229046, 0.3820773592509964, 0.3844548465619355, 0.3866135307399528, 0.38856295069452973, 0.3903143340068823, 0.39188009852780437, 0.3932734014676714, 0.3945077466206099, 0.39559665412945927, 0.396553392542555, 0.39739076968769094 ], [ 0.3498575101986203, 0.3434305390129191, 0.33663217234986026, 0.32954216847603085, 0.3222682600437247, 0.31494750150227224, 0.30774536121517854, 0.30085158019094704, 0.2944719163456935, 0.28881535109759493, 0.28407726655047494, 0.280420442188799, 0.27795709455268797, 0.2767359246281148, 0.2767375966454774, 0.2778801193602818, 0.2800329092708721, 0.2830360509576791, 0.2867203579003192, 0.2909244236551002, 0.29550637905825144, 0.30034976366847016, 0.30536422807124197, 0.3104825096696866, 0.31565532441998856, 0.320845651328032, 0.32602352116692895, 0.331161988043114, 0.3362345553848485, 0.3412140047652134, 0.3460723637871193, 0.35078164866448136, 0.35531500914671793, 0.3596479584818918, 0.36375945807791465, 0.36763271948281173, 0.37125566786400144, 0.3746210726174564, 0.3777263902579402, 0.38057338486609565, 0.3831675966684042, 0.38551772473208096, 0.3876349795853644, 0.3895324491208721, 0.3912245086429027, 0.392726294709024, 0.39405325313597783, 0.3952207643650499, 0.3962438442000155, 0.3971369144765401 ], [ 0.34594764637335956, 0.3389289705276511, 0.33147958808762495, 0.3236827210396373, 0.3156535455529027, 0.3075416111600949, 0.29953086969220255, 0.29183601265272463, 0.28469378686149627, 0.2783483842430197, 0.2730311231020348, 0.2689364860041199, 0.26619870064885987, 0.2648744251987263, 0.2649365802780903, 0.26628158428378546, 0.26874822099719636, 0.27214303368868636, 0.27626599526685747, 0.2809313552320589, 0.28598096690035957, 0.2912898056308624, 0.29676505346512877, 0.302340896183552, 0.30797124636592377, 0.31362224602824057, 0.3192658466114691, 0.32487517488556106, 0.330421875688648, 0.3358752369199733, 0.34120267159039186, 0.34637104650426265, 0.3513483747953174, 0.3561054870417413, 0.3606174215535293, 0.3648643968649868, 0.368832329413886, 0.3725129293817978, 0.37590344851101115, 0.3790061707595278, 0.3818277368188113, 0.3843783833511128, 0.3866711625639365, 0.38872119115212217, 0.3905449620335345, 0.3921597389229584, 0.3935830431067384, 0.39483223379062116, 0.3959241778176361, 0.39687500099188516 ], [ 0.34211347902209394, 0.3345014384212222, 0.32639481215262495, 0.31787882291951586, 0.3090746018809266, 0.3001429331109662, 0.2912856048590239, 0.2827427157939647, 0.27478404454523364, 0.26769287548721116, 0.26174191831037386, 0.25716340409067373, 0.25411863103686955, 0.2526746816074222, 0.25279575421830247, 0.254352642847885, 0.25714786292281594, 0.260948974304057, 0.2655212409616945, 0.2706528634990431, 0.2761697311608257, 0.28193999291676436, 0.28787078665587096, 0.2939001920734911, 0.299987304490868, 0.30610269281796876, 0.3122207072308541, 0.3183143272876579, 0.32435260080893313, 0.3303002777024896, 0.33611900580382753, 0.34176940320655896, 0.34721340225572583, 0.3524164140002112, 0.3573490348775122, 0.3619881723561312, 0.3663175839193072, 0.3703278996458825, 0.3740162375731179, 0.37738553207272774, 0.38044368827922553, 0.3832026584091575, 0.38567751468525313, 0.38788557250460615, 0.38984559871941865, 0.39157712445059406, 0.39309986994551716, 0.3944332803755879, 0.39559616567370715, 0.3966064339892397 ], [ 0.3384222787023337, 0.3302276157534983, 0.3214714295614813, 0.31223927606899415, 0.3026563268379805, 0.29289264123785685, 0.28316621633705136, 0.27374182676458503, 0.26492312312459043, 0.2570354441913432, 0.25039800993554095, 0.2452872168369539, 0.24189737758792537, 0.24030941515447263, 0.24047843053610776, 0.2422457310093551, 0.24537191582390452, 0.24958025490548752, 0.25459788837735503, 0.26018598526681985, 0.26615559973557457, 0.2723705164915623, 0.27874075993601205, 0.2852109839947684, 0.2917474249481659, 0.2983261039272628, 0.3049238742441228, 0.3115129203667875, 0.3180585430049993, 0.3245195647594927, 0.3308504655541926, 0.3370043603565569, 0.342936086753698, 0.3486048946144312, 0.3539764574667362, 0.3590241137077561, 0.3637293782908404, 0.3680818429063354, 0.3720786153872576, 0.375723450707929, 0.37902570909443745, 0.3819992512145041, 0.38466135281422936, 0.3870316954833445, 0.38913146842877055, 0.39098259886918557, 0.3926071158001216, 0.39402664288783307, 0.39526201044268133, 0.39633297309914883 ], [ 0.3349431718612011, 0.3261904687280891, 0.31680840903064916, 0.3068811962153551, 0.2965358782406523, 0.28594924704785285, 0.2753528768458139, 0.2650340470449772, 0.25532937236118797, 0.24660746916835521, 0.23923790867314568, 0.23354723277163256, 0.22976916413649462, 0.2280028680108282, 0.22819500732484546, 0.23015438721342021, 0.23359480616497444, 0.23819082400565353, 0.24362911193891765, 0.24964395631415132, 0.2560337073643798, 0.2626609683319313, 0.26944194869097876, 0.27633057555203183, 0.28330191081925826, 0.29033797681310397, 0.29741765747332843, 0.30451111363879785, 0.31157824041555665, 0.31857015381835185, 0.32543250692490483, 0.33210952509028135, 0.3385479041407574, 0.34470002618335055, 0.3505262345107824, 0.3559961290096678, 0.3610889852725672, 0.3657934732455569, 0.3701068725056277, 0.3740339698375351, 0.37758579613160465, 0.3807783247313481, 0.38363121904158165, 0.3861666870831804, 0.3884084762022449, 0.3903810224515397, 0.39210875570793446, 0.3936155525224828, 0.39492432311024267, 0.39605671592917363 ], [ 0.33174380699507927, 0.3224721458824944, 0.312505130010567, 0.30192415022013525, 0.2908559993660813, 0.2794813526088646, 0.2680419113720615, 0.25684381136526063, 0.246253564300434, 0.23668167152003303, 0.22854935303438845, 0.2222374925730873, 0.218025082124194, 0.21603462561975725, 0.21620649994376673, 0.21831583430525872, 0.22202671011366357, 0.2269625543059725, 0.23276910978983584, 0.23915551251397157, 0.24591066893282454, 0.2528997980158584, 0.26004871751733905, 0.26732304226266507, 0.27470776327825747, 0.2821907024536272, 0.28975150835951363, 0.2973563616864546, 0.30495750637157404, 0.31249616181485984, 0.3199072593949036, 0.3271246595743702, 0.3340858872144315, 0.3407358327465611, 0.3470292140650604, 0.3529318389984705, 0.3584208504874052, 0.3634841964826005, 0.3681195705575944, 0.37233304122208466, 0.3761375457892259, 0.3795513799457659, 0.3825967733461523, 0.3852986074972805, 0.3876833056254534, 0.3897779046364362, 0.39160930567058516, 0.39320369094395613, 0.3945860894328099, 0.39578007152895467 ], [ 0.32888660637667755, 0.319149156141375, 0.30865525078689593, 0.2974824844223553, 0.2857556334707382, 0.2736565097024987, 0.2614330904298923, 0.24940552685450018, 0.23796493557044357, 0.22755904075441905, 0.2186581256765771, 0.21169803543166213, 0.20700670223143136, 0.20473492241214433, 0.20482073180928662, 0.2070074742406651, 0.21091015693217682, 0.21610206566007625, 0.2221903824291793, 0.2288628332831147, 0.23590329519881864, 0.24318379594294504, 0.25064297647302636, 0.2582599091945254, 0.26602970319195324, 0.2739447544270235, 0.2819832218866669, 0.29010451015899574, 0.29825034279087875, 0.3063494617677892, 0.31432399995193294, 0.3220959556956758, 0.329592735548251, 0.3367512491769477, 0.34352044298248774, 0.34986241732338524, 0.35575240298324573, 0.3611779103330669, 0.36613734547681337, 0.37063834015216884, 0.3746959856188239, 0.37833110646325147, 0.3815686636330967, 0.384436338879946, 0.3869633249005951, 0.38917932563425084, 0.3911137578909954, 0.3927951372736116, 0.3942506269072514, 0.39550572573514287 ], [ 0.32642503454241534, 0.3162873879896041, 0.3053400991246774, 0.2936566391534207, 0.2813586753621157, 0.26862695104514916, 0.2557120352133059, 0.2429426712969643, 0.230727501389917, 0.21954346799683475, 0.2099025352568199, 0.20229077077653673, 0.1970844172004164, 0.19446587590245346, 0.19437640785302376, 0.19653362198239696, 0.20050931651226284, 0.2058325181994909, 0.21207794274754305, 0.2189179732778016, 0.22613694126471895, 0.23361797959069808, 0.24131519718324415, 0.24922189955796487, 0.25734229535323205, 0.265670893403744, 0.27418099985924976, 0.2828215737627523, 0.29152036064198794, 0.3001907322827913, 0.3087398598470439, 0.3170764514609766, 0.3251170033717528, 0.3327901412882934, 0.34003907268040456, 0.3468224253651368, 0.35311385213116375, 0.3589007870911698, 0.3641826919871012, 0.3689690618139933, 0.37327738827927487, 0.3771312166984483, 0.3805583807572404, 0.38358946050596116, 0.3862564806858056, 0.38859184710262423, 0.3906275063005208, 0.39239430649943435, 0.39392153420448284, 0.3952365999320734 ], [ 0.32440043448132694, 0.31393773448740764, 0.3026226287322643, 0.2905248381755759, 0.27776264484822427, 0.2645143737638244, 0.25103020464698644, 0.23764223992763597, 0.2247686882955864, 0.21290511109043064, 0.2025930858478876, 0.19435787952171357, 0.18861727479982668, 0.18558503687865235, 0.18521186852106822, 0.18720015599177534, 0.19109062558304257, 0.19637985465232863, 0.20262051574078815, 0.20947818597163065, 0.21674405506665845, 0.224316487722997, 0.23216685153211633, 0.2403022303250323, 0.24873354683544208, 0.25745365532968817, 0.2664265546507644, 0.2755863066308935, 0.2848427705074529, 0.2940908958300967, 0.30322078294179244, 0.3121266016139239, 0.3207133762703517, 0.3289013729392427, 0.33662828630906116, 0.34384965342161194, 0.3505379824119417, 0.3566810496383231, 0.36227973912381223, 0.36734570769016367, 0.37189907525445143, 0.3759662699702636, 0.37957810383384544, 0.3827681147415619, 0.38557118335485147, 0.3880224148988477, 0.3901562648409924, 0.39200588132114733, 0.3936026347061422, 0.3949758045584064 ], [ 0.3228399905544567, 0.3121331488102737, 0.3005431473319659, 0.2881368933167481, 0.27502974722885065, 0.2613971751416592, 0.24748698009182352, 0.2336302316762257, 0.22024696374701308, 0.20783962857991306, 0.1969641245797097, 0.18816840634025295, 0.18189846262548326, 0.17839410520058083, 0.1776205666793602, 0.1792787745965021, 0.18289631344755003, 0.1879549605344218, 0.1940000611975549, 0.20070128741270502, 0.20786385922256212, 0.21540519272103117, 0.22331476918017912, 0.2316117597749101, 0.24031012556272144, 0.2493961492759632, 0.25881919936698, 0.2684934674510746, 0.27830683097462944, 0.28813283845114135, 0.2978426439416581, 0.3073149302226283, 0.31644298331993115, 0.3251388827756057, 0.33333522246233926, 0.3409849525624714, 0.34805993679608527, 0.3545487357876832, 0.3604540145949505, 0.36578986155144605, 0.37057921094086416, 0.3748514876995709, 0.37864053732726444, 0.3819828654222772, 0.384916185260445, 0.38747825541062797, 0.3897059798829771, 0.39163473867322035, 0.3932979152425992, 0.39472658831677326 ], [ 0.3217562347598156, 0.3108877870056319, 0.29911784400178437, 0.28651171759365546, 0.27318276008443115, 0.259303809517224, 0.24511922884917609, 0.23095579064983668, 0.21722872049574565, 0.20443621672656243, 0.1931324772278419, 0.18386886153799037, 0.17710151638659746, 0.1730858913796359, 0.17180378762194637, 0.1729688548744204, 0.17611665610139707, 0.18073584119831085, 0.18638239032265394, 0.19274283160305905, 0.19964419366434716, 0.20702651056391733, 0.21489749815767478, 0.22328579849554783, 0.23220383925140783, 0.24162571762227023, 0.25148045594713436, 0.261657337217589, 0.2720183676922154, 0.28241309090603745, 0.2926922737985784, 0.3027185726138843, 0.3123736017806163, 0.3215616667816787, 0.330210821117919, 0.33827200458223977, 0.34571695188974044, 0.352535425411988, 0.35873218044894445, 0.36432394318313915, 0.36933657924927144, 0.3738025546566651, 0.3777587368131551, 0.38124454687179177, 0.3843004511390664, 0.3869667651982403, 0.38928273689079623, 0.391285871262044, 0.3930114604900132, 0.3944922835955046 ], [ 0.32114822882457233, 0.31019849661192894, 0.29834059346506797, 0.2856393962744173, 0.27220721309415624, 0.25821473223609004, 0.24390237617185043, 0.22959036474935676, 0.21568401456218808, 0.2026680791948277, 0.1910809471662002, 0.18145908046794254, 0.1742498162944966, 0.16971082193853138, 0.1678385782915445, 0.16837063409667086, 0.17087056615760582, 0.1748560071939077, 0.17991248307045174, 0.1857568620545184, 0.1922460275732239, 0.19934609821900018, 0.20708285910010352, 0.2154915087267061, 0.22457820468102377, 0.23429931524098924, 0.24455814422651506, 0.2552146019831426, 0.2661016379784802, 0.27704290071533444, 0.28786795631725376, 0.2984233807666362, 0.30857951455830124, 0.3182334921115213, 0.32730946572151387, 0.3357569394544378, 0.34354798004598985, 0.350673884226324, 0.3571417074019304, 0.3629709169125128, 0.368190326768323, 0.37283539530672594, 0.37694591602548855, 0.3805640986943061, 0.38373301755741485, 0.38649539207252914, 0.3888926602933629, 0.3909643036332581, 0.39274738290326017, 0.39427624820316454 ], [ 0.321004194206461, 0.31004837537061253, 0.2981877237331121, 0.2854874980985167, 0.27205961838791165, 0.25807292641408075, 0.24376352447748217, 0.22944348495956504, 0.2155046258907105, 0.20241170277765644, 0.19067694625585713, 0.18080785045874737, 0.1732271978231336, 0.16818191287017106, 0.16567827232903468, 0.16548363987233522, 0.1672042819223324, 0.17040495533108163, 0.174717293049815, 0.17990079671066703, 0.18584973521269102, 0.1925596724004563, 0.2000745098065726, 0.2084336047794603, 0.21763292734886452, 0.22760666481830327, 0.23822830989945898, 0.24932527188836015, 0.2606995030895327, 0.2721479063881244, 0.2834788086731611, 0.2945231609688054, 0.3051407067336408, 0.31522211527946636, 0.32468825786847694, 0.33348768274429896, 0.3415931142007452, 0.3489975640610771, 0.3557104450502296, 0.361753924707916, 0.3671596512910041, 0.3719659105333776, 0.37621522509697203, 0.37995237953639965, 0.3832228369142775, 0.3860715047416934, 0.3885418048117435, 0.39067500178055226, 0.39250974770311087, 0.39408180326332803 ], [ 0.3213050299587952, 0.31041161774417764, 0.29862465971997837, 0.28601012581685764, 0.27267970155237664, 0.2588002572434261, 0.24460300764860524, 0.2303906128080525, 0.21653905349028085, 0.20348918017935383, 0.19172108501263133, 0.18170504232007575, 0.17382943896266342, 0.1683211189667644, 0.16519051166114496, 0.1642354487670362, 0.1651118846329349, 0.16744239035667832, 0.17091560661948405, 0.17534236900753267, 0.1806599911512705, 0.1868962837384738, 0.19411377177696917, 0.20235483647392763, 0.2116031961923714, 0.22176860475565668, 0.2326929277381638, 0.24417004628426536, 0.25597071647544273, 0.26786553852082395, 0.27964241123680816, 0.29111758708488145, 0.30214107376127186, 0.3125977703368783, 0.32240575692537443, 0.3315129131579612, 0.3398927299452447, 0.34753989880654423, 0.35446604488036004, 0.3606958134961763, 0.366263414478832, 0.3712096600387995, 0.375579489933751, 0.3794199530451213, 0.3827786015344241, 0.38570224817341275, 0.38823603649998817, 0.39042277530710434, 0.3923024924323641, 0.39391216711176813 ], [ 0.3220279593795391, 0.3112585575039865, 0.29961287402156256, 0.2871574559847131, 0.27400341756834473, 0.26031508641466605, 0.2463179603242836, 0.23230418443300996, 0.21863251542668913, 0.20571819884448034, 0.19400708439132877, 0.18392952424161216, 0.17583597982320015, 0.1699289168514976, 0.1662186435650704, 0.16453065521570326, 0.16457037634130556, 0.16602037651823395, 0.16862959811786765, 0.17226326739586054, 0.17690390262758546, 0.18261284025369706, 0.18947194457052538, 0.1975271166055079, 0.2067503924908585, 0.21702796725663598, 0.2281713797419875, 0.2399426697327742, 0.25208329302407184, 0.2643394213620375, 0.2764801796754484, 0.28830843551892443, 0.29966539354903177, 0.31043075287774635, 0.32052006180341597, 0.32988054352588736, 0.3384862836416687, 0.3463333529490029, 0.353435205888986, 0.3598185356904073, 0.3655196641822923, 0.3705814805644683, 0.37505090613171405, 0.37897684171741164, 0.3824085451404454, 0.3853943830525982, 0.3879809026216794, 0.39021217175569056, 0.39212934101625746, 0.39377038532948955 ], [ 0.32314954437924265, 0.312559805273122, 0.3011155533362687, 0.28888347231342887, 0.2759734517123789, 0.26254642914349613, 0.24882121494192966, 0.23507849205409576, 0.22165910341613837, 0.20895254950978454, 0.1973710713466524, 0.18730641389932032, 0.17907243963454128, 0.17284740321162423, 0.1686395222415928, 0.16629792100927132, 0.16557250984142444, 0.1662011078635269, 0.1679889423447041, 0.17085233769990993, 0.17481651005883694, 0.17997494867254293, 0.1864290306926068, 0.19423006284061098, 0.20334179421872534, 0.21363127884192246, 0.22488456693708853, 0.23683655075199853, 0.24920351059803264, 0.26171050414683905, 0.27411031720095336, 0.28619404424974576, 0.297795002787764, 0.30878806278584087, 0.3190862114438395, 0.3286357102743084, 0.3374107570752433, 0.34540821676003075, 0.352642739253664, 0.3591424209664163, 0.3649450655256863, 0.3700950397487058, 0.37464068770778497, 0.37863224919714134, 0.38212022242084737, 0.3851541101318939, 0.3877814911816024, 0.3900473639115466, 0.39199371309176423, 0.3936592576221592 ], [ 0.32464750121585684, 0.31428866874437517, 0.303100818570847, 0.2911502369025501, 0.27854485908908344, 0.2654413527837741, 0.2520509253490736, 0.23864206306499552, 0.22553747995246623, 0.21310166415049667, 0.20171529832858015, 0.19173488215706158, 0.18344158539241537, 0.1769922988524432, 0.1723931476440137, 0.16951316855022663, 0.1681399028568057, 0.1680578257460876, 0.1691194136545562, 0.17128355177419438, 0.17461101721867878, 0.17922276734087977, 0.1852383908158696, 0.19271701043940972, 0.20161968110940687, 0.21180188746935, 0.22303233252814636, 0.23502630143431102, 0.24748112647304077, 0.26010540587661296, 0.27263873067956235, 0.2848622907692756, 0.2966023990977379, 0.3077292697486057, 0.3181530242574873, 0.3278183590014661, 0.3366988122802153, 0.3447911943086382, 0.3521104855713704, 0.3586853436709832, 0.36455425855754864, 0.369762338680797, 0.3743586802878334, 0.3783942581923601, 0.38192027207770607, 0.38498688355547567, 0.38764228323863437, 0.38993203249929387, 0.3918986305017221, 0.3935812630459585 ], [ 0.3265010811353732, 0.31642153192441336, 0.30554205966023273, 0.29392811087646614, 0.2816850651597806, 0.26896460647449905, 0.2559696266146445, 0.24295591321402815, 0.23022808593897853, 0.21812660778807108, 0.20700291490253575, 0.19718193545415763, 0.1889165193850357, 0.1823457813809683, 0.177474743518865, 0.1741895598663249, 0.1723088611387962, 0.17165445410500657, 0.17211516008926217, 0.1736811219822447, 0.17643834806794662, 0.18052759366931231, 0.18608327181374495, 0.19317405315780203, 0.20176468948343557, 0.21170854035117767, 0.22276740999070424, 0.23464668815889897, 0.24703269382418983, 0.2596233757500102, 0.2721489403269113, 0.2843828383358699, 0.296145311053894, 0.307301992016579, 0.31775965705724984, 0.32746062738263365, 0.3363768007476154, 0.34450388761754314, 0.3518561587153182, 0.35846183898126105, 0.3643591806286019, 0.3695931906283338, 0.3742129585932204, 0.3782695183962219, 0.3818141738297254, 0.3848972208291274, 0.3875670036567853, 0.3898692484753655, 0.391846624099432, 0.3935384859551804 ], [ 0.32869014643570793, 0.31893640607378854, 0.30841572686186786, 0.29719246614215106, 0.28536907325231575, 0.27309178038482834, 0.26055468299011497, 0.24800053217373197, 0.23571590741315998, 0.2240180192305289, 0.21323085172983794, 0.2036506358067008, 0.19550538498695996, 0.1889194224930346, 0.18389773735662637, 0.18034169915548415, 0.1780959061064433, 0.17701157468602416, 0.17700384012746018, 0.1780828257300373, 0.1803485324242611, 0.18395217446080095, 0.18903762064600083, 0.19568312522161568, 0.20386259917104918, 0.21343670150190336, 0.22417147283521702, 0.23577314982396297, 0.24792602222458532, 0.2603240739687505, 0.2726925694389969, 0.28479978797524164, 0.29646105006779905, 0.30753757039401675, 0.3179322994418292, 0.3275843226711753, 0.33646283947781014, 0.3445613288550299, 0.35189222494943734, 0.3584822455762325, 0.364368409216241, 0.3695947159223804, 0.37420943697623044, 0.3782629451364368, 0.38180601435746103, 0.3848885203152397, 0.3875584782264246, 0.3898613607292617, 0.39183964514888386, 0.39353254585025227 ], [ 0.3311933753906747, 0.32181029691517915, 0.3116975317874815, 0.30091828807743665, 0.2895719158360761, 0.27779892343469537, 0.26578427279688166, 0.253757367371686, 0.24198662529352502, 0.2307663054478219, 0.22039389643311633, 0.21113862294210153, 0.20320581032250526, 0.19670688060426691, 0.19164747990403536, 0.18794293614375088, 0.18546032692344763, 0.18407463533710466, 0.1837197176030805, 0.184416491059412, 0.1862689797770148, 0.1894296125655911, 0.19404520223401203, 0.2002015832172134, 0.20788499913408504, 0.2169709386504183, 0.2272396726145676, 0.23840864584359528, 0.25016926923559624, 0.26221869871205816, 0.2742822329558787, 0.28612604226124744, 0.2975620809278189, 0.30844760924568804, 0.31868148541938573, 0.32819883940098127, 0.3369652018613197, 0.3449707385569391, 0.35222494511378133, 0.35875196665377507, 0.3645865912318607, 0.36977090053915507, 0.37435152727695786, 0.3783774535077505, 0.3818982801116535, 0.384962899262523, 0.38761850663100816, 0.3899098961206067, 0.39187898640601104, 0.39356453487704207 ], [ 0.33398619438840915, 0.3250162533905646, 0.31535830156472644, 0.3050744418673965, 0.29426085226492427, 0.2830521099779639, 0.27162370566149524, 0.2601912738195714, 0.24900467759522948, 0.23833503679388912, 0.2284535622473679, 0.21960319650257282, 0.21196766014538015, 0.20564646577719164, 0.2006462170650044, 0.19689534920181292, 0.1942812468193896, 0.192699162764353, 0.1920968210011769, 0.19249969080074666, 0.19400844354790528, 0.1967690670628068, 0.20092486150538688, 0.20656565869205798, 0.21369046226648528, 0.22219404513097785, 0.23187828558945692, 0.24248046491240463, 0.25370744077292834, 0.265266545556775, 0.2768883732289166, 0.2883405213775113, 0.2994336470882123, 0.31002199559082766, 0.32000046798071263, 0.3292998419289584, 0.3378812596038715, 0.34573068163383397, 0.3528537047104523, 0.35927094000239135, 0.3650140247334744, 0.3701222663073612, 0.3746398788748929, 0.37861375338914377, 0.3820916955142961, 0.385121065911858, 0.3877477611771282, 0.39001547913451434, 0.3919652182440273, 0.39363496693981753 ], [ 0.33703903463179213, 0.32852093773794655, 0.31936065674644604, 0.30961921783209134, 0.29938951504297995, 0.288799913807256, 0.27801597773625686, 0.26723898024072507, 0.2566996066685416, 0.24664535815537036, 0.23732102533244234, 0.22894356700139207, 0.22167572493163257, 0.2156056976893868, 0.21074116714985364, 0.20702304524740417, 0.20435763955878974, 0.20265844981162046, 0.2018843979929636, 0.20206200433367097, 0.2032840995364587, 0.2056849439800915, 0.20939897848280992, 0.21451582452545692, 0.22104540651122173, 0.2289029956117638, 0.23791614426286423, 0.2478479334231318, 0.2584272834562297, 0.26937790488786456, 0.28044081869546755, 0.29138886677104675, 0.30203395601005, 0.31222879027919453, 0.32186495958530026, 0.33086894245920895, 0.3391971499853768, 0.3468307521387015, 0.3537707299009984, 0.3600333902369355, 0.3656464474488264, 0.37064569315899254, 0.37507223092843733, 0.37897022758974264, 0.38238512304694, 0.3853622379126417, 0.3879457203682169, 0.3901777779013337, 0.3920981448412611, 0.39374374216704494 ], [ 0.34031636520901615, 0.33228332447405406, 0.3236573180687189, 0.3144982037831005, 0.3048953397927605, 0.2949704462281847, 0.28487855507617665, 0.27480586819229474, 0.2649632130425787, 0.25557401753784253, 0.2468566117468145, 0.23900240797092223, 0.23215391104271846, 0.2263886539311252, 0.2217155267708312, 0.21808734908470903, 0.2154282468982864, 0.21366865076897898, 0.2127773300673944, 0.2127803372096303, 0.21376062161667217, 0.2158378484849835, 0.2191339477807564, 0.22373446072973024, 0.2296571262453195, 0.23683636227926397, 0.2451263140749227, 0.2543188643737428, 0.2641693523884778, 0.2744226762209153, 0.28483479630284947, 0.2951875579223858, 0.3052969493185288, 0.31501606023300616, 0.32423432165792676, 0.3328744563581575, 0.34088824192762446, 0.3482518494490081, 0.35496124111497085, 0.36102790491627174, 0.3664750652397448, 0.37133441942685697, 0.37564339703071853, 0.37944290875233994, 0.38277553723773605, 0.38568411624308835, 0.3882106443360749, 0.39039548191921347, 0.39227678448716136, 0.3938901298071897 ], [ 0.3437767228241903, 0.33625479051949264, 0.32819133672378076, 0.31964478629645326, 0.31070053778324785, 0.30147308702757813, 0.2921062478964936, 0.2827704670029774, 0.27365620963394743, 0.264962715078988, 0.25688228156392706, 0.24958172397617287, 0.24318449035726178, 0.23775836488999605, 0.23331364403875082, 0.22981440923204535, 0.22720142031771445, 0.22542084788092284, 0.22445051653231038, 0.2243156387609149, 0.22508895099820364, 0.2268746494620739, 0.22978027457408434, 0.23388438298633307, 0.23920916153267305, 0.24570530472371413, 0.2532520775514054, 0.2616705124325914, 0.2707443658059748, 0.2802427977424153, 0.2899401812897912, 0.2996306832625419, 0.3091371953659403, 0.3183153773458264, 0.3270540456223222, 0.3352731486808755, 0.34292035746918875, 0.3499670272870736, 0.3564040395784733, 0.3622378371453197, 0.3674868265212392, 0.37217822739877165, 0.37634538948633733, 0.380025561615652, 0.3832580782968301, 0.3860829194797322, 0.38853959611999545, 0.390666314709444, 0.39249937658771333, 0.3940727715966357 ], [ 0.3473737139739584, 0.3403805110871241, 0.3328980545091669, 0.32498290686480824, 0.3167159509386381, 0.30820381513098616, 0.2995784567272116, 0.2909940864930415, 0.28262068587272177, 0.2746337370453968, 0.2672005770419019, 0.26046499477896673, 0.2545330417971878, 0.24946392584811286, 0.24526956475199152, 0.24192448613836684, 0.23938464701592052, 0.23761058659870765, 0.23658846970898167, 0.2363427990899692, 0.23693676328506877, 0.23845960824677223, 0.24100410486542992, 0.24464009960290536, 0.24939129745674904, 0.2552212620058771, 0.2620314726517152, 0.2696704865337924, 0.27795042029514855, 0.286666008244418, 0.2956122382736911, 0.3045981649997084, 0.3134560934516615, 0.32204644393941945, 0.33025916989537957, 0.33801274037455253, 0.34525159958035084, 0.3519428208177577, 0.3580724674391965, 0.36364199824133014, 0.36866492085576386, 0.3731638015836019, 0.377167676391363, 0.38070986729060313, 0.3838261840966297, 0.3865534782578823, 0.3889285092305453, 0.39098708210825334, 0.39276341615144744, 0.39428970635588234 ], [ 0.35105777083975115, 0.34460181627404385, 0.3377082612279172, 0.33043126897616537, 0.32284660437120816, 0.3150524372796603, 0.3071684165497987, 0.2993323818094579, 0.2916942081136973, 0.2844066565893307, 0.2776137918016295, 0.2714384683894014, 0.26597133582452465, 0.2612643156101704, 0.2573310918740289, 0.25415562259550484, 0.25170735956430607, 0.24995958594815296, 0.24890595839606514, 0.2485705128058231, 0.2490080135351468, 0.2502940958599833, 0.2525074540006376, 0.25570857863653157, 0.2599205233071329, 0.26511646310945297, 0.2712166080788738, 0.2780942228086251, 0.28558820750834196, 0.29351866082157796, 0.30170210896684524, 0.3099641452058288, 0.3181484548764876, 0.32612218103147866, 0.3337781681791978, 0.34103485249204246, 0.3478345656981491, 0.35414090173145807, 0.35993564014322244, 0.36521557253813536, 0.36998945654007814, 0.3742752298791398, 0.3780975520258565, 0.3814856969375864, 0.38447179243241264, 0.38708938484085015, 0.389372298352165, 0.3913537542921036, 0.39306571464001167, 0.3945384151879277 ], [ 0.35477833360433203, 0.34885903662042206, 0.34255187993512853, 0.33590806363015274, 0.3289976855822838, 0.32191002681401126, 0.3147522637357523, 0.30764614343158225, 0.30072231855146575, 0.2941123948822778, 0.28793931371827813, 0.282307395753042, 0.27729400411184874, 0.27294502505325274, 0.26927591977493737, 0.26627888986378745, 0.2639349969457323, 0.2622284570995112, 0.26115940829209355, 0.26075159239409407, 0.2610525873950269, 0.2621261319099044, 0.26403818248123084, 0.2668400524366735, 0.27055277158932645, 0.27515638153102256, 0.28058636412009463, 0.2867373607311148, 0.29347254525155475, 0.30063603839929104, 0.30806572215008193, 0.3156044596064211, 0.3231086237840353, 0.33045364542665306, 0.3375368392431508, 0.3442780460355722, 0.35061870068621026, 0.35651988595692785, 0.36195982726232934, 0.36693116753888, 0.3714382567097936, 0.375494605727191, 0.37912059164685746, 0.3823414549879369, 0.38518559997947516, 0.3876831885386642, 0.3898650068932273, 0.39176157727351146, 0.3934024843012109, 0.39481588533343503 ], [ 0.3584861138514385, 0.3530943689536807, 0.3473615558275102, 0.34133540080917324, 0.33507992180416973, 0.3286753136410004, 0.32221644608212496, 0.31580965561269886, 0.30956768210436203, 0.3036029163922095, 0.2980195755063308, 0.2929059291213324, 0.28832809986267555, 0.2843270360239007, 0.2809198331245234, 0.2781056457059859, 0.27587519748707917, 0.27422176024901534, 0.2731508402395659, 0.27268593468260793, 0.2728685979103243, 0.273752456937736, 0.2753923673980857, 0.27783117828633136, 0.281087198426646, 0.2851452170731395, 0.289952897023182, 0.295422900027682, 0.3014397388788904, 0.30786950134329955, 0.31457040813131865, 0.3214025221604778, 0.32823554776295066, 0.33495428801709665, 0.3414618101971777, 0.34768065716037583, 0.35355256164240295, 0.35903712425499223, 0.3641098567199079, 0.3687599081913028, 0.37298770792969604, 0.37680268375871556, 0.3802211566881633, 0.3832644676772887, 0.38595736072612646, 0.38832662476610846, 0.3903999827389352, 0.3922052077515683, 0.3937694416575692, 0.39511868961888585 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.04591064527630806, 0.4464694857597351, 0.6493837833404541, 0.5036890506744385, 0.3301403224468231, 0.4697241292328979, 0.48468054661005094, 0.4363682454160345, 0.44931672163116837, 0.4703530409304399, 0.282842980053461, 0.275130808127913, 0.319150897992771, 0.37753668769944687, 0.24830175274935928, 0.260468086585545, 0.28219558195907574, 0.2569134289307497, 0.272193979816332, 0.2731206998284672 ], "xaxis": "x", "y": [ 0.47332024574279785, 0.7720831036567688, 0.21918544173240662, 0.9957500696182251, 0.012982267886400223, 0.8280165792742181, 0.9032542795031366, 0.7409704905863196, 0.823743206079801, 0.6574687067985914, 0.8064061327437708, 0.818777565066229, 0.8798544421012453, 0.771997220756938, 0.6741637693372708, 0.7764855571241684, 0.6704723660622068, 0.6223118733605857, 0.5897785325394996, 0.5377966929334563 ], "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", "0_1", "0_2", "0_3", "0_4", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0" ], "type": "scatter", "x": [ 0.04591064527630806, 0.4464694857597351, 0.6493837833404541, 0.5036890506744385, 0.3301403224468231, 0.4697241292328979, 0.48468054661005094, 0.4363682454160345, 0.44931672163116837, 0.4703530409304399, 0.282842980053461, 0.275130808127913, 0.319150897992771, 0.37753668769944687, 0.24830175274935928, 0.260468086585545, 0.28219558195907574, 0.2569134289307497, 0.272193979816332, 0.2731206998284672 ], "xaxis": "x2", "y": [ 0.47332024574279785, 0.7720831036567688, 0.21918544173240662, 0.9957500696182251, 0.012982267886400223, 0.8280165792742181, 0.9032542795031366, 0.7409704905863196, 0.823743206079801, 0.6574687067985914, 0.8064061327437708, 0.818777565066229, 0.8798544421012453, 0.771997220756938, 0.6741637693372708, 0.7764855571241684, 0.6704723660622068, 0.6223118733605857, 0.5897785325394996, 0.5377966929334563 ], "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": [ "