{ "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 07-17 17:11:01] 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.31485272393646935, -0.3105153173202242, -0.3070752493238369, -0.30459733262458966, -0.3031315803918644, -0.3027109103470176, -0.30334930203633603, -0.30504053087086325, -0.3077575764152336, -0.3114527662786237, -0.31605867351212913, -0.3214897385418847, -0.3276445409436253, -0.33440860642179615, -0.3416576041997583, -0.34926077244853904, -0.3570844055756448, -0.36499524665719774, -0.37286364899996793, -0.3805663996303308, -0.3879891307277019, -0.3950282789551234, -0.40159258407482334, -0.4076041447630503, -0.41299906969694145, -0.4177277752423716, -0.42175498766632313, -0.4250595085268509, -0.42763379787542966, -0.42948342237217085, -0.43062640555779796, -0.43109250641450125, -0.4309224408918091, -0.43016705004438593, -0.4288864085012547, -0.427148858791625, -0.42502995122189713, -0.42261126617799705, -0.419979096557376, -0.4172229730779209, -0.4144340248269225, -0.4117031815910004, -0.40911924267527433, -0.4067668577773109, -0.40472448692302754, -0.40306242566988204, -0.40184099548960095, -0.40110900432189367, -0.4009025764053846, -0.40124443279042343 ], [ -0.3010220108867985, -0.29639432853324443, -0.29274978434311416, -0.29016112923278836, -0.28868463601450167, -0.2883574381430045, -0.28919538308920045, -0.2911915492841286, -0.2943155452273145, -0.2985136663014274, -0.30370993238717414, -0.30980797237262725, -0.3166936658792525, -0.32423840387076375, -0.3323027933697984, -0.3407406108096407, -0.3494028050459137, -0.35814136399362195, -0.36681288553539604, -0.37528172967805595, -0.3834226701718857, -0.3911230052927688, -0.3982841252644327, -0.4048225650072106, -0.4106705939290276, -0.41577640889030243, -0.42010400279503, -0.4236327806492173, -0.4263569888830825, -0.42828501382336315, -0.4294385928812092, -0.4298519685317337, -0.4295710015126204, -0.4286522466732916, -0.4271619832472997, -0.4251751816325484, -0.4227743816955525, -0.4200484538642364, -0.41709121457007226, -0.4139998726358265, -0.41087329348987844, -0.40781008374800654, -0.4049065192401906, -0.40225436362199707, -0.39993864995678297, -0.39803552080737004, -0.39661023954180985, -0.3957154928603488, -0.3953900989853727, -0.3956582162814495 ], [ -0.2866476220483998, -0.28171892697013945, -0.2778663892626534, -0.2751716338747463, -0.2736979553578962, -0.2734872314658998, -0.274557420015894, -0.27690081881129447, -0.28048323322530533, -0.2852441447664653, -0.29109791057578804, -0.29793595436868436, -0.30562984114749336, -0.31403506858301666, -0.32299536381100635, -0.3323472499874156, -0.34192464406037226, -0.35156326474554, -0.3611046640278621, -0.3703997413133766, -0.3793116505241816, -0.3877180610957669, -0.39551277913645744, -0.40260677157072045, -0.40892866217482693, -0.414424783783907, -0.4190588765234413, -0.42281151935528727, -0.42567937351675966, -0.42767430355598934, -0.42882242638869505, -0.4291631225539927, -0.42874802773027354, -0.4276400074186002, -0.4259121041759657, -0.4236464354935108, -0.42093301201027233, -0.41786844096637044, -0.4145544794523395, -0.4110964069375642, -0.40760119744895396, -0.4041754889252416, -0.4009233703138593, -0.3979440345412837, -0.3953293750090454, -0.39316163098117274, -0.3915112085057346, -0.39043481359284926, -0.389974029421877, -0.390154447614695 ], [ -0.27175630211038837, -0.2665169977899695, -0.2624545413844561, -0.2596604708895638, -0.2582059544767785, -0.2581382091856226, -0.25947757913549574, -0.26221549058497384, -0.26631346052226257, -0.27170327444606834, -0.27828837236064263, -0.28594639727181814, -0.29453277690689483, -0.30388513660078154, -0.3138282876475387, -0.32417950660750616, -0.3347538192351278, -0.34536902626064037, -0.355850252401555, -0.36603385770664065, -0.3757706138057053, -0.38492810945045197, -0.3933924039229, -0.40106898951170566, -0.4078831535063474, -0.413779846119531, -0.41872316490905304, -0.4226955609526488, -0.4256968598478874, -0.4277431740582289, -0.4288657643224072, -0.42910988842248066, -0.42853365674194976, -0.4272068965593072, -0.4252100115241748, -0.4226328098015515, -0.4195732645577044, -0.41613616455369407, -0.4124316115176603, -0.4085733256730959, -0.40467673220357225, -0.4008568200620397, -0.3972257901804652, -0.3938905414746823, -0.3909500773049852, -0.3884929479682746, -0.3865948709032938, -0.3853166837855917, -0.38470278172564587, -0.3847801659353691 ], [ -0.25638355069427754, -0.2508255405079447, -0.2465531920945503, -0.24366910819813592, -0.24225328205266505, -0.24235893991069757, -0.2440091272104905, -0.247194301367764, -0.25187114752178386, -0.2579627610281965, -0.2653602477519177, -0.2739256896243263, -0.28349632027620064, -0.29388966617625467, -0.30490934334436215, -0.31635116564816457, -0.3280092205506817, -0.33968159967986433, -0.3511755282967026, -0.362311710487605, -0.3729277856064057, -0.3828808668117678, -0.39204919719647235, -0.4003330084147556, -0.4076546991015899, -0.41395846634371747, -0.4192095252916581, -0.4233930428883468, -0.42651289504089873, -0.4285903354879059, -0.42966264163627965, -0.4297817795987764, -0.4290131087781517, -0.42743412637965994, -0.4251332346954222, -0.4222084993357371, -0.41876635532899975, -0.4149202109254644, -0.4107888970068867, -0.40649491437606056, -0.4021624430094568, -0.39791509740070996, -0.393873440434269, -0.39015230357761355, -0.3868580006420146, -0.3840855611348346, -0.38191614093224313, -0.38041478562966535, -0.3796287194015726, -0.37958630623880474 ], [ -0.24057463822244096, -0.23469174323892972, -0.2302118928639214, -0.22725002863714572, -0.22589603033208383, -0.22620988780677043, -0.2282177084480419, -0.23190887875228117, -0.23723464542241612, -0.24410829528435318, -0.25240700104243774, -0.26197527304513213, -0.272629830827271, -0.2841655981146183, -0.29636244510319276, -0.3089922614961418, -0.3218259461882409, -0.3346399414027472, -0.3472220118866869, -0.3593760614435293, -0.37092587662428556, -0.3817177790562061, -0.39162224477933116, -0.40053460585803147, -0.4083749848379612, -0.4150876277095479, -0.4206397992959141, -0.4250203907396739, -0.4282383664195013, -0.43032115102958324, -0.4313130296733887, -0.43127360669073544, -0.43027634377626445, -0.42840717540331696, -0.4257631799769739, -0.42245126878776396, -0.4185868421583758, -0.41429235389059627, -0.40969572228108797, -0.4049285299034586, -0.4001239664446554, -0.3954144902530796, -0.3909292152388668, -0.38679106930718365, -0.383113815574583, -0.3799990728962881, -0.3775335103417037, -0.37578641280277436, -0.3748078143626674, -0.3746273680309353 ], [ -0.22438565468391092, -0.218174096661633, -0.2134919663327517, -0.21046794999477259, -0.20920299651024732, -0.20976470875644382, -0.21218267004518032, -0.21644509163929393, -0.222497107490101, -0.23024094040984266, -0.23953802790803036, -0.2502130403414957, -0.26205956800251506, -0.27484711780653237, -0.28832896233563865, -0.3022503361654596, -0.3163564805471877, -0.3304000930738187, -0.34414783238355473, -0.35738564346320034, -0.369922789950214, -0.38159459120139383, -0.39226395302169115, -0.4018218459525762, -0.41018692272788115, -0.4173044794454137, -0.42314495803671304, -0.42770216655470095, -0.4309913642685914, -0.43304732526777534, -0.43392246068625107, -0.43368504796109364, -0.4324175868856781, -0.43021527705485063, -0.4271845897163753, -0.4234418890992848, -0.41911204426202064, -0.4143269630493418, -0.4092239759698977, -0.4039440011984683, -0.3986294341468486, -0.3934217276174903, -0.388458662161951, -0.3838713501117028, -0.3797810677734612, -0.37629606267108695, -0.37350852803351975, -0.3714919650247992, -0.3702991552270718, -0.3699609359352627 ], [ -0.20788457535564864, -0.20134353217437062, -0.1964677072016925, -0.19340107843841947, -0.19225697883175275, -0.19311158027155484, -0.19599841838032983, -0.20090442637960781, -0.20776787943367636, -0.21647853057859345, -0.2268800546541052, -0.23877472555370893, -0.25193005906492805, -0.2660869851550216, -0.2809689931745376, -0.2962916366349637, -0.31177179571903535, -0.3271361690958021, -0.34212858645678645, -0.35651587871777735, -0.37009219243238345, -0.3826817700442011, -0.39414032515952613, -0.40435521559696164, -0.4132446561668923, -0.42075622213151664, -0.42686487994652955, -0.43157075188806937, -0.4348967826570189, -0.4368864347347754, -0.4376014990955446, -0.4371200711543548, -0.43553470953075313, -0.43295076747048356, -0.42948486334035874, -0.425263437252797, -0.4204213256505065, -0.41510027514927916, -0.40944731223376496, -0.4036128881896497, -0.3977487309168928, -0.3920053588912844, -0.386529248673656, -0.38145969555201864, -0.3769254641408464, -0.37304138579481116, -0.36990511298390305, -0.36759427566271174, -0.36616428991099736, -0.3656470374421703 ], [ -0.19115232253780867, -0.18428456361536205, -0.17922759248515585, -0.17614237477550265, -0.175156086301111, -0.17635454297872144, -0.17977578204973255, -0.18540536264221852, -0.19317388038395, -0.2029570493444115, -0.21457850519560973, -0.22781524842671308, -0.24240540705122826, -0.2580577890236111, -0.27446254609280984, -0.2913022032076811, -0.3082623266483737, -0.3250412008145309, -0.3413580372850893, -0.35695942307762474, -0.3716239001107833, -0.38516473137918594, -0.397431035698008, -0.4083075551975641, -0.4177133589546844, -0.4255997887420424, -0.4319479283503429, -0.43676583638710875, -0.4400857328319123, -0.4419612787639835, -0.442465041014819, -0.4416861913259782, -0.4397284535843675, -0.43670828255093674, -0.4327532324847565, -0.4280004535647668, -0.42259523782140795, -0.41668952483939714, -0.41044027193209476, -0.40400759564564037, -0.3975526036226795, -0.39123486036981436, -0.38520946897994124, -0.37962380333701073, -0.3746139889311815, -0.37030129850342, -0.36678869067373077, -0.3641577619829346, -0.36246639193227526, -0.36174732747405125 ], [ -0.17428379644956493, -0.1670964058428901, -0.16187547449093187, -0.15880080669320473, -0.15801503445482834, -0.15961482482475797, -0.16364335092076443, -0.17008471556249916, -0.17886093786825352, -0.1898319477272039, -0.2027987918424088, -0.21750996558444924, -0.23367048735319584, -0.2509530714886261, -0.2690105720289113, -0.2874887890022517, -0.3060387585166331, -0.3243277751457663, -0.3420485921149583, -0.35892647562947344, -0.3747240184353684, -0.3892438151468698, -0.4023292494836368, -0.41386373437465807, -0.4237687828647154, -0.43200128063691956, -0.43855029269790813, -0.44343368046288134, -0.4466947422437908, -0.44839902805297416, -0.44863142354872787, -0.4474935499952566, -0.4451014874602599, -0.4415837961937257, -0.4370797849173107, -0.43173795349789734, -0.42571452065143345, -0.4191719351911849, -0.412277263049329, -0.4052003438520704, -0.39811162283204693, -0.3911795891104288, -0.38456779207633396, -0.3784314642222859, -0.37291384877281897, -0.3681424068501038, -0.3642251500252236, -0.3612473944686374, -0.35926924663563775, -0.35832409618473493 ], [ -0.15738884152288923, -0.1498940362971266, -0.14453172253977176, -0.14150255263301292, -0.14096639199277528, -0.1430321112437687, -0.14774875208403615, -0.15509890189165998, -0.16499503064860366, -0.17727935149644614, -0.1917274747830251, -0.2080557686745994, -0.2259319688170578, -0.2449882538893018, -0.2648357758053428, -0.2850795370186874, -0.30533255144399574, -0.3252283924767796, -0.34443148401372303, -0.36264478092922325, -0.3796147678635202, -0.39513394295264415, -0.40904112447395513, -0.421220016773757, -0.4315965033514455, -0.4401351137484091, -0.44683505438934623, -0.45172611858125866, -0.4548647111466835, -0.45633014802684224, -0.4562213257883343, -0.4546538020316089, -0.4517572846517932, -0.44767349396762857, -0.44255433485666873, -0.4365602945299294, -0.429858964538945, -0.4226235731144776, -0.41503140713120024, -0.4072620040240149, -0.3994950057866007, -0.39190759302971623, -0.3846714597522225, -0.3779493500488178, -0.37189125420804725, -0.36663044643989395, -0.3622796270599111, -0.35892749093633314, -0.3566360628730738, -0.3554391056468884 ], [ -0.14059310636424338, -0.13280915729134812, -0.1273342707906071, -0.1243921141150266, -0.12416173403888409, -0.1267657152376227, -0.132259813888304, -0.14062507757779863, -0.15176338222198238, -0.16549709517146938, -0.1815732221750077, -0.19967195580409025, -0.21941908047445735, -0.24040128129391336, -0.2621831199556939, -0.28432432560136034, -0.3063961123940686, -0.32799545420857523, -0.3487565700696744, -0.3683592394463011, -0.38653391465998266, -0.4030638831111646, -0.41778492942877166, -0.430583051778203, -0.4413908080426463, -0.4501828265414498, -0.4569709356184495, -0.4617992682287577, -0.46473959815019983, -0.46588707433279053, -0.46535644438681634, -0.46327879829538654, -0.45979881746215145, -0.45507247929272254, -0.44926514067446144, -0.4425499026026638, -0.4351061414732311, -0.4271180801080776, -0.4187732645338542, -0.4102608132025807, -0.40176931698019924, -0.39348429457860545, -0.3855851525531311, -0.3782416632176635, -0.3716100560369253, -0.36582891105867255, -0.36101513306249, -0.35726035297046654, -0.35462812750058625, -0.3531522727786096 ], [ -0.12403874661291536, -0.11599100712986266, -0.1104395194674932, -0.10763328298021624, -0.10777264723421887, -0.11099559048672392, -0.11736555799438952, -0.12686208233688068, -0.13937533505870947, -0.154705506499774, -0.17256748786302034, -0.19260078660337498, -0.2143840281140641, -0.23745288447304236, -0.26131991631964047, -0.2854946755789052, -0.30950250727710493, -0.3329007744686838, -0.3552916438325353, -0.376331028804308, -0.39573371561475357, -0.4132750390520066, -0.42878970018503715, -0.4421684250243434, -0.4533531683054599, -0.46233149834880716, -0.46913068789658663, -0.4738119089007944, -0.47646480629815957, -0.4772026187679448, -0.47615792823562697, -0.47347905427555737, -0.46932706142418823, -0.4638733124515311, -0.45729747474460414, -0.4497858670013961, -0.4415300176416035, -0.4327252944067155, -0.42356945768757237, -0.4142609906528385, -0.40499707082522707, -0.3959710745664633, -0.3873695519600926, -0.3793686771425653, -0.3721302669035178, -0.3657975611917259, -0.36049105852746854, -0.3563047760302016, -0.35330333397574876, -0.351520229605657 ], [ -0.10788490987132038, -0.099606957204456, -0.09402302520414052, -0.09140989802814792, -0.09199151959878926, -0.09592311807267784, -0.10327694645472185, -0.11403111322090842, -0.12806292121434937, -0.14514784961219762, -0.16496480693753668, -0.18710761324092906, -0.21110194589664166, -0.23642633885920716, -0.26253538104840257, -0.2888830930898978, -0.31494458795596736, -0.3402344936712409, -0.36432114472139787, -0.3868361253663053, -0.4074792744470066, -0.42601966807548686, -0.4422933513376397, -0.4561986946330703, -0.4676902308470947, -0.4767717248026855, -0.4834890762755888, -0.4879234958466938, -0.49018524248126294, -0.4904080858623716, -0.48874455923873383, -0.48536199790500056, -0.48043930924493905, -0.47416438646488657, -0.46673205429182407, -0.45834241702587786, -0.4491994651951927, -0.4395097861985544, -0.42948121791717386, -0.41932128498368426, -0.40923526908738883, -0.3994237920066428, -0.3900798375190111, -0.3813852088779819, -0.37350651133675217, -0.36659085717394824, -0.36076159866293644, -0.3561144795420652, -0.3527146314286749, -0.35059480682123323 ], [ -0.0923079310022028, -0.08384282006194543, -0.07827990311378819, -0.0759263117990312, -0.07703203399661218, -0.08177158302009646, -0.09022729610588343, -0.10237603390434002, -0.11808102879577032, -0.13709031774798297, -0.1590425907293882, -0.18348045981870897, -0.20987024732407789, -0.23762657855946645, -0.2661395073525372, -0.2948017015636295, -0.323033389714509, -0.3503032543595128, -0.3761441321411718, -0.4001631031704733, -0.42204619760180706, -0.4415584297833006, -0.4585401547075667, -0.4729008366229597, -0.4846112645921865, -0.49369509682328117, -0.500220416218478, -0.5042917751804483, -0.5060430255898449, -0.5056310834737281, -0.5032306697011546, -0.4990299935231941, -0.4932272970948772, -0.4860281480126589, -0.47764334640497075, -0.46828729833973903, -0.4581766956158828, -0.44752933282323726, -0.4365628871587508, -0.4254934877362786, -0.41453391319603594, -0.4038912843400395, -0.3937641673149621, -0.38433907601801853, -0.37578645956536416, -0.36825637490429597, -0.3618741602712703, -0.35673651787390726, -0.3529084553146866, -0.3504215010860947 ], [ -0.07750115475415198, -0.06890278030950103, -0.06342484866935183, -0.06140747278102299, -0.06312926802640928, -0.06878624055694127, -0.07847225599208629, -0.09216320940258926, -0.10970704600405123, -0.1308214476081384, -0.15510028272395116, -0.18202890122943738, -0.2110072176113924, -0.24137850090087953, -0.2724610881616605, -0.3035799953718701, -0.33409563570192113, -0.3634274831560267, -0.3910713781963415, -0.416610076245429, -0.43971742899109256, -0.4601571579907626, -0.4777774928297567, -0.49250302187304706, -0.50432499869776, -0.5132911316251154, -0.5194956231312631, -0.523069970805037, -0.524174823171636, -0.5229930154145969, -0.5197237916462872, -0.5145781437587881, -0.5077751507827626, -0.49953917617458266, -0.4900977648482623, -0.47968007126503887, -0.46851564149866753, -0.4568333653426282, -0.44486041065681126, -0.4328209543727348, -0.4209345373548301, -0.40941389903179615, -0.39846219780596726, -0.38826959866704724, -0.37900931023884965, -0.3708332728932351, -0.3638678214892017, -0.35820974527307525, -0.3539232130918719, -0.3510379985847438 ], [ -0.0636742915410855, -0.05500884663927086, -0.04969167187746337, -0.048098511287423706, -0.05053928528748197, -0.05723385374968992, -0.06828922514448554, -0.08368073733426296, -0.10323984539068087, -0.1266508074804189, -0.15345771590211488, -0.18308207055435077, -0.2148496668618154, -0.24802427437893781, -0.2818446991582031, -0.31556152773429136, -0.3484701674392716, -0.3799376082231165, -0.40942142171241436, -0.43648064240252804, -0.4607791383643465, -0.48208274782414184, -0.5002517959796018, -0.5152306492767768, -0.5270357914200651, -0.5357436092432664, -0.5414787404342916, -0.544403519960978, -0.5447088029378789, -0.5426062506930143, -0.5383220397304327, -0.5320918771135693, -0.5241571649268693, -0.5147621368457653, -0.5041517808818634, -0.4925703573943261, -0.4802603172631572, -0.4674614212716006, -0.45440985995237826, -0.4413371768183476, -0.4284688117783242, -0.4160221113065241, -0.4042037033472843, -0.3932062122836011, -0.3832043929431188, -0.3743508859056486, -0.36677192297747885, -0.36056341535144787, -0.3557879059619158, -0.35247283471550617 ], [ -0.05105220230448726, -0.04239971011103627, -0.03733222024812077, -0.0362636991182721, -0.039538083521573286, -0.04740156417056651, -0.059976068011728056, -0.07723692695067874, -0.098997951072606, -0.1249067910813404, -0.15445249127126037, -0.18698560282482268, -0.2217494420923236, -0.25791944217966245, -0.29464643352605613, -0.3310993288069948, -0.366503106972796, -0.40016903167374474, -0.4315154199361775, -0.4600786837225581, -0.4855155382379672, -0.5075980526416329, -0.5262035764107883, -0.5413015666220566, -0.5529390777158018, -0.5612262770868001, -0.5663229214941926, -0.5684263437377913, -0.567761194776009, -0.5645709728052396, -0.5591112376364267, -0.5516443364595869, -0.5424354347879157, -0.5317496363087847, -0.5198499749878602, -0.5069960646515685, -0.49344319218759014, -0.4794416403305948, -0.4652360268415576, -0.45106445249839067, -0.4371572657314038, -0.4237352828616001, -0.41100735569630675, -0.39916725719154256, -0.38838996153973726, -0.3788275208100085, -0.3706048696991022, -0.3638159963721823, -0.35852096837736824, -0.35474427029385414 ], [ -0.03987300129613103, -0.03132888260346944, -0.026614551962370614, -0.02618463488044287, -0.03041974481564025, -0.03959493601848307, -0.05384896364921343, -0.07315785659351492, -0.09731671186145818, -0.125933329897449, -0.1584361786313757, -0.1940973047392418, -0.2320685788166703, -0.2714275977282161, -0.3112281665255878, -0.35054983991125344, -0.3885415500388947, -0.4244556740607468, -0.4576706357257363, -0.4877018837650313, -0.5142025119897751, -0.5369556954116667, -0.5558614852426966, -0.5709204237413209, -0.5822160572133379, -0.5898978990606534, -0.594165854635278, -0.5952566522885102, -0.5934324715354328, -0.5889717241029059, -0.5821618082146738, -0.5732935927330258, -0.5626573681134508, -0.5505400037045685, -0.5372230612252147, -0.5229816243406329, -0.508083611174692, -0.49278934074789515, -0.4773511283544316, -0.46201269295171565, -0.4470081770425989, -0.432560612344121, -0.4188797188034845, -0.40615900477012645, -0.3945722429204723, -0.3842695232961242, -0.3753732151001674, -0.367974276011481, -0.3621293992847756, -0.357859456857083 ], [ -0.030385363567916768, -0.02206198229212375, -0.017820208529951476, -0.018157490292981082, -0.023493613306617922, -0.03413499277868293, -0.05023920343508981, -0.07178382012885698, -0.09854428507375079, -0.13008532077084634, -0.16576912673808586, -0.20478132826531104, -0.24617286376501823, -0.2889134026552087, -0.3319501255871975, -0.37426515148538053, -0.4149255953690374, -0.45312191773577637, -0.48819241111340106, -0.5196338373839555, -0.5470999537119388, -0.5703907186833961, -0.5894353378840554, -0.6042721233439308, -0.6150276049817843, -0.6218966460526778, -0.62512463975863, -0.6249923025082145, -0.6218031733185116, -0.6158736749755954, -0.6075254604882127, -0.5970797190178384, -0.5848531132875686, -0.5711550391252228, -0.5562859209737501, -0.5405362768369363, -0.5241862998794811, -0.5075057129818308, -0.4907536602784486, -0.47417841071667866, -0.4580166685250777, -0.44249232031533814, -0.4278145043631847, -0.4141749688321936, -0.40174479275066544, -0.3906706698086235, -0.38107108417667757, -0.3730328132568512, -0.3666082427489459, -0.36181394740080575 ], [ -0.022844929958630633, -0.01487303341913071, -0.011240430410464075, -0.01248914101513754, -0.019080309308346033, -0.031354046287187964, -0.0494887325452984, -0.07346445525443213, -0.1030362216552343, -0.1377225558117514, -0.17681366525124886, -0.2194006263125492, -0.2644235856583965, -0.3107337280098059, -0.35716155703589814, -0.4025833523946396, -0.4459785393295215, -0.48647280313077523, -0.523364507681566, -0.556134660036917, -0.5844427521445706, -0.6081120291550023, -0.6271080853963229, -0.6415143656458938, -0.6515074169669495, -0.6573338523406088, -0.659290150804703, -0.6577057493078686, -0.6529294208467625, -0.645318665787983, -0.6352317221633712, -0.6230217730856108, -0.6090329503589077, -0.5935977718109586, -0.5770356881413455, -0.559652445510174, -0.5417399914210314, -0.5235766659985029, -0.5054274326753387, -0.48754391673248665, -0.4701640428621252, -0.45351110008586515, -0.4377921197903212, -0.42319553448498937, -0.40988819131007315, -0.3980119186036246, -0.3876799698998601, -0.37897377204146876, -0.3719404520927567, -0.36659158554914617 ], [ -0.0175097202319483, -0.010039659977301163, -0.007171164432198118, -0.009492003404949712, -0.017506380047908277, -0.03159010501473203, -0.05194421631059032, -0.07855233493650271, -0.11114843717558265, -0.1492019434233609, -0.19192549154602045, -0.2383074886180374, -0.28716727971834843, -0.33722673607616427, -0.3871893234125081, -0.4358168457465659, -0.48199511555025376, -0.524782383832804, -0.5634377460500832, -0.5974300544101866, -0.6264304004056362, -0.6502926403083402, -0.6690267544315007, -0.6827693255965456, -0.6917544417530873, -0.6962871990267696, -0.6967209513328464, -0.693438660960205, -0.686838189062137, -0.6773210913832317, -0.6652843845579538, -0.6511147512907507, -0.6351847031018051, -0.617850281451012, -0.599449933529501, -0.5803042413241322, -0.560716212085353, -0.5409718587939607, -0.521340815755029, -0.5020767527269543, -0.48341737698277165, -0.4655838524427778, -0.4487795240574284, -0.4331879177052418, -0.4189700907996561, -0.4062615297252712, -0.3951689114658432, -0.385767143942535, -0.3780971438930374, -0.37216477862872943 ], [ -0.014634499145593338, -0.007837082944415208, -0.005906735152687137, -0.009477413518652833, -0.019097393662937723, -0.03517964849562394, -0.05794941034597989, -0.08739480379042863, -0.1232283617617198, -0.16486782988766535, -0.21144307081108082, -0.2618320065552364, -0.31472333597485425, -0.3686987954634251, -0.42232434794908613, -0.4742385725301157, -0.5232277457210014, -0.568280230728871, -0.6086169574394072, -0.6436988682803375, -0.6732152845162941, -0.6970587830743228, -0.715292440113767, -0.7281145583731315, -0.7358247021085951, -0.7387934321210792, -0.737436871592067, -0.7321963046977099, -0.7235224425840551, -0.7118637234490058, -0.6976579477056818, -0.6813265932990824, -0.6632712429458271, -0.6438716447128039, -0.6234850019176721, -0.6024461434035369, -0.5810682634204855, -0.5596439470961752, -0.538446219006163, -0.5177293748702929, -0.49772938598140337, -0.47866370847625217, -0.4607303901392825, -0.44410644933763765, -0.4289456032808756, -0.41537553912544234, -0.403495036368964, -0.39337133954860226, -0.3850382199446809, -0.37849513217591735 ], [ -0.014464095036385682, -0.008530884887734125, -0.007732102171502442, -0.012747426894515801, -0.02416931602895822, -0.04244857949416336, -0.06783563396725545, -0.10032386450870723, -0.1396040957275686, -0.18504028199918365, -0.23567495073420952, -0.2902684111776992, -0.3473694568667254, -0.405409251657209, -0.4628059594411109, -0.5180662217596398, -0.5698709007087074, -0.617136200788237, -0.6590463762718975, -0.695059283959457, -0.7248898010653246, -0.7484780434185272, -0.7659495171803139, -0.7775733019100556, -0.7837226749724112, -0.7848407801657803, -0.7814124049315238, -0.7739418507419685, -0.7629362696594445, -0.7488935946783889, -0.7322941762993554, -0.7135953349442897, -0.6932281689416279, -0.6715960785106785, -0.6490745613256131, -0.6260119036376792, -0.6027304380646324, -0.5795280724739701, -0.5566798212411009, -0.5344390972501334, -0.5130385564362809, -0.49269033203295853, -0.4735855576611636, -0.4558931596707194, -0.43975799861309217, -0.4252985503821176, -0.41260442497557137, -0.4017341037590272, -0.3927133105666152, -0.38553439892595653 ], [ -0.017225749302430815, -0.012368590314513428, -0.01291371141718134, -0.01958500019321452, -0.03301808503137238, -0.05370123195078924, -0.08191020746535949, -0.1176439826407194, -0.16057147323256804, -0.21000128929401063, -0.26488501949619936, -0.3238593868346933, -0.3853251332856853, -0.4475532749773392, -0.5088043955616621, -0.5674447058904233, -0.6220438595939201, -0.6714437590897665, -0.7147937593761808, -0.7515539206520359, -0.7814725812829155, -0.8045467999994271, -0.8209743370871888, -0.8311044360294538, -0.8353924778592661, -0.8343613043890197, -0.8285701387971448, -0.8185907904499962, -0.8049901898444172, -0.7883180994168042, -0.7690989011037224, -0.747826524667368, -0.724961761163033, -0.7009313605878509, -0.6761284294398415, -0.6509137258938683, -0.6256175065256022, -0.6005416186272483, -0.5759615646390098, -0.5521282971682259, -0.5292695405413161, -0.5075904830698438, -0.48727374735698614, -0.4684786261236693, -0.4513396666595504, -0.43596479112329467, -0.42243323896328366, -0.41079369235489627, -0.40106297448064, -0.39322567737785263 ], [ -0.02312067838174814, -0.019570228768894138, -0.021689078850642973, -0.030242652285808802, -0.045907433150110144, -0.06920744429587922, -0.1004428409220881, -0.1396178070771681, -0.18637907852676316, -0.2399790122431411, -0.29927593801020835, -0.36277870059401973, -0.42873357452458594, -0.49524328920628724, -0.5604020039371846, -0.6224274488309877, -0.6797724018795154, -0.7312023659873153, -0.7758337165669678, -0.8131343085611478, -0.8428942572922329, -0.8651773763717233, -0.8802638037136559, -0.888592466498843, -0.8907092025282725, -0.8872234920438254, -0.8787744992075858, -0.866005715403208, -0.849546850954179, -0.8300014965939009, -0.8079392239197114, -0.7838910361481742, -0.7583473169710243, -0.7317576158612824, -0.7045317467178099, -0.677041772235018, -0.6496245117495343, -0.6225842574406883, -0.596195422164312, -0.5707048792671944, -0.5463337963685783, -0.5232788161326171, -0.5017125010811838, -0.4817830380388899, -0.4636132889563658, -0.4472993717894571, -0.4329090452554849, -0.4204802373137184, -0.41002008061630346, -0.4015047852554625 ], [ -0.032315152717688145, -0.03031819819128212, -0.034255422421130666, -0.044929902405215216, -0.06305522455498336, -0.08918793031534, -0.12365018722792454, -0.16645003251859514, -0.21721150043585524, -0.27513046719425605, -0.33897127328870913, -0.40711281560528945, -0.4776428787728044, -0.5484898435282202, -0.6175740312782939, -0.6829573629421797, -0.7429702673986874, -0.7962997087705264, -0.8420309752549856, -0.879645405688097, -0.9089833956455076, -0.9301854900340963, -0.9436243666243667, -0.9498380270247708, -0.9494708403321314, -0.943225487498179, -0.9318261540063651, -0.9159917556662862, -0.8964173697412177, -0.8737620295180986, -0.8486413048592366, -0.8216234240413476, -0.7932279889186918, -0.7639265625373196, -0.7341445683689141, -0.7042640490776964, -0.6746269072875782, -0.6455383052310233, -0.6172699448181731, -0.5900629920958076, -0.5641304559379084, -0.5396588845054096, -0.5168093075783173, -0.49571742931521534, -0.4764931621577859, -0.45921968190914386, -0.44395226502468343, -0.4307172266027237, -0.41951129564458745, -0.4103017316694646 ], [ -0.044931527621839606, -0.044746916361785516, -0.05075787294218892, -0.0638000430005039, -0.08461887332338258, -0.11379851080984493, -0.1516791223530094, -0.19826999185533278, -0.25317148154557967, -0.31552342100976705, -0.38399725528537765, -0.45684256324644457, -0.5319876417139912, -0.6071831947590305, -0.6801702767404025, -0.7488487491606787, -0.8114215433089935, -0.8664948498024193, -0.9131245659358753, -0.9508110675136524, -0.9794534384896195, -0.999278770497129, -1.0107621334828796, -1.014549526870793, -1.0113913515234503, -1.002089439386808, -0.9874574833856682, -0.968293021846175, -0.9453586038535003, -0.919369899900494, -0.8909889256602741, -0.8608209788773451, -0.8294142479801175, -0.7972613138976239, -0.7648019472463768, -0.7324267247433105, -0.7004810726385253, -0.6692694070882461, -0.6390590927101291, -0.6100839886050196, -0.5825474012571376, -0.5566243198780906, -0.532462874494013, -0.5101850309868627, -0.48988661806902, -0.4716368626330807, -0.455477681825752, -0.4414230293382, -0.4294586065403678, -0.41954221727864893 ], [ -0.06103977840563579, -0.06293291321144823, -0.07127801850023707, -0.08693709675110561, -0.11068077168340906, -0.1431141953076276, -0.18458978953019556, -0.23511406598995133, -0.2942621226406741, -0.36111875922179504, -0.43426554476089607, -0.511826382252583, -0.5915726023359055, -0.671077239996937, -0.7478992333785902, -0.8197716782564044, -0.8847654399139284, -0.9414036476134525, -0.9887141845997608, -1.0262216321711086, -1.053891722831779, -1.0720473196252946, -1.0812749705562628, -1.0823367044652072, -1.0760955313445577, -1.0634575152305947, -1.0453295771930349, -1.0225904296118102, -0.9960716640135217, -0.9665463457067004, -0.9347230285446763, -0.9012436385522674, -0.8666840942787667, -0.8315568284264384, -0.7963145755897482, -0.7613549255324886, -0.7270252352744251, -0.693627563760372, -0.6614233513992317, -0.6306376206824398, -0.6014625284649016, -0.5740601588601031, -0.5485645102193819, -0.5250827006342781, -0.5036954914906993, -0.48445730217180505, -0.46739595205063234, -0.45251240720415065, -0.4397808179283058, -0.4291491021999829 ], [ -0.08065016971080197, -0.08488613888142216, -0.09582372032396558, -0.1143440690357933, -0.14123501059688137, -0.17711454989954478, -0.2223399686147416, -0.27690956705645453, -0.3403708694970513, -0.4117551108718749, -0.4895588398680497, -0.5717869842678879, -0.6560602005242738, -0.7397776664415919, -0.8203165473282924, -0.8952406172333867, -0.96248513600401, -1.0204880434623536, -1.0682502356280503, -1.1053250287005427, -1.1317518735506034, -1.1479574788133073, -1.1546476107579084, -1.1527069574472666, -1.143116400697129, -1.1268901821358575, -1.1050312452401148, -1.0785012976732022, -1.0482019780559504, -1.0149640689600294, -0.979542422951085, -0.9426149047097612, -0.9047841276399143, -0.8665810912160362, -0.8284700445265178, -0.7908540495295899, -0.7540808223242824, -0.7184485105948281, -0.6842111317670477, -0.6515834565169214, -0.6207451808580322, -0.59184429034947, -0.5649995838903342, -0.5403023922491723, -0.517817595718901, -0.4975841110680099, -0.479615072535138, -0.46389796561786967, -0.4503949770622613, -0.43904379454093356 ], [ -0.10370769910274724, -0.11054329904513294, -0.12432121710756294, -0.14593374844156948, -0.1761768982845331, -0.21567210387324098, -0.26477273315984373, -0.32346220025476646, -0.39125744616620173, -0.4671378737963463, -0.5495213899497404, -0.6363034193391379, -0.7249639369816419, -0.8127361534805915, -0.8968195991140233, -0.9746090880752104, -1.043902466797757, -1.1030509640722181, -1.1510292590417133, -1.1874230248029711, -1.2123510523681493, -1.2263501127167438, -1.2302508869849134, -1.225065375863713, -1.2118958730588152, -1.191867353835325, -1.1660805147016755, -1.1355810904379529, -1.1013411951342351, -1.0642492353539292, -1.0251058288759674, -0.9846238903437411, -0.943431570491874, -0.9020770922550266, -0.8610347655095194, -0.8207116252495242, -0.7814542554171888, -0.7435554511560221, -0.7072604473230697, -0.672772507705187, -0.6402577321342886, -0.6098490006759579, -0.581649037039852, -0.5557326374786878, -0.5321481747733142, -0.5109185451220152, -0.49204177236034186, -0.47549151127757305, -0.46121769294800163, -0.4491475261685516 ], [ -0.13008887885153753, -0.13976394700323325, -0.15661045343857904, -0.18152323807233928, -0.21529673811794714, -0.2585455414649436, -0.31160938910192604, -0.374449255646053, -0.44654791457529397, -0.5268347204558873, -0.6136563153335606, -0.704810248269561, -0.7976491031986687, -0.8892521421793339, -0.9766497561502904, -1.0570720009926027, -1.128180205416379, -1.188238667802234, -1.236196573300154, -1.2716743579928635, -1.2948736365585314, -1.3064447604081182, -1.3073462029269565, -1.2987193660407426, -1.2817893910560256, -1.257792938558381, -1.2279290229042972, -1.1933276148875769, -1.1550311627289394, -1.1139852184503833, -1.0710353830109998, -1.026928588581299, -0.9823173049696541, -0.9377656417280524, -0.8937565770997853, -0.8506997257344912, -0.8089391895465932, -0.7687611390189344, -0.7304008569477634, -0.6940490500873436, -0.6598573010012608, -0.6279425957907434, -0.598390925072728, -0.5712600159299137, -0.5465813100054435, -0.5243613538962298, -0.5045828072009559, -0.48720529489123376, -0.4721663287783262, -0.45938249512944895 ], [ -0.15960125665208724, -0.17232985468645912, -0.1924443072565336, -0.22083307808924957, -0.2582789380032193, -0.30537896792387653, -0.36244916727539733, -0.4294200997443791, -0.5057364038923857, -0.5902789832611547, -0.6813309289855978, -0.7766048418726984, -0.8733418248612053, -0.9684831717402451, -1.0589034745099586, -1.1416770889203973, -1.2143336037314492, -1.2750523511677054, -1.3227579655385373, -1.3571064572910716, -1.3783828067592603, -1.3873508594549562, -1.3850961787144043, -1.3728885713807755, -1.3520750549673557, -1.324003169934263, -1.289969583055404, -1.251187871228212, -1.2087701175956893, -1.1637181856139602, -1.116921671645287, -1.0691604016691676, -1.0211099446490817, -0.9733490290752773, -0.9263680339624143, -0.8805779280087023, -0.8363191811404181, -0.7938702899085367, -0.7534556535374465, -0.7152526180803057, -0.6793975770100918, -0.645991081057364, -0.615101970265975, -0.5867705976911965, -0.5610112658509189, -0.5378140411712763, -0.5171461440555504, -0.4989531281116528, -0.48316005753710267, -0.46967286501558436 ], [ -0.1919858476760652, -0.20794788178767964, -0.23149199062121228, -0.26349129474436794, -0.304706847204788, -0.3557076939640651, -0.41677613049088835, -0.4878043922316302, -0.5681948389777873, -0.6567811128660422, -0.7517901327228925, -0.8508628452692476, -0.9511465640992405, -1.0494641900529194, -1.1425530303031302, -1.2273466170434737, -1.301252672363752, -1.3623706342779909, -1.4096019957615415, -1.442637114064529, -1.461841112805844, -1.4680868181403421, -1.462581999791983, -1.4467204351428544, -1.4219674620169707, -1.3897788558913193, -1.3515470021532339, -1.3085675987842988, -1.2620211058846187, -1.2129645224521106, -1.1623302742124713, -1.1109299053387212, -1.0594609105968678, -1.008515492477808, -0.9585903435930745, -0.9100967836485317, -0.863370752343071, -0.8186822931600573, -0.7762442700027748, -0.7362201467910016, -0.6987307349630112, -0.6638598791995649, -0.6316591101021313, -0.6021513450714291, -0.5753337647494191, -0.5511800301069862, -0.5296420314326483, -0.5106513715674408, -0.4941207789116453, -0.4799456200852641 ], [ -0.22692239696756866, -0.2462562246148876, -0.2733464493749296, -0.3090421201699407, -0.35407295237749326, -0.40897002546977945, -0.473972613032944, -0.5489271729170528, -0.6331896653195165, -0.725547114367857, -0.824176787148248, -0.9266608236533067, -1.0300713677010394, -1.1311355421620433, -1.2264770745755142, -1.3129099998134681, -1.3877360990392924, -1.448983861841673, -1.4955336848772731, -1.527106590286063, -1.5441402175129744, -1.547606916336551, -1.5388273211235328, -1.5193112035169578, -1.490636046859075, -1.454361349694776, -1.411971975757676, -1.364843362121632, -1.3142224951641517, -1.2612199735394114, -1.2068097081818259, -1.1518337506720084, -1.0970104242375747, -1.0429444208704899, -0.9901378818344858, -0.9390017399060012, -0.8898667987809664, -0.8429941770899939, -0.7985848640466124, -0.7567882297228927, -0.7177094116762903, -0.6814155657500848, -0.6479410254285618, -0.6172914627543177, -0.5894471846347041, -0.5643657301518863, -0.5419839550465612, -0.5222197963706058, -0.5049739015120711, -0.4901312810580227 ], [ -0.26403715874697276, -0.2868336242745082, -0.3175351983516328, -0.35695863396042715, -0.4057934545551718, -0.46452381852948554, -0.5333376877292221, -0.6120290894430719, -0.6999036964771882, -0.7957020381897396, -0.8975571687388479, -1.0030043167644176, -1.1090592862605053, -1.2123783437932834, -1.3095000422421053, -1.3971466262278718, -1.472536221673851, -1.5336395579586402, -1.579318714903566, -1.6093190791251815, -1.6241386244075324, -1.6248348663070613, -1.6128276812677418, -1.5897314890433696, -1.5572272082416119, -1.516971670684328, -1.4705376014860165, -1.4193768076990743, -1.3648002764751341, -1.3079702500526138, -1.2499005673497605, -1.191462528966173, -1.1333942701039508, -1.0763121646724583, -1.0207231830234211, -0.9670374240874359, -0.9155802680925123, -0.8666037682485127, -0.820297032805548, -0.7767954529489407, -0.7361887146325249, -0.6985275992123389, -0.6638296324480387, -0.6320836863374776, -0.6032536741234018, -0.5772815051841407, -0.5540894820490315, -0.5335823248566747, -0.5156489980836568, -0.5001644904364522 ], [ -0.30291270434572337, -0.3292109008682187, -0.3635337768207949, -0.40665829175380885, -0.4592259437006858, -0.5216662606202542, -0.5941088939028883, -0.6762898374625558, -0.7674610767982035, -0.866316496989577, -0.9709494585028977, -1.0788591477118028, -1.1870236121088311, -1.2920546210612407, -1.3904375274127612, -1.4788357871441096, -1.5544117821817132, -1.6150956342162508, -1.6597347080073859, -1.688090229890278, -1.7007044425905555, -1.698701550967752, -1.6835834302860413, -1.6570548341929312, -1.6208890165180625, -1.5768318426948686, -1.5265377842101364, -1.47153051691795, -1.4131816973159466, -1.3527027332410266, -1.291145551166705, -1.2294093518983673, -1.1682511249771963, -1.1082982879471275, -1.0500622674275246, -0.9939521788123361, -0.9402880177986449, -0.889312970819091, -0.8412045986454224, -0.7960847598729103, -0.7540282276526491, -0.7150700205342868, -0.679211521278949, -0.6464254989538275, -0.6166601809830374, -0.5898425433437653, -0.565880998186437, -0.544667657975777, -0.5260803433095295, -0.5099844783427524 ], [ -0.3430991704838231, -0.37288407625493414, -0.41078091324815547, -0.45752024001007774, -0.5136888806198855, -0.5796554246143916, -0.6554856638956944, -0.7408532108415332, -0.8349537674468693, -0.9364346117370493, -1.0433535325595327, -1.1531838666232554, -1.2628840867604438, -1.3690483349878984, -1.4681425978050369, -1.5568076939104012, -1.6321818611634729, -1.6921746621804667, -1.7356232996506722, -1.7622952413671937, -1.772758671398161, -1.7681833915339968, -1.7501334574279046, -1.720387218553264, -1.6807969388254218, -1.6331872494030617, -1.579286598119916, -1.520684718176692, -1.4588096375049617, -1.3949188009214137, -1.3301000028556067, -1.2652788369860992, -1.2012302016855623, -1.1385920576618411, -1.0778801404440839, -1.0195027145496696, -0.9637747452997494, -0.9109310808627422, -0.8611383990856929, -0.8145057948671566, -0.7710939747529003, -0.7309230939110335, -0.693979322242058, -0.6602202647999047, -0.6295793890789094, -0.6019696289759244, -0.5772863424777251, -0.555409797153553, -0.536207344379223, -0.5195354206174568 ], [ -0.38412633118352857, -0.41732833949992476, -0.4586945169022434, -0.5089034036103834, -0.5684817665794777, -0.6377324149043264, -0.7166532647005841, -0.8048526270418668, -0.9014684825201937, -1.0051023091755256, -1.1137807805429678, -1.2249615096047808, -1.3356012354323836, -1.442302949085957, -1.5415469443749112, -1.629987880168, -1.7047723257081344, -1.7638105275854954, -1.8059351775503614, -1.8309110394492623, -1.8393139351627763, -1.8323374985964915, -1.8115868233762245, -1.7788953145706476, -1.7361788938590208, -1.6853286881630345, -1.6281375621116498, -1.566254023780281, -1.501157056816814, -1.4341462350683214, -1.3663425179814657, -1.298696143729663, -1.2319989209537872, -1.1668989388483089, -1.1039162776094567, -1.0434587305076461, -0.9858368714456013, -0.9312780418315133, -0.8799390078823816, -0.8319171698661687, -0.7872603004096161, -0.7459748588882369, -0.7080329795998194, -0.6733782673663251, -0.6419305582219167, -0.6135898164833791, -0.5882393434910038, -0.5657484680122448, -0.5459748741690725, -0.5287667007232875 ], [ -0.4255159029365354, -0.46201216492798225, -0.506687711259644, -0.5601644833187387, -0.6229050901718951, -0.6951431872506554, -0.7768063661271543, -0.8674362890464623, -0.966113271819898, -1.0713951337857532, -1.1812829337269237, -1.2932292214932408, -1.4042065904020067, -1.5108521290170223, -1.6096920121378533, -1.6974287423458847, -1.77124768434143, -1.8290803779146176, -1.8697618098306086, -1.8930474363019778, -1.8995046964142615, -1.8903305404630781, -1.8671498999088867, -1.831831582057959, -1.7863380902610797, -1.7326128585026026, -1.6725017910412343, -1.6077033398897453, -1.5397408164337634, -1.469951140386299, -1.3994851594114341, -1.3293156840462428, -1.260250307114818, -1.1929468507470047, -1.1279298990482927, -1.065607347218998, -1.006286253502408, -0.9501875437630299, -0.8974593114749676, -0.8481885960146233, -0.802411623042225, -0.760122562678399, -0.7212809116050529, -0.6858176393727676, -0.6536402605502482, -0.6246370050644147, -0.5986802604364267, -0.5756294524613342, -0.5553335160132319, -0.5376330861879814 ], [ -0.46679355301931946, -0.5064109801863406, -0.5541842424568796, -0.6106751472959726, -0.6762793054087232, -0.7511592819626292, -0.8351714649844714, -0.927791190411787, -1.0280429070138644, -1.134444651836271, -1.2449788845374792, -1.3571046311094361, -1.4678276117096334, -1.5738423011057017, -1.6717487274556033, -1.758326691738448, -1.8308267047082232, -1.8872201925672338, -1.9263522491775373, -1.9479657345181405, -1.9526074660496315, -1.9414598888875663, -1.9161476307065044, -1.8785548966173917, -1.8306724535876093, -1.7744802195542944, -1.711864094335532, -1.6445621560610606, -1.574134206666524, -1.501948819162098, -1.4291828222412222, -1.3568291343935843, -1.2857098055023826, -1.2164919402841736, -1.149704838000977, -1.08575719511171, -1.0249536042756433, -0.9675098694685282, -0.9135668658202223, -0.8632028231479152, -0.816444019015197, -0.7732739418649517, -0.7336410357270827, -0.6974651711626909, -0.6646430065823794, -0.6350524125948114, -0.6085561313928514, -0.5850048346349312, -0.5642397279372797, -0.546094829198439 ], [ -0.5075001578698635, -0.550019878524753, -0.6006327092587076, -0.659837820339197, -0.727962202005826, -0.8050967780366168, -0.8910273951922164, -0.9851650832784393, -1.0864820610419663, -1.193462337745352, -1.3040784175032372, -1.4158081938222613, -1.5257071991425928, -1.630548049257156, -1.7270281487460335, -1.8120285194414585, -1.882886146703465, -1.9376282433811718, -1.9751184472200116, -1.9950870356097146, -1.9980521494589674, -1.9851673177680433, -1.9580386184959497, -1.918546094021815, -1.8686898798165625, -1.8104694266081782, -1.7457962723701639, -1.6764365395313634, -1.6039775940047165, -1.529813103904274, -1.4551413324588274, -1.380972406401499, -1.3081412413227866, -1.2373236459344608, -1.1690538209324783, -1.1037420133525093, -1.0416915019486357, -0.9831143971036413, -0.9281459633262856, -0.876857333433684, -0.8292665970559215, -0.7853483244555179, -0.745041639018793, -0.7082569848195452, -0.6748817540897128, -0.6447849465156017, -0.6178210302656595, -0.5938331651915766, -0.5726559331018686, -0.5541176997453218 ], [ -0.5472019416303538, -0.5923649657642763, -0.6455191643727646, -0.7070995741393404, -0.7773641096205716, -0.8563328217059623, -0.9437231533794497, -1.0388854843172652, -1.1407452042793793, -1.2477597968083391, -1.3579018495382396, -1.468681020308886, -1.5772183465883032, -1.6803824545183903, -1.7749870151796288, -1.8580326869535808, -1.9269593502877604, -1.979863111765929, -2.0156346782934924, -2.0339942935638335, -2.035427035586888, -2.021046538372488, -1.9924244737051788, -1.951418340684629, -1.9000189381464345, -1.8402278401286467, -1.7739670713960924, -1.703018317002649, -1.6289867194179526, -1.5532837394396857, -1.4771239318464713, -1.4015312854491353, -1.3273516802427725, -1.255268856197579, -1.1858220008148819, -1.1194236318825865, -1.0563768895955612, -0.9968916795984206, -0.9410993480734281, -0.8890657418933025, -0.8408026277018587, -0.7962775266066056, -0.7554220758464192, -0.7181390626277165, -0.6843082935725949, -0.6537914696428546, -0.6264362336727517, -0.6020795477474034, -0.5805505422127651, -0.5616729585666814 ], [ -0.5854992095992094, -0.6330130270209193, -0.6883777369267843, -0.7519637210963553, -0.8239604707224545, -0.9043191680345646, -0.9926923538121051, -1.088374894223612, -1.1902522821131731, -1.2967643773865363, -1.4058948189659868, -1.5151979154319595, -1.621874502221833, -1.7229040934760649, -1.8152311949074103, -1.8959896620149659, -1.9627344417762271, -2.013641032350097, -2.047635259323671, -2.0644313526167357, -2.064479638504279, -2.0488458803468586, -2.019054054097484, -1.9769225008585622, -1.924414914030371, -1.8635178471714828, -1.7961484709326465, -1.724091104043662, -1.6489583238599697, -1.5721715212068226, -1.494955892562241, -1.4183455179820468, -1.3431950066558551, -1.270195010298315, -1.1998896188662913, -1.1326942356694776, -1.0689129834948117, -1.0087550369353484, -0.9523495293588381, -0.8997588654813095, -0.8509903990552306, -0.8060065231801191, -0.7647332785837837, -0.7270676207170816, -0.6928835054125814, -0.6620369593731208, -0.6343702989426697, -0.6097156507654741, -0.5878979128850402, -0.5687372761478638 ], [ -0.6220334758980163, -0.6715792931285965, -0.7287990299775837, -0.7939988275568632, -0.867301442983577, -0.9485923227916674, -1.0374638136610053, -1.1331616510143523, -1.2345395499536629, -1.3400295793750354, -1.447637767810976, -1.5549754230236665, -1.659335763608901, -1.7578211720960308, -1.8475177906147353, -1.9257022296092488, -1.990053187115843, -2.0388336779748695, -2.0710117398555967, -2.0863001013184372, -2.0851143532805576, -2.068466829309891, -2.037823044453388, -1.994947725481388, -1.9417612495686911, -1.8802189398549496, -1.8122181812256726, -1.739533026152293, -1.663772934268923, -1.5863610266910908, -1.508527110301851, -1.4313112125646026, -1.3555741021661167, -1.2820120410020426, -1.2111737108792031, -1.14347784198259, -1.0792305339950337, -1.0186416162519534, -0.9618396581489143, -0.9088854334440206, -0.8597837783995705, -0.8144938773784883, -0.7729380712249652, -0.7350093217096145, -0.7005774856694217, -0.6694945598023303, -0.6415990547903448, -0.6167196480974477, -0.5946782504415776, -0.5752926032521786 ], [ -0.6564928682581123, -0.707733182689886, -0.7664361574651072, -0.8328449922173649, -0.9070183500910655, -0.9887800712470931, -1.0776680257353408, -1.1728861602485656, -1.2732653220428078, -1.3772400552707742, -1.4828499546039196, -1.5877747005629046, -1.6894105960609727, -1.784992182991288, -1.8717548582991526, -1.9471243083780663, -2.008908804975387, -2.055464824437413, -2.0858084226765086, -2.099655129653197, -2.097386754381273, -2.0799585216006684, -2.0487690923322384, -2.005517489986677, -1.952066567293402, -1.890325678527284, -1.8221584223901242, -1.7493161577886747, -1.6733948037227997, -1.5958109125083049, -1.5177926365848284, -1.4403815099988782, -1.364441579027063, -1.2906731166312715, -1.219628819276001, -1.1517309567200091, -1.0872884101106188, -1.0265128959853533, -0.9695339473694916, -0.9164124241563278, -0.8671524686515683, -0.8217119217064041, -0.780011280959661, -0.7419413237682309, -0.7073695398849673, -0.6761455277380355, -0.6481055069723775, -0.6230760915507155, -0.6008774543787085, -0.581325997895709 ], [ -0.6886157737582173, -0.7412019908056503, -0.8010083984674773, -0.8682173738722405, -0.9428269728222087, -1.0246043991188314, -1.1130395490816432, -1.2073025732092197, -1.3062107547165487, -1.4082113568114096, -1.5113881146999126, -1.6134991701797732, -1.7120526630822301, -1.804422134525038, -1.8879971598463416, -1.9603561565854593, -2.0194403684296187, -2.0637036479270385, -2.0922144234471527, -2.1046947203272177, -2.1014939703571054, -2.083508089265649, -2.052062675000037, -2.008781387817526, -1.9554576138559407, -1.8939418489051199, -1.8260512424577118, -1.7535028792680056, -1.677869153136307, -1.6005518809581096, -1.5227712201054364, -1.445565567360458, -1.3697990955743884, -1.2961741971918648, -1.2252467179192679, -1.1574424120022004, -1.093073507395912, -1.0323546323917392, -0.9754176340913332, -0.922325026795013, -0.8730819586311032, -0.827646690019183, -0.7859396482902488, -0.7478511674200897, -0.7132480469964873, -0.681979075357844, -0.6538796622412058, -0.6287757192862511, -0.6064869147157228, -0.5868294133265379 ], [ -0.7181927648141514, -0.771772585482278, -0.8323025554890655, -0.8999070866272326, -0.9745278385049708, -1.0558810161399368, -1.1434155947617994, -1.2362762676503176, -1.3332760900796115, -1.4328848856165697, -1.5332401737696222, -1.6321871688672736, -1.7273526611968788, -1.8162538001568962, -1.8964369347227865, -1.9656345964974706, -2.0219222768168006, -2.0638532349999337, -2.0905511580635388, -2.101747494497544, -2.0977608994266816, -2.0794269857950543, -2.0479940711243394, -2.005003174914312, -1.9521686467408712, -1.8912713043853786, -1.8240708029070491, -1.7522395071339225, -1.6773169990753287, -1.6006825376815745, -1.523542026222122, -1.4469259828839531, -1.3716953477922216, -1.2985524738111949, -1.228055200266141, -1.160632421946701, -1.0966000061041898, -1.0361762683594624, -0.9794964985209251, -0.9266262392602742, -0.8775731761455852, -0.8322976080050563, -0.7907215419258502, -0.7527365056501256, -0.7182101983723955, -0.6869921142211816, -0.6589182751216177, -0.6338152044717716, -0.6115032626128057, -0.591799451392561 ], [ -0.7450669114053737, -0.799291252276368, -0.86017219951197, -0.9277796973564707, -1.0020038083393235, -1.0825158611229058, -1.1687312786495858, -1.2597777016789036, -1.3544730179243807, -1.4513187554854419, -1.548514706701588, -1.6440001926373133, -1.7355255818806765, -1.8207542016965617, -1.8973897152831063, -1.9633181634550496, -2.0167486791320735, -2.0563342486357827, -2.081255332036494, -2.091254961630718, -2.0866227023259682, -2.068133888302767, -2.0369571357957588, -1.9945458007283074, -1.9425279789696184, -1.8826061476949572, -1.8164732032046669, -1.7457476799385998, -1.6719279630811499, -1.5963634580189934, -1.520239785556984, -1.4445748575613242, -1.3702228884507153, -1.2978838078040253, -1.2281160198285275, -1.1613509245279865, -1.0979080314707912, -1.0380098441841055, -0.9817959702914792, -0.9293361259512476, -0.8806418623324629, -0.8356769566818034, -0.7943664901431591, -0.7566046867919808, -0.7222616198808336, -0.691188907339065, -0.6632245233199576, -0.638196849343839, -0.61592807993639, -0.596237085641689 ], [ -0.7691326403352792, -0.8236618922856834, -0.8845350609030279, -0.9517716503062043, -1.0252153670492032, -1.1044990867664513, -1.189012144638999, -1.2778733529247972, -1.3699139677205834, -1.4636754542904171, -1.557427072552982, -1.6492076761846097, -1.736894336815293, -1.818297264176584, -1.891276148495686, -1.9538681886279803, -2.0044139044405793, -2.0416648310896752, -2.064858511725962, -2.0737510376543242, -2.068604617792469, -2.0501351998176114, -2.0194308691451797, -1.977854362650106, -1.926942543613877, -1.8683130217297745, -1.803584513396952, -1.7343140669337354, -1.6619515340807354, -1.5878098473177862, -1.5130486821139175, -1.4386687408226109, -1.3655139692651408, -1.2942793227979728, -1.2255221028281365, -1.1596753029182154, -1.0970617887617236, -1.0379084667884246, -0.9823598660133053, -0.9304907696779232, -0.8823176940797725, -0.8378091299787594, -0.7968945452588764, -0.7594722034550202, -0.7254158876112631, -0.6945806379134923, -0.6668076188434179, -0.6419282305924945, -0.6197675728119723, -0.6001473585483685 ] ], "zauto": true, "zmax": 2.1046947203272177, "zmin": -2.1046947203272177 }, { "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.8224825450961619, 0.8209042716676682, 0.819376052640808, 0.817916136754742, 0.8165416985326672, 0.8152684738690235, 0.8141105136414348, 0.8130800542273307, 0.8121874831162808, 0.8114413600598083, 0.8108484433777267, 0.8104136699995087, 0.8101400474467254, 0.8100284347923264, 0.8100772140805863, 0.8102818788744934, 0.810634587513223, 0.8111237413894696, 0.8117336511250225, 0.8124443462294847, 0.8132315689487241, 0.8140669740625778, 0.8149185371911779, 0.8157511579716287, 0.8165274333884771, 0.8172085713438272, 0.8177554147489015, 0.8181295505911109, 0.8182944846291726, 0.8182168684805606, 0.8178677698997451, 0.8172239773253429, 0.8162693250610285, 0.8149960150480973, 0.8134058950378524, 0.811511631835628, 0.8093376939208822, 0.8069210331058745, 0.8043113342695817, 0.801570691160533, 0.7987725712340809, 0.7959999598420229, 0.7933426285785447, 0.7908935552762613, 0.7887446292396614, 0.786981892603567, 0.7856806777789483, 0.7849010778663595, 0.7846842087134454, 0.7850496730569886 ], [ 0.8190647476028268, 0.8172399033568338, 0.815472585230802, 0.8137842278759001, 0.8121949405879019, 0.8107230674057447, 0.8093849029432271, 0.8081945643511085, 0.8071639918853143, 0.806303026075139, 0.8056194940374456, 0.8051192351947909, 0.8048060089473063, 0.8046812518359743, 0.8047436845232082, 0.8049888027500759, 0.8054083143802637, 0.8059896013234564, 0.8067152879330686, 0.8075629869699721, 0.8085052737219102, 0.809509913310535, 0.810540340837872, 0.8115563731569517, 0.8125151173825003, 0.813372035598872, 0.8140821267376859, 0.8146011932941002, 0.814887169840861, 0.8149014994864267, 0.8146105510421365, 0.8139870716772305, 0.8130116657448715, 0.8116742793565396, 0.8099756519707109, 0.8079286714225373, 0.80555953925061, 0.8029086220791777, 0.8000308370525773, 0.7969954014780782, 0.7938847768820929, 0.7907926639870068, 0.7878209646042432, 0.7850757219664645, 0.7826621783242161, 0.7806792338841737, 0.7792137305618959, 0.7783350867914178, 0.7780908449957887, 0.7785036401117096 ], [ 0.8152315315877894, 0.8131256987249381, 0.8110858947548629, 0.8091372705663499, 0.8073033381166322, 0.8056054359696725, 0.8040623996593353, 0.802690440184718, 0.8015031963078699, 0.8005118925698559, 0.7997255129236858, 0.7991508955693717, 0.7987926702174332, 0.7986529922005231, 0.7987310719022856, 0.7990225435112035, 0.7995187545164996, 0.800206079233676, 0.801065362522064, 0.8020715847703848, 0.8031938109832759, 0.8043954523527413, 0.8056348352108743, 0.8068660454764506, 0.8080399999802069, 0.8091056901501719, 0.810011547066829, 0.8107068870547617, 0.8111434103378353, 0.811276738433268, 0.8110679858860206, 0.8104853662296839, 0.8095058289311404, 0.8081167124310052, 0.8063173778692135, 0.8041207592419087, 0.8015547303451214, 0.7986631503062381, 0.7955064131813225, 0.7921613006476762, 0.7887199299365321, 0.7852876125850324, 0.7819795030670391, 0.7789160252829083, 0.7762172161992833, 0.7739963044125954, 0.7723530182951447, 0.7713672544563066, 0.7710937915558425, 0.771558677298344 ], [ 0.8109453032549805, 0.8085200679004142, 0.806170521171397, 0.8039261479855384, 0.8018144034697516, 0.7998600589248991, 0.7980848162796632, 0.7965071994755907, 0.7951426805606161, 0.7940039517460228, 0.7931012233345585, 0.7924424198948679, 0.7920331668733978, 0.7918765039692912, 0.7919723208781938, 0.7923165724170431, 0.7929003801852972, 0.793709156585248, 0.7947218896523243, 0.7959107055178385, 0.7972407864273939, 0.798670675847263, 0.8001529581091823, 0.8016352658316628, 0.8030615481143282, 0.8043735267784723, 0.8055122744605103, 0.8064198632160346, 0.8070410509429742, 0.8073249910943832, 0.80722696520782, 0.8067101449256384, 0.8057473884016848, 0.8043230639972468, 0.8024348714278201, 0.8000955974243755, 0.797334701190724, 0.7941995779384272, 0.7907563024078863, 0.7870896172302416, 0.7833019148080366, 0.7795109796304807, 0.7758463238044279, 0.7724440709426886, 0.7694405215051079, 0.7669647501138555, 0.7651308080405685, 0.7640302825232621, 0.7637260447735637, 0.7642479591195592 ], [ 0.8061676353848405, 0.8033802798949424, 0.8006795657534309, 0.7981000326055769, 0.7956737043975555, 0.7934292827498853, 0.7913916910318793, 0.7895819861915208, 0.7880175872986733, 0.7867127056609315, 0.7856788167750035, 0.7849250018039369, 0.7844580112346135, 0.784281962101249, 0.784397660077262, 0.7848016206941627, 0.7854849312560965, 0.7864321325760877, 0.7876203014632385, 0.7890184839227682, 0.7905875754607777, 0.7922806824796299, 0.7940439408868326, 0.7958177246046313, 0.7975381525452436, 0.7991387978241995, 0.800552513927153, 0.8017133137044848, 0.8025582625127919, 0.8030293712245741, 0.8030754939221135, 0.8026542457240654, 0.8017339561588109, 0.8002956613679394, 0.798335113494214, 0.7958647480675104, 0.7929155015324569, 0.7895383146870832, 0.7858050998898506, 0.7818089001132543, 0.7776629397886891, 0.7734982775821903, 0.7694598372005811, 0.7657007274941997, 0.7623749699663196, 0.7596290141200635, 0.7575926989055048, 0.7563705501996606, 0.7560344191408719, 0.7566184073773634 ], [ 0.800859866832754, 0.7976630713023084, 0.7945653074344462, 0.791607011721715, 0.7888255030433258, 0.7862539796478101, 0.7839209724948021, 0.7818502859679879, 0.7800613656101, 0.7785699442477815, 0.777388754462281, 0.7765280749889955, 0.7759959098501297, 0.7757976772403847, 0.7759353931119954, 0.7764064466860146, 0.7772021555992931, 0.7783063375587379, 0.7796941353561433, 0.7813312877945069, 0.7831739653063157, 0.7851692051973153, 0.787255905753876, 0.7893662837220466, 0.7914276715092455, 0.7933645278433696, 0.7951005529432263, 0.7965608288121467, 0.7976739393319292, 0.7983740568721777, 0.7986030072265342, 0.7983123394214734, 0.7974654290253228, 0.7960396315195706, 0.7940284752369985, 0.7914438412678402, 0.7883180217838563, 0.7847054816646747, 0.7806840774455525, 0.7763554229501138, 0.7718440479957557, 0.7672949953885325, 0.762869564462033, 0.7587390559159761, 0.7550766100454003, 0.7520475435692767, 0.749798933483355, 0.7484494937951789, 0.7480809513800454, 0.7487320732889672 ], [ 0.7949838637879423, 0.7913254269026941, 0.7877799998692067, 0.7843949017537197, 0.7812135918125733, 0.7782744117819029, 0.775609919583408, 0.7732468675176605, 0.771206755704976, 0.7695067699948938, 0.76816082343226, 0.7671803880288152, 0.7665748422672178, 0.7663511639983196, 0.7665129444062437, 0.7670588509779662, 0.7679807892177416, 0.769262077117277, 0.7708759428932647, 0.7727845931535796, 0.7749389970665397, 0.7772794196127005, 0.7797366383720041, 0.782233709979512, 0.7846881204490043, 0.7870141551015909, 0.7891253502531678, 0.7909369294491357, 0.7923681719000537, 0.7933447019864843, 0.7938007207704668, 0.7936812198461793, 0.792944222367887, 0.7915630842591433, 0.7895288594917688, 0.7868526866059238, 0.7835680901387936, 0.7797330132169586, 0.7754313124934464, 0.770773365011434, 0.7658953757819371, 0.7609569586327565, 0.756136619282978, 0.7516249250110646, 0.7476154137951732, 0.7442936651933314, 0.7418253745593254, 0.740344649470596, 0.739943965985338, 0.7406671790658171 ], [ 0.7885029659552683, 0.7843255583009829, 0.7802768777626296, 0.7764122818266547, 0.7727823582205068, 0.7694313347557359, 0.7663962521433194, 0.7637069870474925, 0.7613870493204623, 0.7594549101326349, 0.7579254896310813, 0.7568113821909528, 0.7561234446441473, 0.7558705118551412, 0.7560582019133354, 0.7566869800942398, 0.7577498149356197, 0.7592298436510918, 0.7610984544244384, 0.7633141025597794, 0.7658220375740403, 0.7685549676376493, 0.7714345598747169, 0.7743735907357768, 0.7772785259235911, 0.7800523180812398, 0.7825972496796868, 0.7848177036307106, 0.7866228023574183, 0.7879289080805291, 0.7886620170277109, 0.7887601047661065, 0.7881754869790302, 0.7868772484995601, 0.7848537622996461, 0.7821152688095143, 0.7786964147476672, 0.7746585619276773, 0.7700915762104981, 0.7651147063777318, 0.7598760811935178, 0.7545503177482137, 0.7493337796308888, 0.7444371844027922, 0.7400755590539909, 0.7364559723766726, 0.733763979303327, 0.7321501845398939, 0.7317186246630655, 0.7325186426760814 ], [ 0.7813831414055707, 0.7766241081170305, 0.7720114030660136, 0.7676097796262651, 0.7634781135968233, 0.7596673768679866, 0.7562195903763494, 0.7531678957972705, 0.750537668020696, 0.7483483605370749, 0.7466155938886645, 0.7453529191600391, 0.7445727454043436, 0.7442861053067594, 0.7445012020973673, 0.7452209623771927, 0.7464400411585578, 0.7481418346363283, 0.7502960360359123, 0.752857140414485, 0.7557641116788497, 0.7589412236540297, 0.7622999221271978, 0.7657414522902201, 0.7691599606324785, 0.772445800789341, 0.7754888298789138, 0.7781815555814854, 0.7804220686364335, 0.7821167599058185, 0.7831828697285746, 0.7835509471166108, 0.7831673061040242, 0.7819965553650225, 0.7800242441253317, 0.7772596115086307, 0.7737383475643796, 0.7695251739773012, 0.7647159362352445, 0.7594387783458416, 0.7538538663647658, 0.7481510690535325, 0.7425450338375941, 0.7372672583861085, 0.7325550862453697, 0.7286380492935995, 0.7257225825607359, 0.723976719677202, 0.7235167582259857, 0.7243978863215699 ], [ 0.773594373412248, 0.768185607853712, 0.7629427831231428, 0.7579416446331501, 0.753250722992412, 0.7489287332759033, 0.7450232239430491, 0.7415706934382875, 0.7385981042394039, 0.736125408323812, 0.7341684395430293, 0.7327414085797175, 0.7318583030466376, 0.7315327426842885, 0.7317762051335314, 0.7325949219573586, 0.7339860441578177, 0.7359338182349999, 0.7384064763819165, 0.7413543593379526, 0.7447095252776827, 0.7483868294837793, 0.7522862483638976, 0.756296099066498, 0.7602967739531126, 0.7641646479649606, 0.7677758983242601, 0.7710100734087915, 0.7737533413848715, 0.7759014276033884, 0.7773623074231577, 0.7780587562420228, 0.7779308707234075, 0.7769386641730736, 0.7750648039121039, 0.7723174981099562, 0.7687334530419534, 0.764380709952018, 0.7593610382086905, 0.7538114194398846, 0.7479040270857622, 0.741844021638282, 0.7358644914178566, 0.73021802719177, 0.7251647728041173, 0.7209573538051276, 0.717823793674001, 0.7159502349599743, 0.7154657692787799, 0.716431719771188 ], [ 0.7651123006104478, 0.7589802168997679, 0.7530357933423745, 0.7473676451927048, 0.7420555754748412, 0.7371672162004407, 0.7327562535262906, 0.7288625718716933, 0.7255142716078553, 0.7227310817665391, 0.7205283221632904, 0.7189203869907299, 0.717922797885103, 0.7175522046153967, 0.7178242096287393, 0.7187494177815331, 0.7203285180028312, 0.7225473870827765, 0.7253731404733134, 0.728751790467715, 0.7326078073024811, 0.7368455215243404, 0.7413520377509821, 0.7460011876353069, 0.7506580280393902, 0.7551834569150021, 0.7594386336433325, 0.7632890175506023, 0.7666079545547787, 0.7692798354143056, 0.7712029158210861, 0.7722919285805816, 0.7724806323396735, 0.7717244301508872, 0.770003153909485, 0.7673240458586051, 0.7637248744170289, 0.7592769984558078, 0.7540880454192976, 0.7483037049138002, 0.7421079823424359, 0.735721144026985, 0.7293945703280234, 0.7234018828878894, 0.7180260874102204, 0.7135430979202368, 0.7102028263576471, 0.7082098663120823, 0.7077064072397304, 0.708760103704592 ], [ 0.755920127514072, 0.7489857674480214, 0.7422629358199785, 0.7358553259074343, 0.7298559347181699, 0.724342703219186, 0.7193761483786162, 0.7149994943513711, 0.7112413111372554, 0.7081200759382157, 0.7056495514328365, 0.7038435992874025, 0.7027191289786212, 0.7022963225048988, 0.702595955428569, 0.7036343536867334, 0.7054170748955364, 0.7079326391361325, 0.71114752477026, 0.7150032668675018, 0.7194159942490898, 0.7242782678816408, 0.7294627461984925, 0.734827042990018, 0.7402191428312275, 0.7454828462301714, 0.7504628744263298, 0.7550094268720373, 0.7589821260670251, 0.7622533935644087, 0.7647113762922111, 0.7662625864076719, 0.7668344334502318, 0.766377815801809, 0.7648698988444846, 0.7623171378845305, 0.7587585027031589, 0.754268726457191, 0.7489612370674132, 0.7429902438571351, 0.7365512678729335, 0.729879260526646, 0.723243412444744, 0.7169378903715062, 0.7112681315422456, 0.7065330110919625, 0.7030041280831798, 0.7009044460547772, 0.7003892646965895, 0.7015326462291717 ], [ 0.746010814740452, 0.7381901343599617, 0.7306069615488818, 0.7233826596530799, 0.7166257085866787, 0.7104260247539422, 0.704851762105243, 0.6999493529006746, 0.6957468970995708, 0.6922601990934266, 0.6895000114313694, 0.6874786297620209, 0.6862140633876218, 0.6857305932985014, 0.6860554589569132, 0.6872124012623386, 0.6892135340689743, 0.6920513192383592, 0.6956922417966657, 0.7000732420199394, 0.7051012725176893, 0.7106557241196387, 0.716593045974699, 0.7227527145771017, 0.7289637436827339, 0.7350510925969753, 0.7408415444413997, 0.7461688321241375, 0.750877958952901, 0.7548287852123793, 0.757899034641708, 0.7599869216802518, 0.7610136163579717, 0.7609257508085246, 0.7596981290713831, 0.757336727920972, 0.7538819680948239, 0.7494120905468943, 0.7440462925876467, 0.737947072581439, 0.7313210207741466, 0.7244171190290031, 0.7175215397809911, 0.7109480529834833, 0.7050235522692072, 0.7000689539818261, 0.6963767622160636, 0.6941877309521768, 0.6936699352081319, 0.6949037768485943 ], [ 0.7353895457776568, 0.7265939386579477, 0.7180637759200825, 0.7099411227300879, 0.702352672003813, 0.6954023278402726, 0.6891668443691867, 0.683695641243394, 0.6790150792790167, 0.6751363763372066, 0.6720652961377129, 0.6698111198951875, 0.6683924749001801, 0.6678383769898509, 0.6681841160001528, 0.6694629678355357, 0.6716957278031226, 0.6748804448278013, 0.678984451253606, 0.6839400129443441, 0.6896439803052159, 0.6959610019773134, 0.7027293522071492, 0.709768255488381, 0.7168856920832282, 0.7238859148895344, 0.7305761935508618, 0.7367725573101209, 0.7423045057168074, 0.747018794257495, 0.7507824898619266, 0.7534855395123996, 0.7550431107006663, 0.7553979478320328, 0.7545229432342415, 0.7524240426027428, 0.7491434891526081, 0.744763255760873, 0.7394083203203403, 0.7332492138774751, 0.7265030348263996, 0.7194319178225305, 0.7123378438371645, 0.7055527764816208, 0.6994235180519417, 0.6942914702135143, 0.6904686255975545, 0.6882123970146684, 0.687702911400146, 0.6890266800015779 ], [ 0.7240764478829541, 0.7142135762369182, 0.7046457329529141, 0.69553921012632, 0.6870421677638013, 0.6792749442042465, 0.6723240763043464, 0.6662416686429143, 0.6610506839963324, 0.6567552305040434, 0.6533534385785907, 0.6508495907157834, 0.6492621899419412, 0.6486256944335059, 0.6489853887294078, 0.6503867244109587, 0.6528618357293561, 0.6564164213352287, 0.6610197357470144, 0.6665993374834713, 0.6730409499328878, 0.6801927243142347, 0.6878725838185361, 0.6958771889687763, 0.7039912624959341, 0.711996369342791, 0.7196786203535922, 0.7268350782680931, 0.7332788693467255, 0.7388431523348213, 0.74338418696684, 0.7467837922358211, 0.7489514988226884, 0.7498266831018353, 0.749380920997237, 0.7476207157100903, 0.7445906302988242, 0.7403766910990999, 0.7351097205965893, 0.7289680151043417, 0.7221785236642237, 0.7150154529633476, 0.7077950930638149, 0.7008657374999285, 0.6945919815143978, 0.6893335140365209, 0.6854197496111172, 0.683123055837969, 0.682634482013457, 0.6840462480429541 ], [ 0.7121095163315628, 0.7010845366554674, 0.690385299889485, 0.6802063873446087, 0.670721291917995, 0.6620697734521966, 0.6543496389560542, 0.6476153185586678, 0.6418842708089785, 0.6371502306483608, 0.6334002193918727, 0.6306308532246885, 0.628859423953562, 0.6281266097143925, 0.6284900621154844, 0.6300106782512512, 0.6327352292306828, 0.6366796233654537, 0.641816389110707, 0.6480684044597547, 0.6553091405270857, 0.663368309456262, 0.6720410983001356, 0.6810991010258425, 0.6903014061867799, 0.6994048007163954, 0.7081725267189495, 0.7163813946056613, 0.7238273035782496, 0.7303293746179048, 0.7357329913136924, 0.7399120903437404, 0.7427710556979372, 0.7442465508897622, 0.7443095697915485, 0.7429678961713247, 0.7402690308561392, 0.7363034704519357, 0.7312080018618359, 0.7251684182007891, 0.7184207836153087, 0.7112501201974964, 0.7039852365853122, 0.6969884787409122, 0.6906395930055289, 0.6853137541877877, 0.6813551140229339, 0.6790487414398508, 0.6785950859814475, 0.6800915097420116 ], [ 0.6995476509429174, 0.6872649367331741, 0.6753390360147727, 0.663997440954888, 0.6534435390879064, 0.6438401619222153, 0.6352982919705006, 0.6278743193206345, 0.6215775986962614, 0.6163873488208816, 0.6122749855322177, 0.6092259324552114, 0.607254733469279, 0.6064091253595398, 0.6067620020982794, 0.6083937250176938, 0.6113697600088568, 0.6157193708979466, 0.6214200386795727, 0.6283900692561872, 0.6364894663729123, 0.6455273865162467, 0.6552737024393166, 0.665472265722972, 0.6758540159133105, 0.6861487721542988, 0.6960951362872179, 0.7054483564155242, 0.7139862630763334, 0.7215135444298856, 0.7278647142584075, 0.7329061710170657, 0.7365377565093091, 0.7386941995319579, 0.7393467706268211, 0.7385053758443919, 0.7362211770660695, 0.7325896411408874, 0.7277536890381162, 0.7219063447104965, 0.7152919903453028, 0.7082050633332408, 0.7009848591461028, 0.6940051516425737, 0.6876577504236733, 0.6823299984228627, 0.6783775663097453, 0.6760954931981734, 0.6756917633353667, 0.6772681681385785 ], [ 0.6864736587102552, 0.6728391356322689, 0.6595917719254076, 0.6469971351581716, 0.635293831261285, 0.6246722069719984, 0.6152588862244155, 0.607111933598443, 0.6002294852365642, 0.5945710849064852, 0.5900868202243963, 0.5867463362816565, 0.5845593144282132, 0.5835814275543701, 0.5839042623263467, 0.5856325354364464, 0.5888553512565593, 0.5936191570178395, 0.5999084525178264, 0.607637200150251, 0.6166506638740084, 0.6267351876277316, 0.6376325935542668, 0.6490561705845207, 0.6607060739966755, 0.6722828717113809, 0.6834986895243396, 0.6940858717312887, 0.7038033418020847, 0.7124409966912527, 0.7198225520268272, 0.7258072987146005, 0.7302912403571438, 0.7332080535261827, 0.7345302463710666, 0.734270783072996, 0.7324852904422292, 0.7292747667484966, 0.7247884713327895, 0.7192263919230197, 0.712840383439575, 0.7059327903874041, 0.6988511837968023, 0.6919778834586333, 0.6857133432841569, 0.6804533720859355, 0.6765615423444842, 0.6743397734064945, 0.6740014590164849, 0.6756519940859412 ], [ 0.672997004235272, 0.6579212173988167, 0.6432607907713742, 0.6293249970573285, 0.6163937709427919, 0.6046903341282808, 0.5943601474915233, 0.5854628767555291, 0.5779818307788812, 0.5718505914153347, 0.566990763518156, 0.5633503503950076, 0.5609313269578163, 0.5597981739382465, 0.5600652509306087, 0.5618675058389461, 0.5653236326153778, 0.5705018733392712, 0.5773962790529659, 0.5859168855243821, 0.5958929556474557, 0.6070856915179839, 0.6192060279390944, 0.6319337645518974, 0.6449355322104825, 0.6578802679041413, 0.6704517085005599, 0.6823579056662532, 0.6933380259707638, 0.703166840720244, 0.7116573919871986, 0.7186623660184017, 0.7240747132991112, 0.7278280215730916, 0.729897071413507, 0.7302988832348126, 0.7290944003095428, 0.726390744319963, 0.7223437288020491, 0.7171600270338849, 0.7110980828773371, 0.704466568368186, 0.6976190091364579, 0.6909432380102472, 0.6848447445277618, 0.6797238834791404, 0.6759482873501624, 0.6738234633368735, 0.6735659411660725, 0.675283824878006 ], [ 0.6592560004642971, 0.6426580200009775, 0.6264996937051815, 0.6111399278835409, 0.5969068321661143, 0.5840628651891697, 0.5727764321531381, 0.5631091237218007, 0.5550254078014669, 0.5484254340525015, 0.5431935655600343, 0.5392488109683422, 0.5365816954039782, 0.5352662934390471, 0.5354444600571223, 0.5372883092642533, 0.5409531826359809, 0.5465346161315626, 0.5540393186115574, 0.5633741219706966, 0.5743511609659261, 0.5867042057766075, 0.6001104474448833, 0.6142132033500974, 0.6286427383563766, 0.6430338629661937, 0.6570399074471287, 0.670343169327731, 0.6826621780108697, 0.6937562549229719, 0.7034279339809254, 0.7115238573284568, 0.7179347686583054, 0.7225951847533723, 0.7254832346291699, 0.726621018102002, 0.7260756553186818, 0.7239609778489735, 0.7204395520896686, 0.7157244328916774, 0.7100797378127708, 0.7038188521793584, 0.6972988994181586, 0.6909101570143644, 0.6850595074728124, 0.6801479000293991, 0.676543156683043, 0.6745510547396518, 0.6743889645381699, 0.676166786463474 ], [ 0.6454190305367508, 0.6272312571288312, 0.6095014726750873, 0.5926441600004957, 0.5770430147569902, 0.5630070997252891, 0.5507329493404033, 0.5402850378036504, 0.5316047605122974, 0.524550235055525, 0.5189581353973103, 0.5147094679183383, 0.5117784899140968, 0.5102494359126762, 0.5102969498445066, 0.5121382977990496, 0.5159736825688188, 0.5219324234416216, 0.5300377236037735, 0.5401944343281682, 0.5521967689722682, 0.5657489775913208, 0.5804917280398267, 0.5960288235132011, 0.6119511968971233, 0.6278568749763974, 0.643366613381445, 0.658135388102231, 0.6718601614359001, 0.684284480767307, 0.695200570110946, 0.7044496340664719, 0.7119210981473704, 0.7175514531504713, 0.7213232588684365, 0.7232647026960839, 0.723449909161876, 0.7219999615809467, 0.7190843297197231, 0.714922103889453, 0.7097821344137101, 0.7039809069713756, 0.6978768235814452, 0.6918596178435451, 0.6863340443694258, 0.6816978497316316, 0.6783153421653685, 0.6764894027558758, 0.6764360511189748, 0.6782661021212641 ], [ 0.6316842903248749, 0.6118581297084156, 0.5925001174656405, 0.5740858444079139, 0.557062224684701, 0.5417931511282862, 0.5285096448792059, 0.5172809310771772, 0.5080212008087469, 0.5005370454099008, 0.49460540754292037, 0.49005858365965616, 0.48684851924683054, 0.48506974356049637, 0.4849353388723845, 0.4867166030422811, 0.4906679235954835, 0.49695997948560333, 0.5056372637575599, 0.5166046762950709, 0.529638346113992, 0.5444113284450084, 0.5605251592084673, 0.5775410478043852, 0.5950074378254622, 0.6124826743186579, 0.6295525584086746, 0.6458430372840601, 0.6610285153765221, 0.6748364425920087, 0.687048965651357, 0.6975024988937175, 0.7060860648901356, 0.7127391742031715, 0.7174498710144749, 0.7202533830115518, 0.7212315918636651, 0.7205132913144873, 0.7182749268887861, 0.7147412207966625, 0.7101847955772735, 0.7049236599877944, 0.699315281673811, 0.693746047713834, 0.6886153271219303, 0.684314187966785, 0.6812000625419578, 0.679570076302351, 0.6796369206752793, 0.6815115164126758 ], [ 0.6182774661483237, 0.5967896836876355, 0.5757698709042969, 0.5557592718136894, 0.5372753068400394, 0.5207454037242947, 0.5064425405110978, 0.4944437373962334, 0.4846324242647833, 0.476753788219417, 0.4705118022011083, 0.4656778318288623, 0.46217416671791955, 0.4601050222215016, 0.45972748464442065, 0.4613762578956661, 0.4653701476664875, 0.47192993709232434, 0.4811274943347331, 0.492871051407276, 0.5069195219770495, 0.5229137453123827, 0.5404137429769331, 0.558934927823272, 0.5779797798351815, 0.5970637126167662, 0.6157349156857279, 0.6335884408340321, 0.6502750935567151, 0.6655059247789952, 0.679053287842004, 0.6907494992499584, 0.7004841099972184, 0.7082006730960727, 0.7138937084620322, 0.7176063425667982, 0.7194288529437662, 0.7194980841891706, 0.7179974258225824, 0.7151567590310137, 0.7112515058199095, 0.7065996880912725, 0.7015557920390576, 0.6965003302150866, 0.6918244061100831, 0.6879093864365478, 0.6851029406095717, 0.683694003629379, 0.683890256884414, 0.6858020224143396 ], [ 0.605446755071664, 0.5823060891618719, 0.5596210687124257, 0.538001449648806, 0.518041284195531, 0.500240019334507, 0.48492084631754334, 0.47217298540796243, 0.4618467642527346, 0.4536165940262421, 0.44709990924364873, 0.44199398347867974, 0.43818289366164254, 0.4357787651228818, 0.4350874194009394, 0.43651608591425395, 0.44045870257818764, 0.447196117052299, 0.4568353970430077, 0.46929324628220465, 0.4843137481348005, 0.5015053767915879, 0.5203844496360716, 0.5404170852064931, 0.561055822717514, 0.5817694196672941, 0.6020654778806618, 0.6215061484504601, 0.6397175973859092, 0.6563942500395972, 0.671299039524905, 0.6842609383923739, 0.6951709690190178, 0.7039777057231361, 0.7106830421856785, 0.7153387324418782, 0.7180439398513689, 0.71894375260274, 0.7182283481940032, 0.7161322173671761, 0.7129326056507214, 0.7089461330366476, 0.7045224701196253, 0.7000340668751325, 0.6958613386424043, 0.6923734674612504, 0.6899060320869861, 0.6887378373603127, 0.6890702156670211, 0.6910123066600536 ], [ 0.5934547529668843, 0.5687080728403876, 0.544391457475479, 0.5211835877626105, 0.499759061680143, 0.4806965327667463, 0.4643777359696224, 0.45090984587490224, 0.44010974135738756, 0.43157354888485366, 0.42481976601974003, 0.4194586063866325, 0.4153265286028416, 0.4125401118749419, 0.41145669092918286, 0.41256369347484495, 0.4163406491026024, 0.42313962028599295, 0.43311298124727665, 0.4461936116188117, 0.4621151524840805, 0.4804545454207245, 0.5006822247792895, 0.522210942345035, 0.5444385993166451, 0.5667830097765123, 0.5887079219240341, 0.6097405382705211, 0.6294814577482011, 0.6476084231985287, 0.6638754719086215, 0.6781090759392323, 0.6902026841646186, 0.7001108091036563, 0.7078434946725757, 0.713461690279045, 0.7170737574685847, 0.7188330506367382, 0.7189362417971983, 0.7176218032710884, 0.7151678349719669, 0.711888256589039, 0.708126333753517, 0.7042446444304857, 0.700610991433378, 0.6975804666736151, 0.6954748211468555, 0.6945613072563699, 0.6950339248959037, 0.697000172026849 ], [ 0.5825670381498963, 0.5563040324605909, 0.5304321240529467, 0.5056961797633375, 0.48285186160044147, 0.4625614895667679, 0.4452725757801348, 0.4311170225827918, 0.4198807429001543, 0.41107777128720835, 0.40411867385470357, 0.39851565642855563, 0.3940480699959574, 0.39083130318551024, 0.3892735872628414, 0.38994713523161945, 0.39342618724004896, 0.40014618371764676, 0.41031771545827933, 0.4239007663068984, 0.4406252516985924, 0.4600382741797634, 0.48156184531838686, 0.5045503493532278, 0.5283414608060868, 0.5522972315769404, 0.5758341654792682, 0.5984426370411393, 0.6196970554336444, 0.6392587346053797, 0.6568735758379037, 0.6723665201515681, 0.6856344129972096, 0.6966385430536233, 0.7053977336989175, 0.7119825100548846, 0.7165105444301032, 0.7191432950536399, 0.7200834913728779, 0.7195728832844354, 0.7178894726755355, 0.7153433118703052, 0.7122699324929538, 0.7090206214898632, 0.705949146888131, 0.7033951764820021, 0.7016654714917703, 0.7010148070408525, 0.7016292053365153, 0.7036141800017467 ], [ 0.5730378012754735, 0.5453929873062529, 0.5180878583856048, 0.491927061683032, 0.4677433158422949, 0.4462827171331831, 0.4280631129907472, 0.4132482028300122, 0.40159899516287617, 0.39254951184095976, 0.3853996714390463, 0.37955723975618905, 0.3747361336232965, 0.3710424066216697, 0.3689296560713196, 0.3690544865074322, 0.3720922388839252, 0.3785744543375689, 0.3887858884140352, 0.40272807897252005, 0.4201361659332181, 0.44052948636510797, 0.46327817708914965, 0.4876720045795127, 0.5129819464043722, 0.538509204623846, 0.5636198933748522, 0.5877662043775432, 0.6104963155083052, 0.631455856179604, 0.6503836837461543, 0.6671043405824627, 0.6815190540943966, 0.6935966302380339, 0.7033651303446192, 0.7109048268112734, 0.7163426004994644, 0.7198476589825493, 0.7216282088934758, 0.7219285038890505, 0.7210255209196786, 0.7192244161077308, 0.7168519181376067, 0.7142469820106162, 0.7117483930952309, 0.7096795898339907, 0.7083317044142141, 0.7079465554520106, 0.7087018416694029, 0.7107008509225132 ], [ 0.5650935835035285, 0.536244483247591, 0.5076730000989017, 0.4802332966458608, 0.4548258014416716, 0.4322746637666637, 0.4131682252630524, 0.3977082865448968, 0.38564106641120804, 0.37633070106067734, 0.36897311397159993, 0.362872562820489, 0.3576720495953941, 0.353457821712136, 0.3507173112372079, 0.3501844756542807, 0.3526379478638034, 0.35871777521513665, 0.3688013970285498, 0.3829493433902861, 0.40091232442257757, 0.42218343166084127, 0.44607593325362005, 0.47180737873564915, 0.49857506431608006, 0.525614591965455, 0.5522394069844258, 0.5778631891098568, 0.6020087648173259, 0.624307510149141, 0.6444927539188641, 0.662389961096707, 0.6779057337389355, 0.691017018491263, 0.7017613810768571, 0.7102287884930372, 0.7165550058775473, 0.7209164441892947, 0.7235260703912398, 0.724629807344259, 0.7245027126466134, 0.7234441550532471, 0.7217712377162563, 0.7198098892535465, 0.71788338768385, 0.7162985976277377, 0.7153308293961026, 0.7152088400100709, 0.716101906693518, 0.7181109318052635 ], [ 0.5589169451655942, 0.529077718886601, 0.4994454539639643, 0.4709099138810054, 0.44442432886917393, 0.420878463437782, 0.4009255297442847, 0.38480980968814027, 0.3722768934763912, 0.3626407153829464, 0.3550117183590981, 0.3486014874149134, 0.34298136292050224, 0.3382059501109415, 0.3347790300719349, 0.3334975524652674, 0.3352403094788503, 0.34076656020346824, 0.35056589283006534, 0.3647763911272156, 0.3831742150453947, 0.4052258019061953, 0.4301805107002531, 0.45717508568361687, 0.48532652872139104, 0.5138014340485878, 0.541860015339159, 0.5688787293233024, 0.5943572017859953, 0.6179148434794558, 0.6392814523607432, 0.6582849272141764, 0.6748382229411672, 0.688926907708737, 0.7005981077018556, 0.7099511991843133, 0.7171302864417632, 0.7223182549380894, 0.7257319907838257, 0.7276182021800548, 0.728249170686485, 0.7279177175008715, 0.7269307200694718, 0.7256006879806162, 0.724235224778829, 0.723124655759233, 0.722528635064329, 0.7226630475289845, 0.72368884256238, 0.725704438583374 ], [ 0.5546324456578251, 0.5240431275002762, 0.4935831144507393, 0.4641608328301745, 0.4367624153508004, 0.4123242595157681, 0.39155257856110787, 0.3747357048261933, 0.3616361345709453, 0.35154692321833286, 0.3435242752520198, 0.33670921844010415, 0.33060712324063707, 0.32522965750616106, 0.3210752826426381, 0.3189833112338538, 0.31992399566210067, 0.3247830387037563, 0.3341795887036608, 0.348345509528187, 0.3670888778508561, 0.3898455002310144, 0.4157916345439965, 0.4439746609896718, 0.47342649673111464, 0.5032439919858687, 0.5326362351507411, 0.5609459294559755, 0.5876531900190312, 0.612368695706371, 0.6348211912880963, 0.6548426745099295, 0.6723533778674259, 0.6873478011630421, 0.6998824633461713, 0.7100656322503713, 0.7180489959844301, 0.7240210193840481, 0.7282015600075231, 0.7308371919204735, 0.7321966057848714, 0.7325654352170752, 0.7322399241537765, 0.7315190208682523, 0.7306947734633681, 0.7300412959533407, 0.7298030217153236, 0.7301833687601479, 0.7313351899091892, 0.7333543635568852 ], [ 0.5522973813788382, 0.5212099448165203, 0.4901676344275526, 0.46007858281033776, 0.43193834678773146, 0.4067058824119859, 0.3851231404611369, 0.36752095665725826, 0.3536981857447011, 0.3429640051588123, 0.33436276634397133, 0.3269978756396909, 0.32032198472217943, 0.31429575793006076, 0.3093900297568642, 0.30646260019610333, 0.30656191277297007, 0.31070208227894636, 0.319643127844747, 0.3337198450806684, 0.35277161793003153, 0.37619457264686734, 0.4030810973017245, 0.4323823998658074, 0.46304419350378956, 0.4940969099080967, 0.5247040962586985, 0.554180704488442, 0.5819926464426094, 0.6077459980373456, 0.6311713210709691, 0.6521064514201483, 0.6704797151725135, 0.6862946547773281, 0.699616784871098, 0.7105625256953255, 0.7192902045994963, 0.7259928293040452, 0.7308921977815979, 0.7342338109608453, 0.736281999502557, 0.7373146769582726, 0.737617206117755, 0.7374750295558106, 0.7371649750582396, 0.73694548580016, 0.7370463973197656, 0.7376592110993657, 0.7389290041781608, 0.7409490852153402 ], [ 0.5518991157554507, 0.5205625347159217, 0.48917959918226134, 0.4586384900347123, 0.42991923867825527, 0.4039767724170616, 0.38156822583791195, 0.3630625974484153, 0.3483142664701788, 0.33668913091226116, 0.3272690565032133, 0.3191611567942218, 0.3117864604576873, 0.30505273923878146, 0.2993848328509429, 0.29563625599152443, 0.2949178809985694, 0.2983676110576895, 0.30688736964640917, 0.3209119767549812, 0.34030099394130364, 0.3643960286287909, 0.3921947225070961, 0.4225492659848765, 0.4543235299424217, 0.4864899275364115, 0.5181758661958112, 0.5486770295770587, 0.5774518429466023, 0.6041065784777235, 0.6283766968268818, 0.6501075645123452, 0.6692362426459718, 0.6857752046397944, 0.6997983397510389, 0.7114292829994313, 0.7208318986358369, 0.7282025922064731, 0.733764015890764, 0.7377596574897045, 0.7404487690139936, 0.7421011066741475, 0.7429910336450458, 0.7433906912948777, 0.743562174737455, 0.7437489375135947, 0.7441669569983966, 0.744996453522188, 0.7463750991844347, 0.7483936171925144 ], [ 0.5533596084030187, 0.5220064603941189, 0.4905066381209221, 0.4597095365490295, 0.43055571578392865, 0.4039701366193343, 0.38070407239907994, 0.361158270185658, 0.3452588630467591, 0.33246716472576937, 0.3219529003722167, 0.31287265648184653, 0.3046441404985667, 0.2971289869695265, 0.29069594152042993, 0.2861768848461096, 0.2847292532518867, 0.2876028834705636, 0.29582916237706597, 0.3099242816258175, 0.32974455057649815, 0.3545573585222652, 0.3832570415226564, 0.4146000937466981, 0.4473795145721445, 0.4805233036811477, 0.5131355240737836, 0.5445029677532753, 0.5740841668041341, 0.6014906610112284, 0.6264658438421872, 0.6488641115519317, 0.6686316613026942, 0.6857895503215743, 0.7004192164296555, 0.712650408816248, 0.7226513098223474, 0.7306205087061176, 0.7367804026753243, 0.7413715461060814, 0.7446474502092149, 0.7468693612773383, 0.7483006261665479, 0.7492003957532974, 0.7498166186438311, 0.7503785213618983, 0.751089022293429, 0.752117733740246, 0.7535953132553919, 0.7556098881463311 ], [ 0.5565462607387791, 0.5253830276292809, 0.49396265194626576, 0.46307929388336294, 0.43361349238152125, 0.40643795941607713, 0.3822792846366844, 0.36156230169813336, 0.344295710974878, 0.3300674340811513, 0.31817983494073265, 0.30788438150768904, 0.2986293397329153, 0.2902468714443444, 0.2830506661645965, 0.27784195916671217, 0.27581042999337835, 0.2782985440937771, 0.28643977399239773, 0.3007964567680099, 0.3211873863289371, 0.346784493391814, 0.37637569178545965, 0.4086327283502318, 0.44229510421947144, 0.476264104832167, 0.5096353358428029, 0.5416978577067116, 0.5719179766120036, 0.5999173263768421, 0.625449920913825, 0.6483803435844021, 0.6686640353152491, 0.6863300579573798, 0.7014664003790269, 0.7142077090016707, 0.7247251978624567, 0.7332184008492164, 0.7399083626508066, 0.7450318255826263, 0.7488359617901856, 0.7515732318468817, 0.7534960288145851, 0.7548508951845345, 0.7558722745463033, 0.7567759641113591, 0.757752638371094, 0.758961977347837, 0.7605280120890987, 0.7625362633958095 ], [ 0.5612869434672251, 0.530489137190068, 0.49931354827849395, 0.4684863944778268, 0.43881289796244827, 0.41109709633698466, 0.3860263016763087, 0.3640413254989414, 0.34523728897499334, 0.32934818258867765, 0.3158425219632537, 0.3041067036687133, 0.29365625048994143, 0.28431994045511794, 0.27636931218596084, 0.2705750286503427, 0.26814633639461893, 0.27049125237553606, 0.2788035921618485, 0.29364320111936354, 0.3147519827374965, 0.3411893312430993, 0.37164209300524614, 0.404715775910382, 0.43911826580636004, 0.47374359664952265, 0.507693899400247, 0.5402710118923993, 0.5709558350112968, 0.5993841408964417, 0.625322624518132, 0.6486467508498993, 0.6693209910324774, 0.6873816228128141, 0.7029220636281357, 0.7160805783433198, 0.7270301115822313, 0.7359699233105514, 0.7431186544393267, 0.7487084200590054, 0.7529795269672014, 0.7561754456196141, 0.7585377396172642, 0.7603007697287979, 0.7616861387652524, 0.7628970134056213, 0.7641126241941625, 0.7654833730005178, 0.7671270356087329, 0.769126512844208 ], [ 0.5673864633198463, 0.5370984521186365, 0.5063037941413187, 0.4756526977505368, 0.44586603102963684, 0.4176696382355278, 0.391702220630146, 0.3684128081621415, 0.3479797741716769, 0.3302891242007314, 0.3149940463477608, 0.3016459297883986, 0.28986311135297577, 0.2795039377461301, 0.27082097964823393, 0.26456204308997266, 0.2619433912166258, 0.26440327706962663, 0.2731426685127015, 0.28866437436382497, 0.3105983691484588, 0.33788522982613417, 0.36912616690157996, 0.4028844557742586, 0.4378594419488953, 0.47295611423310246, 0.5072960077733457, 0.5402021850202221, 0.5711752907943667, 0.5998680581080458, 0.6260610920615945, 0.6496409018946311, 0.670580458629513, 0.6889222983627324, 0.7047640748546122, 0.7182463879586777, 0.7295426491655632, 0.7388506895622675, 0.7463857732058026, 0.7523746560543438, 0.7570503329431447, 0.7606471477137905, 0.7633960077810527, 0.7655195438114359, 0.767227181692585, 0.7687102341129145, 0.7701372520105244, 0.7716499763740989, 0.7733602737580678, 0.7753484080422314 ], [ 0.57464188428733, 0.5449802816071926, 0.5146789227687756, 0.4843088588592635, 0.4545038729022944, 0.42590889300602347, 0.39911002831027487, 0.3745578896508988, 0.3525053251338579, 0.33298374301843237, 0.3158335028680798, 0.300787599574295, 0.2875968032433241, 0.2761841989989152, 0.26681298628822175, 0.26022027172389284, 0.2576146482311853, 0.26042156180969145, 0.2697903959346201, 0.2861172945816171, 0.3088999633478024, 0.3369693917824693, 0.3688656046585379, 0.40313542306717387, 0.4384901464627884, 0.47385988083879144, 0.5083945810801282, 0.5414439155402843, 0.5725312262378964, 0.601327564994095, 0.6276277586105942, 0.6513289883331536, 0.6724119153357924, 0.6909242616962281, 0.7069667129260964, 0.7206809694657991, 0.7322397295019168, 0.7418383405094466, 0.7496878210330054, 0.7560089350108234, 0.7610270042621833, 0.7649671747168841, 0.7680499104280302, 0.7704865748543219, 0.7724750650520612, 0.7741955793674518, 0.7758067058319204, 0.77744209674971, 0.7792080264363322, 0.7811821021357062 ], [ 0.5828548628417215, 0.5539138470690027, 0.5242011937021672, 0.4942102078213587, 0.4644903720949986, 0.43560873441980424, 0.40809950641434667, 0.3824099388598033, 0.35885525134121243, 0.3375961920515245, 0.31864854555928135, 0.3019286608400905, 0.28733882897993124, 0.27489814246036814, 0.2649106397006499, 0.258115108472799, 0.2556942910640389, 0.259013500045942, 0.26911533580825564, 0.2862556445741387, 0.30980093272552284, 0.3384973358352313, 0.3708533285961698, 0.40542270643473904, 0.44094375121255514, 0.4763801770418478, 0.5109147171898437, 0.5439256275472389, 0.5749595998474589, 0.6037058990378893, 0.6299730133972977, 0.6536679503096103, 0.6747780353268835, 0.6933550485228872, 0.7095015425354512, 0.7233591771600749, 0.7350988761175231, 0.7449125754431115, 0.753006302005962, 0.7595943038289213, 0.764893956992185, 0.7691212003290687, 0.7724862997132765, 0.7751898162481553, 0.7774187409864135, 0.779342852572953, 0.7811114394277815, 0.7828505891864196, 0.7846612712647482, 0.7866184154853942 ], [ 0.5918401438450327, 0.5636971239909407, 0.534657881401012, 0.5051430752317498, 0.4756248260294096, 0.44659948102167346, 0.4185535044919847, 0.39192768660842886, 0.36708645089585196, 0.3442984039516648, 0.3237326520313527, 0.3054769433395154, 0.28959071682746607, 0.2762103704122072, 0.26570502205063856, 0.25882369792669463, 0.2567027707885094, 0.26060315570006287, 0.27141942980421463, 0.2892562988348163, 0.3133708978560355, 0.342459467518929, 0.3750286245812092, 0.4096573192342457, 0.4451193870802123, 0.48041496903144854, 0.5147596194328403, 0.5475591398130568, 0.5783822314743119, 0.6069350288954395, 0.6330384078761975, 0.6566079920733724, 0.6776366064833883, 0.6961789606771326, 0.7123383900214495, 0.7262554952139425, 0.7380985046574338, 0.7480551563671053, 0.7563258701347416, 0.7631179661507742, 0.7686406890155093, 0.7731008189102861, 0.776698694868745, 0.7796245360086121, 0.7820550195454139, 0.7841501505373198, 0.7860505262723837, 0.7878751459094241, 0.7897199331228747, 0.7916571204281279 ], [ 0.6014302649559724, 0.5741507252742037, 0.5458633778335732, 0.5169238613771843, 0.48773641808929136, 0.4587361975807911, 0.4303680248773277, 0.4030645969904663, 0.37722685778952164, 0.35320802996854656, 0.3313027588004329, 0.31174789993633273, 0.2947520436214217, 0.28057629648431265, 0.269667921467638, 0.26278857484668205, 0.26100928347776214, 0.26545451753520577, 0.2768511659719136, 0.295164054519541, 0.31957581242991123, 0.34876993391155564, 0.38127665860531673, 0.4157122581959558, 0.45088921115791386, 0.48584262832617653, 0.519817835712062, 0.5522450117061013, 0.58271213209731, 0.6109399950383245, 0.6367601028084838, 0.6600952541877033, 0.6809425455103476, 0.6993585295765554, 0.7154463438774602, 0.7293446467494419, 0.7412181963671856, 0.7512498885568009, 0.7596340493560644, 0.7665707668063594, 0.7722610493593963, 0.7769026180893953, 0.7806861765413963, 0.7837920529222406, 0.7863871693191744, 0.7886223542336414, 0.7906300688384148, 0.7925226546633921, 0.7943912232530177, 0.7963052928303074 ], [ 0.6114771325977099, 0.5851180465831354, 0.5576571350109687, 0.5293939471482715, 0.5006753259813382, 0.4718853598149361, 0.4434338306547007, 0.4157444576480785, 0.3892431657281629, 0.3643453082761108, 0.3414417630596475, 0.320890282786915, 0.30302961667098915, 0.2882388452097326, 0.2770435727035475, 0.2702146287256012, 0.26874494489437184, 0.27360906363343673, 0.28536919796682975, 0.3038764908814001, 0.32827665854073346, 0.3572727784914495, 0.3894378965751775, 0.4234327954817447, 0.45810831738339736, 0.49253086167346244, 0.5259709746792688, 0.557879014550793, 0.587858805465398, 0.6156431660849438, 0.6410722193490872, 0.6640743959958103, 0.6846498350535126, 0.702855913717525, 0.718794700049616, 0.7326021572361209, 0.744438934956953, 0.7544825739750839, 0.7629209370770385, 0.7699466722408286, 0.7757525179118684, 0.7805272779620218, 0.7844523251728405, 0.7876985345457191, 0.7904235969544624, 0.7927697134332917, 0.7948617134941881, 0.7968056701272354, 0.7986880939297077, 0.8005757765037799 ], [ 0.6218514121134253, 0.5964631231496351, 0.5698995379519759, 0.5424132733058743, 0.5143039817424438, 0.48591414716119236, 0.45762443401812714, 0.4298487091770337, 0.4030275467399428, 0.3776180480320516, 0.35407944413659664, 0.33286048177986444, 0.3144044347940129, 0.29919078166534674, 0.28781304501428606, 0.2810442998358528, 0.27979549887233096, 0.2848964451318769, 0.2967649556247675, 0.3151704399193924, 0.33925418990717343, 0.3677627913339612, 0.39932498759760043, 0.43265004904147664, 0.4666256943025947, 0.5003456055928164, 0.5331009354889902, 0.5643579895101414, 0.5937329605710532, 0.6209679897677195, 0.6459097823475247, 0.6684908611639896, 0.6887132207037074, 0.7066341178940788, 0.7223537776938019, 0.7360048268028146, 0.7477432834147292, 0.7577409307502061, 0.7661788969468928, 0.773242261797943, 0.7791155169332771, 0.7839787226622639, 0.7880042318370227, 0.7913538867501411, 0.7941766355480192, 0.7966065549149512, 0.7987613001834201, 0.800741027112458, 0.8026278372421561, 0.8044857892414169 ], [ 0.6324406759722276, 0.6080674929963751, 0.5824673725882014, 0.5558545682004877, 0.5284906199248603, 0.5006843743550586, 0.47279195815813063, 0.4452160597940459, 0.4184026761380389, 0.392832961457948, 0.3690098027004931, 0.3474446122304853, 0.32865749773257374, 0.3132050106824093, 0.30173205562484473, 0.29500623403393095, 0.29386068936893117, 0.29899885709234514, 0.31072330123392733, 0.3287523444418616, 0.35224702839050037, 0.38001282580100654, 0.4107420090282605, 0.443194676640969, 0.4762942294123713, 0.5091585666723025, 0.541095746540177, 0.5715844514994726, 0.6002501719405079, 0.6268419004570411, 0.651211008809355, 0.6732926470636539, 0.6930895398297146, 0.7106579449600252, 0.7260955458215447, 0.7395310744288282, 0.7511154808117663, 0.7610144715754217, 0.7694022431587988, 0.7764562388920312, 0.7823527679249511, 0.7872633406155786, 0.791351599177936, 0.7947707527317691, 0.7976614594147852, 0.8001501309642861, 0.8023476627751542, 0.8043486108236436, 0.8062308430605813, 0.8080556858236332 ], [ 0.6431470809743335, 0.6198270087827955, 0.595249937353145, 0.5695992347110395, 0.5431058369305678, 0.5160511173802576, 0.48876972361607934, 0.4616513116632266, 0.43513918677221575, 0.4097237826665745, 0.3859309938495955, 0.3643102153718936, 0.34543226568045593, 0.3299064656329829, 0.31841084545062315, 0.31170060874800254, 0.31054002406900466, 0.3155301989767601, 0.3268888847267848, 0.34430908672193317, 0.3669878818547234, 0.39379835617695347, 0.4235007049423983, 0.4549076126582222, 0.4869779760453352, 0.5188523443809965, 0.5498533513876354, 0.5794695062162156, 0.6073331912720145, 0.633198173091814, 0.6569187895707079, 0.6784314675619394, 0.6977386026852042, 0.7148946241455663, 0.7299940230590275, 0.7431611303380077, 0.754541446250719, 0.7642943363392497, 0.7725869175338848, 0.7795889674065822, 0.7854687017238932, 0.7903892825941744, 0.7945059418152808, 0.7979636303774827, 0.8008951331989341, 0.8034196150517544, 0.8056415859874473, 0.8076502894087924, 0.8095195211929866, 0.811307883305383 ], [ 0.653885101637298, 0.631649146543382, 0.6081462633328255, 0.5835351064314577, 0.5580218635764952, 0.531864874346731, 0.5053790500880255, 0.4789388625738188, 0.4529780679277321, 0.42798459551281026, 0.40449100004861405, 0.38306457354834, 0.3643044260664918, 0.34885053751427997, 0.3373969581681969, 0.3306806818227118, 0.3294071093891584, 0.3340984933101592, 0.344914639709725, 0.3615431849772404, 0.3832276040790735, 0.4089130693634371, 0.43743014573845346, 0.46764587486034065, 0.49855562865987807, 0.5293225844259549, 0.5592830525545266, 0.5879339234752873, 0.6149128188712958, 0.6399766643498424, 0.6629813221825918, 0.6838632776995425, 0.7026236018963582, 0.7193140983456848, 0.7340254384329972, 0.7468770692786114, 0.7580086866334322, 0.7675730788185047, 0.7757301615006396, 0.7826420368469471, 0.7884689259522502, 0.7933658415916455, 0.7974798895520427, 0.80094811024279, 0.803895796315915, 0.8064352444184398, 0.8086649175584996, 0.81066900677674, 0.8125173854821657, 0.8142659466257092 ], [ 0.6645796091359845, 0.643451024893617, 0.6210634743475659, 0.5975557731423519, 0.5731137259934123, 0.5479756697550352, 0.5224376113204099, 0.496856749922395, 0.4716518612769263, 0.4472994911404597, 0.42432661025942253, 0.40330298490448374, 0.3848380465030698, 0.36958393785446725, 0.3582360258340716, 0.3515080632415114, 0.3500550720039686, 0.35433977315603066, 0.3644851347394504, 0.38018789785946866, 0.40074431872655525, 0.42517381169136764, 0.4523788969371752, 0.4812830428379589, 0.5109201161376824, 0.5404772292587346, 0.5693047401143556, 0.5969075003836282, 0.6229274505349717, 0.647123531271912, 0.6693519607911022, 0.689548206060146, 0.7077110812865908, 0.7238889910467959, 0.738168167107867, 0.75066269438485, 0.7615061153442357, 0.7708444128710965, 0.7788301871939003, 0.7856178593761687, 0.7913597517820968, 0.7962029151551596, 0.8002865925518949, 0.8037402317603136, 0.8066819788227947, 0.809217604303339, 0.811439829316879, 0.8134280286395178, 0.8152482925683272, 0.8169538275263749 ], [ 0.6751643968313088, 0.6551581169203418, 0.6339160664492106, 0.6115609520901717, 0.588261361081379, 0.5642376548689971, 0.5397672914027994, 0.5151885005470399, 0.49090114575112687, 0.46736415488597777, 0.44509025906275473, 0.4246404246622125, 0.40662067581366385, 0.39168061956883804, 0.38050485183427735, 0.3737792750628539, 0.37211440415427993, 0.3759274447172904, 0.3853195660442325, 0.40000637952244855, 0.419340629625964, 0.4424169469569913, 0.46821111229307744, 0.49570543875472245, 0.5239751056367236, 0.5522334912207132, 0.5798463982294484, 0.6063270968859867, 0.6313215899737291, 0.6545901422522628, 0.6759884388209365, 0.6954500056795531, 0.71297054167968, 0.7285943066106937, 0.7424024778942953, 0.7545032966525562, 0.7650237986771176, 0.7741029291715502, 0.7818858544968336, 0.7885193023069821, 0.794147780914244, 0.7989105487403709, 0.802939224942534, 0.8063559522193704, 0.8092720415609176, 0.8117870452346617, 0.8139882174932385, 0.8159503314428092, 0.8177358247433452, 0.8193952464256509 ], [ 0.685581129365905, 0.6667035113072662, 0.6466257914821597, 0.6254573713618661, 0.6033519079643639, 0.5805131926878365, 0.5572003668184005, 0.5337315852791354, 0.510485291771018, 0.48789879757120796, 0.46646483945537714, 0.44672766869325636, 0.4292797415393314, 0.41475679800880483, 0.4038229663003021, 0.3971319973709081, 0.3952532104593839, 0.3985674073457732, 0.40716367405128573, 0.42078238369115206, 0.43883448963158544, 0.4604900592936346, 0.484799277048798, 0.5108059142409861, 0.5376297757401124, 0.5645135396278347, 0.5908406232718758, 0.616133889142891, 0.6400437310654744, 0.6623314776411131, 0.6828516806962651, 0.701535178983527, 0.7183737941837454, 0.7334069415232493, 0.7467101463457012, 0.7583853267648997, 0.7685526544999632, 0.7773437981500704, 0.7848963632065122, 0.7913493603424153, 0.7968395532426559, 0.8014985574639821, 0.8054505816405765, 0.8088107211416783, 0.8116837313916776, 0.8141632227658181, 0.8163312305954132, 0.8182581218500832, 0.8200028043226567, 0.8216132048507168 ], [ 0.6957786279428856, 0.6780275379477114, 0.6591218422037851, 0.6391597424315895, 0.618281662121908, 0.5966759034429904, 0.5745836245903657, 0.5523024433392187, 0.5301880962147659, 0.5086540256645017, 0.4881694002632128, 0.46925637479520466, 0.4524864671850994, 0.4384729869520527, 0.4278519801505672, 0.4212411710256211, 0.41917009931619276, 0.4219884959162719, 0.4297789393210171, 0.4423093951382102, 0.4590490951408156, 0.47924300982981816, 0.50201651313205, 0.526477335985909, 0.5517933673372962, 0.5772400000440012, 0.6022209613742135, 0.62627043884509, 0.6490440533976249, 0.6703043477494306, 0.689904443341088, 0.7077719520392378, 0.723894187276913, 0.7383050965672366, 0.7510739965937218, 0.7622960227602469, 0.7720841322590899, 0.7805624776730671, 0.7878609710288209, 0.7941108723701473, 0.7994412554691098, 0.8039762229458458, 0.8078327622284894, 0.8111191515763572, 0.8139338412068716, 0.8163647479171771, 0.8184889120896972, 0.8203724733990331, 0.8220709259168565, 0.8236296149501622 ], [ 0.7057123852879114, 0.6890775867654236, 0.6713411057911919, 0.6525915515745019, 0.6329574424263625, 0.6126125423904761, 0.5917805611708487, 0.5707386954764057, 0.5498196307586495, 0.5294119468432511, 0.5099592048017504, 0.49195790023317126, 0.47595334791821764, 0.46253008545339214, 0.45229028586406245, 0.44581242054124526, 0.4435865975034094, 0.44593429813858143, 0.4529342671198181, 0.464382603422949, 0.47980545541419267, 0.49852126292820764, 0.5197307024877211, 0.5426074776916949, 0.5663707916892852, 0.5903322233067302, 0.6139187843294408, 0.6366781199282598, 0.6582723391882294, 0.6784657350176453, 0.6971100167329809, 0.7141292680590828, 0.7295058323309862, 0.7432676801541864, 0.7554774361935747, 0.766223038319142, 0.7756099045070799, 0.7837544447160367, 0.7907787484247383, 0.7968062875817088, 0.8019584906319667, 0.8063520614596557, 0.8100969351574077, 0.8132947792682246, 0.8160379638620465, 0.8184089361119722, 0.8204799447200717, 0.8223130665815219, 0.8239604926289003, 0.8254650322226622 ] ] }, { "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", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2883723871782422, 0.032222251407802105, 0.8438122430816293, 0.9813287556171417, 0.16802974976599216, 0.345150661852771, 0.3354373594412378, 0.35063158316230725, 0.35865754962447755, 0.34642403693419155, 0.3610982448115155, 0.2661868564588188, 0.1617190133025891, 0.3254996793247329, 0.2887830957375386, 0.334112309884976, 0.24223458595927894, 0.37762497394883116, 0.3864342774103571, 0.3143026829872672 ], "xaxis": "x", "y": [ 0.6196687556803226, 0.479572513140738, 0.9232462858781219, 0.35875170584768057, 0.8019368136301637, 0.79659744177441, 0.8592821702818901, 0.8375924270431239, 0.9030574495318993, 0.8768125806520288, 0.884473714165726, 0.6441328834997212, 0.6099962969745211, 0.612394981673461, 0.7368280097311343, 0.7498864496969203, 0.7414066826043927, 0.7096354113091202, 0.6827529452453005, 0.8131591003730131 ], "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", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.2883723871782422, 0.032222251407802105, 0.8438122430816293, 0.9813287556171417, 0.16802974976599216, 0.345150661852771, 0.3354373594412378, 0.35063158316230725, 0.35865754962447755, 0.34642403693419155, 0.3610982448115155, 0.2661868564588188, 0.1617190133025891, 0.3254996793247329, 0.2887830957375386, 0.334112309884976, 0.24223458595927894, 0.37762497394883116, 0.3864342774103571, 0.3143026829872672 ], "xaxis": "x2", "y": [ 0.6196687556803226, 0.479572513140738, 0.9232462858781219, 0.35875170584768057, 0.8019368136301637, 0.79659744177441, 0.8592821702818901, 0.8375924270431239, 0.9030574495318993, 0.8768125806520288, 0.884473714165726, 0.6441328834997212, 0.6099962969745211, 0.612394981673461, 0.7368280097311343, 0.7498864496969203, 0.7414066826043927, 0.7096354113091202, 0.6827529452453005, 0.8131591003730131 ], "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": [ "