{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Numerical Optimization" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This notebook offers a step-by-step tutorial on utilizing EvoX to optimize the Ackley function through the Particle Swarm Optimization (PSO) algorithm. Both the PSO algorithm and the Ackley optimization problem are integrated as built-in components within the EvoX framework.\n", "\n", "First, we should import all necessary modules including `PSO` (algorithm), `Ackley` (problem) and `StdWorkflow` & `EvalMonitor` (workflow)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import torch\n", "\n", "from evox.algorithms import PSO\n", "from evox.problems.numerical import Ackley\n", "from evox.workflows import StdWorkflow, EvalMonitor" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here, we instantiate the [`PSO`](#evox.algorithms.so.pso_variants.pso.PSO) algorithm. We specify the following settings:\n", "\n", "- `pop_size`: The size of the particle swarm (population).\n", "- `lb` and `ub`: The lower and upper bounds for each dimension in the search space.\n", "- Other parameters are all default. Please refer to the detailed API." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# Define the algorithm\n", "algorithm = PSO(pop_size=100, lb=-32 * torch.ones(10), ub=32 * torch.ones(10))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, we choose the [`Ackley`](#evox.problems.numerical.basic.Ackley) function in EvoX' s numerical problem." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# Define the problem\n", "problem = Ackley()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We creat an [`EvalMonitor`](#evox.workflows.eval_monitor.EvalMonitor) instance to track necessary information during the optimization procedure." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# Define the monitor\n", "monitor = EvalMonitor()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The [`StdWorkflow`](#evox.workflows.std_workflow.StdWorkflow) class provides a standardized process to integrate the algorithm, problem, and monitor." ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# Define the workflow\n", "workflow = StdWorkflow(algorithm=algorithm, problem=problem, monitor=monitor)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Calling `setup()` initializes the components so that the workflow is ready to perform optimization steps." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We run the optimization for a certain number of iterations (100 in this example). In each iteration, the `step()` method updates the PSO algorithm, evaluates new candidate solutions on the Ackley function, and tracks their fitness via the monitor." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "# Perform the Ackley function optimization procedure\n", "for _ in range(100):\n", " workflow.step()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Finally, we retrieve the [`monitor`](#StdWorkflow.get_submodule) submodule from the workflow to access the top solutions found so far (`topk_solutions`) and their corresponding objective values (`topk_fitness`). We then print the best result and the associated solution." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "The best solution is:\n", "tensor([[ 2.9274e-06, -6.9952e-05, -9.1939e-06, -1.6155e-05, 2.9382e-06,\n", " 2.8082e-05, -3.1130e-05, -3.7086e-05, -1.1396e-05, 3.6595e-05]]),\n", "with the minimum value:\n", "tensor([0.0001])\n" ] } ], "source": [ "# Get the best solution and its fitness\n", "population = monitor.topk_solutions\n", "fitness = monitor.topk_fitness\n", "print(f\"The best solution is:\\n{population},\\nwith the minimum value:\\n{fitness}\")" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125, 0.00014209747314453125, 0.00014209747314453125, 0.00013065338134765625, 0.00012683868408203125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414, 20.91748809814453, 21.56838607788086, 21.3165283203125, 21.370288848876953 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625, 0.0007104873657226562, 0.0006380081176757812, 0.00061798095703125, 0.0005159378051757812 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541, 0.4704790413379669, 0.48961448669433594, 0.48284268379211426, 0.48338600993156433 ] } ], "frames": [ { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AA==", "dtype": "i1" }, "y": [ 19.764347076416016 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AA==", "dtype": "i1" }, "y": [ 21.667888641357422 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AA==", "dtype": "i1" }, "y": [ 21.05370330810547 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AA==", "dtype": "i1" }, "y": [ 21.036287307739258 ] } ], "name": "0" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAE=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAE=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAE=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAE=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586 ] } ], "name": "1" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAEC", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAEC", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAEC", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAEC", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164 ] } ], "name": "2" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453 ] } ], "name": "3" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQ=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQ=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQ=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQ=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992 ] } ], "name": "4" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQF", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQF", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQF", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQF", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584 ] } ], "name": "5" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328 ] } ], "name": "6" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgc=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgc=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgc=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgc=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875 ] } ], "name": "7" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcI", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcI", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcI", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcI", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547 ] } ], "name": "8" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703 ] } ], "name": "9" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQo=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQo=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQo=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQo=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922 ] } ], "name": "10" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoL", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoL", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoL", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoL", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562 ] } ], "name": "11" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938 ] } ], "name": "12" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852 ] } ], "name": "13" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0O", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0O", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0O", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0O", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074 ] } ], "name": "14" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004 ] } ], "name": "15" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxA=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxA=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxA=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxA=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156 ] } ], "name": "16" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAR", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAR", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAR", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAR", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148 ] } ], "name": "17" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582 ] } ], "name": "18" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhM=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhM=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhM=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhM=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816 ] } ], "name": "19" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMU", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMU", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMU", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMU", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074 ] } ], "name": "20" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863 ] } ], "name": "21" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRY=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRY=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRY=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRY=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957 ] } ], "name": "22" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYX", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYX", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYX", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYX", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773 ] } ], "name": "23" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398 ] } ], "name": "24" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBk=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBk=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBk=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBk=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453 ] } ], "name": "25" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBka", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBka", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBka", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBka", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434 ] } ], "name": "26" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848 ] } ], "name": "27" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxw=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxw=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxw=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxw=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445 ] } ], "name": "28" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwd", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwd", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwd", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwd", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916 ] } ], "name": "29" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877 ] } ], "name": "30" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346 ] } ], "name": "31" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8g", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8g", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8g", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8g", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602 ] } ], "name": "32" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gIQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gIQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gIQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gIQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783 ] } ], "name": "33" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISI=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISI=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISI=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISI=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238 ] } ], "name": "34" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIj", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIj", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIj", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIj", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824 ] } ], "name": "35" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875 ] } ], "name": "36" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCU=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCU=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCU=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCU=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006 ] } ], "name": "37" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUm", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUm", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUm", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUm", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707 ] } ], "name": "38" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361 ] } ], "name": "39" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJyg=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJyg=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJyg=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJyg=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312 ] } ], "name": "40" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygp", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygp", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygp", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygp", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564 ] } ], "name": "41" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625 ] } ], "name": "42" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKis=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKis=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKis=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKis=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072 ] } ], "name": "43" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKiss", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKiss", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKiss", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKiss", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879 ] } ], "name": "44" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943 ] } ], "name": "45" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643 ] } ], "name": "46" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4v", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4v", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4v", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4v", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096 ] } ], "name": "47" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904 ] } ], "name": "48" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDE=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDE=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDE=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDE=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818 ] } ], "name": "49" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEy", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEy", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEy", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEy", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767 ] } ], "name": "50" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639 ] } ], "name": "51" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164 ] } ], "name": "52" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522 ] } ], "name": "53" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Ng==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Ng==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Ng==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Ng==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338 ] } ], "name": "54" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497 ] } ], "name": "55" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208 ] } ], "name": "56" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142 ] } ], "name": "57" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396 ] } ], "name": "58" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223 ] } ], "name": "59" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106 ] } ], "name": "60" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768 ] } ], "name": "61" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615 ] } ], "name": "62" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+Pw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876 ] } ], "name": "63" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0A=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0A=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0A=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0A=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028 ] } ], "name": "64" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BB", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BB", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BB", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BB", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285 ] } ], "name": "65" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723 ] } ], "name": "66" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkM=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkM=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkM=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkM=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521 ] } ], "name": "67" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNE", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNE", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNE", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNE", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276 ] } ], "name": "68" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325 ] } ], "name": "69" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUY=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUY=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUY=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUY=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452 ] } ], "name": "70" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZH", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZH", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZH", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZH", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106 ] } ], "name": "71" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132 ] } ], "name": "72" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSEk=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSEk=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSEk=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSEk=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864 ] } ], "name": "73" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElK", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElK", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElK", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElK", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664 ] } ], "name": "74" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKSw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKSw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKSw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKSw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289 ] } ], "name": "75" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0w=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0w=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0w=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0w=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565 ] } ], "name": "76" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032 ] } ], "name": "77" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529 ] } ], "name": "78" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk8=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk8=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk8=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk8=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268 ] } ], "name": "79" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9Q", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9Q", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9Q", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9Q", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654 ] } ], "name": "80" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235 ] } ], "name": "81" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVI=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVI=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVI=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVI=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249 ] } ], "name": "82" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJT", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJT", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJT", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJT", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244 ] } ], "name": "83" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083 ] } ], "name": "84" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFU=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFU=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFU=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFU=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969 ] } ], "name": "85" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVW", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVW", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVW", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVW", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726 ] } ], "name": "86" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWVw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWVw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWVw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWVw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331 ] } ], "name": "87" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1g=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1g=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1g=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1g=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041 ] } ], "name": "88" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZ", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZ", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZ", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZ", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181 ] } ], "name": "89" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWg==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWg==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWg==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWg==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113 ] } ], "name": "90" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWls=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWls=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWls=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWls=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825 ] } ], "name": "91" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltc", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltc", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltc", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltc", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762 ] } ], "name": "92" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXQ==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXQ==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXQ==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXQ==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495 ] } ], "name": "93" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV4=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV4=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV4=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV4=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042 ] } ], "name": "94" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5f", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5f", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5f", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5f", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541 ] } ], "name": "95" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYA==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125, 0.00014209747314453125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYA==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414, 20.91748809814453 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYA==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625, 0.0007104873657226562 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYA==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541, 0.4704790413379669 ] } ], "name": "96" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGE=", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125, 0.00014209747314453125, 0.00014209747314453125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGE=", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414, 20.91748809814453, 21.56838607788086 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGE=", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625, 0.0007104873657226562, 0.0006380081176757812 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGE=", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541, 0.4704790413379669, 0.48961448669433594 ] } ], "name": "97" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFi", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125, 0.00014209747314453125, 0.00014209747314453125, 0.00013065338134765625 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFi", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414, 20.91748809814453, 21.56838607788086, 21.3165283203125 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFi", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625, 0.0007104873657226562, 0.0006380081176757812, 0.00061798095703125 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFi", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541, 0.4704790413379669, 0.48961448669433594, 0.48284268379211426 ] } ], "name": "98" }, { "data": [ { "mode": "lines", "name": "Min", "showlegend": true, "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 19.764347076416016, 20.098365783691406, 18.473987579345703, 17.297542572021484, 16.892391204833984, 16.884620666503906, 15.608391761779785, 15.898673057556152, 14.725363731384277, 11.500974655151367, 10.463094711303711, 11.19998550415039, 10.128472328186035, 10.396395683288574, 9.954066276550293, 8.000910758972168, 8.16556453704834, 7.982666969299316, 6.630127906799316, 6.269474983215332, 6.437491416931152, 5.7494401931762695, 5.417786598205566, 4.937991142272949, 4.2140398025512695, 3.9142255783081055, 3.8268861770629883, 3.4601430892944336, 2.695492744445801, 2.8208799362182617, 2.460751533508301, 2.523770332336426, 2.5447301864624023, 2.337092399597168, 1.8716211318969727, 2.013974189758301, 2.0005617141723633, 1.6365175247192383, 1.1026182174682617, 0.8992986679077148, 0.6494264602661133, 0.33515262603759766, 0.3610677719116211, 0.2230062484741211, 0.24708080291748047, 0.2125997543334961, 0.2060251235961914, 0.14899921417236328, 0.1196756362915039, 0.09711551666259766, 0.0853433609008789, 0.05991840362548828, 0.05784130096435547, 0.02172374725341797, 0.033356666564941406, 0.02765178680419922, 0.03049182891845703, 0.01754283905029297, 0.011746406555175781, 0.01599597930908203, 0.012162208557128906, 0.009623527526855469, 0.008711814880371094, 0.006588935852050781, 0.009249687194824219, 0.006806373596191406, 0.005503654479980469, 0.0038995742797851562, 0.003991127014160156, 0.0031480789184570312, 0.0027608871459960938, 0.0031232833862304688, 0.0024805068969726562, 0.0017347335815429688, 0.0017824172973632812, 0.0018072128295898438, 0.0015306472778320312, 0.0014085769653320312, 0.0013132095336914062, 0.0011262893676757812, 0.0011625289916992188, 0.0009355545043945312, 0.0007219314575195312, 0.0007486343383789062, 0.0006132125854492188, 0.0006303787231445312, 0.0005102157592773438, 0.0005083084106445312, 0.00040340423583984375, 0.00035572052001953125, 0.00037097930908203125, 0.00031757354736328125, 0.00028896331787109375, 0.00027370452880859375, 0.00022602081298828125, 0.00014972686767578125, 0.00014209747314453125, 0.00014209747314453125, 0.00013065338134765625, 0.00012683868408203125 ] }, { "mode": "lines", "name": "Max", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.667888641357422, 21.646793365478516, 21.729324340820312, 21.851226806640625, 21.59735107421875, 21.61353302001953, 21.45655059814453, 21.744213104248047, 21.754268646240234, 21.673263549804688, 21.51702880859375, 21.428627014160156, 21.503185272216797, 21.355545043945312, 21.522377014160156, 21.654701232910156, 21.437999725341797, 21.51456069946289, 21.622467041015625, 21.331615447998047, 21.39230728149414, 21.366043090820312, 21.424560546875, 21.31719207763672, 21.384540557861328, 21.47168731689453, 21.32223892211914, 21.481346130371094, 21.462913513183594, 21.34923553466797, 21.32919692993164, 21.543739318847656, 21.37993621826172, 21.265201568603516, 21.360637664794922, 21.432079315185547, 21.407886505126953, 21.28852081298828, 21.188026428222656, 21.402149200439453, 21.543170928955078, 21.36827850341797, 21.360729217529297, 21.366680145263672, 21.378684997558594, 21.555416107177734, 20.997814178466797, 21.342750549316406, 21.430530548095703, 21.226097106933594, 21.643573760986328, 21.372703552246094, 21.42013931274414, 21.470531463623047, 21.44622039794922, 21.522014617919922, 21.378944396972656, 21.283859252929688, 21.09804916381836, 21.11581802368164, 21.335567474365234, 21.176422119140625, 21.157756805419922, 21.368961334228516, 21.655746459960938, 21.25897979736328, 21.438812255859375, 21.303462982177734, 21.615196228027344, 21.36086654663086, 21.71976089477539, 21.635692596435547, 21.148231506347656, 21.22127914428711, 21.298858642578125, 21.12346649169922, 20.889476776123047, 21.32099151611328, 21.299686431884766, 21.181724548339844, 21.197052001953125, 21.28864288330078, 21.203105926513672, 21.820880889892578, 21.087432861328125, 21.353652954101562, 21.39620590209961, 21.05792236328125, 21.520095825195312, 21.3214111328125, 21.481033325195312, 21.373619079589844, 21.30776596069336, 21.43944549560547, 21.35211944580078, 21.11252212524414, 20.91748809814453, 21.56838607788086, 21.3165283203125, 21.370288848876953 ] }, { "mode": "lines", "name": "Median", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.05370330810547, 21.110509872436523, 21.087411880493164, 20.89436149597168, 20.643823623657227, 20.479141235351562, 19.98406219482422, 19.70924186706543, 19.081371307373047, 17.758819580078125, 17.554601669311523, 15.916133880615234, 15.58728313446045, 15.359636306762695, 13.725982666015625, 13.710946083068848, 13.048613548278809, 12.319726943969727, 11.382067680358887, 11.113361358642578, 10.916267395019531, 9.729389190673828, 9.188478469848633, 8.805656433105469, 7.890247344970703, 7.452507972717285, 6.739887714385986, 6.1609697341918945, 5.858057975769043, 5.414865493774414, 5.061134338378906, 4.638286590576172, 4.591327667236328, 3.9740123748779297, 3.934528350830078, 3.6468544006347656, 3.5251951217651367, 3.142396926879883, 2.9197998046875, 2.783113479614258, 2.429745674133301, 2.062793731689453, 1.8578739166259766, 1.5273962020874023, 1.4302024841308594, 1.113999366760254, 1.1918764114379883, 0.8047571182250977, 0.7856349945068359, 0.6880226135253906, 0.5494365692138672, 0.5028572082519531, 0.3068418502807617, 0.29992008209228516, 0.24954509735107422, 0.19449234008789062, 0.1717081069946289, 0.1783428192138672, 0.12107372283935547, 0.12224578857421875, 0.08925151824951172, 0.0867624282836914, 0.06478214263916016, 0.046749114990234375, 0.04880046844482422, 0.03956317901611328, 0.03690338134765625, 0.030425071716308594, 0.026116371154785156, 0.027085304260253906, 0.020560264587402344, 0.019901275634765625, 0.015918731689453125, 0.013897895812988281, 0.014355659484863281, 0.012310028076171875, 0.010213851928710938, 0.008908271789550781, 0.008240699768066406, 0.007275581359863281, 0.006712913513183594, 0.0052661895751953125, 0.005269050598144531, 0.003930091857910156, 0.0041179656982421875, 0.0030698776245117188, 0.0023488998413085938, 0.0024194717407226562, 0.001728057861328125, 0.0016613006591796875, 0.0014514923095703125, 0.00127410888671875, 0.0012664794921875, 0.00104522705078125, 0.000957489013671875, 0.000858306884765625, 0.0007104873657226562, 0.0006380081176757812, 0.00061798095703125, 0.0005159378051757812 ] }, { "mode": "lines", "name": "Average", "type": "scatter", "x": { "bdata": "AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWltcXV5fYGFiYw==", "dtype": "i1" }, "y": [ 21.036287307739258, 21.088308334350586, 20.99521255493164, 20.706592559814453, 20.343412399291992, 20.1729793548584, 19.766132354736328, 19.420379638671875, 18.951854705810547, 17.862903594970703, 17.278362274169922, 16.504043579101562, 16.205307006835938, 15.952325820922852, 15.066439628601074, 14.275559425354004, 13.654212951660156, 12.987859725952148, 12.322270393371582, 11.926880836486816, 11.371371269226074, 10.889843940734863, 10.25438117980957, 10.068578720092773, 9.384160995483398, 8.914112091064453, 8.460143089294434, 8.184334754943848, 7.3913774490356445, 7.312777042388916, 6.879204273223877, 6.499802112579346, 6.155878067016602, 5.849274158477783, 5.616497993469238, 5.309542655944824, 5.156951904296875, 4.531259059906006, 4.510045051574707, 4.023426532745361, 3.9430007934570312, 3.3546364307403564, 3.1834869384765625, 2.9572947025299072, 2.621232032775879, 2.5610101222991943, 2.3920834064483643, 2.3190414905548096, 2.0698745250701904, 1.9653527736663818, 1.7569137811660767, 1.7741954326629639, 1.5876474380493164, 1.5064691305160522, 1.4459669589996338, 1.3678828477859497, 1.290116548538208, 1.215185523033142, 1.1871869564056396, 1.1051125526428223, 1.099244236946106, 1.0650112628936768, 1.02240788936615, 0.9853893518447876, 0.9807254076004028, 0.9405388832092285, 0.8959450721740723, 0.8700025081634521, 0.8137837052345276, 0.774204432964325, 0.7456916570663452, 0.7097007036209106, 0.7387859225273132, 0.656873881816864, 0.6566821932792664, 0.6504718661308289, 0.6543110609054565, 0.6075245141983032, 0.5891808867454529, 0.6107226014137268, 0.6181878447532654, 0.5915849804878235, 0.571918249130249, 0.5801565647125244, 0.558396577835083, 0.5459058880805969, 0.5518009066581726, 0.527367353439331, 0.533998966217041, 0.5263544321060181, 0.5137219429016113, 0.5242568254470825, 0.5169634819030762, 0.5156038999557495, 0.5153996348381042, 0.4779950678348541, 0.4704790413379669, 0.48961448669433594, 0.48284268379211426, 0.48338600993156433 ] } ], "name": "99" } ], "layout": { "legend": { "x": 1, "xanchor": "auto", "y": 1 }, "margin": { "b": 0, "l": 0, "r": 0, "t": 0 }, "sliders": [ { "currentvalue": { "prefix": "Generation: " }, "len": 0.8, "pad": { "b": 1, "t": 10 }, "steps": [ { "args": [ [ "0" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "0", "method": "animate" }, { "args": [ [ "1" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "1", "method": "animate" }, { "args": [ [ "2" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "2", "method": "animate" }, { "args": [ [ "3" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "3", "method": "animate" }, { "args": [ [ "4" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "4", "method": "animate" }, { "args": [ [ "5" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "5", "method": "animate" }, { "args": [ [ "6" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "6", "method": "animate" }, { "args": [ [ "7" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "7", "method": "animate" }, { "args": [ [ "8" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "8", "method": "animate" }, { "args": [ [ "9" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "9", "method": "animate" }, { "args": [ [ "10" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "10", "method": "animate" }, { "args": [ [ "11" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "11", "method": "animate" }, { "args": [ [ "12" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "12", "method": "animate" }, { "args": [ [ "13" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "13", "method": "animate" }, { "args": [ [ "14" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "14", "method": "animate" }, { "args": [ [ "15" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "15", "method": "animate" }, { "args": [ [ "16" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "16", "method": "animate" }, { "args": [ [ "17" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "17", "method": "animate" }, { "args": [ [ "18" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "18", "method": "animate" }, { "args": [ [ "19" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "19", "method": "animate" }, { "args": [ [ "20" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "20", "method": "animate" }, { "args": [ [ "21" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "21", "method": "animate" }, { "args": [ [ "22" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "22", "method": "animate" }, { "args": [ [ "23" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "23", "method": "animate" }, { "args": [ [ "24" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "24", "method": "animate" }, { "args": [ [ "25" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "25", "method": "animate" }, { "args": [ [ "26" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "26", "method": "animate" }, { "args": [ [ "27" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "27", "method": "animate" }, { "args": [ [ "28" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "28", "method": "animate" }, { "args": [ [ "29" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "29", "method": "animate" }, { "args": [ [ "30" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "30", "method": "animate" }, { "args": [ [ "31" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "31", "method": "animate" }, { "args": [ [ "32" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "32", "method": "animate" }, { "args": [ [ "33" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "33", "method": "animate" }, { "args": [ [ "34" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "34", "method": "animate" }, { "args": [ [ "35" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "35", "method": "animate" }, { "args": [ [ "36" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "36", "method": "animate" }, { "args": [ [ "37" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "37", "method": "animate" }, { "args": [ [ "38" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "38", "method": "animate" }, { "args": [ [ "39" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "39", "method": "animate" }, { "args": [ [ "40" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "40", "method": "animate" }, { "args": [ [ "41" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "41", "method": "animate" }, { "args": [ [ "42" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "42", "method": "animate" }, { "args": [ [ "43" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "43", "method": "animate" }, { "args": [ [ "44" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "44", "method": "animate" }, { "args": [ [ "45" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "45", "method": "animate" }, { "args": [ [ "46" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "46", "method": "animate" }, { "args": [ [ "47" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "47", "method": "animate" }, { "args": [ [ "48" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "48", "method": "animate" }, { "args": [ [ "49" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "49", "method": "animate" }, { "args": [ [ "50" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "50", "method": "animate" }, { "args": [ [ "51" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "51", "method": "animate" }, { "args": [ [ "52" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "52", "method": "animate" }, { "args": [ [ "53" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "53", "method": "animate" }, { "args": [ [ "54" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "54", "method": "animate" }, { "args": [ [ "55" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "55", "method": "animate" }, { "args": [ [ "56" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "56", "method": "animate" }, { "args": [ [ "57" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "57", "method": "animate" }, { "args": [ [ "58" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "58", "method": "animate" }, { "args": [ [ "59" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "59", "method": "animate" }, { "args": [ [ "60" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "60", "method": "animate" }, { "args": [ [ "61" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "61", "method": "animate" }, { "args": [ [ "62" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "62", "method": "animate" }, { "args": [ [ "63" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "63", "method": "animate" }, { "args": [ [ "64" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "64", "method": "animate" }, { "args": [ [ "65" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "65", "method": "animate" }, { "args": [ [ "66" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "66", "method": "animate" }, { "args": [ [ "67" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "67", "method": "animate" }, { "args": [ [ "68" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "68", "method": "animate" }, { "args": [ [ "69" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "69", "method": "animate" }, { "args": [ [ "70" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "70", "method": "animate" }, { "args": [ [ "71" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "71", "method": "animate" }, { "args": [ [ "72" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "72", "method": "animate" }, { "args": [ [ "73" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "73", "method": "animate" }, { "args": [ [ "74" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "74", "method": "animate" }, { "args": [ [ "75" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "75", "method": "animate" }, { "args": [ [ "76" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "76", "method": "animate" }, { "args": [ [ "77" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "77", "method": "animate" }, { "args": [ [ "78" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "78", "method": "animate" }, { "args": [ [ "79" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "79", "method": "animate" }, { "args": [ [ "80" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "80", "method": "animate" }, { "args": [ [ "81" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "81", "method": "animate" }, { "args": [ [ "82" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "82", "method": "animate" }, { "args": [ [ "83" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "83", "method": "animate" }, { "args": [ [ "84" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "84", "method": "animate" }, { "args": [ [ "85" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "85", "method": "animate" }, { "args": [ [ "86" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "86", "method": "animate" }, { "args": [ [ "87" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "87", "method": "animate" }, { "args": [ [ "88" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "88", "method": "animate" }, { "args": [ [ "89" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "89", "method": "animate" }, { "args": [ [ "90" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "90", "method": "animate" }, { "args": [ [ "91" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "91", "method": "animate" }, { "args": [ [ "92" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "92", "method": "animate" }, { "args": [ [ "93" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "93", "method": "animate" }, { "args": [ [ "94" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "94", "method": "animate" }, { "args": [ [ "95" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "95", "method": "animate" }, { "args": [ [ "96" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "96", "method": "animate" }, { "args": [ [ "97" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "97", "method": "animate" }, { "args": [ [ "98" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "98", "method": "animate" }, { "args": [ [ "99" ], { "frame": { "duration": 200, "redraw": false }, "mode": "immediate", "transition": { "duration": 200 } } ], "label": "99", "method": "animate" } ], "x": 0.2, "xanchor": "left", "y": 0, "yanchor": "top" } ], "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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, "#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, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "heatmap" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 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, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "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" } ], "scattermap": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermap" } ], "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, "#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, "#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 }, "autotypenumbers": "strict", "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, "#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, "#f0f921" ] ], "sequentialminus": [ [ 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, "#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 } } }, "updatemenus": [ { "buttons": [ { "args": [ null, { "frame": { "duration": 200, "redraw": false }, "fromcurrent": true } ], "label": "Play", "method": "animate" }, { "args": [ [ null ], { "frame": { "duration": 0, "redraw": false }, "mode": "immediate" } ], "label": "Pause", "method": "animate" } ], "direction": "left", "pad": { "r": 10, "t": 30 }, "type": "buttons", "x": 0.2, "xanchor": "right", "y": 0, "yanchor": "top" } ], "xaxis": { "autorange": false, "range": [ 0, 100 ] }, "yaxis": { "autorange": false, "range": [ -1.092428207397461, 22.943782806396484 ] } } } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "monitor.plot()" ] } ], "metadata": { "kernelspec": { "display_name": "torch", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.16" } }, "nbformat": 4, "nbformat_minor": 2 }