Анализ данных о времени жизни и надёжности
Этот пример показывает, как анализировать данные времени жизни с цензурированием. В биологических или медицинских приложениях это называется анализом выживаемости, и исследуемым показателем является продолжительность жизни организма или период до излечения заболевания. В инженерных приложениях это называется анализом надёжности, и исследуемым показателем является время до отказа оборудования.
Наш пример моделирует время до отказа дроссельной заслонки в системе впрыска топлива автомобиля.
Импортируем необходимые пакеты:
Особые свойства данных о времени жизни
Некоторые особенности данных о времени жизни отличают их от других типов данных. Во-первых, продолжительность времени жизни всегда является положительным значением. Во-вторых, некоторые продолжительности времён жизни могут быть получены не точно, может быть известно лишь то, что они больше некоторого значения. В-третьих, распределения и методы анализа, которые обычно используются, довольно специфичны именно для данных времени жизни.
Давайте смоделируем результаты испытания 100 дросселей до отказа. Мы сгенерируем данные, которые могли бы наблюдаться, если бы большинство дросселей имело достаточно долгий срок службы, но небольшой процент склонен к очень раннему выходу из строя.
В данном примере предположим, что мы тестируем дроссельные заслонки в стрессовых условиях, так что каждый час испытаний эквивалентен 100 часам реальной эксплуатации. По практическим соображениям испытания на надёжность часто останавливают по истечении фиксированного времени. В этом примере мы используем 140 часов, что эквивалентно общему сроку реальной службы в 14000 часов. Одни образцы выходят из строя во время испытаний, а другие выдерживают все 140 часов. В реальном испытании для последних было бы зафиксировано время 14000 часов, что мы и воспроизводим в смоделированных данных. Также общепринятой практикой является сортировка времени отказов.
Мы знаем, что любые дроссели, прошедшие испытание, в конечном счёте выйдут из строя, но тест недостаточно продолжителен, чтобы наблюдать их фактическое время до отказа. Их времена работы известны лишь как больше 14000 часов. Эти значения называют цензурированными.
На данной диаграмме видно, что около 40% наших данных являются цензурированными при значении 14000 часов.
Способы просмотра распределений
Прежде чем мы изучим распределение данных, давайте рассмотрим различные способы анализа вероятностного распределения.
- Функция плотности вероятности указывает относительную вероятность отказа в разные моменты времени.
- Функция выживания показывает вероятность выживания как функцию времени и является просто 1 минус кумулятивная функция распределения.
- Интенсивность отказов даёт мгновенную вероятность отказа при условии выживания до данного момента. Она определяется как делённая на функцию выживания. В этом примере интенсивность отказов оказывается возрастающей, что означает — изделия становятся более склонны к отказу с течением времени (старение).
- Вероятностный график — это перенормированная кумулятивная функция распределения и используется для сравнения данных с подогнанным распределением.
Примеры четырёх типов графиков, с иллюстрацией распределения Вейбулла, которое часто используется для модели времени жизни.
Подгонка распределения Вейбулла
Распределение Вейбулла — обобщение экспоненциального распределения. Если времена жизни следуют экспоненциальному распределению, то интенсивность отказов постоянна. Это означает, что они не «стареют», в смысле: вероятность отказа в интервале, учитывая выживание до его начала, не зависит от того, где интервал начинается. У распределения Вейбулла интенсивность отказов может увеличиваться или уменьшаться.
Другие распределения, используемые для моделирования времени жизни, включают логнормальное, гамма и распределение Бирнбаума-Сандерса.
Мы построим эмпирическую кумулятивную функцию распределения наших данных, показывая долю отказов до каждого возможного времени выживания. Пунктирные кривые дают 95% доверительный интервал для этих вероятностей.
Этот график показывает, например, что доля отказов к времени 4 000 составляет около 12%, и 95% доверительный интервал для вероятности отказа к этому времени составляет от 6% до 18%. Заметьте, что поскольку наш тест завершился после 14 000 часов, эмпирическая CDF позволяет вычислять вероятности отказов только до этого предела. Почти половина данных была цензурирована на уровне 14 000, и поэтому эмпирическая кумулятивная функция распределения достигает лишь около 0.53, а не 1.0.
Распределение Вейбулла часто является хорошей моделью надёжности оборудования. Функция weibull_fit подгоняет распределение Вейбулла к данным, включая данные с цензурированием. После оценки параметров мы оценим кумулятивную функцию распределения для подогнанной модели Вейбулла, используя эти оценки. Поскольку значения кумулятивной функции распределения основаны на оценённых параметрах, мы также вычислим доверительные границы для них.
Мы можем наложить графики эмпирической кумулятивной функции распределения и подогнанной кумулятивной функции распределения, чтобы оценить, насколько хорошо распределение Вейбулла описывает надёжность дросселей.
Обратите внимание: модель Вейбулла позволяет делать прогнозы и вычислять вероятность отказа за пределами конца испытания. Однако видно, что подогнанная кривая не очень хорошо совпадает с нашими данными. У нас слишком много ранних отказов до 2000 часов по сравнению с тем, что предсказывала модель Вейбулла, и в результате меньше отказов, чем ожидалось, для промежутка примерно от 7000 до 13000 часов.
Это неудивительно — напомним, что мы сгенерировали данные именно с таким поведением.
Добавление сглаженной непараметрической оценки
Мы можем построить сглаженную непараметрическую кривую через эмпирическую с помощью функции kde. Мы удалим доверительные и добавим две кривые: одну с параметром сглаживания по умолчанию, и одну с параметром сглаживания, равным 1/3 от значения по умолчанию. Меньший параметр сглаживания позволяет кривой точнее следовать данным.
Непараметрическая оценка с меньшим параметром сглаживания хорошо соответствует данным. Однако, так же как и в случае с эмпирической функцией распределения, невозможно экстраполировать непараметрическую модель за пределы срока испытаний — оценочная функция распределения резко набирает величину в конце наблюдений.
Давайте вычислим интенсивность отказов для этой непараметрической модели и построим её график в диапазоне имеющихся данных.
Эта кривая имеет характерную форму "ванны": интенсивность отказов высока вблизи значения 1700 часов, затем снижается до более низких значений и снова возрастает. Это типичный вид кривой интенсивности отказов для компонента, который более подвержен отказам в начале своего срока службы (ранние отказы), и снова в конце срока службы (старение).
Сравнение с Matlab
Для наглядного сравнения, давайте построим сглаженную непараметрическую кривую, используя вместо функции kde Julia, функцию ksdensity Matlab.
Вычислим интенсивность отказов для непараметрической модели и построим её график на основе вычислений в Matlab.
Выводы:
Для смоделированных данных, использованных в этом примере, мы выяснили, что распределение Вейбулла не обеспечивает адекватную аппроксимацию. Нам удалось хорошо подогнать данные с помощью непараметрической модели, однако эта модель полезна только в пределах диапазона имеющихся данных.
Одна из альтернатив — использовать другое параметрическое распределение. Вы также можете определять и подгонять собственные параметрические модели к данным о времени наступления событий. Другая альтернатива — использовать смесь двух параметрических распределений: одно описывает ранние отказы, а другое — остальную часть распределения.
{"id": "id_d23d0f30_f742_4bf1_bc64_dbb8975ae7db", "data": [{"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [1, 1], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 790.0176937840063], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [2, 2], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1259.646548697351], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [3, 3], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1330.267047423174], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [4, 4], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1459.0067993975656], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [5, 5], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1480.2465646392036], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [6, 6], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1487.4900168862457], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [7, 7], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1499.237332018044], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [8, 8], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 1754.1763996985726], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [9, 9], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 2051.9225549179823], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [10, 10], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 2885.83250068486], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [11, 11], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 3906.5407898126214], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [12, 12], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 4869.060623558222], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [13, 13], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 5632.349610557542], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [14, 14], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 5640.460531597055], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [15, 15], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 6001.04325219434], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [16, 16], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 6026.034984176859], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [17, 17], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 6050.101925887229], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [18, 18], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 6146.596241410782], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [19, 19], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 6574.079871024187], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [20, 20], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 7864.771249852294], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [21, 21], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8079.706088418062], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [22, 22], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8127.233465993014], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [23, 23], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8304.040164901067], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [24, 24], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8415.916303591013], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [25, 25], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8444.664544298752], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [26, 26], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8802.882110917095], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [27, 27], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8841.343358634753], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [28, 28], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 8903.694134783764], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [29, 29], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9100.269876466185], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [30, 30], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9207.40064302215], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [31, 31], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9248.800289285931], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [32, 32], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9269.445650286236], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [33, 33], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9442.125620571396], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [34, 34], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9688.065073264654], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [35, 35], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 9974.05141730218], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [36, 36], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 10437.616981166299], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [37, 37], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11107.505818867474], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [38, 38], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11144.934370333858], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [39, 39], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11532.260643254067], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [40, 40], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11722.588508664447], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [41, 41], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11722.93632625775], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [42, 42], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11876.879207044405], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [43, 43], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 11931.688904925742], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [44, 44], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12089.496387057525], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [45, 45], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12173.303758870927], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [46, 46], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12272.1278139766], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [47, 47], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12276.35869362239], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [48, 48], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12373.101166637376], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [49, 49], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12428.912339619723], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [50, 50], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12449.164800216031], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [51, 51], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12590.07296252945], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [52, 52], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12865.457346055791], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [53, 53], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 12876.186532599431], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [54, 54], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13100.15696629114], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [55, 55], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13532.250604620298], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [56, 56], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13662.506617474146], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [57, 57], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13792.013222632988], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [58, 58], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13807.868359584367], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [59, 59], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 13865.743794021948], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [60, 60], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [61, 61], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [62, 62], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [63, 63], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [64, 64], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [65, 65], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [66, 66], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [67, 67], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [68, 68], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [69, 69], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [70, 70], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [71, 71], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [72, 72], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [73, 73], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [74, 74], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [75, 75], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [76, 76], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [77, 77], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [78, 78], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [79, 79], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [80, 80], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [81, 81], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [82, 82], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [83, 83], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [84, 84], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [85, 85], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [86, 86], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [87, 87], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [88, 88], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [89, 89], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [90, 90], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [91, 91], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [92, 92], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [93, 93], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [94, 94], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [95, 95], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [96, 96], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [97, 97], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [98, 98], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [99, 99], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1}, "y": [100, 100], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [61, 61], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [62, 62], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [63, 63], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [64, 64], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [65, 65], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [66, 66], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [67, 67], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [68, 68], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [69, 69], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [70, 70], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [71, 71], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [72, 72], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [73, 73], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [74, 74], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [75, 75], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [76, 76], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [77, 77], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [78, 78], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [79, 79], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [80, 80], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [81, 81], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [82, 82], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [83, 83], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [84, 84], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [85, 85], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [86, 86], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [87, 87], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [88, 88], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [89, 89], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [90, 90], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [91, 91], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [92, 92], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [93, 93], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [94, 94], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [95, 95], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [96, 96], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [97, 97], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [98, 98], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [99, 99], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [100, 100], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5329861111111112, "title": {"text": ""}, "len": 0.914342738407699, "x": 0.9934383202099737}, "yaxis": "y", "x": [14000, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "solid", "width": 1}, "y": [0, 100], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 10000, 20000, 30000], "range": [0, 30000], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "1.0×10⁴", "2.0×10⁴", "3.0×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время жизни", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "middle", "xanchor": "left", "rotation": 0, "y": 30, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 14}, "yref": "y", "showarrow": false, "text": "<-- Неизвестное время жизни", "xref": "x", "x": 14500}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 25, 50, 75, 100], "range": [-3, 103], "domain": [0.07581474190726165, 0.9901574803149606], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "25", "50", "75", "100"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Количество наблюдений", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 861.1875}}
{"id": "id_a8adff59_533b_46b6_86aa_0418e67f390c", "data": [{"xaxis": "x", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.5173009623797025}, "yaxis": "y", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.0204081580591422e-08, 3.1007843687625262e-06, 6.182654942506028e-06, 9.247175521787905e-06, 1.2285786947223401e-05, 1.5290051010438177e-05, 1.8251689493203602e-05, 2.1162622163578027e-05, 2.401500348503612e-05, 2.6801257805321344e-05, 2.951411280441347e-05, 3.214663099543523e-05, 3.4692239088383334e-05, 3.7144755044097376e-05, 3.949841266470011e-05, 4.174788358666655e-05, 4.388829656351148e-05, 4.5915253946619704e-05, 4.782484529477428e-05, 4.9613658065251204e-05, 5.127878536173565e-05, 5.2817830736564675e-05, 5.422891006670996e-05, 5.551065054428515e-05, 5.666218684300522e-05, 5.768315454176468e-05, 5.8573680905169226e-05, 5.9334373138303104e-05, 5.996630424910569e-05, 6.047099666634502e-05, 6.085040377421687e-05, 6.110688953597657e-05, 6.124320638866986e-05, 6.126247159891847e-05, 6.116814227581474e-05, 6.096398924127755e-05, 6.065406996073341e-05, 6.024270073773951e-05, 5.9734428375207886e-05, 5.9134001503282924e-05, 5.844634176974623e-05, 5.767651508316307e-05, 5.682970309194687e-05, 5.5911175074213794e-05, 5.492626040385181e-05, 5.3880321747764986e-05, 5.2778729137909855e-05, 5.162683504965274e-05, 5.042995060528712e-05, 4.919332300839798e-05, 4.792211430128435e-05, 4.662138152399145e-05, 4.529605833978982e-05, 4.395093817830087e-05, 4.259065893402684e-05, 4.121968924491131e-05, 3.984231636284057e-05, 3.8462635615793816e-05, 3.708454144974347e-05, 3.571172002747931e-05, 3.434764335133945e-05, 3.299556486743938e-05, 3.165851650043666e-05, 3.0339307060189814e-05, 2.9040521954886535e-05, 2.776452413934324e-05, 2.6513456222215806e-05, 2.528924365180558e-05, 2.4093598896980048e-05, 2.292802653742943e-05, 2.1793829176021172e-05, 2.0692114085353683e-05, 1.962380050070925e-05, 1.8589627472413456e-05, 1.759016219207515e-05, 1.662580870925006e-05, 1.5696816957686867e-05, 1.4803292013415795e-05, 1.394520351046821e-05, 1.3122395143909432e-05, 1.2334594194066867e-05, 1.1581421010282158e-05, 1.0862398397152833e-05, 1.0176960850999403e-05, 9.524463599146762e-06, 8.904191399493695e-06, 8.31536706271509e-06, 7.757159664254966e-06, 7.228692417986769e-06, 6.729050188003304e-06, 6.2572866194233e-06, 5.812430873335781e-06, 5.393493955025371e-06, 4.99947462841099e-06, 4.629364913172623e-06, 4.282155164323414e-06, 3.956838736999338e-06, 3.652416241981543e-06, 3.367899399934283e-06, 3.102314504536453e-06], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.5173009623797025}, "yaxis": "y", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [6.172839487120867e-09, 1.8761326283514345e-06, 3.74290361343544e-06, 5.603316516212594e-06, 7.454220055579161e-06, 9.292489842491766e-06, 1.111503716815578e-05, 1.291881765116533e-05, 1.4700839709712537e-05, 1.6458172825871e-05, 1.8187955570010923e-05, 1.9887403354614823e-05, 2.155381588812458e-05, 2.3184584300956296e-05, 2.4777197917457556e-05, 2.6329250649344374e-05, 2.783844698802983e-05, 2.9302607575233077e-05, 3.071967433332356e-05, 3.208771513899855e-05, 3.340492802609999e-05, 3.466964490563591e-05, 3.5880334793369245e-05, 3.703560653765928e-05, 3.813421104257495e-05, 3.917504298363159e-05, 4.0157142015819896e-05, 4.107969347588597e-05, 4.1942028583070656e-05, 4.2743624144713676e-05, 4.34841017752614e-05, 4.416322663927526e-05, 4.478090573101108e-05, 4.533718570501673e-05, 4.583225027396975e-05, 4.626641719163744e-05, 4.6640134840383224e-05, 4.695397844405911e-05, 4.720864592840655e-05, 4.7404953452235894e-05, 4.7543830633660454e-05, 4.762631549652559e-05, 4.765354916289128e-05, 4.7626770317999954e-05, 4.7547309474587637e-05, 4.741658306367919e-05, 4.723608737914617e-05, 4.700739240330437e-05, 4.6732135540688454e-05, 4.6412015286868914e-05, 4.604878485877542e-05, 4.5644245812467913e-05, 4.520024167365606e-05, 4.471865160551864e-05, 4.420138413752123e-05, 4.365037097798381e-05, 4.306756093211463e-05, 4.245491394611423e-05, 4.1814395296768954e-05, 4.1147969944709834e-05, 4.0457597068213503e-05, 3.9745224793081833e-05, 3.901278513275961e-05, 3.8262189151448174e-05, 3.749532236155195e-05, 3.671404036536734e-05, 3.592016474949256e-05, 3.5115479239016023e-05, 3.4301726117132515e-05, 3.348060291445222e-05, 3.2653759370911035e-05, 3.182279467187077e-05, 3.0989254958718564e-05, 3.015463111304394e-05, 2.932035681229157e-05, 2.84878068536659e-05, 2.7658295742001145e-05, 2.683307653631255e-05, 2.6013339948813707e-05, 2.5200213689323556e-05, 2.4394762047196674e-05, 2.359798570219324e-05, 2.2810821755061303e-05, 2.203414396803453e-05, 2.1268763204953046e-05, 2.051542806029216e-05, 1.9774825666034543e-05, 1.9047582665041926e-05, 1.833426633937365e-05, 1.7635385881856582e-05, 1.6951393799134057e-05, 1.628268743440635e-05, 1.5629610598119584e-05, 1.499245529496034e-05, 1.4371463535667082e-05, 1.376682922237174e-05, 1.3178700096434093e-05, 1.2607179738021836e-05, 1.2052329607018781e-05, 1.1514171115206721e-05], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.5173009623797025}, "yaxis": "y", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3.0244047037659958e-05, 5.278514480912176e-05, 5.561791880490858e-05, 5.6895712846603526e-05, 5.748767594257173e-05, 5.7685647521750914e-05, 5.7626716337210246e-05, 5.738744476769517e-05, 5.7015462670275324e-05, 5.6542678855944144e-05, 5.599165577807692e-05, 5.537901441384263e-05, 5.4717397280144476e-05, 5.401666986282634e-05, 5.328469219522371e-05, 5.252783443735563e-05, 5.175133306297239e-05, 5.095954401688938e-05, 5.01561271075558e-05, 4.934418321437943e-05, 4.8526358322948315e-05, 4.7704923735469656e-05, 4.68818388411945e-05, 4.605880090117848e-05, 4.523728501444464e-05, 4.441857655619654e-05, 4.36037977707446e-05, 4.279392977279751e-05, 4.198983090330819e-05, 4.119225216255425e-05, 4.040185027851215e-05, 3.96191988458622e-05, 3.884479787844521e-05, 3.8079082047517874e-05, 3.732242782394877e-05, 3.6575159700426014e-05, 3.583755563681724e-05, 3.510985184584218e-05, 3.439224701556558e-05, 3.368490604868669e-05, 3.298796338528034e-05, 3.230152596484159e-05, 3.1625675874674515e-05, 3.0960472724436454e-05, 3.030595578068751e-05, 2.966214589035249e-05, 2.902904721788576e-05, 2.8406648817484008e-05, 2.7794926058795923e-05, 2.719384192213312e-05, 2.6603348177114282e-05, 2.6023386456911897e-05, 2.5453889238764754e-05, 2.4894780740128946e-05, 2.4345977738730312e-05, 2.3807390323823177e-05, 2.3278922585131317e-05, 2.2760473245227012e-05, 2.2251936240477046e-05, 2.1753201255137098e-05, 2.1264154212696102e-05, 2.0784677728151258e-05, 2.03146515245235e-05, 1.98539528165961e-05, 1.9402456664569415e-05, 1.8960036300068333e-05, 1.8526563426710752e-05, 1.8101908497241895e-05, 1.768594096905845e-05, 1.727852953978377e-05, 1.6879542364410167e-05, 1.648884725539394e-05, 1.6106311866970963e-05, 1.573180386485505e-05, 1.5365191082385767e-05, 1.5006341664105672e-05, 1.4655124197669003e-05, 1.431140783491244e-05, 1.3975062402854332e-05, 1.3645958505329675e-05, 1.3323967615914938e-05, 1.3008962162747528e-05, 1.2700815605800391e-05, 1.2399402507131022e-05, 1.2104598594586894e-05, 1.1816280819414743e-05, 1.1534327408189681e-05, 1.12586179094509e-05, 1.0989033235404073e-05, 1.0725455699025798e-05, 1.0467769046882691e-05, 1.0215858487956582e-05, 9.96961071874799e-06, 9.728913944911794e-06, 9.49365789966256e-06, 9.263733859171222e-06, 9.039034655160705e-06, 8.819454684894507e-06, 8.604889918739963e-06, 8.395237905476232e-06], "type": "scatter"}, {"xaxis": "x2", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.9950787401574803}, "yaxis": "y2", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.9999999948979592, 0.9995285382993564, 0.9981216741633272, 0.995783352339574, 0.9925201295804272, 0.988341138908092, 0.983258047026044, 0.9772850000525198, 0.9704385579293702, 0.9627376179319029, 0.9542033277741586, 0.9448589888687641, 0.9347299503605936, 0.9238434946084523, 0.9122287148384741, 0.8999163857365268, 0.886938827784338, 0.8733297661750548, 0.8591241851683359, 0.8443581787627475, 0.8290687985741199, 0.813293899812643, 0.7970719862489074, 0.7804420550499575, 0.763443442350917, 0.7461156704061211, 0.7284982971362318, 0.7106307688548879, 0.6925522769204309, 0.6743016190155727, 0.65591706571102, 0.6374362329185013, 0.6188959607848983, 0.6003321995227662, 0.5817799026140045, 0.5632729277633313, 0.5448439459170766, 0.5265243586011851, 0.5083442237707165, 0.4903321903020793, 0.47251544119920585, 0.45491964552634756, 0.4375689190235588, 0.42048579330666436, 0.40369119350191485, 0.38720442411697303, 0.3710431629046141, 0.3552234624338187, 0.3397597590449891, 0.32466488883199696, 0.3099501102637719, 0.29562513303227417, 0.2816981526919643, 0.26817589063830544, 0.2550636389593674, 0.24236530968515357, 0.23008348795374828, 0.21821948861164317, 0.20677341576745095, 0.1957442248235092, 0.18512978651834508, 0.17492695252442675, 0.16513162215979382, 0.1557388097887879, 0.1467427125059226, 0.1381367777176747, 0.12991377025935313, 0.12206583870794978, 0.11458458057671692, 0.1074611061028779, 0.10068610036611753, 0.09424988350204852, 0.08814246880149235, 0.0823536185129105, 0.07687289719147897, 0.0716897224639133, 0.06679341310305992, 0.0621732343303051, 0.05781844028688742, 0.05371831363710403, 0.04986220228708053, 0.046239553222139705, 0.04283994348379576, 0.03965310832396105, 0.036668966589056766, 0.03387764340034518, 0.03126949020894925, 0.028835102314702644, 0.026565333947209925, 0.024451311015317563, 0.0224844416376556, 0.020656424572053907, 0.018959255665531336, 0.017385232449264775, 0.015926957004544596, 0.014577337226286617, 0.013329586610280466, 0.012177222689092628, 0.011114064239489171, 0.010134227381485745], "type": "scatter"}, {"xaxis": "x2", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.9950787401574803}, "yaxis": "y2", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.9999999969135802, 0.9997147682072, 0.9988633068585384, 0.9974470596587816, 0.9954684312534126, 0.992930777338754, 0.9898383951785044, 0.9861965114777789, 0.9820112676625516, 0.9772897026225296, 0.9720397329853315, 0.966270130999347, 0.9599905001117562, 0.9532112483368719, 0.9459435595181551, 0.9381993625949491, 0.929991298992096, 0.9213326882571587, 0.9122374920758983, 0.9027202768019554, 0.892796174641325, 0.882480843636167, 0.8717904265957699, 0.8607415091250521, 0.8493510769028463, 0.8376364723633715, 0.8256153509347453, 0.8133056369881433, 0.8007254796502762, 0.7878932086302458, 0.7748272902095754, 0.7615462835413074, 0.748068797400552, 0.7344134475247693, 0.7205988146774244, 0.7066434035634792, 0.6925656027195324, 0.6783836454953146, 0.664115572236735, 0.6497791937737888, 0.6353920563094367, 0.6209714077980691, 0.6065341658944401, 0.5920968875460315, 0.5776757402937276, 0.5632864753374953, 0.5489444024155204, 0.5346643665369756, 0.5204607266003506, 0.5063473359210935, 0.49233752468422043, 0.47844408432961594, 0.4646792538699769, 0.4510547081337948, 0.4375815479184624, 0.4242702920315484, 0.41113087119154357, 0.3981726237529721, 0.3854042932146889, 0.37283402746449584, 0.36046937970788867, 0.3483173110238402, 0.3363841944860229, 0.32467582078379764, 0.3131974052736383, 0.3019535963884534, 0.2909484853294676, 0.28018561696298316, 0.26966800184240886, 0.2593981292744476, 0.24937798134724387, 0.23960904783761688, 0.2300923419142114, 0.22082841655350152, 0.21181738158603267, 0.20305892129110345, 0.1945523124592227, 0.1862964428431334, 0.17828982991993417, 0.17053063988884953, 0.16301670683146266, 0.15574555196372009, 0.14871440291171695, 0.14192021294615687, 0.1353596801134267, 0.12902926620440736, 0.12292521550544978, 0.1170435732793345, 0.11138020392751188, 0.10593080878843744, 0.10069094353037787, 0.09565603510063303, 0.09082139819668641, 0.08618225122833927, 0.0817337317433936, 0.07747091129289571, 0.07338880971534056, 0.0694824088225349, 0.06574666547302781, 0.06217652402211629], "type": "scatter"}, {"xaxis": "x2", "colorbar": {"y": 0.7430555555555556, "title": {"text": ""}, "len": 0.4359507144940217, "x": 0.9950787401574803}, "yaxis": "y2", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.9999725050337939, 0.985302596106645, 0.9688156105911603, 0.9517451352026158, 0.9344023728976725, 0.9169446318626859, 0.8994683034820287, 0.8820386376563797, 0.8647025473827087, 0.8474951148815422, 0.8304432826652313, 0.8135681199441783, 0.7968863000906293, 0.7804111101366165, 0.7641531671931128, 0.7481209430291376, 0.7323211583870579, 0.7167590860624674, 0.7014387883650058, 0.6863633062856874, 0.6715348123985034, 0.6569547360395982, 0.6426238669565684, 0.6285424419984127, 0.6147102182747083, 0.6011265353939633, 0.5877903687945563, 0.5747003757404737, 0.5618549352232857, 0.5492521827606989, 0.5368900408892312, 0.524766245998932, 0.5128783720408159, 0.5012238515449524, 0.4897999943131912, 0.47860400409103915, 0.46763299347504034, 0.45688399727272894, 0.44635398449996494, 0.43603986917381776, 0.4259385200370167, 0.4160467693314851, 0.406361420722926, 0.3968792564653084, 0.38759704388296784, 0.37851154123855174, 0.36961950304692304, 0.3609176848881598, 0.3524028477667713, 0.34407176205904544, 0.33592121108590833, 0.327947994344737, 0.32014893043010684, 0.31252085967042675, 0.3050606465047492, 0.2977651816216834, 0.290631383880258, 0.28365620203072767, 0.2768366162516702, 0.27016963951825396, 0.26365231881523826, 0.2572817362070946, 0.25105500977657597, 0.24496929444211196, 0.23902178266354457, 0.23320970504494817, 0.22753033084256957, 0.2219809683852881, 0.2165589654144171, 0.21126170934913846, 0.2060866274833826, 0.20103118711952642, 0.19609289564387966, 0.19126930054856248, 0.18655798940404017, 0.18195658978627, 0.17746276916213105, 0.17307423473654523, 0.16878873326445623, 0.16460405083060864, 0.16051801259986637, 0.15652848254061424, 0.15263336312361567, 0.14883059499853066, 0.14511815665015076, 0.141494064036264, 0.13795637020893428, 0.13450316492085593, 0.13113257421833363, 0.12784276002232994, 0.12463191969892687, 0.12149828562045407, 0.1184401247184538, 0.11545573802956978, 0.11254346023537602, 0.10970165919708906, 0.10692873548604448, 0.10422312191075646, 0.10158328304132239, 0.09900771473188155], "type": "scatter"}, {"xaxis": "x3", "colorbar": {"y": 0.24305555555555555, "title": {"text": ""}, "len": 0.4359507144940216, "x": 0.5173009623797025}, "yaxis": "y3", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.0204081632653063e-08, 3.1022469593898167e-06, 6.194289837146981e-06, 9.286332714904143e-06, 1.237837559266131e-05, 1.5470418470418473e-05, 1.8562461348175635e-05, 2.16545042259328e-05, 2.474654710368996e-05, 2.7838589981447126e-05, 3.093063285920429e-05, 3.402267573696145e-05, 3.711471861471862e-05, 4.020676149247578e-05, 4.329880437023295e-05, 4.63908472479901e-05, 4.948289012574727e-05, 5.257493300350444e-05, 5.56669758812616e-05, 5.8759018759018764e-05, 6.185106163677593e-05, 6.494310451453309e-05, 6.803514739229025e-05, 7.112719027004742e-05, 7.421923314780459e-05, 7.731127602556175e-05, 8.040331890331891e-05, 8.349536178107607e-05, 8.658740465883325e-05, 8.96794475365904e-05, 9.277149041434756e-05, 9.586353329210473e-05, 9.895557616986189e-05, 0.00010204761904761904, 0.00010513966192537623, 0.00010823170480313339, 0.00011132374768089054, 0.00011441579055864771, 0.00011750783343640488, 0.00012059987631416204, 0.0001236919191919192, 0.00012678396206967636, 0.00012987600494743354, 0.00013296804782519068, 0.00013606009070294786, 0.000139152133580705, 0.00014224417645846218, 0.00014533621933621933, 0.0001484282622139765, 0.00015152030509173368, 0.00015461234796949083, 0.000157704390847248, 0.00016079643372500515, 0.00016388847660276233, 0.0001669805194805195, 0.00017007256235827663, 0.00017316460523603385, 0.000176256648113791, 0.00017934869099154815, 0.0001824407338693053, 0.00018553277674706245, 0.00018862481962481962, 0.00019171686250257682, 0.00019480890538033397, 0.00019790094825809115, 0.0002009929911358483, 0.00020408503401360544, 0.00020717707689136265, 0.0002102691197691198, 0.00021336116264687694, 0.0002164532055246341, 0.0002195452484023913, 0.00022263729128014847, 0.00022572933415790562, 0.00022882137703566274, 0.00023191341991341997, 0.0002350054627911771, 0.00023809750566893424, 0.00024118954854669138, 0.0002442815914244486, 0.00024737363430220576, 0.00025046567717996294, 0.00025355772005772006, 0.00025664976293547723, 0.00025974180581323435, 0.0002628338486909916, 0.00026592589156874876, 0.0002690179344465059, 0.00027210997732426306, 0.00027520202020202023, 0.00027829406307977735, 0.00028138610595753453, 0.0002844781488352917, 0.0002875701917130489, 0.00029066223459080605, 0.0002937542774685632, 0.00029684632034632035, 0.0002999383632240775, 0.00030303040610183475, 0.0003061224489795919], "type": "scatter"}, {"xaxis": "x3", "colorbar": {"y": 0.24305555555555555, "title": {"text": ""}, "len": 0.4359507144940216, "x": 0.5173009623797025}, "yaxis": "y3", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(227, 111, 71, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [6.1728395061728405e-09, 1.876667913704951e-06, 3.7471629879037287e-06, 5.617658062102506e-06, 7.4881531363012845e-06, 9.358648210500063e-06, 1.122914328469884e-05, 1.309963835889762e-05, 1.4970133433096394e-05, 1.684062850729518e-05, 1.8711123581493953e-05, 2.0581618655692733e-05, 2.245211372989151e-05, 2.432260880409029e-05, 2.619310387828907e-05, 2.8063598952487842e-05, 2.9934094026686622e-05, 3.18045891008854e-05, 3.367508417508417e-05, 3.554557924928295e-05, 3.741607432348173e-05, 3.9286569397680504e-05, 4.1157064471879284e-05, 4.3027559546078064e-05, 4.489805462027684e-05, 4.676854969447562e-05, 4.86390447686744e-05, 5.050953984287318e-05, 5.2380034917071957e-05, 5.425052999127073e-05, 5.612102506546951e-05, 5.799152013966829e-05, 5.986201521386706e-05, 6.173251028806584e-05, 6.360300536226462e-05, 6.54735004364634e-05, 6.734399551066217e-05, 6.921449058486096e-05, 7.108498565905973e-05, 7.295548073325851e-05, 7.482597580745729e-05, 7.669647088165607e-05, 7.856696595585483e-05, 8.043746103005363e-05, 8.23079561042524e-05, 8.417845117845117e-05, 8.604894625264995e-05, 8.791944132684873e-05, 8.978993640104751e-05, 9.16604314752463e-05, 9.353092654944507e-05, 9.540142162364387e-05, 9.727191669784263e-05, 9.914241177204141e-05, 0.00010101290684624019, 0.00010288340192043897, 0.00010475389699463774, 0.00010662439206883653, 0.0001084948871430353, 0.00011036538221723409, 0.00011223587729143284, 0.00011410637236563161, 0.00011597686743983042, 0.0001178473625140292, 0.00011971785758822796, 0.00012158835266242674, 0.0001234588477366255, 0.0001253293428108243, 0.0001271998378850231, 0.00012907033295922184, 0.00013094082803342063, 0.0001328113231076194, 0.0001346818181818182, 0.00013655231325601695, 0.00013842280833021575, 0.00014029330340441451, 0.0001421637984786133, 0.00014403429355281207, 0.00014590478862701084, 0.00014777528370120963, 0.00014964577877540843, 0.0001515162738496072, 0.00015338676892380596, 0.00015525726399800475, 0.00015712775907220352, 0.0001589982541464023, 0.00016086874922060108, 0.00016273924429479987, 0.00016460973936899864, 0.0001664802344431974, 0.00016835072951739617, 0.000170221224591595, 0.00017209171966579376, 0.00017396221473999252, 0.0001758327098141913, 0.00017770320488839008, 0.00017957369996258885, 0.00018144419503678764, 0.0001833146901109864, 0.0001851851851851852], "type": "scatter"}, {"xaxis": "x3", "colorbar": {"y": 0.24305555555555555, "title": {"text": ""}, "len": 0.4359507144940216, "x": 0.5173009623797025}, "yaxis": "y3", "x": [1, 304.020202020202, 607.040404040404, 910.060606060606, 1213.080808080808, 1516.1010101010102, 1819.121212121212, 2122.1414141414143, 2425.161616161616, 2728.181818181818, 3031.2020202020203, 3334.222222222222, 3637.242424242424, 3940.2626262626263, 4243.282828282829, 4546.30303030303, 4849.323232323232, 5152.343434343435, 5455.363636363636, 5758.383838383838, 6061.404040404041, 6364.424242424242, 6667.444444444444, 6970.464646464647, 7273.484848484848, 7576.50505050505, 7879.525252525253, 8182.545454545455, 8485.565656565657, 8788.585858585859, 9091.60606060606, 9394.626262626263, 9697.646464646465, 10000.666666666666, 10303.68686868687, 10606.70707070707, 10909.727272727272, 11212.747474747475, 11515.767676767677, 11818.787878787878, 12121.808080808081, 12424.828282828283, 12727.848484848484, 13030.868686868687, 13333.888888888889, 13636.90909090909, 13939.929292929293, 14242.949494949495, 14545.969696969696, 14848.9898989899, 15152.0101010101, 15455.030303030304, 15758.050505050505, 16061.070707070707, 16364.09090909091, 16667.11111111111, 16970.131313131315, 17273.151515151516, 17576.171717171717, 17879.19191919192, 18182.21212121212, 18485.23232323232, 18788.252525252527, 19091.272727272728, 19394.29292929293, 19697.31313131313, 20000.333333333332, 20303.353535353537, 20606.37373737374, 20909.39393939394, 21212.41414141414, 21515.434343434343, 21818.454545454544, 22121.47474747475, 22424.49494949495, 22727.515151515152, 23030.535353535353, 23333.555555555555, 23636.575757575756, 23939.59595959596, 24242.616161616163, 24545.636363636364, 24848.656565656565, 25151.676767676767, 25454.696969696968, 25757.717171717173, 26060.737373737375, 26363.757575757576, 26666.777777777777, 26969.79797979798, 27272.81818181818, 27575.838383838385, 27878.858585858587, 28181.878787878788, 28484.89898989899, 28787.91919191919, 29090.939393939392, 29393.959595959597, 29696.9797979798, 30000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(62, 164, 78, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [3.0244878619575513e-05, 5.357252179959599e-05, 5.740815713216177e-05, 5.978040837003183e-05, 6.152346955658606e-05, 6.29107205792437e-05, 6.406753424676028e-05, 6.506227994748218e-05, 6.593650364839373e-05, 6.671740976801659e-05, 6.742381682994275e-05, 6.806930244223726e-05, 6.866399544567588e-05, 6.921565974806578e-05, 6.973038192192415e-05, 7.021302494844045e-05, 7.066753769200802e-05, 7.109717198959669e-05, 7.150463866485837e-05, 7.18922220382229e-05, 7.226186554592454e-05, 7.261523681685464e-05, 7.295377786577447e-05, 7.327874431953602e-05, 7.359123643887195e-05, 7.389222391769099e-05, 7.418256590384003e-05, 7.446302730820317e-05, 7.473429220056791e-05, 7.49969748968683e-05, 7.525162920063865e-05, 7.549875615655134e-05, 7.573881059533909e-05, 7.597220668997381e-05, 7.619932269759035e-05, 7.642050502667494e-05, 7.663607174186706e-05, 7.684631559744468e-05, 7.705150667377605e-05, 7.725189467768356e-05, 7.744771095700261e-05, 7.763917027103594e-05, 7.782647235166108e-05, 7.800980328419542e-05, 7.818933673250144e-05, 7.836523502901151e-05, 7.853765014721243e-05, 7.870672457152268e-05, 7.887259207732418e-05, 7.903537843209128e-05, 7.919520202703352e-05, 7.935217444737981e-05, 7.95064009883416e-05, 7.965798112286676e-05, 7.980700892650633e-05, 7.995357346404235e-05, 8.009775914194588e-05, 8.023964603023711e-05, 8.03793101568904e-05, 8.051682377755606e-05, 8.06522556230486e-05, 8.078567112677201e-05, 8.09171326340085e-05, 8.104669959478425e-05, 8.117442874183978e-05, 8.130037425506811e-05, 8.142458791364154e-05, 8.154711923691926e-05, 8.166801561511816e-05, 8.178732243062878e-05, 8.190508317077107e-05, 8.202133953270755e-05, 8.213613152116081e-05, 8.224949753952183e-05, 8.236147447487988e-05, 8.247209777745579e-05, 8.258140153487627e-05, 8.26894185416874e-05, 8.279618036446998e-05, 8.290171740288766e-05, 8.300605894696974e-05, 8.310923323090485e-05, 8.321126748359842e-05, 8.331218797622515e-05, 8.341202006698945e-05, 8.351078824328848e-05, 8.36085161614574e-05, 8.370522668426184e-05, 8.38009419162893e-05, 8.389568323738013e-05, 8.398947133422694e-05, 8.40823262302621e-05, 8.417426731394394e-05, 8.426531336554348e-05, 8.43554825825268e-05, 8.44447926036203e-05, 8.453326053164083e-05, 8.462090295516551e-05, 8.470773596911252e-05, 8.47937751942968e-05], "type": "scatter"}, {"xaxis": "x4", "colorbar": {"y": 0.24305555555555555, "title": {"text": ""}, "len": 0.4359507144940216, "x": 0.9950787401574803}, "yaxis": "y4", "x": [2199.9436510312744, 3130.821367091012, 3859.175788646161, 4485.556174631674, 5048.80313902679, 5568.83336275375, 6057.512876525869, 6522.625470361932, 6969.640458825543, 7402.609877263265, 7824.668572422852, 8238.3337148173, 8645.694944867322, 9048.541282283893, 9448.449799931936, 9846.850430461356, 10245.07561347631, 10644.400347221586, 11046.076417253977, 11451.363555500866, 11861.559739657432, 12278.032625686496, 12702.254151385732, 13135.8406521633, 13580.60144158009, 14038.59984677999, 14512.23237374091, 15004.334407483164, 15518.325351518964, 16058.413732544188, 16629.89617668166, 17239.608693823226, 17896.63607790013, 18613.482636497738, 19408.123791478287, 20307.88748828791, 21357.584842264954, 22639.172168944144, 24331.117477096996, 26978.88294711336], "showlegend": false, "mode": "markers", "name": "", "legendgroup": "", "marker": {"symbol": "x", "color": "rgba(0, 0, 255, 1.000)", "line": {"color": "rgba(0, 0, 0, 1)", "width": 1}, "size": 4}, "y": [1084.993662997925, 2766.671285915577, 3352.562844765835, 3833.727041829233, 4818.695091504917, 7831.512301515526, 8741.162875356695, 8759.272656039986, 9188.640720265003, 10084.871966943962, 10317.99655082854, 10435.063848473801, 10598.712532184105, 11317.221769734717, 11731.16640031148, 12552.807237533898, 12561.257204222353, 12762.426657473394, 12881.81828561974, 12907.560341291775, 13060.619209219141, 13325.036313626364, 13691.453526501877, 14443.126203909918, 14746.959308844342, 14747.735697291695, 15334.130301826532, 15472.696308989724, 16137.896955070653, 17286.62266379943, 18606.62376038659, 18681.982468338054, 19494.907187892983, 22226.374278961706, 23084.111393394756, 23631.802336795146, 24257.854171918396, 24538.969889149277, 28019.928884103214, 34250.38712539431], "type": "scatter"}, {"xaxis": "x4", "colorbar": {"y": 0.24305555555555555, "title": {"text": ""}, "len": 0.4359507144940216, "x": 0.9950787401574803}, "yaxis": "y4", "x": [2199.9436510312744, 3130.821367091012, 3859.175788646161, 4485.556174631674, 5048.80313902679, 5568.83336275375, 6057.512876525869, 6522.625470361932, 6969.640458825543, 7402.609877263265, 7824.668572422852, 8238.3337148173, 8645.694944867322, 9048.541282283893, 9448.449799931936, 9846.850430461356, 10245.07561347631, 10644.400347221586, 11046.076417253977, 11451.363555500866, 11861.559739657432, 12278.032625686496, 12702.254151385732, 13135.8406521633, 13580.60144158009, 14038.59984677999, 14512.23237374091, 15004.334407483164, 15518.325351518964, 16058.413732544188, 16629.89617668166, 17239.608693823226, 17896.63607790013, 18613.482636497738, 19408.123791478287, 20307.88748828791, 21357.584842264954, 22639.172168944144, 24331.117477096996, 26978.88294711336], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 0, 1)", "shape": "linear", "dash": "dash", "width": 1.5}, "y": [2199.9436510312744, 3130.821367091012, 3859.175788646161, 4485.556174631674, 5048.80313902679, 5568.83336275375, 6057.512876525869, 6522.625470361932, 6969.640458825543, 7402.609877263265, 7824.668572422852, 8238.3337148173, 8645.694944867322, 9048.541282283893, 9448.449799931936, 9846.850430461356, 10245.07561347631, 10644.400347221586, 11046.076417253977, 11451.363555500866, 11861.559739657432, 12278.032625686496, 12702.254151385732, 13135.8406521633, 13580.60144158009, 14038.59984677999, 14512.23237374091, 15004.334407483164, 15518.325351518964, 16058.413732544188, 16629.89617668166, 17239.608693823226, 17896.63607790013, 18613.482636497738, 19408.123791478287, 20307.88748828791, 21357.584842264954, 22639.172168944144, 24331.117477096996, 26978.88294711336], "type": "scatter"}], "config": {"showlegend": true, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "height": 600, "yaxis4": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [], "range": [90.03185912603658, 35245.3489292662], "domain": [0.025080198308544768, 0.46103091280256636], "mirror": false, "tickangle": 0, "showline": true, "ticktext": [], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x4", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis2": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [-0.019561745704477107, 1.0296959699995432], "domain": [0.5250801983085448, 0.9610309128025665], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "xaxis3": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 10000, 20000, 30000], "range": [-898.9700000000012, 30899.97], "domain": [0.09381014873140857, 0.5173009623797025], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "1.0×10⁴", "2.0×10⁴", "3.0×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y3", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis3": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.0001, 0.0002, 0.00030000000000000003], "range": [-9.17731544469643e-06, 0.00031530593726379445], "domain": [0.025080198308544768, 0.46103091280256636], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.0000", "0.0001", "0.0002", "0.0003"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x3", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "xaxis4": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [], "range": [1456.5754721488101, 27722.251125995826], "domain": [0.5715879265091863, 0.9950787401574803], "mirror": false, "tickangle": 0, "showline": true, "ticktext": [], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y4", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Плотность вероятности", "xref": "paper", "x": 0.3055555555555555}, {"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Выживание", "xref": "paper", "x": 0.7833333333333333}, {"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Интенсивность отказов", "xref": "paper", "x": 0.3055555555555555}, {"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 0.5, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Вероятностный график", "xref": "paper", "x": 0.7833333333333333}], "xaxis2": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 10000, 20000, 30000], "range": [-898.9700000000012, 30899.97], "domain": [0.5715879265091863, 0.9950787401574803], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "1.0×10⁴", "2.0×10⁴", "3.0×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y2", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "width": 861.1875, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 10000, 20000, 30000], "range": [-898.9700000000012, 30899.97], "domain": [0.09381014873140857, 0.5173009623797025], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "1.0×10⁴", "2.0×10⁴", "3.0×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 1e-05, 2e-05, 3.0000000000000004e-05, 4e-05, 5e-05, 6.000000000000001e-05], "range": [-1.8315161232958249e-06, 6.310016056170142e-05], "domain": [0.5250801983085448, 0.9610309128025665], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "1.0×10⁻⁵", "2.0×10⁻⁵", "3.0×10⁻⁵", "4.0×10⁻⁵", "5.0×10⁻⁵", "6.0×10⁻⁵"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}}}
{"id": "id_a12441a9_b9e4_408b_ace1_52ea0cade2f8", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1.5}, "y": [0, 0, 0.010000000000000009, 0.010000000000000009, 0.020000000000000018, 0.020000000000000018, 0.030000000000000027, 0.030000000000000027, 0.040000000000000036, 0.040000000000000036, 0.050000000000000044, 0.050000000000000044, 0.06000000000000005, 0.06000000000000005, 0.07000000000000006, 0.07000000000000006, 0.08000000000000007, 0.08000000000000007, 0.09000000000000008, 0.09000000000000008, 0.10000000000000009, 0.10000000000000009, 0.1100000000000001, 0.1100000000000001, 0.1200000000000001, 0.1200000000000001, 0.13000000000000012, 0.13000000000000012, 0.14000000000000012, 0.14000000000000012, 0.15000000000000013, 0.15000000000000013, 0.16000000000000014, 0.16000000000000014, 0.17000000000000015, 0.17000000000000015, 0.18000000000000016, 0.18000000000000016, 0.19000000000000017, 0.19000000000000017, 0.20000000000000018, 0.20000000000000018, 0.2100000000000002, 0.2100000000000002, 0.2200000000000002, 0.2200000000000002, 0.2300000000000002, 0.2300000000000002, 0.2400000000000002, 0.2400000000000002, 0.2500000000000002, 0.2500000000000002, 0.26000000000000023, 0.26000000000000023, 0.27000000000000024, 0.27000000000000024, 0.28000000000000025, 0.28000000000000025, 0.29000000000000026, 0.29000000000000026, 0.30000000000000027, 0.30000000000000027, 0.3100000000000003, 0.3100000000000003, 0.3200000000000003, 0.3200000000000003, 0.3300000000000003, 0.3300000000000003, 0.3400000000000003, 0.3400000000000003, 0.3500000000000003, 0.3500000000000003, 0.3600000000000003, 0.3600000000000003, 0.37000000000000033, 0.37000000000000033, 0.38000000000000034, 0.38000000000000034, 0.39000000000000035, 0.39000000000000035, 0.40000000000000036, 0.40000000000000036, 0.41000000000000036, 0.41000000000000036, 0.4200000000000004, 0.4200000000000004, 0.4300000000000004, 0.4300000000000004, 0.4400000000000004, 0.4400000000000004, 0.4500000000000004, 0.4500000000000004, 0.4600000000000004, 0.4600000000000004, 0.4700000000000004, 0.4700000000000004, 0.4800000000000004, 0.4800000000000004, 0.49000000000000044, 0.49000000000000044, 0.5000000000000004, 0.5000000000000004, 0.5100000000000005, 0.5100000000000005, 0.5200000000000005, 0.5200000000000005, 0.5300000000000005, 0.5300000000000005, 0.5400000000000005, 0.5400000000000005, 0.5500000000000005, 0.5500000000000005, 0.5600000000000005, 0.5600000000000005, 0.5700000000000005, 0.5700000000000005, 0.5800000000000005, 0.5800000000000005, 0.5900000000000005, 0.5900000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [0, 0, 0, 0, 0, 0, 0, 0, 0.0010033019221393213, 0.0010033019221393213, 0.0064027315956306854, 0.0064027315956306854, 0.012244231267488234, 0.012244231267488234, 0.018420793276295137, 0.018420793276295137, 0.024862696388963927, 0.024862696388963927, 0.03152151292858709, 0.03152151292858709, 0.03836198423456763, 0.03836198423456763, 0.04535749432919928, 0.04535749432919928, 0.052487366852998735, 0.052487366852998735, 0.05973516068889902, 0.05973516068889902, 0.06708754722101329, 0.06708754722101329, 0.07453354359512993, 0.07453354359512993, 0.08206397302905936, 0.08206397302905936, 0.08967107503698567, 0.08967107503698567, 0.097348217613046, 0.097348217613046, 0.10508968055872225, 0.10508968055872225, 0.1128904895759976, 0.1128904895759976, 0.12074628730739297, 0.12074628730739297, 0.12865323174145732, 0.12865323174145732, 0.13660791520766832, 0.13660791520766832, 0.14460729908299239, 0.14460729908299239, 0.15264866064229626, 0.15264866064229626, 0.160729549404901, 0.160729549404901, 0.16884775098632515, 0.16884775098632515, 0.17700125693997854, 0.17700125693997854, 0.18518823942280832, 0.18518823942280832, 0.19340702977848592, 0.19340702977848592, 0.2016561003268842, 0.2016561003268842, 0.20993404879688282, 0.20993404879688282, 0.21823958495332987, 0.21823958495332987, 0.22657151905711093, 0.22657151905711093, 0.2349287518661174, 0.2349287518661174, 0.2433102659391202, 0.2433102659391202, 0.2517151180475845, 0.2517151180475845, 0.26014243253486546, 0.26014243253486546, 0.26859139548992933, 0.26859139548992933, 0.2770612496252115, 0.2770612496252115, 0.2855512897665664, 0.2855512897665664, 0.2940608588783491, 0.2940608588783491, 0.30258934455916064, 0.30258934455916064, 0.31113617595421794, 0.31113617595421794, 0.3197008210390826, 0.3197008210390826, 0.3282827842369448, 0.3282827842369448, 0.336881604338058, 0.336881604338058, 0.3454968526954999, 0.3454968526954999, 0.35412813167635165, 0.35412813167635165, 0.36277507335181924, 0.36277507335181924, 0.3714373384138816, 0.3714373384138816, 0.3801146153098792, 0.3801146153098792, 0.3888066195901504, 0.3888066195901504, 0.3975130934675036, 0.3975130934675036, 0.40623380559108624, 0.40623380559108624, 0.4149685510411982, 0.4149685510411982, 0.4237171515559258, 0.4237171515559258, 0.4324794560053063, 0.4324794560053063, 0.44125534113423437, 0.44125534113423437, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173, 0.45004471260173173], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(255, 165, 0, 1.000)", "shape": "linear", "dash": "dot", "width": 1}, "y": [0, 0, 0.02950139541798793, 0.02950139541798793, 0.04757773089412434, 0.04757773089412434, 0.06377392601386153, 0.06377392601386153, 0.07899669807786075, 0.07899669807786075, 0.09359726840436941, 0.09359726840436941, 0.10775576873251187, 0.10775576873251187, 0.12157920672370498, 0.12157920672370498, 0.1351373036110362, 0.1351373036110362, 0.14847848707141306, 0.14847848707141306, 0.16163801576543255, 0.16163801576543255, 0.17464250567080092, 0.17464250567080092, 0.18751263314700148, 0.18751263314700148, 0.20026483931110123, 0.20026483931110123, 0.21291245277898696, 0.21291245277898696, 0.22546645640487034, 0.22546645640487034, 0.2379360269709409, 0.2379360269709409, 0.2503289249630146, 0.2503289249630146, 0.2626517823869543, 0.2626517823869543, 0.2749103194412781, 0.2749103194412781, 0.2871095104240028, 0.2871095104240028, 0.2992537126926074, 0.2992537126926074, 0.31134676825854307, 0.31134676825854307, 0.32339208479233206, 0.32339208479233206, 0.335392700917008, 0.335392700917008, 0.3473513393577042, 0.3473513393577042, 0.35927045059509943, 0.35927045059509943, 0.37115224901367533, 0.37115224901367533, 0.38299874306002196, 0.38299874306002196, 0.3948117605771922, 0.3948117605771922, 0.40659297022151464, 0.40659297022151464, 0.41834389967311636, 0.41834389967311636, 0.43006595120311775, 0.43006595120311775, 0.44176041504667074, 0.44176041504667074, 0.4534284809428897, 0.4534284809428897, 0.46507124813388323, 0.46507124813388323, 0.47668973406088044, 0.47668973406088044, 0.48828488195241615, 0.48828488195241615, 0.4998575674651352, 0.4998575674651352, 0.5114086045100714, 0.5114086045100714, 0.5229387503747892, 0.5229387503747892, 0.5344487102334343, 0.5344487102334343, 0.5459391411216516, 0.5459391411216516, 0.5574106554408401, 0.5574106554408401, 0.5688638240457828, 0.5688638240457828, 0.5802991789609182, 0.5802991789609182, 0.591717215763056, 0.591717215763056, 0.6031183956619428, 0.6031183956619428, 0.614503147304501, 0.614503147304501, 0.6258718683236493, 0.6258718683236493, 0.6372249266481816, 0.6372249266481816, 0.6485626615861193, 0.6485626615861193, 0.6598853846901217, 0.6598853846901217, 0.6711933804098505, 0.6711933804098505, 0.6824869065324974, 0.6824869065324974, 0.6937661944089147, 0.6937661944089147, 0.7050314489588028, 0.7050314489588028, 0.7162828484440752, 0.7162828484440752, 0.7275205439946948, 0.7275205439946948, 0.7387446588657667, 0.7387446588657667, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693, 0.7499552873982693], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 2500, 5000, 7500, 10000, 12500], "range": [-420, 14420], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "2.500×10³", "5.000×10³", "7.500×10³", "1.000×10⁴", "1.250×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Эмпирическая кумулятивная функция распределения", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.2, 0.4, 0.6000000000000001], "range": [-0.02249865862194811, 0.7724539460202174], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.0", "0.2", "0.4", "0.6"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Соотношение отказов", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 861.1875}}
{"id": "id_31bdc872_347d_4f71_ab9c_43147e968075", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1.5}, "y": [0, 0, 0.010000000000000009, 0.010000000000000009, 0.020000000000000018, 0.020000000000000018, 0.030000000000000027, 0.030000000000000027, 0.040000000000000036, 0.040000000000000036, 0.050000000000000044, 0.050000000000000044, 0.06000000000000005, 0.06000000000000005, 0.07000000000000006, 0.07000000000000006, 0.08000000000000007, 0.08000000000000007, 0.09000000000000008, 0.09000000000000008, 0.10000000000000009, 0.10000000000000009, 0.1100000000000001, 0.1100000000000001, 0.1200000000000001, 0.1200000000000001, 0.13000000000000012, 0.13000000000000012, 0.14000000000000012, 0.14000000000000012, 0.15000000000000013, 0.15000000000000013, 0.16000000000000014, 0.16000000000000014, 0.17000000000000015, 0.17000000000000015, 0.18000000000000016, 0.18000000000000016, 0.19000000000000017, 0.19000000000000017, 0.20000000000000018, 0.20000000000000018, 0.2100000000000002, 0.2100000000000002, 0.2200000000000002, 0.2200000000000002, 0.2300000000000002, 0.2300000000000002, 0.2400000000000002, 0.2400000000000002, 0.2500000000000002, 0.2500000000000002, 0.26000000000000023, 0.26000000000000023, 0.27000000000000024, 0.27000000000000024, 0.28000000000000025, 0.28000000000000025, 0.29000000000000026, 0.29000000000000026, 0.30000000000000027, 0.30000000000000027, 0.3100000000000003, 0.3100000000000003, 0.3200000000000003, 0.3200000000000003, 0.3300000000000003, 0.3300000000000003, 0.3400000000000003, 0.3400000000000003, 0.3500000000000003, 0.3500000000000003, 0.3600000000000003, 0.3600000000000003, 0.37000000000000033, 0.37000000000000033, 0.38000000000000034, 0.38000000000000034, 0.39000000000000035, 0.39000000000000035, 0.40000000000000036, 0.40000000000000036, 0.41000000000000036, 0.41000000000000036, 0.4200000000000004, 0.4200000000000004, 0.4300000000000004, 0.4300000000000004, 0.4400000000000004, 0.4400000000000004, 0.4500000000000004, 0.4500000000000004, 0.4600000000000004, 0.4600000000000004, 0.4700000000000004, 0.4700000000000004, 0.4800000000000004, 0.4800000000000004, 0.49000000000000044, 0.49000000000000044, 0.5000000000000004, 0.5000000000000004, 0.5100000000000005, 0.5100000000000005, 0.5200000000000005, 0.5200000000000005, 0.5300000000000005, 0.5300000000000005, 0.5400000000000005, 0.5400000000000005, 0.5500000000000005, 0.5500000000000005, 0.5600000000000005, 0.5600000000000005, 0.5700000000000005, 0.5700000000000005, 0.5800000000000005, 0.5800000000000005, 0.5900000000000005, 0.5900000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.591451467994314e-07, 0.0001133360856561055, 0.000344300224611358, 0.0006618061078108752, 0.0010531316745270199, 0.0015105059325198156, 0.0020284712496024563, 0.002602887885679251, 0.003230456096655673, 0.003908452436452034, 0.0046345700990028564, 0.005406815564561915, 0.00622343821310765, 0.007082880438880361, 0.007983741136845291, 0.008924748256059134, 0.009904737702134262, 0.010922636808204898, 0.011977451170572717, 0.013068254012878644, 0.014194177484238612, 0.015354405459778252, 0.01654816752455864, 0.01777473390122922, 0.01903341113871452, 0.02032353842082897, 0.021644484384529886, 0.02299564436066471, 0.024376437967670497, 0.025786307002222043, 0.027224713581347645, 0.02869113849878842, 0.03018507976491569, 0.03170605130473987, 0.03325358179274402, 0.03482721360667792, 0.03642650188522478, 0.03805101367673133, 0.039700327168074895, 0.04137403098430367, 0.04307172355099128, 0.04479301251234234, 0.04653751419900771, 0.04830485314035026, 0.0500946616165663, 0.05190657924663513, 0.05374025260855526, 0.05559533488874429, 0.05747148555784011, 0.05936837007045378, 0.061285659586696094, 0.0632230307135361, 0.06518016526425717, 0.06715675003445666, 0.06915247659319533, 0.07116704108804199, 0.07320014406288351, 0.07525149028747954, 0.0773207885978385, 0.07940775174657819, 0.08151209626251121, 0.08363354231876428, 0.08577181360880201, 0.08792663722978103, 0.09009774357270957, 0.09228486621893275, 0.09448774184250316, 0.09670611011803358, 0.09893971363366037, 0.10118829780877663, 0.10345161081622051, 0.10572940350862932, 0.10802142934869055, 0.11032744434304394, 0.11264720697960415, 0.11498047816809288, 0.11732702118358301, 0.11968660161287267, 0.12205898730351931, 0.12444394831537542, 0.12684125687448022, 0.129250687329169, 0.13167201610827334, 0.13410502168129235, 0.13654948452042429, 0.139005187064354, 0.14147191368369846, 0.14394945064802003, 0.1464375860943212, 0.1489361099969411, 0.1514448141387781, 0.1539634920837685, 0.1564919391505541, 0.15902995238727716, 0.16157733054744297, 0.16413387406679553, 0.16669938504115392, 0.1692736672051602, 0.17185652591189265, 0.17444776811330012, 0.17704720234141733, 0.17965463869032067, 0.1822698887987888, 0.1848927658336325, 0.18752308447366092, 0.1901606608942533, 0.19280531275250604, 0.1954568591729276, 0.19811512073365423, 0.2007799194531615, 0.2034510787774481, 0.20612842356766808, 0.20881178008819165, 0.2115009759950724, 0.2141958403249026, 0.21689620348403768, 0.21960189723817208, 0.2223127547022504, 0.22502861033069718, 0.22774929990795062, 0.23047466053928564, 0.23320453064191246, 0.23593874993633818, 0.2386771594379775, 0.24141960144900254, 0.24416591955041883, 0.24691595859435736, 0.24966956469657248, 0.2524265852291353, 0.25518686881331376, 0.25795026531262955, 0.26071662582608446, 0.2634858026815471, 0.26625764942929186, 0.2690320208356844, 0.27180877287700383, 0.27458776273339747, 0.27736884878295964, 0.2801518905959291, 0.28293674892899956, 0.2857232857197364, 0.28851136408109546, 0.2913008482960371, 0.29409160381223276, 0.29688349723685675, 0.29967639633146054, 0.3024701700069243, 0.30526468831848164, 0.3080598224608139, 0.31085544476321014, 0.3136514286847874, 0.3164476488097717, 0.3192439808428317, 0.3220403016044653, 0.3248364890264343, 0.3276324221472455, 0.33042798110767346, 0.33322304714632467, 0.3360175025952382, 0.3388112308755229, 0.34160411649302563, 0.3443960450340314, 0.3471869031609914, 0.34997657860827713, 0.3527649601779594, 0.35555193773560895, 0.3583374022061191, 0.3611212455695455, 0.3639033608569652, 0.3666836421463497, 0.3694619845584537, 0.3722382842527154, 0.37501243842316934, 0.37778434529436894, 0.3805539041173178, 0.3833210151654094, 0.38608557973037233, 0.38884750011822317, 0.39160667964522095, 0.3943630226338286, 0.39711643440867406, 0.3998668212925158, 0.40261409060220715, 0.4053581506446627, 0.408098910712823, 0.4108362810816189, 0.4135701730039332, 0.41630049870656055, 0.4190271713861646, 0.4217501052052299, 0.42446921528801207, 0.42718441771648136, 0.42989562952626226, 0.4326027687025672, 0.4353057541761251, 0.43800450581910205, 0.44069894444101787, 0.4433889917846532, 0.4460745705219515, 0.4487556042499122, 0.45143201748647716, 0.45410373566640855, 0.4567706851371589, 0.45943279315473284, 0.46208998787954025, 0.46474219837224134, 0.4673893545895819, 0.4700313873802214, 0.47266822848055, 0.47529981051049924, 0.477926066969341, 0.4805469322314795, 0.4831623415422326, 0.4857722310136054, 0.4883765376200534, 0.4909751991942376, 0.49356815442276997, 0.4961553428419496, 0.49873670483349086, 0.5013121816202415, 0.5038817152618926, 0.506445248650679, 0.5090027255070726, 0.5115540903754645, 0.5140992886198418, 0.5166382664194527, 0.5191709707644659, 0.5216973494516213, 0.5242173510798714, 0.5267309250460166, 0.5292380215403318, 0.5317385915421862, 0.5342325868156547, 0.5367199599051231, 0.5392006641308862, 0.5416746535847388, 0.5441418831255594, 0.5466023083748899, 0.5490558857125054, 0.5515025722719819, 0.553942325936255, 0.556375105333175, 0.5588008698310558, 0.561219579534219, 0.5636311952785322, 0.5660356786269445, 0.5684329918650151, 0.5708230979964396, 0.5732059607385716, 0.5755815445179402, 0.5779498144657644, 0.5803107364134648, 0.5826642768881705, 0.585010403108225, 0.5873490829786898, 0.5896802850868428, 0.5920039786976782, 0.5943201337494031, 0.596628720848932, 0.5989297112673815, 0.6012230769355619, 0.6035087904394705, 0.6057868250157827, 0.6080571545473437, 0.6103197535586593, 0.6125745972113885, 0.6148216612998348, 0.61706092224644, 0.6192923570972779, 0.6215159435175502, 0.6237316597870828, 0.6259394847958257, 0.6281393980393528, 0.6303313796143666, 0.632515410214203, 0.634691471124341, 0.6368595442179141, 0.6390196119512261, 0.6411716573592701, 0.6433156640512512, 0.6454516162061139, 0.6475794985680736, 0.6496992964421525, 0.6518109956897213, 0.6539145827240447, 0.6560100445058337, 0.6580973685388024, 0.6601765428652322, 0.66224755606154, 0.6643103972338549, 0.6663650560136001, 0.6684115225530822, 0.6704497875210882, 0.6724798420984888, 0.6745016779738494, 0.6765152873390499, 0.6785206628849119, 0.6805177977968335, 0.682506685750434, 0.6844873209072064, 0.6864596979101789, 0.688423811879586, 0.6903796584085484, 0.6923272335587636, 0.6942665338562047, 0.6961975562868308, 0.6981202982923069, 0.7000347577657342, 0.7019409330473912, 0.7038388229204862, 0.7057284266069198, 0.7076097437630601, 0.7094827744755279, 0.7113475192569942, 0.7132039790419911, 0.7150521551827311, 0.716892049444943, 0.7187236640037169, 0.7205470014393635, 0.7223620647332858, 0.724168857263864, 0.7259673828023531, 0.7277576455087942, 0.7295396499279394, 0.7313134009851907, 0.7330789039825515, 0.7348361645945934, 0.7365851888644372, 0.7383259831997477, 0.7400585543687423, 0.7417829094962167, 0.7434990560595827, 0.7452070018849228, 0.7469067551430595, 0.7485983243456389, 0.7502817183412318, 0.7519569463114482, 0.7536240177670687, 0.7552829425441916, 0.756933730800396, 0.7585763930109212, 0.7602109399648612, 0.7618373827613774, 0.7634557328059264, 0.7650660018065052, 0.7666682017699127, 0.7682623449980283, 0.7698484440841072, 0.7714265119090936, 0.7729965616379502, 0.7745586067160053, 0.7761126608653175, 0.7776587380810578, 0.7791968526279098, 0.7807270190364868, 0.7822492520997667, 0.7837635668695463, 0.785269978652912, 0.7867685030087295, 0.7882591557441507, 0.7897419529111407, 0.7912169108030214, 0.7926840459510338, 0.7941433751209206, 0.7955949153095244, 0.7970386837414075, 0.7984746978654886, 0.7999029753516992, 0.8013235340876579, 0.8027363921753652, 0.804141567927916, 0.8055390798662319, 0.8069289467158118, 0.8083111874035032, 0.8096858210542905, 0.8110528669881055, 0.8124123447166545, 0.8137642739402657, 0.8151086745447578, 0.8164455665983252, 0.8177749703484446, 0.8190969062188006, 0.8204113948062309, 0.8217184568776918, 0.8230181133672421, 0.8243103853730475, 0.8255952941544048, 0.8268728611287861, 0.8281431078689017, 0.8294060560997839, 0.83066172769589, 0.8319101446782257, 0.8331513292114878, 0.8343853036012274, 0.835612090291032, 0.836831711859729, 0.8380441910186078, 0.8392495506086622, 0.8404478135978535, 0.8416390030783918, 0.8428231422640401, 0.8440002544874348, 0.8451703631974289, 0.8463334919564544, 0.8474896644379037, 0.8486389044235327, 0.8497812358008818, 0.8509166825607185, 0.8520452687944992, 0.8531670186918505, 0.8542819565380722, 0.8553901067116565, 0.8564914936818319, 0.8575861420061228, 0.8586740763279315, 0.859755321374138, 0.8608299019527218, 0.8618978429504014, 0.8629591693302949, 0.8640139061295997, 0.8650620784572917, 0.8661037114918446, 0.867138830478969, 0.86816746072937, 0.8691896276165256, 0.8702053565744837, 0.8712146730956793, 0.8722176027287701, 0.873214171076493, 0.8742044037935383, 0.8751883265844446, 0.876165965201512, 0.8771373454427351, 0.8781024931497551, 0.8790614342058302, 0.8800141945338267, 0.880960800094228, 0.881901276883162, 0.8828356509304496, 0.8837639482976695, 0.8846861950762437, 0.8856024173855411, 0.8865126413709995, 0.8874168932022668, 0.8883151990713609, 0.8892075851908472, 0.8900940777920355, 0.8909747031231954, 0.8918494874477894, 0.8927184570427245, 0.893581638196622, 0.8944390572081066, 0.8952907403841112, 0.8961367140382024, 0.8969770044889218, 0.8978116380581469, 0.8986406410694684, 0.8994640398465865, 0.9002818607117241, 0.9010941299840577, 0.9019008739781664, 0.9027021190024977, 0.9034978913578512, 0.904288217335879, 0.9050731232176048, 0.9058526352719578, 0.9066267797543265, 0.9073955829051268, 0.9081590709483897, 0.9089172700903633, 0.9096702065181339, 0.9104179063982619, 0.911160395875436, 0.9118977010711425, 0.9126298480823521, 0.9133568629802227, 0.9140787718088184, 0.9147956005838449, 0.9155073752914014, 0.9162141218867477, 0.9169158662930876, 0.9176126344003694, 0.9183044520641002, 0.9189913451041769, 0.9196733393037335, 0.9203504604080028, 0.9210227341231941, 0.9216901861153866, 0.9223528420094368, 0.9230107273879034, 0.9236638677899848, 0.9243122887104733, 0.9249560155987238, 0.9255950738576366, 0.9262294888426568, 0.9268592858607858, 0.9274844901696101, 0.9281051269763422, 0.9287212214368777, 0.9293327986548657], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "dash", "width": 1}, "y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0005954518074351781, 0.001644655763986723, 0.0027212908065166255, 0.0038249782796023896, 0.004955347200790425, 0.0061120338684333975, 0.007294681497743233, 0.008502939882596525, 0.009736465080883688, 0.010994919121417424, 0.012277969730614263, 0.013585290077337567, 0.014916558534446317, 0.01627145845573201, 0.017649677967048555, 0.019050909770550142, 0.020474850961050145, 0.021921202853601676, 0.023389670821479677, 0.024879964143814534, 0.026391795862191703, 0.02792488264558929, 0.029478944663076198, 0.03105370546374263, 0.03264889186337504, 0.03426423383742759, 0.03589946441987682, 0.037554319607577796, 0.039228538269769825, 0.040921862062404904, 0.04263403534699835, 0.04436480511372071, 0.04611392090847227, 0.047881134763698846, 0.04966620113272506, 0.051468876827396814, 0.05328892095883864, 0.05512609488114553, 0.05698016213784063, 0.05885088841094087, 0.06073804147248414, 0.06264139113838002, 0.06456070922445567, 0.06649576950457652, 0.0684463476707284, 0.07041222129495577, 0.07239316979305657, 0.07438897438994037, 0.07639941808656202, 0.07842428562834873, 0.08046336347504307, 0.08251643977188837, 0.08458330432208856, 0.086663748560477, 0.08875756552833347, 0.09086454984929189, 0.09298449770628385, 0.09511720681946688, 0.09726247642508881, 0.09942010725524215, 0.10158990151846527, 0.1037716628811487, 0.10596519644970853, 0.10817030875348889, 0.11038680772835928, 0.11261450270097337, 0.11485320437365754, 0.11710272480989987, 0.1193628774204106, 0.12163347694972734, 0.12391433946333963, 0.12620528233530814, 0.12850612423635607, 0.1308166851224093, 0.1331367862235664, 0.1354662500334765, 0.13780490029910764, 0.14015256201088633, 0.14250906139319192, 0.144874225895189, 0.14724788418198165, 0.14962986612607607, 0.15202000279913558, 0.1544181264640152, 0.15682407056706366, 0.15923766973067838, 0.16165875974610366, 0.16408717756645969, 0.16652276129999138, 0.16896535020352765, 0.17141478467614024, 0.17387090625299348, 0.1763335575993749, 0.1788025825048999, 0.1812778258778796, 0.1837591337398466, 0.1862463532202292, 0.1887393325511677, 0.19123792106246557, 0.19374196917666953, 0.19625132840427026, 0.1987658513390207, 0.20128539165336273, 0.20380980409395968, 0.2063389444773267, 0.20887266968555623, 0.21141083766213176, 0.2139533074078261, 0.2164999389766793, 0.21905059347205308, 0.22160513304275478, 0.22416342087923033, 0.22672532120982009, 0.22929069929707438, 0.23185942143412602, 0.23443135494111528, 0.2370063681616654, 0.23958433045940386, 0.2421651122145287, 0.2447485848204145, 0.2473346206802579, 0.2499230932037574, 0.2525138768038276, 0.2551068468933435, 0.2577018798819132, 0.26029885317267754, 0.26289764515913305, 0.2654981352219781, 0.2681002037259781, 0.2707037320168505, 0.273308602418165, 0.2759146982282604, 0.27852190371717284, 0.28113010412357753, 0.28373918565174017, 0.28634903546847706, 0.28895954170012317, 0.29157059342950636, 0.29418208069292706, 0.29679389447714055, 0.29940592671634436, 0.3020180702891648, 0.3046302190156458, 0.30724226765423723, 0.3098541118987821, 0.31246564837550056, 0.31507677463997324, 0.31768738917411843, 0.3202973913831668, 0.3229066815926298, 0.3255151610452629, 0.3281227318980218, 0.33072929721901245, 0.33333476098443227, 0.33593902807550424, 0.33854200427540204, 0.34114359626616564, 0.34374371162560774, 0.34634225882421005, 0.3489391472220096, 0.3515342870654732, 0.3541275894843623, 0.3567189664885849, 0.3593083309650373, 0.36189559667443216, 0.3644806782481165, 0.3670634911848747, 0.36964395184772114, 0.3722219774606787, 0.37479748610554475, 0.37737039671864364, 0.3799406290875658, 0.38250810384789524, 0.38507274247991974, 0.3876344673053323, 0.3901932014839144, 0.3927488690102088, 0.39530139471017695, 0.39785070423784363, 0.40039672407192634, 0.40293938151245307, 0.40547860467736435, 0.4080143224991028, 0.41054646472118816, 0.41307496189477944, 0.4155997453752235, 0.4181207473185885, 0.42063790067818674, 0.42315113920108144, 0.4256603974245821, 0.42816561067272596, 0.4306667150527458, 0.4331636474515268, 0.43565634553204846, 0.43814474772981515, 0.4406287932492738, 0.4431084220602191, 0.44558357489418704, 0.44805419324083573, 0.4505202193443149, 0.4529815961996233, 0.45543826754895544, 0.4578901778780357, 0.46033727241244227, 0.4627794971139207, 0.4652167986766846, 0.467649124523708, 0.47007642280300693, 0.47249864238390993, 0.4749157328533199, 0.47732764451196474, 0.47973432837064073, 0.48213573614644484, 0.48453182025899894, 0.48692253382666506, 0.48930783066275224, 0.49168766527171454, 0.4940619928453422, 0.4964307692589437, 0.49879395106752167, 0.5011514955019396, 0.5035033604650839, 0.5058495045280165, 0.5081898869261237, 0.5105244675552563, 0.5128532069678654, 0.515176066369131, 0.5174930076130864, 0.5198039931987364, 0.5221089862661712, 0.5244079505926746, 0.5267008505888288, 0.5289876512946137, 0.5312683183755043, 0.5335428181185612, 0.5358111174285214, 0.538073183823882, 0.5403289854329851, 0.5425784909900961, 0.5448216698314826, 0.5470584918914888, 0.5492889276986098, 0.5515129483715641, 0.5537305256153634, 0.5559416317173822, 0.5581462395434266, 0.5603443225338031, 0.5625358546993849, 0.5647208106176808, 0.5668991654289021, 0.5690708948320318, 0.5712359750808926, 0.573394382980217, 0.5755460958817191, 0.5776910916801659, 0.5798293488094519, 0.5819608462386759, 0.5840855634682182, 0.5862034805258216, 0.588314577962675, 0.5904188368494995, 0.5925162387726378, 0.594606765830147, 0.5966904006278946, 0.5987671262756599, 0.6008369263832367, 0.6028997850565436, 0.6049556868937365, 0.6070046169813266, 0.6090465608903034, 0.6110815046722637, 0.6131094348555447, 0.6151303384413636, 0.6171442028999631, 0.6191510161667632, 0.6211507666385186, 0.6231434431694836, 0.6251290350675824, 0.6271075320905893, 0.6290789244423116, 0.6310432027687845, 0.6330003581544698, 0.6349503821184661, 0.6368932666107234, 0.6388290040082685, 0.6407575871114374, 0.6426790091401172, 0.6445932637299964, 0.6465003449288235, 0.6484002471926764, 0.65029296538224, 0.6521784947590935, 0.6540568309820071, 0.6559279701032499, 0.6577919085649064, 0.6596486431952042, 0.6614981712048519, 0.6633404901833869, 0.6651755980955356, 0.6670034932775832, 0.6688241744337547, 0.6706376406326076, 0.6724438913034358, 0.6742429262326861, 0.6760347455603842, 0.6778193497765745, 0.6795967397177712, 0.6813669165634226, 0.6831298818323858, 0.6848856373794152, 0.6866341853916642, 0.6883755283851986, 0.690109669201522, 0.6918366110041174, 0.6935563572749984, 0.6952689118112765, 0.6969742787217397, 0.6986724624234464, 0.7003634676383316, 0.7020472993898277, 0.7037239629994991, 0.705393464083691, 0.7070558085501915, 0.7087110025949087, 0.7103590526985627, 0.711999965623391, 0.7136337484098686, 0.7152604083734434, 0.7168799531012864, 0.7184923904490567, 0.7200977285376801, 0.7216959757501451, 0.7232871407283126, 0.7248712323697417, 0.7264482598245295, 0.7280182324921682, 0.7295811600184158, 0.7311370522921844, 0.7326859194424427, 0.7342277718351344, 0.7357626200701136, 0.7372904749780945, 0.7388113476176186, 0.7403252492720367, 0.7418321914465078, 0.7433321858650144, 0.7448252444673931, 0.7463113794063818, 0.7477906030446848, 0.7492629279520514, 0.7507283669023743, 0.7521869328708015, 0.7536386390308671, 0.7550834987516375, 0.7565215255948748, 0.7579527333122168, 0.7593771358423733, 0.7607947473083404, 0.7622055820146305, 0.7636096544445196, 0.7650069792573123, 0.7663975712856217, 0.7677814455326692, 0.7691586171695989, 0.7705291015328102, 0.7718929141213072, 0.7732500705940658, 0.7746005867674164, 0.775944478612446, 0.7772817622524155, 0.7786124539601953, 0.7799365701557177, 0.7812541274034468, 0.7825651424098653, 0.7838696320209794, 0.7851676132198392, 0.786459103124079, 0.7877441189834717, 0.7890226781775042, 0.7902947982129661, 0.7915604967215597, 0.7928197914575237, 0.7940727002952767, 0.795319241227077, 0.7965594323606994, 0.7977932919171306, 0.7990208382282804, 0.8002420897347104, 0.8014570649833815, 0.8026657826254167, 0.8038682614138816, 0.805064520201584, 0.8062545779388873, 0.8074384536715447, 0.8086161665385478, 0.8097877357699941, 0.8109531806849702, 0.812112520689454, 0.8132657752742327, 0.814412964012837, 0.8155541065594948, 0.8166892226471001, 0.8178183320851993, 0.8189414547579945, 0.8200586106223641, 0.8211698197058996, 0.8222751021049601, 0.823374477982743, 0.8244679675673715, 0.8255555911499993, 0.8266373690829322, 0.8277133217777651, 0.8287834697035376, 0.8298478333849041, 0.8309064334003229, 0.8319592903802592, 0.8330064250054068, 0.8340478580049244, 0.8350836101546908, 0.8361137022755728, 0.8371381552317135, 0.8381569899288333, 0.8391702273125495, 0.8401778883667117, 0.841179994111751, 0.8421765656030493, 0.8431676239293209, 0.844153190211012, 0.8451332855987161, 0.8461079312716046, 0.8470771484358719, 0.8480409583232007, 0.8489993821892375, 0.8499524413120874, 0.8509001569908226, 0.8518425505440078, 0.85277964330824, 0.8537114566367039, 0.8546380118977426, 0.8555593304734442, 0.8564754337582431, 0.8573863431575355, 0.8582920800863119, 0.8591926659678027, 0.8600881222321409, 0.8609784703150367, 0.8618637316564702, 0.862743927699396, 0.8636190798884645, 0.8644892096687565], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": false, "mode": "lines", "name": "", "legendgroup": "", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "dash", "width": 1}, "y": [0.00010110050028680378, 0.0028069289840776663, 0.005038551599275708, 0.007169005198265643, 0.00926014234734245, 0.011337154697927681, 0.013413023898230136, 0.015495302093814011, 0.017588714575326427, 0.019696357596524324, 0.021820319316969348, 0.023962030223440435, 0.026122473940782626, 0.028302320552025112, 0.030502014367086914, 0.03272183364106916, 0.03496193234208714, 0.03722237005424747, 0.039503133818739114, 0.04180415436499686, 0.0441253183562464, 0.046466477751280766, 0.04882745704571771, 0.05120805893136983, 0.05360806876022778, 0.0560272580945792, 0.05846538755111927, 0.060922209094418214, 0.06339746789718768, 0.06589090385703691, 0.06840225283886607, 0.07093124769666963, 0.07347761911690512, 0.07604109631671876, 0.07862140762350273, 0.08121828095697177, 0.08383144423081743, 0.08646062568774865, 0.08910555417915678, 0.09176595939859336, 0.09444157207660736, 0.0971321241431686, 0.09983734886283113, 0.10255698094692234, 0.10529075664633117, 0.10803841382788554, 0.11079969203682843, 0.11357433254750476, 0.11636207840404068, 0.11916267445252314, 0.121975867365957, 0.12480140566308548, 0.12763903972199772, 0.13048852178931092, 0.13334960598560025, 0.13622204830765058, 0.1391056066280238, 0.14200004069236255, 0.14490511211479332, 0.14782058437173895, 0.15074622279440816, 0.153681794560191, 0.1566270686831577, 0.15958181600383003, 0.16254580917837058, 0.16551882266731538, 0.16850063272395618, 0.17149101738246547, 0.17448975644584108, 0.17749663147373873, 0.1805114257702493, 0.18353392437166935, 0.1865639140343049, 0.18960118322234526, 0.19264552209583324, 0.1956967224987582, 0.1987545779472892, 0.20181888361816755, 0.2048894363372688, 0.20796603456834595, 0.21104847840196211, 0.2141365695446173, 0.2172301113080744, 0.22032890859888585, 0.2234327679081235, 0.22654149730131118, 0.2296549064085583, 0.23277280641489453, 0.23589501005080177, 0.2390213315829413, 0.2421515868050721, 0.24528559302915698, 0.24842316907665252, 0.2515641352699778, 0.25470831342415756, 0.2578555268386353, 0.26100560028925124, 0.26415836002038007, 0.2673136337372233, 0.2704712505982515, 0.2736310412077916, 0.27679283760875295, 0.27995647327548906, 0.28312178310678804, 0.2862886034189884, 0.2894567719392147, 0.2926261277987282, 0.2957965115263883, 0.29896776504221967, 0.3021397316510809, 0.305312256036431, 0.30848518425418747, 0.31165836372667477, 0.3148316432366559, 0.3180048729214459, 0.321177904267102, 0.32435059010268663, 0.32752278459460094, 0.3306943432409838, 0.33386512286617387, 0.33703498161523165, 0.3402037789485168, 0.34337137563632025, 0.3465376337535457, 0.3497024166744387, 0.35286558906736115, 0.3560270168896071, 0.3591865673822586, 0.3623441090650787, 0.3654995117314385, 0.36865264644327744, 0.3718033855260928, 0.3749516025639586, 0.3780971723945685, 0.38123997110430513, 0.3843798760233293, 0.38751676572069127, 0.3906505199994596, 0.3937810198918668, 0.39690814765447147, 0.4000317867633325, 0.4031518219091974, 0.40626813899269926, 0.40938062511956563, 0.4124891685958339, 0.4155936589230745, 0.41869398679361935, 0.42179004408579557, 0.4248817238591623, 0.42796892034975076, 0.4310515289653045, 0.43412944628052275, 0.4372025700323006, 0.4402707991149709, 0.4433340335755419, 0.4463921746089347, 0.44944512455321517, 0.45249278688482325, 0.45553506621379714, 0.4585718682789927, 0.4616030999432965, 0.4646286691888324, 0.46764848511216267, 0.4706624579194799, 0.47367049892179275, 0.4766725205301026, 0.47966843625057276, 0.48265816067968714, 0.48564160949940166, 0.48861869947228487, 0.4915893484366495, 0.4945534753016734, 0.4975110000425111, 0.5004618436953944, 0.5034059283527225, 0.5063431771581413, 0.5092735143016116, 0.5121968650144683, 0.5151131555644638, 0.5180223132508067, 0.5209242663991831, 0.5238189443567711, 0.5267062774872415, 0.5295861971657478, 0.5324586357739058, 0.5353235266947607, 0.5381808043077432, 0.5410304039836147, 0.5438722620794021, 0.5467063159333192, 0.5495325038596798, 0.552350765143798, 0.5551610400368787, 0.5579632697508972, 0.5607573964534681, 0.5635433632627036, 0.5663211142420626, 0.5690905943951879, 0.5718517496607362, 0.5746045269071945, 0.5773488739276914, 0.5800847394347952, 0.5828120730553054, 0.5855308253250334, 0.5882409476835763, 0.5909423924690806, 0.5936351129129982, 0.596319063134835, 0.59899419813689, 0.6016604737989889, 0.6043178468732088, 0.6069662749785967, 0.6096057165958803, 0.6122361310621736, 0.6148574785656746, 0.6174697201403587, 0.6200728176606652, 0.6226667338361781, 0.625251432206303, 0.6278268771349382, 0.6303930338051416, 0.6329498682137922, 0.63549734716625, 0.6380354382710093, 0.6405641099343513, 0.6430833313549909, 0.6455930725187231, 0.6480933041930657, 0.6505839979218992, 0.6530651260201068, 0.6555366615682106, 0.6579985784070079, 0.6604508511322065, 0.6628934550890581, 0.6653263663669929, 0.667749561794254, 0.6701630189325304, 0.672566716071593, 0.6749606322239294, 0.6773447471193816, 0.6797190411997841, 0.6820834956136043, 0.6844380922105848, 0.6867828135363895, 0.6891176428272493, 0.6914425640046151, 0.6937575616698111, 0.6960626210986922, 0.6983577282363074, 0.7006428696915654, 0.7029180327319056, 0.7051832052779741, 0.7074383758983052, 0.7096835338040078, 0.7119186688434589, 0.714143771497001, 0.7163588328716484, 0.7185638446957991, 0.7207587993139541, 0.7229436896814431, 0.725118509359159, 0.7272832525083003, 0.7294379138851206, 0.7315824888356883, 0.7337169732906536, 0.7358413637600248, 0.7379556573279551, 0.740059851647538, 0.7421539449356122, 0.7442379359675788, 0.746311824072226, 0.7483756091265675, 0.7504292915506892, 0.7524728723026095, 0.7545063528731497, 0.7565297352808166, 0.7585430220666972, 0.7605462162893659, 0.7625393215198037, 0.7645223418363312, 0.7664952818195532, 0.7684581465473185, 0.7704109415896914, 0.7723536730039384, 0.7742863473295282, 0.776208971583146, 0.7781215532537228, 0.7800241002974793, 0.7819166211329838, 0.7837991246362271, 0.7856716201357113, 0.7875341174075546, 0.7893866266706123, 0.7912291585816141, 0.7930617242303166, 0.7948843351346732, 0.7966970032360207, 0.7984997408942821, 0.8002925608831873, 0.8020754763855108, 0.803848500988326, 0.8056116486782794, 0.8073649338368798, 0.809108371235808, 0.8108419760322436, 0.8125657637642096, 0.8142797503459379, 0.8159839520632503, 0.8176783855689609, 0.8193630678782974, 0.8210380163643402, 0.8227032487534823, 0.8243587831209087, 0.8260046378860939, 0.8276408318083223, 0.8292673839822255, 0.8308843138333424, 0.8324916411136973, 0.8340893858974003, 0.8356775685762682, 0.8372562098554643, 0.8388253307491614, 0.8403849525762248, 0.8419350969559157, 0.8434757858036183, 0.8450070413265843, 0.8465288860197033, 0.848041342661292, 0.8495444343089061, 0.8510381842951731, 0.852522616223649, 0.8539977539646956, 0.8554636216513796, 0.8569202436753955, 0.8583676446830093, 0.8598058495710262, 0.8612348834827791, 0.862654771804141, 0.8640655401595597, 0.8654672144081157, 0.8668598206396023, 0.8682433851706289, 0.8696179345407477, 0.8709834955086029, 0.872340095048104, 0.8736877603446211, 0.8750265187912046, 0.8763563979848276, 0.8776774257226516, 0.8789896299983171, 0.8802930389982558, 0.8815876810980274, 0.8828735848586797, 0.8841507790231335, 0.8854192925125893, 0.8866791544229589, 0.8879303940213213, 0.8891730407424014, 0.8904071241850732, 0.8916326741088862, 0.8928497204306172, 0.8940582932208442, 0.8952584227005457, 0.8964501392377238, 0.8976334733440504, 0.8988084556715386, 0.8999751170092376, 0.901133488279952, 0.9022836005369842, 0.9034254849609027, 0.9045591728563329, 0.9056846956487727, 0.9068020848814322, 0.9079113722120976, 0.9090125894100184, 0.9101057683528201, 0.9111909410234403, 0.9122681395070881, 0.9133373959882292, 0.9143987427475938, 0.9154522121592091, 0.9164978366874561, 0.9175356488841493, 0.918565681385642, 0.9195879669099546, 0.9206025382539267, 0.9216094282903938, 0.9226086699653878, 0.9236002962953607, 0.9245843403644334, 0.9255608353216663, 0.9265298143783568, 0.9274913108053571, 0.9284453579304182, 0.9293919891355562, 0.9303312378544437, 0.9312631375698226, 0.9321877218109427, 0.9331050241510221, 0.9340150782047322, 0.9349179176257059, 0.935813576104068, 0.9367020873639906, 0.9375834851612712, 0.9384578032809326, 0.9393250755348487, 0.9401853357593903, 0.9410386178130966, 0.9418849555743678, 0.9427243829391815, 0.943556933818832, 0.9443826421376913, 0.9452015418309945, 0.9460136668426468, 0.9468190511230528, 0.9476177286269688, 0.9484097333113778, 0.9491950991333864, 0.9499738600481439, 0.9507460500067839, 0.951511702954388, 0.9522708528279715, 0.9530235335544912, 0.9537697790488747, 0.9545096232120719, 0.9552430999291283, 0.9559702430672797, 0.9566910864740685, 0.9574056639754819, 0.9581140093741104, 0.9588161564473294, 0.9595121389455004, 0.9602019905901936, 0.9608857450724332, 0.961563436050961, 0.9622350971505228, 0.9629007619601755, 0.9635604640316136, 0.9642142368775176, 0.9648621139699223, 0.9655041287386058, 0.9661403145694982, 0.9667707048031117, 0.9673953327329889, 0.968014231604174, 0.9686274346117003, 0.9692349748991008, 0.9698368855569367, 0.970433199621346, 0.9710239500726119, 0.9716091698337491, 0.972188891769113, 0.972763148683023, 0.9733319733184103, 0.9738953983554796, 0.9744534564103942, 0.9750061800339767, 0.97555360171043, 0.9760957538560767, 0.9766326688181161, 0.9771643788734007, 0.9776909162272304, 0.9782123130121648, 0.978728601286854, 0.9792398130348867, 0.9797459801636564, 0.9802471345032462, 0.9807433078053291, 0.9812345317420885, 0.9817208379051537, 0.9822022578045543, 0.9826788228676906, 0.9831505644383224, 0.9836175137755734, 0.9840797020529533, 0.984537160357396, 0.9849899196883158, 0.9854380109566778, 0.9858814649840866, 0.9863203125018908, 0.9867545841503034, 0.9871843104775382, 0.9876095219389628, 0.9880302488962664, 0.9884465216166445, 0.9888583702719979, 0.9892658249381483, 0.9896689155940692, 0.990067672121131, 0.9904621243023625, 0.9908523018217265, 0.9912382342634112, 0.9916199511111357, 0.9919974817474705, 0.9923708554531726, 0.9927401014065349, 0.99310524868275, 0.9934663262532883, 0.993823362985291, 0.9941763876409749], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 5000, 10000, 15000, 20000, 25000], "range": [0, 28000], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "5.00×10³", "1.00×10⁴", "1.50×10⁴", "2.00×10⁴", "2.50×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Модели: Эмпирическая и Вейбулла", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.2, 0.4, 0.6000000000000001, 0.8, 1], "range": [0, 1], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.0", "0.2", "0.4", "0.6", "0.8", "1.0"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Вероятность отказа", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 861.1875}}
{"id": "id_f3122070_64ca_4c4b_ad9a_293ef19ea856", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": true, "mode": "lines", "name": "Эмпирическая", "legendgroup": "Эмпирическая", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1.5}, "y": [0, 0, 0.010000000000000009, 0.010000000000000009, 0.020000000000000018, 0.020000000000000018, 0.030000000000000027, 0.030000000000000027, 0.040000000000000036, 0.040000000000000036, 0.050000000000000044, 0.050000000000000044, 0.06000000000000005, 0.06000000000000005, 0.07000000000000006, 0.07000000000000006, 0.08000000000000007, 0.08000000000000007, 0.09000000000000008, 0.09000000000000008, 0.10000000000000009, 0.10000000000000009, 0.1100000000000001, 0.1100000000000001, 0.1200000000000001, 0.1200000000000001, 0.13000000000000012, 0.13000000000000012, 0.14000000000000012, 0.14000000000000012, 0.15000000000000013, 0.15000000000000013, 0.16000000000000014, 0.16000000000000014, 0.17000000000000015, 0.17000000000000015, 0.18000000000000016, 0.18000000000000016, 0.19000000000000017, 0.19000000000000017, 0.20000000000000018, 0.20000000000000018, 0.2100000000000002, 0.2100000000000002, 0.2200000000000002, 0.2200000000000002, 0.2300000000000002, 0.2300000000000002, 0.2400000000000002, 0.2400000000000002, 0.2500000000000002, 0.2500000000000002, 0.26000000000000023, 0.26000000000000023, 0.27000000000000024, 0.27000000000000024, 0.28000000000000025, 0.28000000000000025, 0.29000000000000026, 0.29000000000000026, 0.30000000000000027, 0.30000000000000027, 0.3100000000000003, 0.3100000000000003, 0.3200000000000003, 0.3200000000000003, 0.3300000000000003, 0.3300000000000003, 0.3400000000000003, 0.3400000000000003, 0.3500000000000003, 0.3500000000000003, 0.3600000000000003, 0.3600000000000003, 0.37000000000000033, 0.37000000000000033, 0.38000000000000034, 0.38000000000000034, 0.39000000000000035, 0.39000000000000035, 0.40000000000000036, 0.40000000000000036, 0.41000000000000036, 0.41000000000000036, 0.4200000000000004, 0.4200000000000004, 0.4300000000000004, 0.4300000000000004, 0.4400000000000004, 0.4400000000000004, 0.4500000000000004, 0.4500000000000004, 0.4600000000000004, 0.4600000000000004, 0.4700000000000004, 0.4700000000000004, 0.4800000000000004, 0.4800000000000004, 0.49000000000000044, 0.49000000000000044, 0.5000000000000004, 0.5000000000000004, 0.5100000000000005, 0.5100000000000005, 0.5200000000000005, 0.5200000000000005, 0.5300000000000005, 0.5300000000000005, 0.5400000000000005, 0.5400000000000005, 0.5500000000000005, 0.5500000000000005, 0.5600000000000005, 0.5600000000000005, 0.5700000000000005, 0.5700000000000005, 0.5800000000000005, 0.5800000000000005, 0.5900000000000005, 0.5900000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Вейбулла", "legendgroup": "Вейбулла", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.591451467994314e-07, 0.0001133360856561055, 0.000344300224611358, 0.0006618061078108752, 0.0010531316745270199, 0.0015105059325198156, 0.0020284712496024563, 0.002602887885679251, 0.003230456096655673, 0.003908452436452034, 0.0046345700990028564, 0.005406815564561915, 0.00622343821310765, 0.007082880438880361, 0.007983741136845291, 0.008924748256059134, 0.009904737702134262, 0.010922636808204898, 0.011977451170572717, 0.013068254012878644, 0.014194177484238612, 0.015354405459778252, 0.01654816752455864, 0.01777473390122922, 0.01903341113871452, 0.02032353842082897, 0.021644484384529886, 0.02299564436066471, 0.024376437967670497, 0.025786307002222043, 0.027224713581347645, 0.02869113849878842, 0.03018507976491569, 0.03170605130473987, 0.03325358179274402, 0.03482721360667792, 0.03642650188522478, 0.03805101367673133, 0.039700327168074895, 0.04137403098430367, 0.04307172355099128, 0.04479301251234234, 0.04653751419900771, 0.04830485314035026, 0.0500946616165663, 0.05190657924663513, 0.05374025260855526, 0.05559533488874429, 0.05747148555784011, 0.05936837007045378, 0.061285659586696094, 0.0632230307135361, 0.06518016526425717, 0.06715675003445666, 0.06915247659319533, 0.07116704108804199, 0.07320014406288351, 0.07525149028747954, 0.0773207885978385, 0.07940775174657819, 0.08151209626251121, 0.08363354231876428, 0.08577181360880201, 0.08792663722978103, 0.09009774357270957, 0.09228486621893275, 0.09448774184250316, 0.09670611011803358, 0.09893971363366037, 0.10118829780877663, 0.10345161081622051, 0.10572940350862932, 0.10802142934869055, 0.11032744434304394, 0.11264720697960415, 0.11498047816809288, 0.11732702118358301, 0.11968660161287267, 0.12205898730351931, 0.12444394831537542, 0.12684125687448022, 0.129250687329169, 0.13167201610827334, 0.13410502168129235, 0.13654948452042429, 0.139005187064354, 0.14147191368369846, 0.14394945064802003, 0.1464375860943212, 0.1489361099969411, 0.1514448141387781, 0.1539634920837685, 0.1564919391505541, 0.15902995238727716, 0.16157733054744297, 0.16413387406679553, 0.16669938504115392, 0.1692736672051602, 0.17185652591189265, 0.17444776811330012, 0.17704720234141733, 0.17965463869032067, 0.1822698887987888, 0.1848927658336325, 0.18752308447366092, 0.1901606608942533, 0.19280531275250604, 0.1954568591729276, 0.19811512073365423, 0.2007799194531615, 0.2034510787774481, 0.20612842356766808, 0.20881178008819165, 0.2115009759950724, 0.2141958403249026, 0.21689620348403768, 0.21960189723817208, 0.2223127547022504, 0.22502861033069718, 0.22774929990795062, 0.23047466053928564, 0.23320453064191246, 0.23593874993633818, 0.2386771594379775, 0.24141960144900254, 0.24416591955041883, 0.24691595859435736, 0.24966956469657248, 0.2524265852291353, 0.25518686881331376, 0.25795026531262955, 0.26071662582608446, 0.2634858026815471, 0.26625764942929186, 0.2690320208356844, 0.27180877287700383, 0.27458776273339747, 0.27736884878295964, 0.2801518905959291, 0.28293674892899956, 0.2857232857197364, 0.28851136408109546, 0.2913008482960371, 0.29409160381223276, 0.29688349723685675, 0.29967639633146054, 0.3024701700069243, 0.30526468831848164, 0.3080598224608139, 0.31085544476321014, 0.3136514286847874, 0.3164476488097717, 0.3192439808428317, 0.3220403016044653, 0.3248364890264343, 0.3276324221472455, 0.33042798110767346, 0.33322304714632467, 0.3360175025952382, 0.3388112308755229, 0.34160411649302563, 0.3443960450340314, 0.3471869031609914, 0.34997657860827713, 0.3527649601779594, 0.35555193773560895, 0.3583374022061191, 0.3611212455695455, 0.3639033608569652, 0.3666836421463497, 0.3694619845584537, 0.3722382842527154, 0.37501243842316934, 0.37778434529436894, 0.3805539041173178, 0.3833210151654094, 0.38608557973037233, 0.38884750011822317, 0.39160667964522095, 0.3943630226338286, 0.39711643440867406, 0.3998668212925158, 0.40261409060220715, 0.4053581506446627, 0.408098910712823, 0.4108362810816189, 0.4135701730039332, 0.41630049870656055, 0.4190271713861646, 0.4217501052052299, 0.42446921528801207, 0.42718441771648136, 0.42989562952626226, 0.4326027687025672, 0.4353057541761251, 0.43800450581910205, 0.44069894444101787, 0.4433889917846532, 0.4460745705219515, 0.4487556042499122, 0.45143201748647716, 0.45410373566640855, 0.4567706851371589, 0.45943279315473284, 0.46208998787954025, 0.46474219837224134, 0.4673893545895819, 0.4700313873802214, 0.47266822848055, 0.47529981051049924, 0.477926066969341, 0.4805469322314795, 0.4831623415422326, 0.4857722310136054, 0.4883765376200534, 0.4909751991942376, 0.49356815442276997, 0.4961553428419496, 0.49873670483349086, 0.5013121816202415, 0.5038817152618926, 0.506445248650679, 0.5090027255070726, 0.5115540903754645, 0.5140992886198418, 0.5166382664194527, 0.5191709707644659, 0.5216973494516213, 0.5242173510798714, 0.5267309250460166, 0.5292380215403318, 0.5317385915421862, 0.5342325868156547, 0.5367199599051231, 0.5392006641308862, 0.5416746535847388, 0.5441418831255594, 0.5466023083748899, 0.5490558857125054, 0.5515025722719819, 0.553942325936255, 0.556375105333175, 0.5588008698310558, 0.561219579534219, 0.5636311952785322, 0.5660356786269445, 0.5684329918650151, 0.5708230979964396, 0.5732059607385716, 0.5755815445179402, 0.5779498144657644, 0.5803107364134648, 0.5826642768881705, 0.585010403108225, 0.5873490829786898, 0.5896802850868428, 0.5920039786976782, 0.5943201337494031, 0.596628720848932, 0.5989297112673815, 0.6012230769355619, 0.6035087904394705, 0.6057868250157827, 0.6080571545473437, 0.6103197535586593, 0.6125745972113885, 0.6148216612998348, 0.61706092224644, 0.6192923570972779, 0.6215159435175502, 0.6237316597870828, 0.6259394847958257, 0.6281393980393528, 0.6303313796143666, 0.632515410214203, 0.634691471124341, 0.6368595442179141, 0.6390196119512261, 0.6411716573592701, 0.6433156640512512, 0.6454516162061139, 0.6475794985680736, 0.6496992964421525, 0.6518109956897213, 0.6539145827240447, 0.6560100445058337, 0.6580973685388024, 0.6601765428652322, 0.66224755606154, 0.6643103972338549, 0.6663650560136001, 0.6684115225530822, 0.6704497875210882, 0.6724798420984888, 0.6745016779738494, 0.6765152873390499, 0.6785206628849119, 0.6805177977968335, 0.682506685750434, 0.6844873209072064, 0.6864596979101789, 0.688423811879586, 0.6903796584085484, 0.6923272335587636, 0.6942665338562047, 0.6961975562868308, 0.6981202982923069, 0.7000347577657342, 0.7019409330473912, 0.7038388229204862, 0.7057284266069198, 0.7076097437630601, 0.7094827744755279, 0.7113475192569942, 0.7132039790419911, 0.7150521551827311, 0.716892049444943, 0.7187236640037169, 0.7205470014393635, 0.7223620647332858, 0.724168857263864, 0.7259673828023531, 0.7277576455087942, 0.7295396499279394, 0.7313134009851907, 0.7330789039825515, 0.7348361645945934, 0.7365851888644372, 0.7383259831997477, 0.7400585543687423, 0.7417829094962167, 0.7434990560595827, 0.7452070018849228, 0.7469067551430595, 0.7485983243456389, 0.7502817183412318, 0.7519569463114482, 0.7536240177670687, 0.7552829425441916, 0.756933730800396, 0.7585763930109212, 0.7602109399648612, 0.7618373827613774, 0.7634557328059264, 0.7650660018065052, 0.7666682017699127, 0.7682623449980283, 0.7698484440841072, 0.7714265119090936, 0.7729965616379502, 0.7745586067160053, 0.7761126608653175, 0.7776587380810578, 0.7791968526279098, 0.7807270190364868, 0.7822492520997667, 0.7837635668695463, 0.785269978652912, 0.7867685030087295, 0.7882591557441507, 0.7897419529111407, 0.7912169108030214, 0.7926840459510338, 0.7941433751209206, 0.7955949153095244, 0.7970386837414075, 0.7984746978654886, 0.7999029753516992, 0.8013235340876579, 0.8027363921753652, 0.804141567927916, 0.8055390798662319, 0.8069289467158118, 0.8083111874035032, 0.8096858210542905, 0.8110528669881055, 0.8124123447166545, 0.8137642739402657, 0.8151086745447578, 0.8164455665983252, 0.8177749703484446, 0.8190969062188006, 0.8204113948062309, 0.8217184568776918, 0.8230181133672421, 0.8243103853730475, 0.8255952941544048, 0.8268728611287861, 0.8281431078689017, 0.8294060560997839, 0.83066172769589, 0.8319101446782257, 0.8331513292114878, 0.8343853036012274, 0.835612090291032, 0.836831711859729, 0.8380441910186078, 0.8392495506086622, 0.8404478135978535, 0.8416390030783918, 0.8428231422640401, 0.8440002544874348, 0.8451703631974289, 0.8463334919564544, 0.8474896644379037, 0.8486389044235327, 0.8497812358008818, 0.8509166825607185, 0.8520452687944992, 0.8531670186918505, 0.8542819565380722, 0.8553901067116565, 0.8564914936818319, 0.8575861420061228, 0.8586740763279315, 0.859755321374138, 0.8608299019527218, 0.8618978429504014, 0.8629591693302949, 0.8640139061295997, 0.8650620784572917, 0.8661037114918446, 0.867138830478969, 0.86816746072937, 0.8691896276165256, 0.8702053565744837, 0.8712146730956793, 0.8722176027287701, 0.873214171076493, 0.8742044037935383, 0.8751883265844446, 0.876165965201512, 0.8771373454427351, 0.8781024931497551, 0.8790614342058302, 0.8800141945338267, 0.880960800094228, 0.881901276883162, 0.8828356509304496, 0.8837639482976695, 0.8846861950762437, 0.8856024173855411, 0.8865126413709995, 0.8874168932022668, 0.8883151990713609, 0.8892075851908472, 0.8900940777920355, 0.8909747031231954, 0.8918494874477894, 0.8927184570427245, 0.893581638196622, 0.8944390572081066, 0.8952907403841112, 0.8961367140382024, 0.8969770044889218, 0.8978116380581469, 0.8986406410694684, 0.8994640398465865, 0.9002818607117241, 0.9010941299840577, 0.9019008739781664, 0.9027021190024977, 0.9034978913578512, 0.904288217335879, 0.9050731232176048, 0.9058526352719578, 0.9066267797543265, 0.9073955829051268, 0.9081590709483897, 0.9089172700903633, 0.9096702065181339, 0.9104179063982619, 0.911160395875436, 0.9118977010711425, 0.9126298480823521, 0.9133568629802227, 0.9140787718088184, 0.9147956005838449, 0.9155073752914014, 0.9162141218867477, 0.9169158662930876, 0.9176126344003694, 0.9183044520641002, 0.9189913451041769, 0.9196733393037335, 0.9203504604080028, 0.9210227341231941, 0.9216901861153866, 0.9223528420094368, 0.9230107273879034, 0.9236638677899848, 0.9243122887104733, 0.9249560155987238, 0.9255950738576366, 0.9262294888426568, 0.9268592858607858, 0.9274844901696101, 0.9281051269763422, 0.9287212214368777, 0.9293327986548657], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Непараметрическая, стандартная", "legendgroup": "Непараметрическая, стандартная", "line": {"color": "rgba(0, 128, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.0010255751337565492, 0.0020854892572493514, 0.003179533953428703, 0.004307411830768573, 0.0054687353171660276, 0.00666302615019199, 0.00788971510904427, 0.009148142476105212, 0.010437558783711078, 0.011757126275880441, 0.013105920717010111, 0.014482933854666697, 0.015887076302869698, 0.01731718097938576, 0.01877200703586704, 0.020250244224400152, 0.02175051779587866, 0.023271393732237997, 0.02481138449628509, 0.026368955036770936, 0.027942529246555062, 0.029530496616039723, 0.031131219236731244, 0.03274303894967506, 0.03436428471797805, 0.03599328009219118, 0.03762835076852846, 0.0392678321739518, 0.040910077026671834, 0.042553462831451234, 0.04419639926371854, 0.045837335364462065, 0.047474766572251144, 0.04910724142297713, 0.050733368056958605, 0.052351820252078955, 0.053961343242526605, 0.055560758941755085, 0.05714897092484929, 0.05872496872895281, 0.06028783187213798, 0.06183673315199433, 0.0633709415995084, 0.06488982472986686, 0.06639285035935572, 0.06787958779455261, 0.06934970847531634, 0.07080298610800365, 0.07223929614849352, 0.0736586148957541, 0.07506101787360636, 0.0764466779206307, 0.07781586255946799, 0.07916893114435869, 0.08050633132999453, 0.0818285953619955, 0.08313633577493332, 0.08443024093310508, 0.08571107009936507, 0.0869796483530548, 0.08823686117797057, 0.08948364890104073, 0.09072100094839727, 0.09194994996393623, 0.09317156587553084, 0.09438694986568998, 0.09559722838563817, 0.0968035471470582, 0.09800706522363853, 0.09920894922219721, 0.10041036761106878, 0.10161248521464195, 0.10281645790442316, 0.10402342754410503, 0.10523451717204056, 0.10645082650502972, 0.10767342773004736, 0.10890336165455654, 0.11014163420971317, 0.1113892133168556, 0.11264702617963823, 0.11391595692251064, 0.11519684471823931, 0.11649048223813141, 0.11779761463248264, 0.11911893881104509, 0.12045510326581034, 0.12180670817626416, 0.12317430603668968, 0.12455840255467703, 0.1259594580194688, 0.1273778889348385, 0.1288140700415577, 0.1302683365980759, 0.13174098695011682, 0.1332322853445286, 0.13474246492578426, 0.13627173093979325, 0.13782026402527128, 0.13938822364763054, 0.14097575153892353, 0.1425829751943489, 0.14421001130375558, 0.1458569691425737, 0.1475239538330711, 0.14921106946747034, 0.15091842203932251, 0.15264612214903991, 0.1543942874556431, 0.15616304483348553, 0.15795253221279446, 0.1597629000795124, 0.16159431260061904, 0.16344694838479693, 0.16532100082467988, 0.16721667806618423, 0.16913420253898048, 0.17107381011817302, 0.17303574885477088, 0.17502027735300385, 0.17702766275268553, 0.17905817838704477, 0.1811121011068046, 0.1831897083249248, 0.1852912748062645, 0.1874170692447883, 0.18956735067143315, 0.19174236474313439, 0.19394233994606133, 0.1961674837988675, 0.19841797904947656, 0.20069398000620875, 0.2029956089405594, 0.20532295276107085, 0.20767605983941154, 0.2100549372332803, 0.21245954814777324, 0.21488980989584633, 0.21734559219096333, 0.21982671600782974, 0.22233295287570795, 0.22486402476978573, 0.2274196045374893, 0.2299993169156681, 0.23260274017291388, 0.2352294083142713, 0.2378788139638438, 0.24055041177929526, 0.2432436225471931, 0.24595783778080602, 0.24869242495306357, 0.25144673320055616, 0.25422009957607083, 0.2570118557318796, 0.2598213350372929, 0.26264788006756273, 0.2654908504031593, 0.2683496307091308, 0.2712236390126542, 0.27411233512490696, 0.27701522917666, 0.2799318901201119, 0.2828619542846007, 0.285805133698408, 0.2887612244145364, 0.2917301144039599, 0.2947117913989361, 0.297706350128845, 0.3007139994343358, 0.30373506864321836, 0.3067700137224543, 0.3098194226223779, 0.31288402025430817, 0.3159646726643815, 0.31906239065221037, 0.32217833266470725, 0.3253138069129352, 0.32847027288424113, 0.33164934187875805, 0.3348527770436516, 0.3380824922940974, 0.3413405507955673, 0.3446291622649177, 0.3479506798508108, 0.351307595834147, 0.3547025368801938, 0.35813825817410816, 0.3616176370410896, 0.36514366556234545, 0.3687194425819588, 0.3723481648520951, 0.37603311746950907, 0.379777663591509, 0.38358523337772044, 0.38745931230915326, 0.39140342873406453, 0.395421140831274, 0.39951602286595433, 0.40369165086239234, 0.4079515876810135, 0.412299367497067, 0.41673847981823486, 0.42127235290525145, 0.4259043368614469, 0.43063768617953074, 0.4354755420513116, 0.4404209142808602, 0.44547666298705274, 0.4506454801771669, 0.455929871069885, 0.46133213564733594, 0.46685434990491376, 0.47249834772591176, 0.4782657024380829, 0.48415770938573416, 0.490175368241295, 0.49631936667703136, 0.5025900639414637, 0.5089874760530803, 0.5155112612007123, 0.5221607068920954, 0.5289347177685547, 0.5358318051395978, 0.5428500778039939, 0.5499872344100525, 0.5572405578071197, 0.5646069107101008, 0.5720827339787209, 0.5796640460640143, 0.5873464455176858, 0.5951251146276962, 0.6029948263585433, 0.6109499524809717, 0.6189844750286524, 0.6270919990959616, 0.6352657687715799, 0.6434986846219228, 0.6517833239328668, 0.6601119627200811, 0.6684765999837375, 0.6768689838908608, 0.6852806396518303, 0.6937028992978039, 0.7021269326870844, 0.7105437801433673, 0.7189443859593228, 0.7273196330599337, 0.7356603782306133, 0.7439574879039188, 0.7522018742224535, 0.7603845310165284, 0.7684965697256724, 0.7765292546406227, 0.7844740376578857, 0.7923225919010243, 0.8000668442779454, 0.8076990066591276, 0.8152116052736942, 0.822597508665282, 0.8298499531248397, 0.8369625666984762, 0.8439293900287379, 0.8507448957935272, 0.8574040045129435, 0.8639020989334424, 0.8702350345510832, 0.8763991486130008, 0.8823912653009658, 0.8882086991959114, 0.8938492552490336, 0.8993112267367326, 0.9045933903114536, 0.9096949986677193, 0.914615771059328, 0.9193558811432773, 0.9239159433970456, 0.9282969967971847, 0.9325004876515074, 0.9365282498695608, 0.9403824848166327, 0.9440657389863325, 0.9475808815517114, 0.9509310802646171, 0.9541197774214304, 0.9571506647927539, 0.9600276587362175, 0.9627548749080463, 0.9653366032442516, 0.9677772831250125, 0.9700814789153397, 0.9722538561464464, 0.9742991582545717, 0.976222184247163, 0.9780277671690724, 0.979720753645301, 0.9813059844756991, 0.982788276365089, 0.9841724049188273, 0.9854630887858631, 0.9866649752048742, 0.9877826266998239, 0.9888205092147675, 0.9897829814181199, 0.9906742853672954, 0.9914985383975282, 0.992259726188305, 0.9929616971233831, 0.9936081575943995, 0.9942026686345219, 0.9947486432669831, 0.9952493451613638, 0.9957078878079135, 0.9961272349131624, 0.9965102011634435, 0.9968594540614932, 0.9971775160341817, 0.9974667674116824, 0.9977294496343059, 0.9979676690880633, 0.9981834011722488, 0.9983784947286902, 0.9985546767390523, 0.9987135571288887, 0.9988566338612108, 0.9989852979415446, 0.9991008386956138, 0.9992044488297457, 0.9992972297137037, 0.9993801963751153, 0.9994542826431554, 0.9995203459792755, 0.9995791723709113, 0.9996314809230546, 0.9996779284221664, 0.9997191136335687, 0.9997555814834017, 0.9997878270244492, 0.9998162992103219, 0.9998414045037106, 0.999863510242015, 0.9998829478713759, 0.9999000159186817, 0.9999149828497046, 0.9999280896694523, 0.9999395524156899, 0.9999495644144771, 0.9999582984299122, 0.9999659086048072, 0.9999725322940285, 0.9999782917218951, 0.9999832955304925, 0.9999876401857924, 0.9999914112743041, 0.9999946846891041, 0.9999975277094728, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Непараметрическая, 1/3 от стандартной", "legendgroup": "Непараметрическая, 1/3 от стандартной", "line": {"color": "rgba(255, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.0004253759820999702, 0.0009247594917266745, 0.0015060072625885383, 0.002177048783126054, 0.00294582877007451, 0.003820263430447156, 0.0048082079163270005, 0.005917428456973371, 0.007155568592069013, 0.008530096051481275, 0.010048214796344995, 0.011716727317241061, 0.013541835089956615, 0.0155288695407381, 0.01768195500029921, 0.020003611762934703, 0.02249431953737753, 0.025152069755565123, 0.02797194090745758, 0.030945740583238634, 0.03406175092319288, 0.037304618392445726, 0.04065541527696915, 0.04409188930460913, 0.04758890736403345, 0.05111907654238006, 0.05465351809976723, 0.05816275111296663, 0.061617636233348934, 0.0649903227394164, 0.06825514413962686, 0.07138940845375678, 0.07437404152257113, 0.07719405169493104, 0.07983879489501748, 0.0823020408006441, 0.08458184290334647, 0.08668023738908653, 0.08860279746820526, 0.09035807744285594, 0.09195698756301052, 0.09341213472791639, 0.0947371686456506, 0.09594616476557256, 0.09705307257446567, 0.09807125045150325, 0.09901310251282254, 0.099889824279485, 0.10071125844058279, 0.10148585467925755, 0.10222072035785865, 0.10292174652478099, 0.10359378661366911, 0.10424086621725098, 0.10486640021776789, 0.10547339566089156, 0.10606462269553005, 0.10664273991625489, 0.1072103670904697, 0.10777010419165262, 0.1083245020001042, 0.1088759949347619, 0.10942681056284095, 0.1099788727065969, 0.11053371499427753, 0.11109241986390449, 0.11165559497857998, 0.11222339320603242, 0.11279557803646764, 0.11337162975358546, 0.11395088354882639, 0.11453268697529116, 0.11511656238039968, 0.11570235984574133, 0.1162903882999645, 0.1168815156739027, 0.11747723311094363, 0.11807968403958098, 0.11869166189414633, 0.119316585509512, 0.11995846206333151, 0.1206218481869949, 0.1213118188078918, 0.12203394889695829, 0.1227943102066481, 0.12359947888574815, 0.12445654536485484, 0.12537311410935242, 0.12635727722942391, 0.1274175466308752, 0.12856272978994396, 0.12980173887488192, 0.131143328236783, 0.13259576276263033, 0.13416642661455777, 0.13586139042751494, 0.1376849610683047, 0.1396392419780541, 0.141723737987901, 0.1439350327950521, 0.14626657109411642, 0.14870856662242532, 0.15124805166948715, 0.15386907700359492, 0.15655305505937345, 0.15927923700659297, 0.16202529882092906, 0.16476800812942216, 0.16748393725630795, 0.17015018562439335, 0.17274507518541116, 0.17524878643466588, 0.17764390777297745, 0.1799158768117003, 0.1820533050894717, 0.18404817888800815, 0.185895944731559, 0.18759548857659966, 0.1891490243564689, 0.19056191351800533, 0.1918424307319153, 0.19300149793747765, 0.19405239927731735, 0.19501048894114809, 0.19589290011755695, 0.19671825550928682, 0.1975063806270255, 0.19827801440599313, 0.19905451259106946, 0.19985753851793578, 0.20070873693914645, 0.2016293895276372, 0.2026400539519354, 0.20376019263451764, 0.20500780052629813, 0.20639904721679458, 0.20794794760175428, 0.20966608140459106, 0.21156237783441853, 0.21364298066719592, 0.2159112075582477, 0.2183676059928368, 0.2210101087473622, 0.2238342778159204, 0.22683362202442123, 0.2299999669322224, 0.23332384806132767, 0.23679489990164657, 0.24040220971788756, 0.24413461049202265, 0.2479808920215029, 0.2519299174569216, 0.2559706419871911, 0.2600920405240602, 0.26428296060606565, 0.26853192511281054, 0.27282691443556545, 0.2771551614025636, 0.28150299009182717, 0.28585572696011496, 0.2901977052343338, 0.2945123737339302, 0.29878251279819223, 0.3029905474773642, 0.30711894065320444, 0.311150639922842, 0.31506954850902535, 0.3188609868393266, 0.3225121155322168, 0.3260122913876821, 0.329353336554605, 0.33252970917140307, 0.3355385686747972, 0.3383797432985707, 0.3410556074266852, 0.3435708874584706, 0.3459324159574753, 0.34814885399654466, 0.3502304046258356, 0.3521885332026095, 0.3540357104525773, 0.35578518733545766, 0.35745080644299804, 0.35904685106914297, 0.36058792801528405, 0.36208887878891727, 0.3635647116249608, 0.3650305467634772, 0.3665015682056012, 0.36799297641828327, 0.36951993846279113, 0.3710975336894665, 0.37274069471671006, 0.37446414398539685, 0.376282326682341, 0.3782093396247178, 0.38025885499020456, 0.38244403616537054, 0.38477744109217926, 0.38727090870264946, 0.3899354221940669, 0.39278094523871965, 0.3958162282587454, 0.39904858397662996, 0.4024836374270087, 0.40612505579221786, 0.4099742715630579, 0.41403021352294184, 0.418289062968614, 0.422744058335068, 0.42738536578184716, 0.4322000406295403, 0.43717209700072157, 0.4422827028914793, 0.4475105162617788, 0.45283216838573725, 0.45822290243180225, 0.4636573650225595, 0.46911054717154416, 0.47455886371411243, 0.4799813584410351, 0.4853610124931279, 0.4906861332930893, 0.4959517912526716, 0.5011612598756083, 0.5063274175329163, 0.5114740357252864, 0.5166368893262326, 0.5218645914665352, 0.527219047377405, 0.5327754266728723, 0.5386215220442945, 0.5448564043666788, 0.5515882749376371, 0.5589314663595036, 0.5670025906532388, 0.5759158920182025, 0.5857779385954983, 0.5966818656272537, 0.6087014609454404, 0.6218854271580854, 0.6362522405213255, 0.6517859717677525, 0.6684334841736729, 0.6861033126595735, 0.704666436898173, 0.7239590807870744, 0.743787442860193, 0.7639342010622436, 0.7841664217128747, 0.8042444218573607, 0.8239310403504698, 0.8430007409304113, 0.8612479758417793, 0.8784943160778363, 0.8945939545535998, 0.9094372985958814, 0.9229525846293453, 0.9351055074540638, 0.945897087256245, 0.9553600464129629, 0.9635540606215383, 0.970560318982754, 0.9764757704796077, 0.9814074596418968, 0.9854672532673661, 0.9887672063248634, 0.9914157223978739, 0.9935145883811555, 0.9951568805987135, 0.9964256900111069, 0.997393567038514, 0.9981225516538615, 0.9986646642308058, 0.9990627080216983, 0.9993512709271124, 0.9995578177204365, 0.9997037874707366, 0.999805641723683, 0.9998758156480514, 0.999923555438397, 0.9999556304050417, 0.9999769220107464, 0.9999909004510055, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 5000, 10000, 15000], "range": [0, 18200], "domain": [0.09128390201224845, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "5.00×10³", "1.00×10⁴", "1.50×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Модели", "xref": "paper", "x": 0.5423611111111111}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.25, 0.5, 0.75, 1], "range": [-0.030000000000000027, 1.03], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00", "0.25", "0.50", "0.75", "1.00"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Вероятность", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 861.1875}}
{"id": "id_f6f2212e_0cf9_49a7_b580_eebb86c04114", "data": [{"xaxis": "x", "colorbar": {"y": 0.48958333333333337, "title": {"text": ""}, "len": 0.9039260717410325, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [7.570189329415783e-06, 8.891704058852934e-06, 1.0355351443732158e-05, 1.1963132215871273e-05, 1.3716152755644507e-05, 1.5614880283296485e-05, 1.7659351654863057e-05, 1.984926556807121e-05, 2.2183884538631933e-05, 2.4661692782207886e-05, 2.727976961770175e-05, 3.0032882990770087e-05, 3.291234611951683e-05, 3.5904708950467865e-05, 3.899044077237559e-05, 4.2142717510197054e-05, 4.5326531315524705e-05, 4.8498274497284734e-05, 5.1605912495621955e-05, 5.458993958942148e-05, 5.738501841492473e-05, 5.99224153421822e-05, 6.213302144944497e-05, 6.395079063961626e-05, 6.531642841016374e-05, 6.618092028952283e-05, 6.650875088687544e-05, 6.628043387182666e-05, 6.549418962557924e-05, 6.416657637094062e-05, 6.233205188778985e-05, 6.004142400346264e-05, 5.735937621168228e-05, 5.4361231712485465e-05, 5.1129151891436275e-05, 4.774819979277316e-05, 4.430233597495988e-05, 4.087081330103098e-05, 3.752504551812558e-05, 3.4326136841729486e-05, 3.132323648213397e-05, 2.8552623227039322e-05, 2.6037621215221267e-05, 2.378918769531756e-05, 2.180711558585672e-05, 2.0081697677142922e-05, 1.8595729322216356e-05, 1.7326670494391795e-05, 1.6248848980954647e-05, 1.533555380035173e-05, 1.4560872039355604e-05, 1.3901219436011504e-05, 1.333642175116436e-05, 1.2850365023396906e-05, 1.2431171559570524e-05, 1.207094213160264e-05, 1.1765141600646671e-05, 1.1511707172041051e-05, 1.1310011293088198e-05, 1.1159797702231941e-05, 1.1060217578631646e-05, 1.1009074453747767e-05, 1.1002354550013271e-05, 1.1034093258732916e-05, 1.1096577777737755e-05, 1.1180850634296546e-05, 1.1277454497732448e-05, 1.1377303255723343e-05, 1.1472594423093797e-05, 1.155763168978615e-05, 1.162947447581499e-05, 1.1688337397446967e-05, 1.1737702933865161e-05, 1.178414345859921e-05, 1.1836894091248104e-05, 1.1907239661046445e-05, 1.2007798546651442e-05, 1.215182005238682e-05, 1.2352555859235737e-05, 1.2622812110091437e-05, 1.2974700441129656e-05, 1.3419604307252635e-05, 1.3968340482866576e-05, 1.4631428077658715e-05, 1.54194033400564e-05, 1.634305507286411e-05, 1.7413489272666874e-05, 1.864194485138401e-05, 2.003928498529194e-05, 2.161517476862228e-05, 2.3376948563548256e-05, 2.532825549564893e-05, 2.7467584188436e-05, 2.978681193351928e-05, 3.2269915307528154e-05, 3.4892012511220444e-05, 3.761885994241483e-05, 4.0406887165094133e-05, 4.3203901353568924e-05, 4.5950360191074645e-05, 4.858131492937811e-05, 5.1028828727363263e-05, 5.322477993780622e-05, 5.5103939708871756e-05, 5.660700661560321e-05, 5.768356101937927e-05, 5.829460991417303e-05, 5.84146338022406e-05, 5.8032971661143346e-05, 5.715445662350309e-05, 5.579926988616593e-05, 5.400205366966012e-05, 5.181035935354202e-05, 4.928253096133944e-05, 4.648529031240181e-05, 4.349105159626762e-05, 4.037532353676351e-05, 3.72142306774844e-05, 3.4082325136557885e-05, 3.1050847405585334e-05, 2.8186319784424643e-05, 2.554964606502492e-05, 2.3195521319370072e-05, 2.1172148529297632e-05, 1.9521181624377662e-05, 1.827772312379984e-05, 1.7470389173975307e-05, 1.712128814556152e-05, 1.7245924672815247e-05, 1.7853001775614598e-05, 1.894413336233153e-05, 2.0513522208865165e-05, 2.2547664368727807e-05, 2.5025162604811423e-05, 2.7916710611649e-05, 3.118537440254078e-05, 3.478714302586727e-05, 3.8671886654892624e-05, 4.278464044976426e-05, 4.706720576750359e-05, 5.146005516815733e-05, 5.590430602595718e-05, 6.034379585017198e-05, 6.472696322185145e-05, 6.900846187702956e-05, 7.315036128589091e-05, 7.712275376463568e-05, 8.090378401198414e-05, 8.447899714008341e-05, 8.784009762662499e-05, 9.09831968452246e-05, 9.390671387672944e-05, 9.660912986639838e-05, 9.908682486220451e-05, 0.00010133222142021024, 0.00010333244987010542, 0.00010506868360093663, 0.0001065162694914494, 0.00010764564331512027, 0.00010842400739097916, 0.00010881762569059071, 0.00010879452285910837, 0.0001083273899611435, 0.00010739637957347904, 0.00010599157865558095, 0.00010411489594895659, 0.00010178122106732801, 9.901870434223165e-05, 9.586820736755956e-05, 9.238189934220877e-05, 8.862118997713823e-05, 8.465419848494779e-05, 8.055289078958059e-05, 7.639028535922299e-05, 7.223776317456244e-05, 6.816281349310686e-05, 6.422728499521712e-05, 6.048618039566145e-05, 5.6987104587507744e-05, 5.377019025586541e-05, 5.086851506447378e-05, 4.830882789754461e-05, 4.611246198382115e-05, 4.429632974989747e-05, 4.287385066919218e-05, 4.1855764053276856e-05, 4.1250756319871355e-05, 4.1065895152246063e-05, 4.130688616455156e-05, 4.197818182565346e-05, 4.3082994734817796e-05, 4.462325891879544e-05, 4.6599580998213494e-05, 4.90111952727106e-05, 5.185593496246528e-05, 5.513018322162129e-05, 5.8828780698702455e-05, 6.294483930209982e-05, 6.746940147338229e-05, 7.23909422662541e-05, 7.769464971956213e-05, 8.33615371902682e-05, 8.936740248418609e-05, 9.568167828302836e-05, 0.00010226633575915378, 0.00010907483741931468, 0.0001160513790282984, 0.0001231304613517837, 0.00013023690205672477, 0.00013728650329667102, 0.00014418726145871725, 0.00015084141738500018, 0.00015714820420595073, 0.00016300738333618764, 0.0001683236181989974, 0.00017301148073751974, 0.00017700122121309898, 0.00018024502273148894, 0.00018272371054473742, 0.00018445365284476203, 0.00018549372587451559, 0.00018595191844443358, 0.00018599144234783747, 0.0001858358799042908, 0.00018577285335062682, 0.00018615626046628367, 0.00018740591704460526, 0.00019000512100194995, 0.00019449521746588857, 0.00020146721095359315, 0.00021155106060349684, 0.00022540189491354018, 0.00024368501489793894, 0.0002670593552991075, 0.0002961609349717298, 0.0003315871837615264, 0.00037388289016788637, 0.0004235286778000755, 0.0004809325656679439, 0.0005464250720177948, 0.0006202569858497986, 0.0007026015794501461, 0.0007935577228905221, 0.0008931567408683817, 0.0010013700554049306, 0.0011181170371032936, 0.0012432752317285765, 0.0013766876879930188, 0.0015181724341061591, 0.0016675295570680222, 0.0018245480513441484, 0.001989011645220201, 0.0021607039705165087, 0.0023394121136458054, 0.002524930067554167, 0.0027170623375483405, 0.0029156231095069794, 0.0031204423661908283, 0.0033313625403949246, 0.0035482431945673843, 0.003770962642044954, 0.003999415845907964, 0.004233524202421778, 0.004473232673661885, 0.00471852175434033, 0.00496941482258811, 0.005225994868329762, 0.00548842656873417, 0.005756999110759025, 0.006032179514392611, 0.00631470658361779, 0.0066057574243859754, 0.006907157586467341, 0.007221842275877726, 0.007554486549336244, 0.007912726220790285, 0.008309332186822638, 0.00876614074885407, 0.009322344065923647, 0.010052125171460884, 0.011109203230390198, 0.012859667749270933, 0.01641192210052247, 0.027326741323183072], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 2000, 4000, 6000, 8000, 10000, 12000, 14000], "range": [0, 14000], "domain": [0.11026538349372993, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "2.00×10³", "4.00×10³", "6.00×10³", "8.00×10³", "1.00×10⁴", "1.20×10⁴", "1.40×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Интенсивность отказов непараметрической модели", "xref": "paper", "x": 0.5518518518518518}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 5e-05, 0.0001, 0.00015000000000000001], "range": [0, 0.00017], "domain": [0.03762029746281716, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00000", "0.00005", "0.00010", "0.00015"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 861.1875}}
{"id": "id_08fbf18e_4837_4efc_8e2b_8580e702f4d7", "data": [{"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [0, 549.2536270553238, 549.2536270553238, 790.0176937840063, 790.0176937840063, 1259.646548697351, 1259.646548697351, 1330.267047423174, 1330.267047423174, 1459.0067993975656, 1459.0067993975656, 1480.2465646392036, 1480.2465646392036, 1487.4900168862457, 1487.4900168862457, 1499.237332018044, 1499.237332018044, 1754.1763996985726, 1754.1763996985726, 2051.9225549179823, 2051.9225549179823, 2885.83250068486, 2885.83250068486, 3906.5407898126214, 3906.5407898126214, 4869.060623558222, 4869.060623558222, 5632.349610557542, 5632.349610557542, 5640.460531597055, 5640.460531597055, 6001.04325219434, 6001.04325219434, 6026.034984176859, 6026.034984176859, 6050.101925887229, 6050.101925887229, 6146.596241410782, 6146.596241410782, 6574.079871024187, 6574.079871024187, 7864.771249852294, 7864.771249852294, 8079.706088418062, 8079.706088418062, 8127.233465993014, 8127.233465993014, 8304.040164901067, 8304.040164901067, 8415.916303591013, 8415.916303591013, 8444.664544298752, 8444.664544298752, 8802.882110917095, 8802.882110917095, 8841.343358634753, 8841.343358634753, 8903.694134783764, 8903.694134783764, 9100.269876466185, 9100.269876466185, 9207.40064302215, 9207.40064302215, 9248.800289285931, 9248.800289285931, 9269.445650286236, 9269.445650286236, 9442.125620571396, 9442.125620571396, 9688.065073264654, 9688.065073264654, 9974.05141730218, 9974.05141730218, 10437.616981166299, 10437.616981166299, 11107.505818867474, 11107.505818867474, 11144.934370333858, 11144.934370333858, 11532.260643254067, 11532.260643254067, 11722.588508664447, 11722.588508664447, 11722.93632625775, 11722.93632625775, 11876.879207044405, 11876.879207044405, 11931.688904925742, 11931.688904925742, 12089.496387057525, 12089.496387057525, 12173.303758870927, 12173.303758870927, 12272.1278139766, 12272.1278139766, 12276.35869362239, 12276.35869362239, 12373.101166637376, 12373.101166637376, 12428.912339619723, 12428.912339619723, 12449.164800216031, 12449.164800216031, 12590.07296252945, 12590.07296252945, 12865.457346055791, 12865.457346055791, 12876.186532599431, 12876.186532599431, 13100.15696629114, 13100.15696629114, 13532.250604620298, 13532.250604620298, 13662.506617474146, 13662.506617474146, 13792.013222632988, 13792.013222632988, 13807.868359584367, 13807.868359584367, 13865.743794021948, 13865.743794021948, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000, 14000], "showlegend": true, "mode": "lines", "name": "Эмпирическая", "legendgroup": "Эмпирическая", "line": {"color": "rgba(0, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 1.5}, "y": [0, 0, 0.010000000000000009, 0.010000000000000009, 0.020000000000000018, 0.020000000000000018, 0.030000000000000027, 0.030000000000000027, 0.040000000000000036, 0.040000000000000036, 0.050000000000000044, 0.050000000000000044, 0.06000000000000005, 0.06000000000000005, 0.07000000000000006, 0.07000000000000006, 0.08000000000000007, 0.08000000000000007, 0.09000000000000008, 0.09000000000000008, 0.10000000000000009, 0.10000000000000009, 0.1100000000000001, 0.1100000000000001, 0.1200000000000001, 0.1200000000000001, 0.13000000000000012, 0.13000000000000012, 0.14000000000000012, 0.14000000000000012, 0.15000000000000013, 0.15000000000000013, 0.16000000000000014, 0.16000000000000014, 0.17000000000000015, 0.17000000000000015, 0.18000000000000016, 0.18000000000000016, 0.19000000000000017, 0.19000000000000017, 0.20000000000000018, 0.20000000000000018, 0.2100000000000002, 0.2100000000000002, 0.2200000000000002, 0.2200000000000002, 0.2300000000000002, 0.2300000000000002, 0.2400000000000002, 0.2400000000000002, 0.2500000000000002, 0.2500000000000002, 0.26000000000000023, 0.26000000000000023, 0.27000000000000024, 0.27000000000000024, 0.28000000000000025, 0.28000000000000025, 0.29000000000000026, 0.29000000000000026, 0.30000000000000027, 0.30000000000000027, 0.3100000000000003, 0.3100000000000003, 0.3200000000000003, 0.3200000000000003, 0.3300000000000003, 0.3300000000000003, 0.3400000000000003, 0.3400000000000003, 0.3500000000000003, 0.3500000000000003, 0.3600000000000003, 0.3600000000000003, 0.37000000000000033, 0.37000000000000033, 0.38000000000000034, 0.38000000000000034, 0.39000000000000035, 0.39000000000000035, 0.40000000000000036, 0.40000000000000036, 0.41000000000000036, 0.41000000000000036, 0.4200000000000004, 0.4200000000000004, 0.4300000000000004, 0.4300000000000004, 0.4400000000000004, 0.4400000000000004, 0.4500000000000004, 0.4500000000000004, 0.4600000000000004, 0.4600000000000004, 0.4700000000000004, 0.4700000000000004, 0.4800000000000004, 0.4800000000000004, 0.49000000000000044, 0.49000000000000044, 0.5000000000000004, 0.5000000000000004, 0.5100000000000005, 0.5100000000000005, 0.5200000000000005, 0.5200000000000005, 0.5300000000000005, 0.5300000000000005, 0.5400000000000005, 0.5400000000000005, 0.5500000000000005, 0.5500000000000005, 0.5600000000000005, 0.5600000000000005, 0.5700000000000005, 0.5700000000000005, 0.5800000000000005, 0.5800000000000005, 0.5900000000000005, 0.5900000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005, 0.6000000000000005], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Вейбулла", "legendgroup": "Вейбулла", "line": {"color": "rgba(255, 0, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.591451467994314e-07, 0.0001133360856561055, 0.000344300224611358, 0.0006618061078108752, 0.0010531316745270199, 0.0015105059325198156, 0.0020284712496024563, 0.002602887885679251, 0.003230456096655673, 0.003908452436452034, 0.0046345700990028564, 0.005406815564561915, 0.00622343821310765, 0.007082880438880361, 0.007983741136845291, 0.008924748256059134, 0.009904737702134262, 0.010922636808204898, 0.011977451170572717, 0.013068254012878644, 0.014194177484238612, 0.015354405459778252, 0.01654816752455864, 0.01777473390122922, 0.01903341113871452, 0.02032353842082897, 0.021644484384529886, 0.02299564436066471, 0.024376437967670497, 0.025786307002222043, 0.027224713581347645, 0.02869113849878842, 0.03018507976491569, 0.03170605130473987, 0.03325358179274402, 0.03482721360667792, 0.03642650188522478, 0.03805101367673133, 0.039700327168074895, 0.04137403098430367, 0.04307172355099128, 0.04479301251234234, 0.04653751419900771, 0.04830485314035026, 0.0500946616165663, 0.05190657924663513, 0.05374025260855526, 0.05559533488874429, 0.05747148555784011, 0.05936837007045378, 0.061285659586696094, 0.0632230307135361, 0.06518016526425717, 0.06715675003445666, 0.06915247659319533, 0.07116704108804199, 0.07320014406288351, 0.07525149028747954, 0.0773207885978385, 0.07940775174657819, 0.08151209626251121, 0.08363354231876428, 0.08577181360880201, 0.08792663722978103, 0.09009774357270957, 0.09228486621893275, 0.09448774184250316, 0.09670611011803358, 0.09893971363366037, 0.10118829780877663, 0.10345161081622051, 0.10572940350862932, 0.10802142934869055, 0.11032744434304394, 0.11264720697960415, 0.11498047816809288, 0.11732702118358301, 0.11968660161287267, 0.12205898730351931, 0.12444394831537542, 0.12684125687448022, 0.129250687329169, 0.13167201610827334, 0.13410502168129235, 0.13654948452042429, 0.139005187064354, 0.14147191368369846, 0.14394945064802003, 0.1464375860943212, 0.1489361099969411, 0.1514448141387781, 0.1539634920837685, 0.1564919391505541, 0.15902995238727716, 0.16157733054744297, 0.16413387406679553, 0.16669938504115392, 0.1692736672051602, 0.17185652591189265, 0.17444776811330012, 0.17704720234141733, 0.17965463869032067, 0.1822698887987888, 0.1848927658336325, 0.18752308447366092, 0.1901606608942533, 0.19280531275250604, 0.1954568591729276, 0.19811512073365423, 0.2007799194531615, 0.2034510787774481, 0.20612842356766808, 0.20881178008819165, 0.2115009759950724, 0.2141958403249026, 0.21689620348403768, 0.21960189723817208, 0.2223127547022504, 0.22502861033069718, 0.22774929990795062, 0.23047466053928564, 0.23320453064191246, 0.23593874993633818, 0.2386771594379775, 0.24141960144900254, 0.24416591955041883, 0.24691595859435736, 0.24966956469657248, 0.2524265852291353, 0.25518686881331376, 0.25795026531262955, 0.26071662582608446, 0.2634858026815471, 0.26625764942929186, 0.2690320208356844, 0.27180877287700383, 0.27458776273339747, 0.27736884878295964, 0.2801518905959291, 0.28293674892899956, 0.2857232857197364, 0.28851136408109546, 0.2913008482960371, 0.29409160381223276, 0.29688349723685675, 0.29967639633146054, 0.3024701700069243, 0.30526468831848164, 0.3080598224608139, 0.31085544476321014, 0.3136514286847874, 0.3164476488097717, 0.3192439808428317, 0.3220403016044653, 0.3248364890264343, 0.3276324221472455, 0.33042798110767346, 0.33322304714632467, 0.3360175025952382, 0.3388112308755229, 0.34160411649302563, 0.3443960450340314, 0.3471869031609914, 0.34997657860827713, 0.3527649601779594, 0.35555193773560895, 0.3583374022061191, 0.3611212455695455, 0.3639033608569652, 0.3666836421463497, 0.3694619845584537, 0.3722382842527154, 0.37501243842316934, 0.37778434529436894, 0.3805539041173178, 0.3833210151654094, 0.38608557973037233, 0.38884750011822317, 0.39160667964522095, 0.3943630226338286, 0.39711643440867406, 0.3998668212925158, 0.40261409060220715, 0.4053581506446627, 0.408098910712823, 0.4108362810816189, 0.4135701730039332, 0.41630049870656055, 0.4190271713861646, 0.4217501052052299, 0.42446921528801207, 0.42718441771648136, 0.42989562952626226, 0.4326027687025672, 0.4353057541761251, 0.43800450581910205, 0.44069894444101787, 0.4433889917846532, 0.4460745705219515, 0.4487556042499122, 0.45143201748647716, 0.45410373566640855, 0.4567706851371589, 0.45943279315473284, 0.46208998787954025, 0.46474219837224134, 0.4673893545895819, 0.4700313873802214, 0.47266822848055, 0.47529981051049924, 0.477926066969341, 0.4805469322314795, 0.4831623415422326, 0.4857722310136054, 0.4883765376200534, 0.4909751991942376, 0.49356815442276997, 0.4961553428419496, 0.49873670483349086, 0.5013121816202415, 0.5038817152618926, 0.506445248650679, 0.5090027255070726, 0.5115540903754645, 0.5140992886198418, 0.5166382664194527, 0.5191709707644659, 0.5216973494516213, 0.5242173510798714, 0.5267309250460166, 0.5292380215403318, 0.5317385915421862, 0.5342325868156547, 0.5367199599051231, 0.5392006641308862, 0.5416746535847388, 0.5441418831255594, 0.5466023083748899, 0.5490558857125054, 0.5515025722719819, 0.553942325936255, 0.556375105333175, 0.5588008698310558, 0.561219579534219, 0.5636311952785322, 0.5660356786269445, 0.5684329918650151, 0.5708230979964396, 0.5732059607385716, 0.5755815445179402, 0.5779498144657644, 0.5803107364134648, 0.5826642768881705, 0.585010403108225, 0.5873490829786898, 0.5896802850868428, 0.5920039786976782, 0.5943201337494031, 0.596628720848932, 0.5989297112673815, 0.6012230769355619, 0.6035087904394705, 0.6057868250157827, 0.6080571545473437, 0.6103197535586593, 0.6125745972113885, 0.6148216612998348, 0.61706092224644, 0.6192923570972779, 0.6215159435175502, 0.6237316597870828, 0.6259394847958257, 0.6281393980393528, 0.6303313796143666, 0.632515410214203, 0.634691471124341, 0.6368595442179141, 0.6390196119512261, 0.6411716573592701, 0.6433156640512512, 0.6454516162061139, 0.6475794985680736, 0.6496992964421525, 0.6518109956897213, 0.6539145827240447, 0.6560100445058337, 0.6580973685388024, 0.6601765428652322, 0.66224755606154, 0.6643103972338549, 0.6663650560136001, 0.6684115225530822, 0.6704497875210882, 0.6724798420984888, 0.6745016779738494, 0.6765152873390499, 0.6785206628849119, 0.6805177977968335, 0.682506685750434, 0.6844873209072064, 0.6864596979101789, 0.688423811879586, 0.6903796584085484, 0.6923272335587636, 0.6942665338562047, 0.6961975562868308, 0.6981202982923069, 0.7000347577657342, 0.7019409330473912, 0.7038388229204862, 0.7057284266069198, 0.7076097437630601, 0.7094827744755279, 0.7113475192569942, 0.7132039790419911, 0.7150521551827311, 0.716892049444943, 0.7187236640037169, 0.7205470014393635, 0.7223620647332858, 0.724168857263864, 0.7259673828023531, 0.7277576455087942, 0.7295396499279394, 0.7313134009851907, 0.7330789039825515, 0.7348361645945934, 0.7365851888644372, 0.7383259831997477, 0.7400585543687423, 0.7417829094962167, 0.7434990560595827, 0.7452070018849228, 0.7469067551430595, 0.7485983243456389, 0.7502817183412318, 0.7519569463114482, 0.7536240177670687, 0.7552829425441916, 0.756933730800396, 0.7585763930109212, 0.7602109399648612, 0.7618373827613774, 0.7634557328059264, 0.7650660018065052, 0.7666682017699127, 0.7682623449980283, 0.7698484440841072, 0.7714265119090936, 0.7729965616379502, 0.7745586067160053, 0.7761126608653175, 0.7776587380810578, 0.7791968526279098, 0.7807270190364868, 0.7822492520997667, 0.7837635668695463, 0.785269978652912, 0.7867685030087295, 0.7882591557441507, 0.7897419529111407, 0.7912169108030214, 0.7926840459510338, 0.7941433751209206, 0.7955949153095244, 0.7970386837414075, 0.7984746978654886, 0.7999029753516992, 0.8013235340876579, 0.8027363921753652, 0.804141567927916, 0.8055390798662319, 0.8069289467158118, 0.8083111874035032, 0.8096858210542905, 0.8110528669881055, 0.8124123447166545, 0.8137642739402657, 0.8151086745447578, 0.8164455665983252, 0.8177749703484446, 0.8190969062188006, 0.8204113948062309, 0.8217184568776918, 0.8230181133672421, 0.8243103853730475, 0.8255952941544048, 0.8268728611287861, 0.8281431078689017, 0.8294060560997839, 0.83066172769589, 0.8319101446782257, 0.8331513292114878, 0.8343853036012274, 0.835612090291032, 0.836831711859729, 0.8380441910186078, 0.8392495506086622, 0.8404478135978535, 0.8416390030783918, 0.8428231422640401, 0.8440002544874348, 0.8451703631974289, 0.8463334919564544, 0.8474896644379037, 0.8486389044235327, 0.8497812358008818, 0.8509166825607185, 0.8520452687944992, 0.8531670186918505, 0.8542819565380722, 0.8553901067116565, 0.8564914936818319, 0.8575861420061228, 0.8586740763279315, 0.859755321374138, 0.8608299019527218, 0.8618978429504014, 0.8629591693302949, 0.8640139061295997, 0.8650620784572917, 0.8661037114918446, 0.867138830478969, 0.86816746072937, 0.8691896276165256, 0.8702053565744837, 0.8712146730956793, 0.8722176027287701, 0.873214171076493, 0.8742044037935383, 0.8751883265844446, 0.876165965201512, 0.8771373454427351, 0.8781024931497551, 0.8790614342058302, 0.8800141945338267, 0.880960800094228, 0.881901276883162, 0.8828356509304496, 0.8837639482976695, 0.8846861950762437, 0.8856024173855411, 0.8865126413709995, 0.8874168932022668, 0.8883151990713609, 0.8892075851908472, 0.8900940777920355, 0.8909747031231954, 0.8918494874477894, 0.8927184570427245, 0.893581638196622, 0.8944390572081066, 0.8952907403841112, 0.8961367140382024, 0.8969770044889218, 0.8978116380581469, 0.8986406410694684, 0.8994640398465865, 0.9002818607117241, 0.9010941299840577, 0.9019008739781664, 0.9027021190024977, 0.9034978913578512, 0.904288217335879, 0.9050731232176048, 0.9058526352719578, 0.9066267797543265, 0.9073955829051268, 0.9081590709483897, 0.9089172700903633, 0.9096702065181339, 0.9104179063982619, 0.911160395875436, 0.9118977010711425, 0.9126298480823521, 0.9133568629802227, 0.9140787718088184, 0.9147956005838449, 0.9155073752914014, 0.9162141218867477, 0.9169158662930876, 0.9176126344003694, 0.9183044520641002, 0.9189913451041769, 0.9196733393037335, 0.9203504604080028, 0.9210227341231941, 0.9216901861153866, 0.9223528420094368, 0.9230107273879034, 0.9236638677899848, 0.9243122887104733, 0.9249560155987238, 0.9255950738576366, 0.9262294888426568, 0.9268592858607858, 0.9274844901696101, 0.9281051269763422, 0.9287212214368777, 0.9293327986548657], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Непараметрическая, стандартная", "legendgroup": "Непараметрическая, стандартная", "line": {"color": "rgba(0, 128, 0, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.035284558884314074, 0.0361585400911694, 0.03704462202936319, 0.03794289098912042, 0.03885326175540602, 0.03977564413624892, 0.040709943155803285, 0.041656059257582964, 0.0426141372623502, 0.04358359401121919, 0.0445645457675658, 0.04555745283692222, 0.0465610960897233, 0.047575882162336276, 0.04860198885518899, 0.04963896982272813, 0.050686478820266896, 0.051744621953338475, 0.05281356080006593, 0.05389287390171964, 0.054982168881046414, 0.056082168961056576, 0.0571915790218043, 0.0583111248804643, 0.059440668960084625, 0.06057924066806182, 0.061727240810243764, 0.06288475637000379, 0.06405123290996857, 0.06522674205094774, 0.06641115485367982, 0.06760434459354461, 0.06880675831234433, 0.07001718304178763, 0.07123602493227676, 0.07246316924150363, 0.07369867647595796, 0.07494211181328923, 0.07619352930691727, 0.07745283019960053, 0.07871992029518307, 0.0799947101731906, 0.0812771153927431, 0.0825670566853281, 0.08386474140876046, 0.08516956378485838, 0.08648199325991597, 0.08780144980076275, 0.08912874198638644, 0.0904626636991249, 0.09180373491571711, 0.09315192398490407, 0.09450720565535368, 0.09586956114212869, 0.09723897817925126, 0.09861545105830571, 0.09999898065305413, 0.10138957443007507, 0.1027872464454679, 0.1041920173276994, 0.10560391424670171, 0.1070229708693625, 0.10844922730157974, 0.1098827300170836, 0.11132353177325743, 0.11277169151421856, 0.11422727426144602, 0.11569035099226976, 0.11716099850655942, 0.11863929928197511, 0.12012534131816487, 0.12161921797031361, 0.12312102777246849, 0.1246308742510828, 0.12614886572923714, 0.1276751151220114, 0.1292097397234938, 0.13075286098592526, 0.1323046042914873, 0.13386509871724916, 0.13543447679379828, 0.1370128742580808, 0.1386004298009854, 0.14019728481020233, 0.1418035831088934, 0.14341947069070388, 0.1450450954516478, 0.14668060691939208, 0.1483261559804598, 0.14998189460586683, 0.15164797557569612, 0.15332455220310665, 0.15501177805826102, 0.15670980669264578, 0.15841879136424358, 0.16013888476400506, 0.1618702387440496, 0.1636130040480121, 0.16536733004393292, 0.16713336446007357, 0.16891125312401967, 0.170778566582471, 0.17258627029324913, 0.17440729051233642, 0.17624053519514613, 0.17808676307365165, 0.17994612975675675, 0.1818187886396318, 0.18370489073962176, 0.18560458453949846, 0.187518015838207, 0.18944532760923624, 0.19138665986671358, 0.193342149539302, 0.19531193035194946, 0.19729645240755916, 0.19929523170984104, 0.2013086854149832, 0.20333693359307908, 0.20538009265037738, 0.20743827525872105, 0.20951159029257266, 0.2116001427734921, 0.21370403382190997, 0.21582370104892876, 0.21795858691978004, 0.2201090934458595, 0.22227530599482848, 0.2244573059085178, 0.22665550813584476, 0.2288693405631731, 0.2310991826663852, 0.2333450998537165, 0.23560748034393847, 0.23788575694223005, 0.24018028336312763, 0.2424914339970364, 0.24481929852564452, 0.2471629473945267, 0.24952335358514638, 0.2518999323744947, 0.2542930129213896, 0.25670262305251623, 0.25912912524667453, 0.2615722287218346, 0.26403196517807664, 0.26650799859112434, 0.26900065596638123, 0.27150994495983694, 0.274035869978146, 0.2765784322290056, 0.27913828169889443, 0.28171416732365323, 0.28430699894256467, 0.2869161561183298, 0.2895419182187849, 0.2921842688400841, 0.2948438507202298, 0.2975193764660727, 0.30021142942487, 0.3029199823496013, 0.30564532899633545, 0.30838681802833295, 0.31114471151648193, 0.3139189716814673, 0.31670955811270396, 0.3195164277748597, 0.32233953501007495, 0.3251788315358265, 0.32803426643840455, 0.330905786161991, 0.3337933344933452, 0.33669685254212506, 0.3396162787168946, 0.34255154869687604, 0.3455025953995417, 0.34846934894414316, 0.35145173661130236, 0.35444968279880684, 0.35746310897376377, 0.3604919336212897, 0.36353607218992534, 0.36659543703398034, 0.36966993735303, 0.37275980276407344, 0.3758643174189567, 0.37898367797673493, 0.3821177805513144, 0.3852665177785624, 0.3884297787448829, 0.391607448914869, 0.3947994100583254, 0.3980058744946275, 0.4012260773670278, 0.40446118640455914, 0.4077091752263263, 0.4109708160852103, 0.41424596784397116, 0.41753448522479353, 0.42083621874628474, 0.4241510146629002, 0.4274793783026891, 0.43081987922831666, 0.43417296007092265, 0.43753844986347756, 0.44091617314647324, 0.4443059499301142, 0.4477075956611086, 0.45112123416852135, 0.45454602007476513, 0.4579820956325096, 0.46142925765586096, 0.46488729831713804, 0.4683562997049434, 0.4718354313586872, 0.4753251332016495, 0.4788245269845124, 0.48233369495577655, 0.4858524017055177, 0.4893804073300403, 0.4929174674767879, 0.4964636374260623, 0.5000183418822439, 0.5035810072892996, 0.5071517102597425, 0.5107313964425427, 0.514317273110061, 0.5179103852914188, 0.5215104546943871, 0.5251171993489144, 0.5287306329354615, 0.5323498434295455, 0.5359752007824268, 0.5396057660720804, 0.5432415497921292, 0.5468825576643093, 0.5505278459416244, 0.5541774421671173, 0.5578310369374688, 0.5614883185697787, 0.5651489732663129, 0.5688126852833878, 0.5724791371040657, 0.5761480096143273, 0.5798189822823757, 0.583491733340719, 0.5871659399706717, 0.5908412784889048, 0.5945174245356766, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605, 0.5981940532643605], "type": "scatter"}, {"xaxis": "x", "colorbar": {"y": 0.5086805555555556, "title": {"text": ""}, "len": 0.8657316272965879, "x": 0.9934383202099737}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "Непараметрическая, 1/3 от стандартной", "legendgroup": "Непараметрическая, 1/3 от стандартной", "line": {"color": "rgba(255, 0, 255, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [0.00900352648618962, 0.009922338227122032, 0.010908505503344795, 0.011963935487736181, 0.013090262286754197, 0.014288803596013587, 0.015560541894633831, 0.0169060858718625, 0.018325644717521013, 0.01981900365511394, 0.02138550324718578, 0.023024023023241615, 0.02473296993468846, 0.02651027208114532, 0.028353378078649825, 0.03025926235374036, 0.03222443654954698, 0.03424496712274619, 0.036316499095788234, 0.038434285809804666, 0.040593224402943766, 0.04278790425529312, 0.04501262476086691, 0.04726148382225065, 0.04952840718245931, 0.051807210104836604, 0.05409165526837511, 0.05637551160267396, 0.05865261312956684, 0.060916916872426986, 0.06316255890961514, 0.06538390768523275, 0.06757561374738336, 0.06973265516000919, 0.0718503779269707, 0.07392495854091889, 0.0759518469361068, 0.07792801487652841, 0.07985057623426839, 0.08171712691119133, 0.08352574840141787, 0.08527529478730536, 0.08696486038070902, 0.08859323276159659, 0.09016083924235341, 0.0916679788754102, 0.09311546138091187, 0.0945044278904021, 0.09583635495538151, 0.09711302171034016, 0.09833647621972177, 0.0995090016714076, 0.1006330835004251, 0.10171137539953452, 0.10274667084073127, 0.10374187281445371, 0.10469996762131747, 0.10562400089031598, 0.1065170563357898, 0.10738223735065823, 0.10822265145341035, 0.10904139753046205, 0.10984155574507758, 0.11062617992026771, 0.11139829214686384, 0.11216087932005636, 0.11291689126863497, 0.1136692401113591, 0.11442080045455101, 0.11517441003424848, 0.11593287040504806, 0.11669894728599765, 0.11747537019131646, 0.11826483100000407, 0.11906998115310805, 0.11989357382438763, 0.12073821652285599, 0.12160584944000209, 0.12249954427544933, 0.12342135158391164, 0.12437347402998238, 0.12535841846893842, 0.1263778324127155, 0.12743357735335287, 0.12852777963181072, 0.1296615324485737, 0.13083624150297202, 0.13205302777296046, 0.13331270925528638, 0.13461610823993037, 0.13596316255168386, 0.1373537991617648, 0.13878782685202434, 0.14026554628593083, 0.14178348740379237, 0.14334182660351538, 0.14493890756116362, 0.14657301154235117, 0.14824174017240838, 0.14994282122167976, 0.151672924226948, 0.15342929107827263, 0.1552089433300699, 0.1570090491892849, 0.15882544919086097, 0.1606552557983022, 0.16249514392027237, 0.16434195643081723, 0.16619242167382875, 0.16804367781041996, 0.16989303130253203, 0.17173807671477698, 0.17357678077278269, 0.17540739020640753, 0.17722865832100254, 0.17903975960810875, 0.18084034304215205, 0.18263055054900593, 0.18441130236392628, 0.1861831390338927, 0.1879480771296935, 0.18970823613331603, 0.19146623094729237, 0.1932251056004312, 0.19498830524736885, 0.19675963270193114, 0.19854319884154004, 0.2003433676530763, 0.20216469677969096, 0.20401187449891042, 0.20588965411399254, 0.2078027867723674, 0.20975622673444125, 0.21175410786534515, 0.2138008921841646, 0.21590070349469803, 0.21805758683735285, 0.22027427586253856, 0.22255408421486028, 0.22489947765626722, 0.22731255689510535, 0.2297944718362533, 0.23234617075883207, 0.23496838351508326, 0.23765992138490796, 0.24042020409187156, 0.2432479483631243, 0.24614071662601728, 0.24909572217164733, 0.25210984459935826, 0.2551795725025179, 0.25830044634072347, 0.26146764348685175, 0.26467713094531153, 0.26792191437254287, 0.271197442120228, 0.2744978744977137, 0.2778165557076886, 0.2811477806077716, 0.2844855350697733, 0.2878235667134634, 0.29115598421020855, 0.2944769859853382, 0.2977810007805074, 0.3010632421552435, 0.3043179285460722, 0.3075409131368105, 0.31072866843468494, 0.313876424797231, 0.3169817567158598, 0.32004220820267126, 0.32305588394901696, 0.3260215061027149, 0.32893874314047844, 0.33180746800536665, 0.3346274371140322, 0.3374011608258754, 0.3401295327319311, 0.34281579117677297, 0.3454626848615599, 0.34807433136528143, 0.3506546733296825, 0.3532080698332546, 0.35573984436979567, 0.3582557141758681, 0.360760890921609, 0.36326174703047165, 0.3657645230781781, 0.36827559352626565, 0.37080139942468515, 0.37334838003037574, 0.37592290403531103, 0.3785312011126058, 0.3811792944984109, 0.3838729353300934, 0.38661753945706784, 0.3894181274290569, 0.3922792683469129, 0.3952050282328562, 0.3981989235395277, 0.4012918533780084, 0.4044367495438134, 0.40765805939476024, 0.4109570221036929, 0.41433493609418504, 0.4177905433702268, 0.42132370899540406, 0.42493338758440125, 0.42861710716834067, 0.43237307884469184, 0.43619769782140716, 0.44008830322023973, 0.44404050975520437, 0.44804977890694997, 0.45211145885111415, 0.4562219789337994, 0.46037440401344537, 0.46456539918274287, 0.46878821544318194, 0.4730379937812449, 0.47730984925437825, 0.4815991245651652, 0.4859007033198043, 0.4902099255808506, 0.4945223545409463, 0.4988348395615304, 0.5031420413501352, 0.5074416749038425, 0.5117312087240801, 0.5160077798022223, 0.5202690113464428, 0.5245141053350083, 0.5287407865195335, 0.5329482716303013, 0.5371363255201628, 0.5413053523481064, 0.5454546044200024, 0.5495843710627935, 0.5536955825688209, 0.5577893675450469, 0.5618661077311407, 0.5659273710796601, 0.5699744886990973, 0.5740089062895477, 0.5780324606487892, 0.5820460977570543, 0.5860518664781522, 0.5900517936097702, 0.5940470665904753, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356, 0.5980396943366356], "type": "scatter"}], "config": {"showlegend": true, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 5000, 10000, 15000], "range": [0, 18200], "domain": [0.07646908719743364, 0.9934383202099737], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "5.00×10³", "1.00×10⁴", "1.50×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Время", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Модели Matlab", "xref": "paper", "x": 0.5349537037037038}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 0.2, 0.4, 0.6000000000000001, 0.8], "range": [-0.02787998395964597, 0.9572127826145117], "domain": [0.07581474190726165, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.0", "0.2", "0.4", "0.6", "0.8"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "Вероятность", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "legend": {"yanchor": "auto", "xanchor": "auto", "bordercolor": "rgba(0, 0, 0, 1)", "bgcolor": "rgba(255, 255, 255, 1.000)", "borderwidth": 1, "tracegroupgap": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "title": {"font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}, "text": ""}, "traceorder": "normal", "x": 1}, "width": 861.1875}}
{"id": "id_8a0d1af0_d41b_4a2f_b5f7_af25c434d5a7", "data": [{"xaxis": "x", "colorbar": {"y": 0.48958333333333337, "title": {"text": ""}, "len": 0.9039260717410325, "x": 0.9934383202099738}, "yaxis": "y", "x": [1, 57.11022044088176, 113.22044088176352, 169.33066132264528, 225.44088176352705, 281.55110220440883, 337.66132264529057, 393.77154308617236, 449.8817635270541, 505.9919839679359, 562.1022044088177, 618.2124248496993, 674.3226452905811, 730.4328657314629, 786.5430861723447, 842.6533066132265, 898.7635270541082, 954.87374749499, 1010.9839679358718, 1067.0941883767534, 1123.2044088176353, 1179.314629258517, 1235.4248496993987, 1291.5350701402806, 1347.6452905811623, 1403.7555110220442, 1459.8657314629259, 1515.9759519038075, 1572.0861723446894, 1628.196392785571, 1684.306613226453, 1740.4168336673347, 1796.5270541082164, 1852.6372745490983, 1908.74749498998, 1964.8577154308616, 2020.9679358717435, 2077.078156312625, 2133.188376753507, 2189.298597194389, 2245.4088176352707, 2301.5190380761524, 2357.629258517034, 2413.7394789579157, 2469.8496993987974, 2525.9599198396795, 2582.070140280561, 2638.180360721443, 2694.2905811623245, 2750.400801603206, 2806.5110220440883, 2862.62124248497, 2918.7314629258517, 2974.8416833667334, 3030.951903807615, 3087.062124248497, 3143.172344689379, 3199.2825651302605, 3255.392785571142, 3311.503006012024, 3367.613226452906, 3423.7234468937877, 3479.8336673346694, 3535.943887775551, 3592.0541082164327, 3648.164328657315, 3704.2745490981965, 3760.384769539078, 3816.49498997996, 3872.6052104208416, 3928.7154308617232, 3984.8256513026054, 4040.935871743487, 4097.046092184369, 4153.15631262525, 4209.266533066132, 4265.376753507014, 4321.486973947895, 4377.597194388778, 4433.70741482966, 4489.817635270541, 4545.927855711423, 4602.038076152305, 4658.148296593186, 4714.258517034068, 4770.36873747495, 4826.478957915831, 4882.589178356713, 4938.699398797595, 4994.809619238477, 5050.919839679359, 5107.030060120241, 5163.140280561122, 5219.250501002004, 5275.360721442886, 5331.470941883767, 5387.581162324649, 5443.691382765531, 5499.801603206412, 5555.911823647295, 5612.022044088177, 5668.132264529058, 5724.24248496994, 5780.352705410822, 5836.462925851703, 5892.573146292585, 5948.683366733467, 6004.793587174348, 6060.90380761523, 6117.014028056112, 6173.124248496994, 6229.234468937876, 6285.344689378758, 6341.454909819639, 6397.565130260521, 6453.675350701403, 6509.785571142284, 6565.895791583166, 6622.006012024048, 6678.116232464929, 6734.226452905812, 6790.336673346694, 6846.446893787575, 6902.557114228457, 6958.667334669339, 7014.77755511022, 7070.887775551102, 7126.997995991984, 7183.108216432865, 7239.218436873747, 7295.32865731463, 7351.438877755511, 7407.549098196393, 7463.659318637275, 7519.769539078156, 7575.879759519038, 7631.98997995992, 7688.100200400801, 7744.210420841683, 7800.320641282565, 7856.4308617234465, 7912.541082164329, 7968.651302605211, 8024.761523046092, 8080.871743486974, 8136.981963927856, 8193.092184368737, 8249.20240480962, 8305.3126252505, 8361.422845691382, 8417.533066132264, 8473.643286573146, 8529.753507014027, 8585.86372745491, 8641.97394789579, 8698.084168336673, 8754.194388777556, 8810.304609218438, 8866.41482965932, 8922.525050100201, 8978.635270541083, 9034.745490981964, 9090.855711422846, 9146.965931863728, 9203.07615230461, 9259.186372745491, 9315.296593186373, 9371.406813627254, 9427.517034068136, 9483.627254509018, 9539.7374749499, 9595.847695390781, 9651.957915831663, 9708.068136272545, 9764.178356713426, 9820.288577154308, 9876.39879759519, 9932.509018036073, 9988.619238476955, 10044.729458917836, 10100.839679358718, 10156.9498997996, 10213.060120240481, 10269.170340681363, 10325.280561122245, 10381.390781563126, 10437.501002004008, 10493.61122244489, 10549.721442885771, 10605.831663326653, 10661.941883767535, 10718.052104208416, 10774.162324649298, 10830.27254509018, 10886.382765531062, 10942.492985971943, 10998.603206412825, 11054.713426853707, 11110.82364729459, 11166.933867735472, 11223.044088176353, 11279.154308617235, 11335.264529058117, 11391.374749498998, 11447.48496993988, 11503.595190380762, 11559.705410821643, 11615.815631262525, 11671.925851703407, 11728.036072144288, 11784.14629258517, 11840.256513026052, 11896.366733466934, 11952.476953907815, 12008.587174348697, 12064.697394789579, 12120.80761523046, 12176.917835671342, 12233.028056112224, 12289.138276553107, 12345.248496993989, 12401.35871743487, 12457.468937875752, 12513.579158316634, 12569.689378757515, 12625.799599198397, 12681.909819639279, 12738.02004008016, 12794.130260521042, 12850.240480961924, 12906.350701402805, 12962.460921843687, 13018.571142284569, 13074.68136272545, 13130.791583166332, 13186.901803607214, 13243.012024048096, 13299.122244488977, 13355.232464929859, 13411.34268537074, 13467.452905811624, 13523.563126252506, 13579.673346693387, 13635.78356713427, 13691.89378757515, 13748.004008016032, 13804.114228456914, 13860.224448897796, 13916.334669338677, 13972.44488977956, 14028.55511022044, 14084.665330661323, 14140.775551102204, 14196.885771543086, 14252.995991983968, 14309.10621242485, 14365.21643286573, 14421.326653306613, 14477.436873747494, 14533.547094188376, 14589.65731462926, 14645.767535070141, 14701.877755511023, 14757.987975951904, 14814.098196392786, 14870.208416833668, 14926.31863727455, 14982.428857715431, 15038.539078156313, 15094.649298597195, 15150.759519038076, 15206.869739478958, 15262.97995991984, 15319.090180360721, 15375.200400801603, 15431.310621242485, 15487.420841683366, 15543.531062124248, 15599.64128256513, 15655.751503006011, 15711.861723446893, 15767.971943887776, 15824.082164328658, 15880.19238476954, 15936.302605210421, 15992.412825651303, 16048.523046092185, 16104.633266533066, 16160.743486973948, 16216.85370741483, 16272.963927855712, 16329.074148296593, 16385.184368737475, 16441.294589178357, 16497.40480961924, 16553.51503006012, 16609.625250501, 16665.735470941883, 16721.845691382765, 16777.955911823647, 16834.06613226453, 16890.17635270541, 16946.28657314629, 17002.396793587173, 17058.507014028055, 17114.617234468937, 17170.72745490982, 17226.8376753507, 17282.94789579158, 17339.058116232463, 17395.168336673345, 17451.278557114227, 17507.388777555112, 17563.498997995994, 17619.609218436875, 17675.719438877757, 17731.82965931864, 17787.93987975952, 17844.050100200402, 17900.160320641284, 17956.270541082165, 18012.380761523047, 18068.49098196393, 18124.60120240481, 18180.711422845692, 18236.821643286574, 18292.931863727455, 18349.042084168337, 18405.15230460922, 18461.2625250501, 18517.372745490982, 18573.482965931864, 18629.593186372746, 18685.703406813627, 18741.81362725451, 18797.92384769539, 18854.034068136272, 18910.144288577154, 18966.254509018036, 19022.364729458917, 19078.4749498998, 19134.58517034068, 19190.695390781562, 19246.805611222444, 19302.915831663326, 19359.026052104207, 19415.13627254509, 19471.24649298597, 19527.356713426852, 19583.466933867734, 19639.577154308616, 19695.687374749497, 19751.79759519038, 19807.90781563126, 19864.018036072146, 19920.128256513028, 19976.23847695391, 20032.34869739479, 20088.458917835673, 20144.569138276554, 20200.679358717436, 20256.789579158318, 20312.8997995992, 20369.01002004008, 20425.120240480963, 20481.230460921844, 20537.340681362726, 20593.450901803608, 20649.56112224449, 20705.67134268537, 20761.781563126253, 20817.891783567135, 20874.002004008016, 20930.112224448898, 20986.22244488978, 21042.33266533066, 21098.442885771543, 21154.553106212425, 21210.663326653306, 21266.773547094188, 21322.88376753507, 21378.99398797595, 21435.104208416833, 21491.214428857715, 21547.324649298596, 21603.434869739478, 21659.54509018036, 21715.65531062124, 21771.765531062123, 21827.875751503005, 21883.985971943886, 21940.096192384768, 21996.20641282565, 22052.31663326653, 22108.426853707413, 22164.537074148295, 22220.64729458918, 22276.75751503006, 22332.867735470943, 22388.977955911825, 22445.088176352707, 22501.19839679359, 22557.30861723447, 22613.418837675352, 22669.529058116234, 22725.639278557115, 22781.749498997997, 22837.85971943888, 22893.96993987976, 22950.080160320642, 23006.190380761524, 23062.300601202405, 23118.410821643287, 23174.52104208417, 23230.63126252505, 23286.741482965932, 23342.851703406814, 23398.961923847695, 23455.072144288577, 23511.18236472946, 23567.29258517034, 23623.402805611222, 23679.513026052104, 23735.623246492985, 23791.733466933867, 23847.84368737475, 23903.95390781563, 23960.064128256512, 24016.174348697394, 24072.284569138275, 24128.394789579157, 24184.50501002004, 24240.61523046092, 24296.725450901802, 24352.835671342684, 24408.945891783565, 24465.056112224447, 24521.166332665332, 24577.276553106214, 24633.386773547096, 24689.496993987977, 24745.60721442886, 24801.71743486974, 24857.827655310623, 24913.937875751504, 24970.048096192386, 25026.158316633268, 25082.26853707415, 25138.37875751503, 25194.488977955913, 25250.599198396794, 25306.709418837676, 25362.819639278558, 25418.92985971944, 25475.04008016032, 25531.150300601203, 25587.260521042084, 25643.370741482966, 25699.480961923848, 25755.59118236473, 25811.70140280561, 25867.811623246493, 25923.921843687374, 25980.032064128256, 26036.142284569138, 26092.25250501002, 26148.3627254509, 26204.472945891783, 26260.583166332664, 26316.693386773546, 26372.803607214428, 26428.91382765531, 26485.02404809619, 26541.134268537073, 26597.244488977954, 26653.354709418836, 26709.464929859718, 26765.5751503006, 26821.68537074148, 26877.795591182366, 26933.905811623248, 26990.01603206413, 27046.12625250501, 27102.236472945893, 27158.346693386775, 27214.456913827657, 27270.56713426854, 27326.67735470942, 27382.7875751503, 27438.897795591183, 27495.008016032065, 27551.118236472947, 27607.22845691383, 27663.33867735471, 27719.44889779559, 27775.559118236473, 27831.669338677355, 27887.779559118237, 27943.88977955912, 28000], "showlegend": true, "mode": "lines", "name": "y1", "legendgroup": "y1", "line": {"color": "rgba(0, 154, 250, 1.000)", "shape": "linear", "dash": "solid", "width": 2}, "y": [1.5930788903273482e-05, 1.7139354610997697e-05, 1.8388058421028988e-05, 1.9672649404901403e-05, 2.0988261754392703e-05, 2.2329425739657544e-05, 2.3690088657571568e-05, 2.506364526480868e-05, 2.6442978597885894e-05, 2.7820511011111947e-05, 2.918826535138721e-05, 3.0537935939032584e-05, 3.1860968801481444e-05, 3.314865037739282e-05, 3.4392203677680596e-05, 3.558289066291107e-05, 3.671211937988195e-05, 3.7771554200787266e-05, 3.875322733329193e-05, 3.9649649626247834e-05, 4.045391859064212e-05, 4.1159821823487846e-05, 4.176193183737937e-05, 4.2255694543510196e-05, 4.263750389431222e-05, 4.2904764761243056e-05, 4.305594094107799e-05, 4.309058719061499e-05, 4.300936428080182e-05, 4.281403643268293e-05, 4.2507450901998286e-05, 4.2093499904951566e-05, 4.157706551125864e-05, 4.0963948557706896e-05, 4.026078304129328e-05, 3.9474956050779703e-05, 3.8614430861188876e-05, 3.7687725904258503e-05, 3.670373186813305e-05, 3.567160067602275e-05, 3.460062005807404e-05, 3.3500101318026086e-05, 3.237924137212202e-05, 3.124699557634469e-05, 3.0112046681063846e-05, 2.8982652702886593e-05, 2.78665939373129e-05, 2.6771104856755838e-05, 2.5702826622228047e-05, 2.4667772869412186e-05, 2.36713097979234e-05, 2.271815002503408e-05, 2.181235935657908e-05, 2.0957375276439274e-05, 2.0156035943468723e-05, 1.9410617965992657e-05, 1.8722881429371085e-05, 1.8094120390391605e-05, 1.752521708970047e-05, 1.7016698146530097e-05, 1.65687910615e-05, 1.6181479449586566e-05, 1.5854555550959542e-05, 1.5587668716797616e-05, 1.5380368735201317e-05, 1.5232143044104194e-05, 1.5142447069324185e-05, 1.5110727122812305e-05, 1.5136435495479722e-05, 1.5219037577921497e-05, 1.5358011038495704e-05, 1.555283727944159e-05, 1.5802985576095378e-05, 1.6107890479940667e-05, 1.6466923231364403e-05, 1.6879360892550255e-05, 1.7344344258841386e-05, 1.786082659168508e-05, 1.842756735067283e-05, 1.904304717046063e-05, 1.9705449849595927e-05, 2.04126282556969e-05, 2.116204348568796e-05, 2.1950759621588502e-05, 2.277542444762635e-05, 2.363222227170064e-05, 2.451690265664458e-05, 2.542477087369783e-05, 2.63507033236585e-05, 2.7289184752551656e-05, 2.8234320486684945e-05, 2.917991425238361e-05, 3.0119529522210995e-05, 3.104658736153353e-05, 3.195429739271538e-05, 3.2836017406294385e-05, 3.368516171331932e-05, 3.449537299484778e-05, 3.526061071613555e-05, 3.597529809732616e-05, 3.6634387175996323e-05, 3.723353862725448e-05, 3.77691955467183e-05, 3.8238697599193806e-05, 3.8640300962404374e-05, 3.8973369272522446e-05, 3.923835491816912e-05, 3.9436866741013874e-05, 3.957167752900765e-05, 3.9646748620542916e-05, 3.966719675668106e-05, 3.963925567130196e-05, 3.957021391641337e-05, 3.946832274914267e-05, 3.9342698945451664e-05, 3.920319403023727e-05, 3.906025367379272e-05, 3.892476155999915e-05, 3.8807885069083225e-05, 3.8720844661823126e-05, 3.867482251802294e-05, 3.868071690593739e-05, 3.874898356063476e-05, 3.888946163124741e-05, 3.9111211124706014e-05, 3.9422362269758716e-05, 3.982997987588336e-05, 4.033994494544288e-05, 4.095685535205277e-05, 4.168394692812692e-05, 4.252303582705384e-05, 4.347448255671602e-05, 4.453719302164264e-05, 4.570857211723945e-05, 4.698461780300727e-05, 4.835993478846812e-05, 4.982781854201203e-05, 5.13802609814374e-05, 5.300816766201218e-05, 5.470137944978111e-05, 5.644882525469564e-05, 5.8238610133330185e-05, 6.0058206164132e-05, 6.189459861807186e-05, 6.373429526531224e-05, 6.556367520803444e-05, 6.736903776740376e-05, 6.913670843001274e-05, 7.085325425534395e-05, 7.250563258516914e-05, 7.408132846419853e-05, 7.556843485132134e-05, 7.69558376682854e-05, 7.823346255327215e-05, 7.939199578689305e-05, 8.042356087186117e-05, 8.132142362981595e-05, 8.208012198897201e-05, 8.269573913837435e-05, 8.316582618714644e-05, 8.348945597695276e-05, 8.366732515260516e-05, 8.37017397548073e-05, 8.359663142751337e-05, 8.335760574777796e-05, 8.299169403341153e-05, 8.250761241238903e-05, 8.191556781466531e-05, 8.122694544510709e-05, 8.04546267735015e-05, 7.961258088524047e-05, 7.871579360650103e-05, 7.77801188015376e-05, 7.682214838652231e-05, 7.585894882037759e-05, 7.490784140818447e-05, 7.398653538231309e-05, 7.31124403524537e-05, 7.230291795602256e-05, 7.157477395768966e-05, 7.094427821548451e-05, 7.04268168931237e-05, 7.003678953462959e-05, 6.978751158421133e-05, 6.969100987899639e-05, 6.975779787956738e-05, 6.999694558181357e-05, 7.041584621579105e-05, 7.102016988888107e-05, 7.181379966242724e-05, 7.279878615762767e-05, 7.397532068883036e-05, 7.534172673879772e-05, 7.689446943706736e-05, 7.862818257775716e-05, 8.053571261390038e-05, 8.260817898719688e-05, 8.483505008950246e-05, 8.720423409945235e-05, 8.970218388814842e-05, 9.249831710792914e-05, 9.524931649729045e-05, 9.808932493352181e-05, 0.0001010017565262075, 0.00010396961524733356, 0.00010697522754812327, 0.00011000107870269491, 0.00011302966838111905, 0.00011604359782304812, 0.00011902618432998676, 0.00012196115694509305, 0.0001248334171229133, 0.0001276286512269411, 0.00013033382340541064, 0.00013293734098266123, 0.00013542948752240383, 0.00013780143632021998, 0.00014004705383142358, 0.0001421611920413894, 0.00014414106277890152, 0.00014598575411673543, 0.00014769626358744262, 0.00014927523457653543, 0.00015072711323843815, 0.0001520579604148828, 0.0001532756261496394, 0.00015438852268413278, 0.00015540702823102978, 0.0001563422928338043, 0.00015720598562291485, 0.00015801033550475537, 0.00015876828963704262, 0.0001594923063621523, 0.00016019514581130294, 0.00016088940060278876, 0.00016158738871178125, 0.00016230040379015332, 0.0001630393829586098, 0.000163814719336008, 0.00016463607643482767, 0.00016551202833941917, 0.00016645079809117004, 0.00016745977820620158, 0.00016854572340325977, 0.000169714939967424, 0.0001709728581450041, 0.0001723249176074912, 0.00017377621420257898, 0.00017533122354654679, 0.00017699456099732336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "type": "scatter"}], "config": {"showlegend": false, "xaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 2000, 4000, 6000, 8000, 10000, 12000, 14000], "range": [0, 14000], "domain": [0.11026538349372993, 0.9934383202099738], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0", "2.00×10³", "4.00×10³", "6.00×10³", "8.00×10³", "1.00×10⁴", "1.20×10⁴", "1.40×10⁴"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "y", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "paper_bgcolor": "rgba(255, 255, 255, 1.000)", "annotations": [{"yanchor": "top", "xanchor": "center", "rotation": 0, "y": 1, "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 20}, "yref": "paper", "showarrow": false, "text": "Интенсивность отказов непараметрической модели Matlab", "xref": "paper", "x": 0.5518518518518518}], "height": 400, "margin": {"l": 0, "b": 20, "r": 0, "t": 20}, "plot_bgcolor": "rgba(255, 255, 255, 1.000)", "yaxis": {"showticklabels": true, "gridwidth": 0.5, "tickvals": [0, 5e-05, 0.0001, 0.00015000000000000001], "range": [-5.309836829919703e-06, 0.00018230439782724307], "domain": [0.03762029746281716, 0.9415463692038496], "mirror": false, "tickangle": 0, "showline": true, "ticktext": ["0.00000", "0.00005", "0.00010", "0.00015"], "zeroline": false, "tickfont": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 11}, "zerolinecolor": "rgba(0, 0, 0, 1)", "anchor": "x", "visible": true, "ticks": "inside", "tickmode": "array", "linecolor": "rgba(0, 0, 0, 1)", "showgrid": true, "title": {"text": "", "font": {"color": "rgba(0, 0, 0, 1)", "family": "sans-serif", "size": 15}}, "gridcolor": "rgba(0, 0, 0, 0.1)", "tickcolor": "rgb(0, 0, 0)", "type": "linear"}, "width": 861.1875}}