{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "c125571f",
   "metadata": {
    "editable": true,
    "lines_to_next_cell": 0,
    "slideshow": {
     "slide_type": ""
    },
    "tags": [
     "remove-cell"
    ]
   },
   "source": [
    "<center><img src=\"images/ML_video_w_s.webp\" style=\"margin: 20 auto;\"></center>\n",
    "<p style=\"font-family: Protomolecule; font-size: 2.3em; line-height: 90%; margin: 0 auto; text-align: center; width: 100%;\"><span style=\"letter-spacing: .1rem;\">Machine</span><br><span style=\"letter-spacing: -.1rem;\">Learning</span></p>\n",
    "<p class=\"author\" style=\"font-family: Protomolecule; margin: 0px auto;  text-align: center; width: 100%; font-size: 1.2em;\">Joern Ploennigs</p>\n",
    "<p class=\"subtitle\" style=\"font-family: Protomolecule; font-size: larger; margin: 1em auto; text-align: center; width: 100%; font-size: 1.2em;\">Statistische Datenanalyse</p>"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b55b394f-73c4-481a-9993-2fdfa6c02bf1",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "# Statistische Datenanalyse"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a9501f13-97c0-44bd-ad2a-27d50a052ab9",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "![](images/06_Descriptive_Statistics/mj_title_band.png)\n",
    "\n",
    "> Wir haben nur eine Welt, aber wir brauchen mehr als einen Weg, um sie zu verstehen.\n",
    "> \n",
    "> — Robert Merton"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e0dd24de-2d12-497c-ae06-312d8a0d0b67",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "Nachdem man sich mit einem neuen Datensatz vertraut gemacht hat, werden grundlegende Statistiken berechnet, um die Daten besser zu verstehen, auf Plausibilität zu prüfen und wichtige Informationen für spätere Modellierungsschritte zu gewinnen, wie Verteilungsformen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "92791031",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "## <a href=\"/lec_slides/06_Descriptive_Statistics.slides.html\">Folien</a>\n",
    "<iframe src=\"/lec_slides/06_Descriptive_Statistics.slides.html\" width=\"750\" height=\"500\"></iframe>"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "33fb820f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "## Einfache beschreibende Statistiken"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7750568d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "### Minimum, Maximum und der beobachtete Wertebereich"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e0781268",
   "metadata": {},
   "source": [
    "Wir explorieren in diesem Notebook den Wetterdatensatz aus Warnemünde und laden ihn mit:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "ce3f9ea2",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(7209, 19)"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import numpy as np # Import von NumPy\n",
    "import pandas as pd # Import von Pandas\n",
    "\n",
    "wetter = pd.read_csv(\"../data/Wetter/warnemuende_1960.csv\", sep=';')\n",
    "wetter.shape"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4ed6411a",
   "metadata": {},
   "source": [
    "Wetterdaten sind z.B. wichtig für die Planung von Betonierarbeiten, Trocknungszeiten und Bauzeitprognosen. Solche Informationen können auch helfen, Risiken und Verzögerungen besser zu kalkulieren.\n",
    "\n",
    "Statistische Kennwerte wie Minimum, Maximum, Mittelwert und Standardabweichung helfen dabei, Daten zu normalisieren, Ausreißer zu erkennen oder Features richtig zu interpretieren. Das sind alles wichtige Schritte vor dem Trainieren von ML-Modellen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2dd4d508",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Das Minimum und Maximum sind eine intuitive Statistik, die den kleinsten und größten Wert in einem Datensatz angeben. Wir können beide direkt bestimmen mit:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "c662866d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(-14.8, 27.8)"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.min(), wetter.TMK.max() "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "0b81037d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Das Minimum und Maximum sind besonders sinnvoll zur Plausibilitätsprüfung des Datensatzes. Diese Werte zeigen, in welchem Bereich sich die Daten bewegen. Das ist z. B. wichtig, um unplausible Messwerte zu erkennen: etwa eine Temperatur von 120 °C im Winter. Hieraus lässt sich der beobachtete Wertebereich berechnen durch:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "65ff3914",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "42.6"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.max() - wetter.TMK.min()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "26dfe609",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Der beobachtete Wertebereich ist ein sehr einfaches Maß für die Streuung in einem Datensatz, allerdings nicht sehr robust. "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9efbe08f-f84f-4a80-bf69-94a121fd1a72",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "<div class=\"alert alert-block alert-warning\">\n",
    "<b>Achtung: Robustheit von Minimum und Maximum</b>\n",
    "\n",
    "Es ist wichtig zu beachten, dass das beobachtete Minimum, Maximum und der daraus folgende Wertebereich nicht den realen Grenzen entsprechen muss. Unter der Annahme das die Daten statistisch verteilt sind, liegen Minimum und Maximum häufig in Bereichen der Verteilung, die nur selten auftreten und folglich beobachtet werden. Es ist immer davon auszugehen, dass die realen Grenzwerte davon abweichen und einfach nur nicht beobachtet worden sind.\n",
    "\n",
    "Nehmen wir als Beispiel die Temperatur. Aus der Physik ist bekannt, dass diese zwischen dem absoluten Nullpunkt bei -273,15 °C und der vermuteten maximalen Planck-Temperatur von 1,42x10<sup>32</sup> °C liegen kann. Das ist der reale Wertebereich. Beide Temperaturen konnten allerdings noch nie gemessen werden und somit sollten sie in einem Messdatensatz nicht auftreten.\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1aa5eb61",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Mittelwert"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9c0819e9-e9b7-4517-bf26-1645b087cc38",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Der arithmetische Mittelwert, oder Durchschnitt, ist ein beliebtes Maß für das Lagemaß. Mit dem Lagemaß beschreibt man die \"typischen\" Werte in einem Datensatz. Sie folgen aus der_zentralen Tendenz_ vieler Wahrscheinlichkeitsverteilungen, dass die Werte um ein zentralen Wert liegen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2b97210f-b6a7-44bd-8738-b0146d4706d5",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Der arithmetische Mittelwert entspricht der Summe aller Werte im Datensatz geteilt durch die Anzahl der Werte im Datensatz. Also, wenn wir Werte in einem Datensatz haben und sie Werte haben ..., ist der Stichprobenmittelwert in der Regel durch den Buchstaben dargestellt. Die Formel ist:\n",
    "\n",
    "$$\n",
    "\\bar{x} = \\frac{1}{N} \\sum_{i=1}^{N} x_i.\n",
    "$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "12ac91ba-dc0f-4b7f-95e7-10a405e59ca4",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "Der Mittelwert ist ein zentrales Lagemaß des Datensatzes. Er beschreibt den durchschnittlichen Wert, muss aber nicht selbst als beobachteter Wert im Datensatz vorkommen. Eine wichtige Eigenschaft des Mittelwerts ist, dass er bei quadratischer Fehlerbewertung den Fehler bei der Vorhersage eines beliebigen Werts im Datensatz minimiert. Darüber hinaus ist der Mittelwert das einzige Lagemaß, bei dem die Summe der Abweichungen aller Werte vom Mittelwert immer 0 ist."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e4f0ffef-4865-4bdc-a100-06c24ea1958f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Der Mittelwert lässt sich in Pandas für jede Spalte mit der Methode `mean` direkt berechnen. Bestimmen wir für die Lufttemperatur in unserem Wetterdatensatz ergibt sich"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "0b249f1c",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "8.47518379803024"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.mean()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "793e43a1",
   "metadata": {},
   "source": [
    "Es war also im Schnitt 8.47°C."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "21023ce5-5f34-4793-b2c2-6532487203ea",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Median"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "734e4f11",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Der Mittelwert hat einen Hauptnachteil: Er ist besonders anfällig für den Einfluss von Ausreißern. Dies sind Werte, die im Vergleich zum Rest des Datensatzes ungewöhnlich sind, indem sie besonders klein oder groß im numerischen Wert sind. Betrachten wir zum Beispiel die Löhne der Mitarbeiter in einer Fabrik unten:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "61b4ece8",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "30.7"
      ]
     },
     "execution_count": 5,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gehalt = [15, 18, 16, 14, 15, 15, 12, 17, 90, 95] # in Tausend\n",
    "np.mean(gehalt)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "efe85da2",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "Der durchschnittliche Gehalt für diese zehn Mitarbeiter beträgt `30,7` Tausend. Allerdings die Daten, dass dieser Durchschnittswert möglicherweise nicht der beste Weg ist, um das typische Gehalt eines Arbeitnehmers widerzuspiegeln, da die meisten Gehälter im Bereich von 12 bis 18 Tausend liegen. Der Mittelwert wird durch die beiden hohen Gehälter verzerrt. Daher braucht man einen _robusteres_ Lagemaß für die zentrale Tendenz. Deshalb verwendet man in solchen Fällen meist den _Median_.\n",
    "\n",
    "Ein weiterer Zeitpunkt, an dem wir in der Regel den Median gegenüber dem Mittelwert bevorzugen, ist, wenn unsere Daten schief sind (d. h. die Häufigkeitsverteilung unserer Daten ist schief). Wenn wir die Normalverteilung betrachten - da dies in der Statistik am häufigsten bewertet wird - sind der Mittelwert, der Median und der Modus identisch, wenn die Daten perfekt normal sind. Darüber hinaus stellen sie alle den typischsten Wert im Datensatz dar. Wenn die Daten jedoch schief werden, verliert der Mittelwert seine Fähigkeit, den besten zentralen Ort für die Daten zu liefern, da die schiefen Daten ihn vom typischen Wert wegziehen. Der Median behält jedoch am besten diese Position bei und wird nicht so stark von den schiefen Werten beeinflusst. Dies wird später im Abschnitt zur Schiefe genauer erläutert. In beiden Fällen nutzt man deshalb den Median."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2a469f6d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Der Median ist der mittlere Wert für eine Reihe von Daten, die nach ihrer Größe geordnet wurden. Der Median wird weniger von Ausreißern und schiefen Daten beeinflusst. \n",
    "\n",
    "Prinzipiell können wir ihn berechnen, indem wir die Werte zuerst der Größe nach sortieren:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "bbf6173d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[12, 14, 15, 15, 15, 16, 17, 18, 90, 95]"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gehalt.sort()\n",
    "gehalt"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "34383c2a",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "und dann den mittleren Wert auswählen, der sich aus der Länge berechnet"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "1f784b75",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "16"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gehalt[len(gehalt) // 2]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6bfbd72f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Ist die Anzahl der Werte gerade, so bildet man den Durchschnitt aus den beiden in der Mitte liegenden Werten."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9e29ec36",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Der Einfachheit halber können wir den Median für eine Spalte direkt mit Pandas berechnen. Bei der Temperatur in dem Wetter Datensatz ergibt sich auch ein leicht unterschiedlicher Wert im Vergleich zum Mittelwert, nämlich"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "f32dd386",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "8.6"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.median()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d18bb2f7",
   "metadata": {},
   "source": [
    "Der mittelste Wert in unserem Datensatz war also 8.6°C und damit etwas wärmer als der Mittelwert von 8.47°C."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4f14da53",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Standardabweichung und Varianz"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ae075375-d612-44c9-8a88-a1324fcdf432",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Ein wichtiges Kriterium zur Beschreibung von Daten ist neben der zentralen Tendenz die Streuung der Daten. Der Grund ist, dass der Mittelwert oder der Median uns zwar eine Vorstellung des \"typischen\" Wertes geben aber keine Information, wie stark die realen Werte davon abweichen. "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ba990f69-08db-4736-862d-461fc1f02905",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "In einem Datensatz mit einer großen Streuung ist der Mittelwert oder der Median nicht mehr sehr aussagekräftig. Wir haben das im Beispiel der Gehälter gesehen. Wo wir mit dem Median zwar wissen, dass diese um 16 Tausend liegen, aber dadurch auch ausblenden, dass die Gehälter bis zu 96 Tausend reichen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9efac7dd-7367-4b89-8def-0b5fcf8a9712",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Deshalb gibt man bei Daten meist die Varianz $s^2$ oder die Standartabweichung $s$ die sich wie folgt berechnen\n",
    "\n",
    "$$\n",
    "s^2 = \\frac{1}{n -1} \\sum_{i=1}^{n} (x_i - \\bar{x})^2.\n",
    "$$\n",
    "\n",
    "$$\n",
    "s = \\sqrt{s^2}.\n",
    "$$\n",
    "\n",
    "Die Formel zeigt, dass die Varianz $s^2$ das quadratische Abweichungsmaß der einzelnen Datenpunkte vom arithmetischen Mittel ist. Die Varianz ist ein Fehlermaß, wie weit die einzelnen Datenpunkte von diesem Mittelwert entfernt sind. \n",
    "\n",
    "Die Standardabweichung $s$ ist die Quadratwurzel der Varianz und gibt somit die durchschnittliche Abweichung der Datenpunkte vom Mittelwert in den ursprünglichen Einheiten der Daten an. Sie ist ein Maß für die Streuung der Datenpunkte um den Mittelwert. Die Standardabweichung ist oft intuitiver zu interpretieren, da sie direkt in den ursprünglichen Einheiten der Daten gemessen wird, während die Varianz in Quadraten dieser Einheiten gemessen wird."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "0784095b-440d-4746-aa1e-d6f89b60169f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "In Pandas können wir beide Werte berechnen mit"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "c2634b43",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(48.715764481335846, 6.979667934890301)"
      ]
     },
     "execution_count": 9,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.var(), wetter.TMK.std()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "df8849ba",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Wir sehen an der Standardabweichung, dass die Temperatur im Durchschnitt um 6.9°C vom Mittelwert abweicht. Da die Varianz quadratisch ist, ist sie für Menschen schlechter zu interpretieren. Man benutzt sie dennoch zum Vergleichen, da durch die Quadratur, stärkere Abweichungen betont werden und sie so im Vergleich besser herausstechen. Eine Eigenschaft die später bei der Berechnung und der Bewertung von ML-Modellen relevant sein wird."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e0c196ee-779c-4013-b46d-200fb00548c6",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Schiefe\n",
    "Die Schiefe ist ein Maß für die Asymmetrie der Datenverteilung. Ist die Schiefe 0 so sind die Werte symmetrisch um den Median verteilt. Ist die Schiefe negativ so streuen die Werte die kleiner als der Median sind mehr, was den arithmetischen  Mittelwert auf diese Seite verschiebt. Bei einer positiven Schiefe streuen sie mehr auf der rechten Seite. Die Schiefe ist ein gutes Indiz für bestimmte Wahrscheinlichkeitsverteilungen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "02c2d7c1-95ac-43d1-84d4-da2e1291ec35",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Schiefe wird berechnet durch\n",
    "\n",
    "$$\n",
    "g = \\frac{1}{n} \\sum_{i=1}^n \\left( \\frac{ x_i - \\bar{x} }{s} \\right)^3.\n",
    "$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1d304421",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Schiefe lässt sich auch in Pandas direkt berechnen. Für die Temperatur bestätigt sich jetzt unsere Beobachtung, die wir beim Vergleich von Median und Mittelwert gemacht haben, nämlich, dass die Verteilung etwas linksschief ist."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "41c8f9fb",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "-0.21288392100379444"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.skew()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "74af1544-bb05-4ee1-bd73-79cc052c9914",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Wölbung\n",
    "Der Wölbung oder Kurtosis ist ein Maß für die Spitzigkeit oder Flachheit einer Verteilung und ein Maß für die Abweichung von der Normalverteilung. Da viele ML-Modelle von normalverteilten Werten ausgehen, können Daten mit einer großen Kurtosis problematisch sein. Hier spricht man auch von Long-Tail-Verteilungen, also Verteilungen, die nicht schnell abflachen. Deshalb kann man sie im Data-Cleaning nicht gut abschneiden, um Außreißer zu entfernen und den Datensatz zu normalisieren, was wiederum numerische Problem mit sich führen kann. Spätestens wenn solche Probleme auftreten, sollte man sich die Kurtosis genauer ansehen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9fd7c9b7-7a01-45b2-b51b-82bc9fe2dd77",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Kurtosis wird berechnet durch\n",
    "\n",
    "$$\n",
    "w = \\frac{1}{n} \\sum_{i=1}^n \\left(\\frac{x_i-\\bar{x}}{s}\\right)^4.\n",
    "$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4d4064ef-df82-4511-9dfa-2da4a2d1a838",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Vergleicht man die Formeln für Mittelwert, Varianz, Schiefe und Wölbung so zeigt sich ein Muster, das sich immer nur der Exponent ändert. Deshalb spricht man auch von dem ersten, zweiten, dritten und viertem statistischen Moment. Sie lassen sich auch durch eine gemeinsame Formel auf Basis des Erwartungswertes $\\operatorname{E}$ beschreiben.\n",
    "\n",
    "$$\n",
    " \\mu_k = \\operatorname{E}\\left[\\left(X-\\mu\\right)^k\\right].\n",
    "$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "df645317",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Für die Temperatur haben wir eine Kurtosis von `-0.7`. Das ist nicht problematisch. Solche Faustregeln für Schiefe und Kurtosis können eine erste Orientierung geben, ersetzen aber keine formale Prüfung auf Normalität. Sie zeigen hier lediglich, dass keine starke Abweichung von einer glockenförmigen Verteilung erkennbar ist {cite:p}`byrne2013structural`, {cite:p}`kline2023principles`, {cite:p}`hair2010multivariate`."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "b206f188",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "-0.7045900367551634"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.kurt()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ecd83c2c-184c-4630-bb89-61169196fcd0",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "### Quartile, IQR und Quartile & Perzentile\n",
    "\n",
    "Die Diskussion der Robustheit des beobachteten Wertebereichs und des arithmetischen Mittelwertes, dass diese statistischen Größen anfällig sind gegenüber Ausreißern. Das trift auch auf die Varianz und die Standardabweichung zu. Gerade die quadratische Berechnung der Varianz überbetont solche Ausreißer. Deshalb braucht man Größen, die robuster reagieren, so genannte Quantile und Perzentile."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "73c5e2d6-ccac-4d5e-95a0-82585ba7097c",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die _Quartile_ berechnen sich ähnlich zum der Median, bloß dass wir nicht den mittelsten Wert aus dem sortierten Datensatz wählen, sondern den Bereich in vier Teile teilen, wodurch das Q1-Quartile 25% der Daten kleiner sind, bei Q2-Quartile 50% der Daten kleiner sind (Median), und beim Q3-Quartile 75% der Daten drunter liegen. Wenn wir die Berechnungsvorschrift auf den Gehaltsdatensatz anwenden, so folgt:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "6c90de51-ed4b-4292-9a9e-b8ce6d001d91",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(15, 15, 17)"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gehalt = np.sort(gehalt)\n",
    "Q1 = gehalt[len(gehalt) // 4 * 1]\n",
    "Q2 = gehalt[len(gehalt) // 4 * 2]\n",
    "Q3 = gehalt[len(gehalt) // 4 * 3]\n",
    "Q1, Q2, Q3"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "03b876a3-8bfe-40a3-966b-f5ebf93a77ea",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Dadurch das die 15 beim Q1 und Q2 vorkommt sehen wir schon, dass das ein häufiger Wert ist und aus dem 17 des Q3 folgt, dass der Datensatz rechtsschief ist."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "21adb237-fb68-48b4-8abb-3e562308a257",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Wenn wir den Datensatz nicht nur in vier Teile teilen sondern in 100 Teile, so, haben wir _Quantile_. Ein $p$-_Quantil_ beschreibt, dass der Anteil $p$ von 100 Teilen unter dem bestimmten Wert liegt. Es liegt nahe $p$ in Prozent anzugeben und dann spricht man von _Perzentilen_. Nehmen wir zum Beispiel das 95%-Perzentil, so bedeutet das, dass 95 Prozent der Werte kleiner und 5 Prozent der Werte größer als das Perzentil sind. Damit sind Quantile auch eine generische Darstellung vom Quartilen (25%, 50%, 75%), Median (50%) und Minimum (0%) und Maximum (100%)."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "505d9a61-64b9-463b-864e-e9ab7b1faeb1",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Perzentile lassen sich in Pandas wie gewohnt einfach berechnen, indem wir den gewünschten Prozentwert angeben."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "01f36b29-97de-47e6-bcbd-c2bc118004c3",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "3.0"
      ]
     },
     "execution_count": 13,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.TMK.quantile(0.25)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3b5f4f06-4c3d-40d6-9fca-c2492cca8ea2",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Wir können auch gleich mehrere Werte angeben."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "68ff29fd-eeeb-488f-8399-5d6d2df5efe0",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "outputs": [],
   "source": [
    "t_min, t_01, t_Q1, t_median, t_Q3, t_99, t_max = wetter.TMK.quantile([0, 0.01, 0.25, 0.5, 0.75, 0.99, 1.0])"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9226a5f4-306d-483f-bfbc-d63eaf8497ec",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Hier bestimmen wir auch das 1%-Perzentil und das 99%-Perzentil. Solche Werte werden alternativ zum Minimum und Maximum verwendet, weil sie insbesondere bei größeren Datensätzen weniger betroffen von Ausreißern sind."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b666e5f7-30e7-4e70-bc64-304256cf5db9",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Als letztes statistische Maß betrachten wir den _Inter-Quartil-Abstand_ (_IQR_). Er ist weniger empfindlich gegenüber Ausreißern als die Standardabweichung und wird alternativ als robustes Streuungsmaß verwendet. Der IQR misst die Spannweite der mittleren 50% der Daten, oder anders gesagt die Differenz des Q3-Quartils bei 75% und des Q1-Quartils bei 25%."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "67abab6c-adf8-44a8-99cd-661268280843",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "11.5"
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t_IQR = t_Q3 - t_Q1\n",
    "t_IQR "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2c5ea99a-51b1-41b1-90c9-a08e0fa5411d",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Aufgrund seiner robusten Eigenschaften wird der IQR gerne zur Identifikation von Ausreißern benutzt. Dabei nimmt man an das Werte die mehr als 1,5 IQR (oder 3 IQR wenn man vorsichtig ist) vom 1. oder 3. Quantil entfernt sind, als Ausreißer angesehen werden können. Wenn wir das für die Temperatur bestimmen, so ergibt sich ein Ausreißer von `-14.8` °C der 1956 gemessen worden ist."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "b2e33c94-1269-4b9d-8934-53c7555436e4",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>STATIONS_ID</th>\n",
       "      <th>MESS_DATUM</th>\n",
       "      <th>QN_3</th>\n",
       "      <th>FX</th>\n",
       "      <th>FM</th>\n",
       "      <th>QN_4</th>\n",
       "      <th>RSK</th>\n",
       "      <th>RSKF</th>\n",
       "      <th>SDK</th>\n",
       "      <th>SHK_TAG</th>\n",
       "      <th>NM</th>\n",
       "      <th>VPM</th>\n",
       "      <th>PM</th>\n",
       "      <th>TMK</th>\n",
       "      <th>UPM</th>\n",
       "      <th>TXK</th>\n",
       "      <th>TNK</th>\n",
       "      <th>TGK</th>\n",
       "      <th>eor</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>3328</th>\n",
       "      <td>4271</td>\n",
       "      <td>19560215</td>\n",
       "      <td>5</td>\n",
       "      <td>-999</td>\n",
       "      <td>1.9</td>\n",
       "      <td>5</td>\n",
       "      <td>0.0</td>\n",
       "      <td>8</td>\n",
       "      <td>4.3</td>\n",
       "      <td>20</td>\n",
       "      <td>2.4</td>\n",
       "      <td>1.9</td>\n",
       "      <td>1010.0</td>\n",
       "      <td>-14.8</td>\n",
       "      <td>91.0</td>\n",
       "      <td>-10.1</td>\n",
       "      <td>-16.6</td>\n",
       "      <td>-24.0</td>\n",
       "      <td>eor</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "      STATIONS_ID  MESS_DATUM  QN_3   FX   FM  QN_4  RSK  RSKF  SDK  SHK_TAG  \\\n",
       "3328         4271    19560215     5 -999  1.9     5  0.0     8  4.3       20   \n",
       "\n",
       "       NM  VPM      PM   TMK   UPM   TXK   TNK   TGK  eor  \n",
       "3328  2.4  1.9  1010.0 -14.8  91.0 -10.1 -16.6 -24.0  eor  "
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter[(wetter.TMK < t_Q1 - 1.5 * t_IQR) | (wetter.TMK > t_Q3 + 1.5 * t_IQR)]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e1edf440-3e27-4a56-979f-0a5d7e225a6b",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Viele von den bisher besprochenen Kenngrößen lassen sich in Pandas auch mit einer einzigen Funktion für alle numerischen Spalten bestimmen, so dass man es sich sparen kann die ganzen Funktionen auf jede Spalte anzuwenden:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "b2774020-cdcc-4a75-b882-f1c6abca5d6f",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>STATIONS_ID</th>\n",
       "      <th>MESS_DATUM</th>\n",
       "      <th>QN_3</th>\n",
       "      <th>FX</th>\n",
       "      <th>FM</th>\n",
       "      <th>QN_4</th>\n",
       "      <th>RSK</th>\n",
       "      <th>RSKF</th>\n",
       "      <th>SDK</th>\n",
       "      <th>SHK_TAG</th>\n",
       "      <th>NM</th>\n",
       "      <th>VPM</th>\n",
       "      <th>PM</th>\n",
       "      <th>TMK</th>\n",
       "      <th>UPM</th>\n",
       "      <th>TXK</th>\n",
       "      <th>TNK</th>\n",
       "      <th>TGK</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>count</th>\n",
       "      <td>7209.0</td>\n",
       "      <td>7.209000e+03</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.0</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "      <td>7209.000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>mean</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.956450e+07</td>\n",
       "      <td>-350.557220</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>-350.524858</td>\n",
       "      <td>4.998890</td>\n",
       "      <td>-200.553600</td>\n",
       "      <td>-200.723956</td>\n",
       "      <td>-197.993217</td>\n",
       "      <td>-201.350118</td>\n",
       "      <td>-197.498571</td>\n",
       "      <td>9.917589</td>\n",
       "      <td>1012.982300</td>\n",
       "      <td>8.475184</td>\n",
       "      <td>83.138022</td>\n",
       "      <td>11.481565</td>\n",
       "      <td>5.604231</td>\n",
       "      <td>4.015245</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>std</th>\n",
       "      <td>0.0</td>\n",
       "      <td>5.698321e+04</td>\n",
       "      <td>480.198395</td>\n",
       "      <td>0.0</td>\n",
       "      <td>480.226313</td>\n",
       "      <td>0.112971</td>\n",
       "      <td>401.895432</td>\n",
       "      <td>401.799677</td>\n",
       "      <td>403.189369</td>\n",
       "      <td>401.487143</td>\n",
       "      <td>403.422698</td>\n",
       "      <td>4.099224</td>\n",
       "      <td>9.929346</td>\n",
       "      <td>6.979668</td>\n",
       "      <td>14.291333</td>\n",
       "      <td>7.831148</td>\n",
       "      <td>6.562490</td>\n",
       "      <td>6.700793</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>min</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.947010e+07</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>1.000000</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>1.500000</td>\n",
       "      <td>968.400000</td>\n",
       "      <td>-14.800000</td>\n",
       "      <td>42.000000</td>\n",
       "      <td>-11.800000</td>\n",
       "      <td>-18.400000</td>\n",
       "      <td>-25.700000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>25%</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.951121e+07</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>-999.000000</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>1.000000</td>\n",
       "      <td>6.700000</td>\n",
       "      <td>1007.000000</td>\n",
       "      <td>3.000000</td>\n",
       "      <td>77.000000</td>\n",
       "      <td>5.100000</td>\n",
       "      <td>0.800000</td>\n",
       "      <td>-0.500000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>50%</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.956112e+07</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>3.200000</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>1.000000</td>\n",
       "      <td>1.800000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>9.200000</td>\n",
       "      <td>1013.200000</td>\n",
       "      <td>8.600000</td>\n",
       "      <td>84.000000</td>\n",
       "      <td>11.700000</td>\n",
       "      <td>5.700000</td>\n",
       "      <td>4.300000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>75%</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.961102e+07</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>5.100000</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>0.900000</td>\n",
       "      <td>1.000000</td>\n",
       "      <td>7.200000</td>\n",
       "      <td>0.000000</td>\n",
       "      <td>7.200000</td>\n",
       "      <td>13.100000</td>\n",
       "      <td>1019.500000</td>\n",
       "      <td>14.500000</td>\n",
       "      <td>90.000000</td>\n",
       "      <td>17.800000</td>\n",
       "      <td>11.100000</td>\n",
       "      <td>9.500000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>max</th>\n",
       "      <td>4271.0</td>\n",
       "      <td>1.966093e+07</td>\n",
       "      <td>5.000000</td>\n",
       "      <td>-999.0</td>\n",
       "      <td>17.500000</td>\n",
       "      <td>9.000000</td>\n",
       "      <td>61.600000</td>\n",
       "      <td>8.000000</td>\n",
       "      <td>16.600000</td>\n",
       "      <td>35.000000</td>\n",
       "      <td>8.000000</td>\n",
       "      <td>25.500000</td>\n",
       "      <td>1046.400000</td>\n",
       "      <td>27.800000</td>\n",
       "      <td>1000.000000</td>\n",
       "      <td>35.000000</td>\n",
       "      <td>20.200000</td>\n",
       "      <td>18.700000</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "       STATIONS_ID    MESS_DATUM         QN_3      FX           FM  \\\n",
       "count       7209.0  7.209000e+03  7209.000000  7209.0  7209.000000   \n",
       "mean        4271.0  1.956450e+07  -350.557220  -999.0  -350.524858   \n",
       "std            0.0  5.698321e+04   480.198395     0.0   480.226313   \n",
       "min         4271.0  1.947010e+07  -999.000000  -999.0  -999.000000   \n",
       "25%         4271.0  1.951121e+07  -999.000000  -999.0  -999.000000   \n",
       "50%         4271.0  1.956112e+07     5.000000  -999.0     3.200000   \n",
       "75%         4271.0  1.961102e+07     5.000000  -999.0     5.100000   \n",
       "max         4271.0  1.966093e+07     5.000000  -999.0    17.500000   \n",
       "\n",
       "              QN_4          RSK         RSKF          SDK      SHK_TAG  \\\n",
       "count  7209.000000  7209.000000  7209.000000  7209.000000  7209.000000   \n",
       "mean      4.998890  -200.553600  -200.723956  -197.993217  -201.350118   \n",
       "std       0.112971   401.895432   401.799677   403.189369   401.487143   \n",
       "min       1.000000  -999.000000  -999.000000  -999.000000  -999.000000   \n",
       "25%       5.000000     0.000000     0.000000     0.000000     0.000000   \n",
       "50%       5.000000     0.000000     1.000000     1.800000     0.000000   \n",
       "75%       5.000000     0.900000     1.000000     7.200000     0.000000   \n",
       "max       9.000000    61.600000     8.000000    16.600000    35.000000   \n",
       "\n",
       "                NM          VPM           PM          TMK          UPM  \\\n",
       "count  7209.000000  7209.000000  7209.000000  7209.000000  7209.000000   \n",
       "mean   -197.498571     9.917589  1012.982300     8.475184    83.138022   \n",
       "std     403.422698     4.099224     9.929346     6.979668    14.291333   \n",
       "min    -999.000000     1.500000   968.400000   -14.800000    42.000000   \n",
       "25%       1.000000     6.700000  1007.000000     3.000000    77.000000   \n",
       "50%       5.000000     9.200000  1013.200000     8.600000    84.000000   \n",
       "75%       7.200000    13.100000  1019.500000    14.500000    90.000000   \n",
       "max       8.000000    25.500000  1046.400000    27.800000  1000.000000   \n",
       "\n",
       "               TXK          TNK          TGK  \n",
       "count  7209.000000  7209.000000  7209.000000  \n",
       "mean     11.481565     5.604231     4.015245  \n",
       "std       7.831148     6.562490     6.700793  \n",
       "min     -11.800000   -18.400000   -25.700000  \n",
       "25%       5.100000     0.800000    -0.500000  \n",
       "50%      11.700000     5.700000     4.300000  \n",
       "75%      17.800000    11.100000     9.500000  \n",
       "max      35.000000    20.200000    18.700000  "
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wetter.describe()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "17f51ad6-c346-49f4-a965-b737347e6f96",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": []
   },
   "source": [
    "## Verteilungsformen\n",
    "\n",
    "Die Kenntnis verschiedener statistischer Verteilungen ist für die Datenanalyse von Bedeutung. Wenn man die Verteilungsform und ihre Parameter von Variablen kennt, so kann man auf die Entstehungsprozesse schließen und die Daten auch synthetisch erzeugen, was z.B. wichtig für Simulationen ist."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "46eca020-e2e3-49ec-bcb6-e6a28ca17f04",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "### Kontinuierliche Verteilungen\n",
    "#### Normalverteilung"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "468276f1-3a87-47d4-9d40-f7dbb0cbf591",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Die Normalverteilung, auch Gaußsche Glockenkurve genannt, ist eine symmetrische Verteilung mit einem Maximum in der Mitte und abnehmenden Wahrscheinlichkeiten in den Flanken. Sie ist die am häufigsten vorkommende Verteilung in der Natur. Das ist unter anderem auf den zentralen Grenzwertsatz zurückzuführen:"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "93267b44-d80a-4592-82ee-3d0155306806",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "<div class=\"alert alert-block alert-success\">\n",
    "<b>📘 Definition: Zentrale-Grenzwertsatz</b>\n",
    "\n",
    "Der zentrale Grenzwertsatz von Lindeberg-Lévy besagt, dass wenn wir viele unabhängige Zufallsvariablen addieren, unabhängig von ihrer ursprünglichen Verteilung, die Summe dieser Zufallsvariablen tendenziell einer Normalverteilung folgt, wenn die Anzahl der Zufallsvariablen groß genug ist.\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "29466750-11e3-478c-bcaf-3e036303ea57",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": []
   },
   "source": [
    "Infolgedessen findet sich die Normalverteilung bei vielen Größen, die von vielen Einflussgrößen beeinflusst werden, unteranderem die Körpergröße von Menschen oder der Messfehler bei Messungen, da die zufälligen Fehler von Messgeräten viele Ursachen haben und sich meist zu einer Normalverteilung überlagern."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "dd2606da-7d2b-4bf6-9783-a519a195fd4f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Normalverteilung hat als charakteristische Parameter den Mittelwert $\\mu$ und die Standardabweichung $\\sigma$. Sie ist definiert durch die folgende Funktion\n",
    "\n",
    "$$\n",
    "f(x) = \\frac{1}{\\sigma \\sqrt{2\\pi} } e^{-\\frac{1}{2}\\left(\\frac{x-\\mu}{\\sigma}\\right)^2}.\n",
    "$$\n",
    "\n",
    "Zu erkennen ist die Normalverteilung durch die charakteristische Glockenform."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "a373b684-938f-49b1-8379-b9a62fe44b88",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "skip"
    },
    "tags": [
     "remove-cell"
    ]
   },
   "outputs": [],
   "source": [
    "import numpy as np\n",
    "import matplotlib.pyplot as plt                                  \n",
    "from scipy import stats  \n",
    "import plotly.express as px\n",
    "\n",
    "# Normalverteilung\n",
    "sample_size = 100000\n",
    "NN = 1000\n",
    "\n",
    "import warnings\n",
    "warnings.filterwarnings('ignore')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "a698e6b9-4309-479c-beae-c192aaa9cffe",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>μ</i>=0; <i>σ</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>μ</i>=0; <i>σ</i>=1",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>μ</i>=0; <i>σ</i>=1",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          -3.090232306167813,
          -3.084045654904214,
          -3.0778590036406146,
          -3.0716723523770155,
          -3.0654857011134165,
          -3.059299049849817,
          -3.053112398586218,
          -3.046925747322619,
          -3.0407390960590193,
          -3.03455244479542,
          -3.028365793531821,
          -3.0221791422682216,
          -3.0159924910046225,
          -3.0098058397410234,
          -3.003619188477424,
          -2.997432537213825,
          -2.991245885950226,
          -2.9850592346866263,
          -2.978872583423027,
          -2.972685932159428,
          -2.9664992808958286,
          -2.9603126296322295,
          -2.95412597836863,
          -2.947939327105031,
          -2.941752675841432,
          -2.9355660245778328,
          -2.9293793733142333,
          -2.923192722050634,
          -2.9170060707870347,
          -2.9108194195234356,
          -2.9046327682598365,
          -2.898446116996237,
          -2.892259465732638,
          -2.886072814469039,
          -2.8798861632054393,
          -2.8736995119418403,
          -2.867512860678241,
          -2.8613262094146417,
          -2.8551395581510426,
          -2.8489529068874435,
          -2.842766255623844,
          -2.836579604360245,
          -2.830392953096646,
          -2.8242063018330463,
          -2.8180196505694473,
          -2.811832999305848,
          -2.8056463480422487,
          -2.7994596967786496,
          -2.7932730455150505,
          -2.787086394251451,
          -2.780899742987852,
          -2.774713091724253,
          -2.7685264404606533,
          -2.7623397891970543,
          -2.756153137933455,
          -2.7499664866698557,
          -2.7437798354062566,
          -2.7375931841426575,
          -2.731406532879058,
          -2.725219881615459,
          -2.71903323035186,
          -2.7128465790882603,
          -2.7066599278246612,
          -2.700473276561062,
          -2.6942866252974627,
          -2.6880999740338636,
          -2.6819133227702645,
          -2.675726671506665,
          -2.669540020243066,
          -2.6633533689794664,
          -2.6571667177158673,
          -2.6509800664522682,
          -2.644793415188669,
          -2.6386067639250697,
          -2.6324201126614706,
          -2.626233461397871,
          -2.620046810134272,
          -2.613860158870673,
          -2.607673507607074,
          -2.6014868563434743,
          -2.5953002050798752,
          -2.5891135538162757,
          -2.5829269025526767,
          -2.5767402512890776,
          -2.5705536000254785,
          -2.564366948761879,
          -2.55818029749828,
          -2.5519936462346804,
          -2.5458069949710813,
          -2.5396203437074822,
          -2.533433692443883,
          -2.5272470411802836,
          -2.5210603899166846,
          -2.514873738653085,
          -2.508687087389486,
          -2.502500436125887,
          -2.496313784862288,
          -2.4901271335986883,
          -2.4839404823350892,
          -2.4777538310714897,
          -2.4715671798078906,
          -2.4653805285442916,
          -2.459193877280692,
          -2.453007226017093,
          -2.446820574753494,
          -2.4406339234898944,
          -2.4344472722262953,
          -2.4282606209626962,
          -2.4220739696990967,
          -2.4158873184354976,
          -2.409700667171898,
          -2.403514015908299,
          -2.3973273646447,
          -2.391140713381101,
          -2.3849540621175014,
          -2.3787674108539023,
          -2.372580759590303,
          -2.3663941083267037,
          -2.3602074570631046,
          -2.3540208057995056,
          -2.347834154535906,
          -2.341647503272307,
          -2.3354608520087075,
          -2.3292742007451084,
          -2.3230875494815093,
          -2.3169008982179102,
          -2.3107142469543107,
          -2.3045275956907116,
          -2.298340944427112,
          -2.292154293163513,
          -2.285967641899914,
          -2.279780990636315,
          -2.2735943393727154,
          -2.2674076881091163,
          -2.261221036845517,
          -2.2550343855819177,
          -2.2488477343183186,
          -2.2426610830547196,
          -2.23647443179112,
          -2.230287780527521,
          -2.2241011292639215,
          -2.2179144780003224,
          -2.2117278267367233,
          -2.2055411754731242,
          -2.1993545242095247,
          -2.1931678729459256,
          -2.186981221682326,
          -2.180794570418727,
          -2.174607919155128,
          -2.1684212678915284,
          -2.1622346166279294,
          -2.1560479653643303,
          -2.149861314100731,
          -2.1436746628371317,
          -2.1374880115735326,
          -2.131301360309933,
          -2.125114709046334,
          -2.118928057782735,
          -2.1127414065191354,
          -2.1065547552555364,
          -2.1003681039919373,
          -2.0941814527283378,
          -2.0879948014647387,
          -2.081808150201139,
          -2.07562149893754,
          -2.069434847673941,
          -2.063248196410342,
          -2.0570615451467424,
          -2.0508748938831434,
          -2.044688242619544,
          -2.0385015913559448,
          -2.0323149400923457,
          -2.0261282888287466,
          -2.019941637565147,
          -2.013754986301548,
          -2.0075683350379485,
          -2.0013816837743494,
          -1.9951950325107504,
          -1.989008381247151,
          -1.9828217299835518,
          -1.9766350787199527,
          -1.9704484274563534,
          -1.964261776192754,
          -1.958075124929155,
          -1.9518884736655557,
          -1.9457018224019564,
          -1.9395151711383574,
          -1.933328519874758,
          -1.9271418686111588,
          -1.9209552173475597,
          -1.9147685660839604,
          -1.908581914820361,
          -1.902395263556762,
          -1.8962086122931627,
          -1.8900219610295634,
          -1.8838353097659641,
          -1.877648658502365,
          -1.8714620072387658,
          -1.8652753559751665,
          -1.8590887047115674,
          -1.852902053447968,
          -1.8467154021843688,
          -1.8405287509207697,
          -1.8343420996571704,
          -1.8281554483935711,
          -1.821968797129972,
          -1.8157821458663728,
          -1.8095954946027735,
          -1.8034088433391744,
          -1.797222192075575,
          -1.7910355408119758,
          -1.7848488895483767,
          -1.7786622382847774,
          -1.7724755870211781,
          -1.766288935757579,
          -1.7601022844939798,
          -1.7539156332303805,
          -1.7477289819667814,
          -1.741542330703182,
          -1.7353556794395828,
          -1.7291690281759835,
          -1.7229823769123844,
          -1.7167957256487851,
          -1.7106090743851858,
          -1.7044224231215868,
          -1.6982357718579875,
          -1.6920491205943882,
          -1.685862469330789,
          -1.6796758180671898,
          -1.6734891668035905,
          -1.6673025155399914,
          -1.6611158642763921,
          -1.6549292130127928,
          -1.6487425617491938,
          -1.6425559104855945,
          -1.6363692592219952,
          -1.630182607958396,
          -1.6239959566947968,
          -1.6178093054311975,
          -1.6116226541675984,
          -1.6054360029039991,
          -1.5992493516403998,
          -1.5930627003768008,
          -1.5868760491132015,
          -1.5806893978496022,
          -1.5745027465860029,
          -1.5683160953224038,
          -1.5621294440588045,
          -1.5559427927952052,
          -1.5497561415316061,
          -1.5435694902680068,
          -1.5373828390044075,
          -1.5311961877408085,
          -1.5250095364772092,
          -1.5188228852136099,
          -1.5126362339500108,
          -1.5064495826864115,
          -1.5002629314228122,
          -1.4940762801592131,
          -1.4878896288956138,
          -1.4817029776320145,
          -1.4755163263684155,
          -1.4693296751048162,
          -1.4631430238412169,
          -1.4569563725776178,
          -1.4507697213140185,
          -1.4445830700504192,
          -1.4383964187868201,
          -1.4322097675232208,
          -1.4260231162596215,
          -1.4198364649960222,
          -1.4136498137324232,
          -1.4074631624688239,
          -1.4012765112052246,
          -1.3950898599416255,
          -1.3889032086780262,
          -1.382716557414427,
          -1.3765299061508278,
          -1.3703432548872285,
          -1.3641566036236292,
          -1.3579699523600302,
          -1.3517833010964309,
          -1.3455966498328316,
          -1.3394099985692325,
          -1.3332233473056332,
          -1.327036696042034,
          -1.3208500447784348,
          -1.3146633935148355,
          -1.3084767422512362,
          -1.3022900909876372,
          -1.2961034397240379,
          -1.2899167884604386,
          -1.2837301371968395,
          -1.2775434859332402,
          -1.271356834669641,
          -1.2651701834060416,
          -1.2589835321424425,
          -1.2527968808788432,
          -1.246610229615244,
          -1.2404235783516449,
          -1.2342369270880456,
          -1.2280502758244463,
          -1.2218636245608472,
          -1.2156769732972479,
          -1.2094903220336486,
          -1.2033036707700495,
          -1.1971170195064502,
          -1.190930368242851,
          -1.1847437169792518,
          -1.1785570657156526,
          -1.1723704144520533,
          -1.1661837631884542,
          -1.1599971119248549,
          -1.1538104606612556,
          -1.1476238093976565,
          -1.1414371581340572,
          -1.135250506870458,
          -1.1290638556068588,
          -1.1228772043432595,
          -1.1166905530796603,
          -1.110503901816061,
          -1.1043172505524619,
          -1.0981305992888626,
          -1.0919439480252633,
          -1.0857572967616642,
          -1.0795706454980651,
          -1.0733839942344656,
          -1.0671973429708665,
          -1.0610106917072675,
          -1.054824040443668,
          -1.0486373891800689,
          -1.0424507379164698,
          -1.0362640866528703,
          -1.0300774353892712,
          -1.0238907841256717,
          -1.0177041328620726,
          -1.0115174815984735,
          -1.005330830334874,
          -0.999144179071275,
          -0.9929575278076759,
          -0.9867708765440764,
          -0.9805842252804773,
          -0.9743975740168782,
          -0.9682109227532787,
          -0.9620242714896796,
          -0.9558376202260805,
          -0.949650968962481,
          -0.943464317698882,
          -0.9372776664352829,
          -0.9310910151716834,
          -0.9249043639080843,
          -0.9187177126444852,
          -0.9125310613808857,
          -0.9063444101172866,
          -0.9001577588536875,
          -0.893971107590088,
          -0.887784456326489,
          -0.8815978050628899,
          -0.8754111537992904,
          -0.8692245025356913,
          -0.8630378512720922,
          -0.8568512000084927,
          -0.8506645487448936,
          -0.8444778974812945,
          -0.838291246217695,
          -0.8321045949540959,
          -0.8259179436904969,
          -0.8197312924268974,
          -0.8135446411632983,
          -0.8073579898996992,
          -0.8011713386360997,
          -0.7949846873725006,
          -0.7887980361089015,
          -0.782611384845302,
          -0.7764247335817029,
          -0.7702380823181039,
          -0.7640514310545043,
          -0.7578647797909053,
          -0.7516781285273062,
          -0.7454914772637067,
          -0.7393048260001076,
          -0.7331181747365085,
          -0.726931523472909,
          -0.7207448722093099,
          -0.7145582209457109,
          -0.7083715696821113,
          -0.7021849184185123,
          -0.6959982671549128,
          -0.6898116158913137,
          -0.6836249646277146,
          -0.6774383133641151,
          -0.671251662100516,
          -0.6650650108369169,
          -0.6588783595733174,
          -0.6526917083097183,
          -0.6465050570461193,
          -0.6403184057825198,
          -0.6341317545189207,
          -0.6279451032553216,
          -0.6217584519917221,
          -0.615571800728123,
          -0.6093851494645239,
          -0.6031984982009244,
          -0.5970118469373253,
          -0.5908251956737263,
          -0.5846385444101267,
          -0.5784518931465277,
          -0.5722652418829286,
          -0.5660785906193291,
          -0.55989193935573,
          -0.5537052880921309,
          -0.5475186368285314,
          -0.5413319855649323,
          -0.5351453343013333,
          -0.5289586830377337,
          -0.5227720317741347,
          -0.5165853805105356,
          -0.5103987292469361,
          -0.504212077983337,
          -0.49802542671973793,
          -0.4918387754561384,
          -0.48565212419253934,
          -0.47946547292894026,
          -0.47327882166534074,
          -0.46709217040174167,
          -0.4609055191381426,
          -0.4547188678745431,
          -0.448532216610944,
          -0.4423455653473449,
          -0.4361589140837454,
          -0.42997226282014633,
          -0.42378561155654726,
          -0.41759896029294774,
          -0.41141230902934867,
          -0.4052256577657496,
          -0.3990390065021501,
          -0.392852355238551,
          -0.3866657039749515,
          -0.3804790527113524,
          -0.37429240144775333,
          -0.3681057501841538,
          -0.36191909892055474,
          -0.35573244765695566,
          -0.34954579639335615,
          -0.34335914512975707,
          -0.337172493866158,
          -0.3309858426025585,
          -0.3247991913389594,
          -0.31861254007536033,
          -0.3124258888117608,
          -0.30623923754816174,
          -0.30005258628456266,
          -0.29386593502096314,
          -0.28767928375736407,
          -0.281492632493765,
          -0.2753059812301655,
          -0.2691193299665664,
          -0.2629326787029673,
          -0.2567460274393678,
          -0.25055937617576873,
          -0.24437272491216966,
          -0.23818607364857014,
          -0.23199942238497107,
          -0.225812771121372,
          -0.21962611985777247,
          -0.2134394685941734,
          -0.20725281733057432,
          -0.2010661660669748,
          -0.19487951480337573,
          -0.18869286353977666,
          -0.18250621227617714,
          -0.17631956101257806,
          -0.170132909748979,
          -0.16394625848537947,
          -0.1577596072217804,
          -0.15157295595818132,
          -0.1453863046945818,
          -0.13919965343098273,
          -0.13301300216738365,
          -0.12682635090378414,
          -0.12063969964018506,
          -0.11445304837658599,
          -0.10826639711298647,
          -0.1020797458493874,
          -0.09589309458578832,
          -0.0897064433221888,
          -0.08351979205858973,
          -0.07733314079499021,
          -0.07114648953139113,
          -0.06495983826779206,
          -0.05877318700419254,
          -0.052586535740593465,
          -0.04639988447699439,
          -0.04021323321339487,
          -0.0340265819497958,
          -0.027839930686196723,
          -0.021653279422597205,
          -0.01546662815899813,
          -0.009279976895399056,
          -0.0030933256317995372,
          0.0030933256317995372,
          0.009279976895398612,
          0.01546662815899813,
          0.021653279422597205,
          0.02783993068619628,
          0.0340265819497958,
          0.04021323321339487,
          0.04639988447699395,
          0.052586535740593465,
          0.05877318700419254,
          0.06495983826779161,
          0.07114648953139113,
          0.07733314079499021,
          0.08351979205858928,
          0.0897064433221888,
          0.09589309458578787,
          0.10207974584938695,
          0.10826639711298647,
          0.11445304837658554,
          0.12063969964018462,
          0.12682635090378414,
          0.1330130021673832,
          0.13919965343098228,
          0.1453863046945818,
          0.15157295595818088,
          0.15775960722177995,
          0.16394625848537947,
          0.17013290974897854,
          0.17631956101257762,
          0.18250621227617714,
          0.1886928635397762,
          0.1948795148033753,
          0.2010661660669748,
          0.20725281733057388,
          0.21343946859417295,
          0.21962611985777247,
          0.22581277112137155,
          0.23199942238497062,
          0.23818607364857014,
          0.24437272491216921,
          0.25055937617576873,
          0.2567460274393678,
          0.2629326787029669,
          0.2691193299665664,
          0.2753059812301655,
          0.28149263249376455,
          0.28767928375736407,
          0.29386593502096314,
          0.3000525862845622,
          0.30623923754816174,
          0.3124258888117608,
          0.3186125400753599,
          0.3247991913389594,
          0.3309858426025585,
          0.33717249386615755,
          0.34335914512975707,
          0.34954579639335615,
          0.3557324476569552,
          0.36191909892055474,
          0.3681057501841538,
          0.3742924014477529,
          0.3804790527113524,
          0.3866657039749515,
          0.39285235523855055,
          0.3990390065021501,
          0.40522565776574915,
          0.4114123090293482,
          0.41759896029294774,
          0.4237856115565468,
          0.4299722628201459,
          0.4361589140837454,
          0.4423455653473445,
          0.44853221661094356,
          0.4547188678745431,
          0.46090551913814215,
          0.4670921704017412,
          0.47327882166534074,
          0.4794654729289398,
          0.4856521241925389,
          0.4918387754561384,
          0.4980254267197375,
          0.5042120779833366,
          0.5103987292469361,
          0.5165853805105352,
          0.5227720317741342,
          0.5289586830377337,
          0.5351453343013328,
          0.5413319855649319,
          0.5475186368285314,
          0.5537052880921305,
          0.55989193935573,
          0.5660785906193291,
          0.5722652418829282,
          0.5784518931465277,
          0.5846385444101267,
          0.5908251956737258,
          0.5970118469373253,
          0.6031984982009244,
          0.6093851494645235,
          0.615571800728123,
          0.6217584519917221,
          0.6279451032553212,
          0.6341317545189207,
          0.6403184057825198,
          0.6465050570461188,
          0.6526917083097183,
          0.6588783595733174,
          0.6650650108369165,
          0.671251662100516,
          0.6774383133641151,
          0.6836249646277142,
          0.6898116158913137,
          0.6959982671549128,
          0.7021849184185118,
          0.7083715696821113,
          0.7145582209457104,
          0.7207448722093095,
          0.726931523472909,
          0.7331181747365081,
          0.7393048260001072,
          0.7454914772637067,
          0.7516781285273058,
          0.7578647797909048,
          0.7640514310545043,
          0.7702380823181034,
          0.7764247335817025,
          0.782611384845302,
          0.7887980361089011,
          0.7949846873725002,
          0.8011713386360997,
          0.8073579898996988,
          0.8135446411632978,
          0.8197312924268974,
          0.8259179436904964,
          0.8321045949540955,
          0.838291246217695,
          0.8444778974812941,
          0.8506645487448932,
          0.8568512000084927,
          0.8630378512720918,
          0.8692245025356913,
          0.8754111537992904,
          0.8815978050628894,
          0.887784456326489,
          0.893971107590088,
          0.9001577588536871,
          0.9063444101172866,
          0.9125310613808857,
          0.9187177126444848,
          0.9249043639080838,
          0.9310910151716829,
          0.9372776664352829,
          0.943464317698882,
          0.949650968962481,
          0.9558376202260801,
          0.9620242714896792,
          0.9682109227532782,
          0.9743975740168782,
          0.9805842252804773,
          0.9867708765440764,
          0.9929575278076754,
          0.9991441790712745,
          1.0053308303348736,
          1.0115174815984735,
          1.0177041328620726,
          1.0238907841256717,
          1.0300774353892708,
          1.0362640866528698,
          1.0424507379164698,
          1.0486373891800689,
          1.054824040443668,
          1.061010691707267,
          1.067197342970866,
          1.0733839942344652,
          1.0795706454980651,
          1.0857572967616642,
          1.0919439480252633,
          1.0981305992888624,
          1.1043172505524614,
          1.1105039018160605,
          1.1166905530796605,
          1.1228772043432595,
          1.1290638556068586,
          1.1352505068704577,
          1.1414371581340568,
          1.1476238093976558,
          1.1538104606612558,
          1.1599971119248549,
          1.166183763188454,
          1.172370414452053,
          1.178557065715652,
          1.1847437169792512,
          1.1909303682428511,
          1.1971170195064502,
          1.2033036707700493,
          1.2094903220336484,
          1.2156769732972474,
          1.2218636245608465,
          1.2280502758244465,
          1.2342369270880456,
          1.2404235783516446,
          1.2466102296152437,
          1.2527968808788428,
          1.2589835321424419,
          1.2651701834060418,
          1.271356834669641,
          1.27754348593324,
          1.283730137196839,
          1.2899167884604381,
          1.2961034397240372,
          1.3022900909876372,
          1.3084767422512362,
          1.3146633935148353,
          1.3208500447784344,
          1.3270366960420334,
          1.3332233473056325,
          1.3394099985692325,
          1.3455966498328316,
          1.3517833010964306,
          1.3579699523600297,
          1.3641566036236288,
          1.3703432548872287,
          1.3765299061508278,
          1.382716557414427,
          1.388903208678026,
          1.395089859941625,
          1.4012765112052241,
          1.407463162468824,
          1.4136498137324232,
          1.4198364649960222,
          1.4260231162596213,
          1.4322097675232204,
          1.4383964187868195,
          1.4445830700504194,
          1.4507697213140185,
          1.4569563725776176,
          1.4631430238412166,
          1.4693296751048157,
          1.4755163263684148,
          1.4817029776320148,
          1.4878896288956138,
          1.494076280159213,
          1.500262931422812,
          1.506449582686411,
          1.5126362339500101,
          1.51882288521361,
          1.5250095364772092,
          1.5311961877408082,
          1.5373828390044073,
          1.5435694902680064,
          1.5497561415316055,
          1.5559427927952054,
          1.5621294440588045,
          1.5683160953224036,
          1.5745027465860026,
          1.5806893978496017,
          1.5868760491132008,
          1.5930627003768008,
          1.5992493516403998,
          1.605436002903999,
          1.611622654167598,
          1.617809305431197,
          1.6239959566947961,
          1.630182607958396,
          1.6363692592219952,
          1.6425559104855942,
          1.6487425617491933,
          1.6549292130127924,
          1.6611158642763915,
          1.6673025155399914,
          1.6734891668035905,
          1.6796758180671896,
          1.6858624693307886,
          1.6920491205943877,
          1.6982357718579877,
          1.7044224231215868,
          1.7106090743851858,
          1.716795725648785,
          1.722982376912384,
          1.729169028175983,
          1.735355679439583,
          1.741542330703182,
          1.7477289819667812,
          1.7539156332303802,
          1.7601022844939793,
          1.7662889357575784,
          1.7724755870211784,
          1.7786622382847774,
          1.7848488895483765,
          1.7910355408119756,
          1.7972221920755747,
          1.8034088433391737,
          1.8095954946027737,
          1.8157821458663728,
          1.8219687971299718,
          1.828155448393571,
          1.83434209965717,
          1.840528750920769,
          1.846715402184369,
          1.852902053447968,
          1.8590887047115672,
          1.8652753559751662,
          1.8714620072387653,
          1.8776486585023644,
          1.8838353097659644,
          1.8900219610295634,
          1.8962086122931625,
          1.9023952635567616,
          1.9085819148203607,
          1.9147685660839597,
          1.9209552173475597,
          1.9271418686111588,
          1.9333285198747578,
          1.939515171138357,
          1.945701822401956,
          1.951888473665555,
          1.958075124929155,
          1.964261776192754,
          1.9704484274563532,
          1.9766350787199523,
          1.9828217299835513,
          1.9890083812471513,
          1.9951950325107504,
          2.0013816837743494,
          2.0075683350379485,
          2.0137549863015476,
          2.0199416375651467,
          2.0261282888287466,
          2.0323149400923457,
          2.0385015913559448,
          2.044688242619544,
          2.050874893883143,
          2.057061545146742,
          2.063248196410342,
          2.069434847673941,
          2.07562149893754,
          2.081808150201139,
          2.0879948014647383,
          2.0941814527283373,
          2.1003681039919373,
          2.1065547552555364,
          2.1127414065191354,
          2.1189280577827345,
          2.1251147090463336,
          2.1313013603099327,
          2.1374880115735326,
          2.1436746628371317,
          2.149861314100731,
          2.15604796536433,
          2.162234616627929,
          2.168421267891528,
          2.174607919155128,
          2.180794570418727,
          2.186981221682326,
          2.193167872945925,
          2.1993545242095243,
          2.2055411754731233,
          2.2117278267367233,
          2.2179144780003224,
          2.2241011292639215,
          2.2302877805275205,
          2.2364744317911196,
          2.2426610830547187,
          2.2488477343183186,
          2.2550343855819177,
          2.261221036845517,
          2.267407688109116,
          2.273594339372715,
          2.279780990636314,
          2.285967641899914,
          2.292154293163513,
          2.298340944427112,
          2.304527595690711,
          2.3107142469543103,
          2.3169008982179102,
          2.3230875494815093,
          2.3292742007451084,
          2.3354608520087075,
          2.3416475032723065,
          2.3478341545359056,
          2.3540208057995056,
          2.3602074570631046,
          2.3663941083267037,
          2.372580759590303,
          2.378767410853902,
          2.384954062117501,
          2.391140713381101,
          2.3973273646447,
          2.403514015908299,
          2.409700667171898,
          2.415887318435497,
          2.4220739696990963,
          2.4282606209626962,
          2.4344472722262953,
          2.4406339234898944,
          2.4468205747534935,
          2.4530072260170925,
          2.4591938772806916,
          2.4653805285442916,
          2.4715671798078906,
          2.4777538310714897,
          2.483940482335089,
          2.490127133598688,
          2.496313784862287,
          2.502500436125887,
          2.508687087389486,
          2.514873738653085,
          2.521060389916684,
          2.527247041180283,
          2.5334336924438823,
          2.5396203437074822,
          2.5458069949710813,
          2.5519936462346804,
          2.5581802974982795,
          2.5643669487618785,
          2.5705536000254776,
          2.5767402512890776,
          2.5829269025526767,
          2.5891135538162757,
          2.595300205079875,
          2.601486856343474,
          2.607673507607073,
          2.613860158870673,
          2.620046810134272,
          2.626233461397871,
          2.63242011266147,
          2.638606763925069,
          2.644793415188669,
          2.6509800664522682,
          2.6571667177158673,
          2.6633533689794664,
          2.6695400202430655,
          2.6757266715066645,
          2.6819133227702645,
          2.6880999740338636,
          2.6942866252974627,
          2.7004732765610617,
          2.706659927824661,
          2.71284657908826,
          2.71903323035186,
          2.725219881615459,
          2.731406532879058,
          2.737593184142657,
          2.743779835406256,
          2.749966486669855,
          2.756153137933455,
          2.7623397891970543,
          2.7685264404606533,
          2.7747130917242524,
          2.7808997429878515,
          2.7870863942514505,
          2.7932730455150505,
          2.7994596967786496,
          2.8056463480422487,
          2.8118329993058477,
          2.818019650569447,
          2.824206301833046,
          2.830392953096646,
          2.836579604360245,
          2.842766255623844,
          2.848952906887443,
          2.855139558151042,
          2.861326209414641,
          2.867512860678241,
          2.8736995119418403,
          2.8798861632054393,
          2.8860728144690384,
          2.8922594657326375,
          2.8984461169962366,
          2.9046327682598365,
          2.9108194195234356,
          2.9170060707870347,
          2.9231927220506337,
          2.929379373314233,
          2.9355660245778328,
          2.941752675841432,
          2.947939327105031,
          2.95412597836863,
          2.960312629632229,
          2.966499280895828,
          2.972685932159428,
          2.978872583423027,
          2.9850592346866263,
          2.9912458859502253,
          2.9974325372138244,
          3.0036191884774235,
          3.0098058397410234,
          3.0159924910046225,
          3.0221791422682216,
          3.0283657935318207,
          3.0345524447954197,
          3.040739096059019,
          3.046925747322619,
          3.053112398586218,
          3.059299049849817,
          3.065485701113416,
          3.071672352377015,
          3.077859003640614,
          3.084045654904214,
          3.090232306167813
         ],
         "xaxis": "x",
         "y": [
          0.003367090077063996,
          0.0034320163479761414,
          0.003498060676957575,
          0.0035652394752693673,
          0.003633569338151651,
          0.0037030670457918447,
          0.003773749564275713,
          0.003845634046520795,
          0.003918737833191496,
          0.003993078453595381,
          0.004068673626560113,
          0.0041455412612904025,
          0.004223699458204393,
          0.0043031665097490145,
          0.004383960901193552,
          0.004466101311400906,
          0.0045496066135760505,
          0.004634495875990901,
          0.004720788362685066,
          0.004808503534141959,
          0.004897661047939501,
          0.004988280759374851,
          0.005080382722062624,
          0.005173987188505767,
          0.005269114610638713,
          0.005365785640341916,
          0.005464021129927332,
          0.00556384213259401,
          0.005665269902853387,
          0.005768325896923301,
          0.005873031773090423,
          0.005979409392040144,
          0.006087480817153392,
          0.006197268314769772,
          0.006308794354416168,
          0.006422081609000311,
          0.006537152954968541,
          0.006654031472427116,
          0.006772740445226334,
          0.006893303361006885,
          0.007015743911207673,
          0.007140085991034341,
          0.00726635369938804,
          0.007394571338753524,
          0.007524763415045921,
          0.007656954637415649,
          0.007791169918010554,
          0.00792743437169469,
          0.008065773315723097,
          0.008206212269371762,
          0.008348776953522078,
          0.008493493290199267,
          0.008640387402063849,
          0.008789485611855549,
          0.008940814441789048,
          0.009094400612900736,
          0.009250271044345787,
          0.009408452852645004,
          0.009568973350880609,
          0.009731860047840242,
          0.009897140647108758,
          0.010064843046106766,
          0.010234995335075478,
          0.010407625796007212,
          0.010582762901520656,
          0.010760435313680384,
          0.010940671882760036,
          0.011123501645948256,
          0.011308953825996882,
          0.011497057829810836,
          0.011687843246978741,
          0.011881339848244023,
          0.012077577583915528,
          0.012276586582217182,
          0.01247839714757601,
          0.012683039758848042,
          0.012890545067481126,
          0.01310094389561457,
          0.01331426723411447,
          0.01353054624054455,
          0.013749812237071625,
          0.013972096708305426,
          0.014197431299071821,
          0.014425847812119297,
          0.014657378205757781,
          0.01489205459142954,
          0.015129909231211353,
          0.01537097453524784,
          0.015615283059114868,
          0.015862867501113157,
          0.01611376069949106,
          0.016367995629596368,
          0.01662560540095649,
          0.01688662325428682,
          0.017151082558426373,
          0.017419016807200798,
          0.01769045961621194,
          0.01796544471955384,
          0.01824400596645438,
          0.01852617731784287,
          0.018811992842842358,
          0.019101486715187143,
          0.01939469320956452,
          0.019691646697880746,
          0.01999238164545101,
          0.020296932607112798,
          0.02060533422326258,
          0.020917621215815772,
          0.02123382838408923,
          0.02155399060060645,
          0.021878142806825263,
          0.022206320008787528,
          0.022538557272691117,
          0.022874889720383547,
          0.023215352524777567,
          0.02355998090518821,
          0.023908810122591752,
          0.024261875474805593,
          0.024619212291590288,
          0.024980855929672377,
          0.025346841767688998,
          0.025717205201053653,
          0.026091981636743766,
          0.026471206488009328,
          0.026854915169003468,
          0.027243143089334544,
          0.02763592564854008,
          0.028033298230482506,
          0.028435296197667374,
          0.028841954885483394,
          0.029253309596365476,
          0.029669395593880155,
          0.030090248096734253,
          0.030515902272706688,
          0.030946393232504244,
          0.0313817560235407,
          0.03182202562364103,
          0.03226723693466969,
          0.03271742477608439,
          0.0331726238784152,
          0.03363286887667,
          0.034098194303666056,
          0.03456863458328907,
          0.03504422402367948,
          0.03552499681034708,
          0.03601098699921435,
          0.03650222850958936,
          0.03699875511706839,
          0.037500600446369645,
          0.03800779796409825,
          0.03852038097144324,
          0.03903838259680801,
          0.03956183578837405,
          0.040090773306599325,
          0.04062522771665253,
          0.04116523138078305,
          0.041710816450628393,
          0.042262014859460115,
          0.04281885831436842,
          0.04338137828838703,
          0.04394960601255947,
          0.04452357246794733,
          0.04510330837758176,
          0.04568884419835991,
          0.046280210112886175,
          0.046877436021261036,
          0.04748055153281729,
          0.04808958595780564,
          0.048704568299030714,
          0.04932552724343923,
          0.0499524911536605,
          0.05058548805950225,
          0.05122454564940157,
          0.05186969126183352,
          0.05252095187667814,
          0.053178354106548066,
          0.05384192418807712,
          0.05451168797317291,
          0.055187670920233606,
          0.05586989808533106,
          0.056558394113362366,
          0.05725318322917063,
          0.057954289228637046,
          0.058661735469746124,
          0.05937554486362569,
          0.06009573986556307,
          0.06082234246599983,
          0.06155537418150661,
          0.06229485604573964,
          0.06304080860038129,
          0.06379325188606638,
          0.06455220543329582,
          0.06531768825334007,
          0.06608971882913424,
          0.06686831510616638,
          0.06765349448336169,
          0.06844527380396427,
          0.06924366934641872,
          0.0700486968152531,
          0.07086037133196646,
          0.07167870742592213,
          0.0725037190252492,
          0.07333541944775471,
          0.07417382139184851,
          0.0750189369274828,
          0.07587077748710912,
          0.07672935385665486,
          0.07759467616652123,
          0.07846675388260567,
          0.07934559579735077,
          0.08023121002082154,
          0.08112360397181441,
          0.08202278436899971,
          0.08292875722209997,
          0.08384152782310685,
          0.0847611007375392,
          0.08568747979574401,
          0.08662066808424375,
          0.08756066793713185,
          0.0885074809275191,
          0.08946110785903348,
          0.090421548757376,
          0.09138880286193511,
          0.09236286861746208,
          0.09334374366581007,
          0.09433142483773965,
          0.0953259081447929,
          0.09632718877123914,
          0.09733526106609477,
          0.09835011853521974,
          0.0993717538334932,
          0.1004001587570716,
          0.1014353242357308,
          0.10247724032529586,
          0.10352589620016057,
          0.10458128014589972,
          0.10564337955197604,
          0.1067121809045461,
          0.10778766977936532,
          0.10886983083479744,
          0.10995864780492914,
          0.1110541034927934,
          0.11215617976370376,
          0.11326485753870305,
          0.11438011678812754,
          0.11550193652529125,
          0.11663029480029123,
          0.11776516869393773,
          0.1189065343118107,
          0.12005436677844664,
          0.12120864023165721,
          0.12236932781698258,
          0.12353640168228228,
          0.12470983297246616,
          0.12588959182436738,
          0.12707564736176089,
          0.12826796769052928,
          0.12946651989397862,
          0.13067127002830686,
          0.13188218311822783,
          0.13309922315275158,
          0.13432235308112592,
          0.13555153480893964,
          0.1367867291943903,
          0.13802789604471985,
          0.1392749941128191,
          0.14052798109400433,
          0.14178681362296786,
          0.14305144727090519,
          0.14432183654282044,
          0.14559793487501313,
          0.14687969463274747,
          0.14816706710810754,
          0.14946000251803895,
          0.15075845000258078,
          0.15206235762328865,
          0.15337167236185123,
          0.15468634011890245,
          0.15600630571303153,
          0.1573315128799918,
          0.15866190427211133,
          0.15999742145790685,
          0.16133800492190223,
          0.1626835940646539,
          0.1640341272029854,
          0.16538954157043098,
          0.16674977331789204,
          0.1681147575145068,
          0.16948442814873463,
          0.1708587181296573,
          0.17223755928849835,
          0.17362088238036152,
          0.1750086170861902,
          0.17640069201494926,
          0.17779703470602995,
          0.17919757163187958,
          0.18060222820085722,
          0.18201092876031644,
          0.18342359659991556,
          0.18484015395515763,
          0.18626052201116014,
          0.18768462090665583,
          0.18911236973822504,
          0.19054368656476126,
          0.19197848841216944,
          0.1934166912782988,
          0.1948582101381104,
          0.19630295894907931,
          0.1977508506568337,
          0.19920179720102935,
          0.200655709521461,
          0.20211249756441083,
          0.2035720702892343,
          0.20503433567518323,
          0.20649920072846653,
          0.20796657148954914,
          0.20943635304068778,
          0.21090844951370566,
          0.2123827640980036,
          0.2138591990488095,
          0.2153376556956644,
          0.21681803445114578,
          0.2183002348198277,
          0.2197841554074763,
          0.22126969393048143,
          0.22275674722552363,
          0.2242452112594749,
          0.22573498113953322,
          0.22722595112359115,
          0.2287180146308352,
          0.2302110642525769,
          0.23170499176331472,
          0.2331996881320246,
          0.23469504353367848,
          0.23619094736099078,
          0.23768728823638902,
          0.23918395402421064,
          0.24068083184312164,
          0.24217780807875675,
          0.2436747683965807,
          0.2451715977549671,
          0.24666818041849387,
          0.24816439997145523,
          0.24966013933158537,
          0.2511552807639942,
          0.2526497058953133,
          0.25414329572804834,
          0.25563593065513723,
          0.25712749047471245,
          0.2586178544050636,
          0.26010690109979845,
          0.2615945086632023,
          0.2630805546657898,
          0.2645649161600487,
          0.2660474696963739,
          0.2675280913391867,
          0.2690066566832384,
          0.2704830408700956,
          0.27195711860480337,
          0.2734287641727235,
          0.2748978514565466,
          0.2763642539534732,
          0.27782784479256056,
          0.2792884967522349,
          0.28074608227796244,
          0.2822004735000778,
          0.2836515422517672,
          0.28509916008720104,
          0.28654319829981395,
          0.28798352794072896,
          0.2894200198373215,
          0.2908525446119193,
          0.2922809727006368,
          0.2937051743723377,
          0.29512501974772287,
          0.2965403788185415,
          0.29795112146691877,
          0.2993571174847979,
          0.30075823659349304,
          0.30215434846334815,
          0.30354532273349694,
          0.3049310290317226,
          0.3063113369944104,
          0.30768611628659004,
          0.3090552366220648,
          0.31041856778362054,
          0.31177597964331233,
          0.3131273421828249,
          0.31447252551389954,
          0.3158113998988266,
          0.31714383577099703,
          0.31846970375550837,
          0.3197888746898225,
          0.3211012196444684,
          0.3224066099437869,
          0.3237049171867121,
          0.3249960132675853,
          0.3262797703969957,
          0.327556061122645,
          0.32882475835023006,
          0.33008573536433755,
          0.33133886584934963,
          0.3325840239103515,
          0.33382108409403916,
          0.3350499214096212,
          0.3362704113497101,
          0.33748242991119776,
          0.3386858536161116,
          0.33988055953244484,
          0.341066425294957,
          0.3422433291259397,
          0.34341114985594245,
          0.34456976694445385,
          0.34571906050053325,
          0.34685891130338786,
          0.34798920082289,
          0.3491098112400311,
          0.35022062546730526,
          0.35132152716901893,
          0.35241240078152236,
          0.35349313153335576,
          0.35456360546530724,
          0.35562370945037725,
          0.35667333121364375,
          0.35771235935202395,
          0.35874068335392845,
          0.3597581936188009,
          0.36076478147654034,
          0.36176033920680106,
          0.362744760058164,
          0.3637179382671758,
          0.3646797690772518,
          0.3656301487574359,
          0.36656897462101395,
          0.3674961450439774,
          0.36841155948332877,
          0.3693151184952286,
          0.3702067237529765,
          0.3710862780648223,
          0.37195368539160395,
          0.37280885086420623,
          0.3736516808008362,
          0.37448208272411215,
          0.3752999653779598,
          0.3761052387443128,
          0.3768978140596131,
          0.37767760383110627,
          0.3784445218529282,
          0.3791984832219788,
          0.37993940435357904,
          0.38066720299690615,
          0.38138179825020485,
          0.3820831105757686,
          0.3827710618146882,
          0.3834455752013643,
          0.384106575377779,
          0.3847539884075227,
          0.38538774178957436,
          0.38600776447182944,
          0.3866139868643728,
          0.3872063408524939,
          0.38778475980943955,
          0.38834917860890134,
          0.38889953363723556,
          0.38943576280541037,
          0.38995780556067855,
          0.39046560289797283,
          0.39095909737101947,
          0.3914382331031688,
          0.39190295579793855,
          0.39235321274926843,
          0.3927889528514812,
          0.3932101266089507,
          0.39361668614547124,
          0.3940085852133273,
          0.39438577920206164,
          0.39474822514693797,
          0.3950958817370977,
          0.39542870932340674,
          0.395746669925992,
          0.39604972724146437,
          0.3963378466498269,
          0.39661099522106597,
          0.39686914172142396,
          0.3971122566193517,
          0.39734031209113885,
          0.3975532820262211,
          0.3977511420321626,
          0.39793386943931186,
          0.39810144330513103,
          0.39825384441819617,
          0.3983910553018676,
          0.3985130602176305,
          0.3986198451681036,
          0.3987113978997156,
          0.39878770790504836,
          0.3988487664248471,
          0.398894566449696,
          0.3989251027213592,
          0.39894037173378716,
          0.39894037173378716,
          0.3989251027213592,
          0.398894566449696,
          0.3988487664248471,
          0.39878770790504836,
          0.3987113978997156,
          0.3986198451681036,
          0.3985130602176305,
          0.3983910553018676,
          0.39825384441819617,
          0.3981014433051311,
          0.39793386943931186,
          0.3977511420321626,
          0.39755328202622114,
          0.39734031209113885,
          0.3971122566193517,
          0.39686914172142396,
          0.39661099522106597,
          0.3963378466498269,
          0.39604972724146437,
          0.395746669925992,
          0.3954287093234068,
          0.3950958817370977,
          0.39474822514693797,
          0.39438577920206164,
          0.3940085852133273,
          0.39361668614547124,
          0.39321012660895077,
          0.39278895285148124,
          0.39235321274926843,
          0.3919029557979386,
          0.39143823310316883,
          0.39095909737101947,
          0.3904656028979729,
          0.3899578055606786,
          0.38943576280541037,
          0.3888995336372356,
          0.3883491786089014,
          0.38778475980943955,
          0.38720634085249395,
          0.3866139868643728,
          0.38600776447182944,
          0.38538774178957447,
          0.3847539884075227,
          0.384106575377779,
          0.38344557520136435,
          0.3827710618146882,
          0.3820831105757686,
          0.3813817982502049,
          0.38066720299690615,
          0.37993940435357904,
          0.37919848322197885,
          0.3784445218529282,
          0.37767760383110627,
          0.37689781405961315,
          0.3761052387443128,
          0.3752999653779598,
          0.3744820827241122,
          0.3736516808008362,
          0.37280885086420623,
          0.371953685391604,
          0.3710862780648223,
          0.3702067237529765,
          0.36931511849522863,
          0.36841155948332877,
          0.3674961450439774,
          0.36656897462101407,
          0.3656301487574359,
          0.36467976907725186,
          0.36371793826717586,
          0.362744760058164,
          0.3617603392068012,
          0.36076478147654045,
          0.3597581936188009,
          0.35874068335392856,
          0.35771235935202406,
          0.35667333121364375,
          0.3556237094503773,
          0.3545636054653073,
          0.35349313153335576,
          0.3524124007815225,
          0.35132152716901904,
          0.35022062546730526,
          0.34910981124003115,
          0.34798920082289003,
          0.34685891130338786,
          0.34571906050053336,
          0.34456976694445396,
          0.34341114985594245,
          0.34224332912593974,
          0.341066425294957,
          0.33988055953244484,
          0.33868585361611164,
          0.33748242991119776,
          0.3362704113497101,
          0.3350499214096213,
          0.33382108409403916,
          0.3325840239103515,
          0.33133886584934974,
          0.33008573536433755,
          0.32882475835023006,
          0.3275560611226451,
          0.3262797703969957,
          0.3249960132675853,
          0.32370491718671224,
          0.3224066099437869,
          0.3211012196444684,
          0.31978887468982253,
          0.31846970375550837,
          0.31714383577099703,
          0.3158113998988267,
          0.31447252551389954,
          0.3131273421828249,
          0.31177597964331244,
          0.31041856778362054,
          0.30905523662206497,
          0.3076861162865902,
          0.3063113369944104,
          0.30493102903172264,
          0.30354532273349705,
          0.30215434846334815,
          0.30075823659349316,
          0.299357117484798,
          0.29795112146691877,
          0.2965403788185417,
          0.295125019747723,
          0.2937051743723377,
          0.2922809727006369,
          0.2908525446119194,
          0.2894200198373215,
          0.2879835279407291,
          0.28654319829981406,
          0.28509916008720104,
          0.2836515422517673,
          0.2822004735000779,
          0.28074608227796244,
          0.279288496752235,
          0.2778278447925607,
          0.2763642539534732,
          0.27489785145654677,
          0.2734287641727235,
          0.27195711860480337,
          0.2704830408700958,
          0.2690066566832384,
          0.2675280913391867,
          0.266047469696374,
          0.2645649161600487,
          0.2630805546657898,
          0.26159450866320233,
          0.2601069010997985,
          0.2586178544050637,
          0.25712749047471245,
          0.25563593065513723,
          0.25414329572804834,
          0.2526497058953134,
          0.25115528076399435,
          0.24966013933158548,
          0.24816439997145523,
          0.24666818041849387,
          0.2451715977549671,
          0.24367476839658084,
          0.24217780807875688,
          0.24068083184312178,
          0.23918395402421064,
          0.23768728823638902,
          0.23619094736099078,
          0.23469504353367862,
          0.23319968813202469,
          0.23170499176331472,
          0.2302110642525769,
          0.2287180146308352,
          0.22722595112359123,
          0.22573498113953336,
          0.224245211259475,
          0.22275674722552363,
          0.22126969393048143,
          0.2197841554074763,
          0.2183002348198278,
          0.21681803445114592,
          0.2153376556956645,
          0.21385919904880946,
          0.2123827640980036,
          0.2109084495137057,
          0.20943635304068783,
          0.20796657148954922,
          0.20649920072846673,
          0.2050343356751832,
          0.2035720702892343,
          0.20211249756441088,
          0.20065570952146106,
          0.19920179720102946,
          0.19775085065683384,
          0.19630295894907926,
          0.1948582101381104,
          0.19341669127829889,
          0.1919784884121695,
          0.19054368656476137,
          0.18911236973822518,
          0.18768462090665577,
          0.18626052201116014,
          0.18484015395515765,
          0.1834235965999156,
          0.18201092876031652,
          0.1806022282008574,
          0.17919757163187952,
          0.17779703470602995,
          0.17640069201494935,
          0.1750086170861903,
          0.1736208823803616,
          0.17223755928849852,
          0.1708587181296573,
          0.16948442814873463,
          0.16811475751450686,
          0.16674977331789212,
          0.16538954157043106,
          0.16403412720298555,
          0.1626835940646539,
          0.16133800492190223,
          0.1599974214579069,
          0.1586619042721114,
          0.15733151287999192,
          0.15600630571303148,
          0.15468634011890245,
          0.15337167236185123,
          0.1520623576232887,
          0.15075845000258087,
          0.14946000251803906,
          0.14816706710810748,
          0.14687969463274747,
          0.14559793487501313,
          0.14432183654282052,
          0.1430514472709053,
          0.141786813622968,
          0.14052798109400433,
          0.1392749941128191,
          0.13802789604471988,
          0.13678672919439036,
          0.13555153480893972,
          0.13432235308112608,
          0.13309922315275152,
          0.13188218311822783,
          0.1306712700283069,
          0.12946651989397864,
          0.12826796769052937,
          0.12707564736176102,
          0.12588959182436735,
          0.12470983297246616,
          0.1235364016822823,
          0.12236932781698262,
          0.12120864023165728,
          0.12005436677844676,
          0.11890653431181065,
          0.11776516869393773,
          0.1166302948002913,
          0.1155019365252913,
          0.11438011678812762,
          0.11326485753870313,
          0.11215617976370376,
          0.1110541034927934,
          0.10995864780492917,
          0.1088698308347975,
          0.1077876697793654,
          0.1067121809045462,
          0.10564337955197604,
          0.10458128014589972,
          0.10352589620016063,
          0.10247724032529593,
          0.1014353242357309,
          0.10040015875707171,
          0.0993717538334932,
          0.09835011853521974,
          0.09733526106609482,
          0.09632718877123919,
          0.09532590814479297,
          0.09433142483773962,
          0.09334374366581007,
          0.09236286861746208,
          0.09138880286193517,
          0.09042154875737608,
          0.08946110785903355,
          0.08850748092751907,
          0.08756066793713185,
          0.08662066808424378,
          0.08568747979574406,
          0.08476110073753926,
          0.08384152782310696,
          0.08292875722209994,
          0.08202278436899971,
          0.08112360397181442,
          0.08023121002082155,
          0.07934559579735083,
          0.07846675388260577,
          0.07759467616652119,
          0.07672935385665486,
          0.07587077748710915,
          0.07501893692748283,
          0.07417382139184855,
          0.07333541944775479,
          0.07250371902524916,
          0.07167870742592213,
          0.07086037133196649,
          0.07004869681525312,
          0.06924366934641876,
          0.06844527380396437,
          0.06765349448336166,
          0.06686831510616638,
          0.06608971882913427,
          0.06531768825334014,
          0.06455220543329587,
          0.06379325188606645,
          0.06304080860038129,
          0.06229485604573964,
          0.061555374181506646,
          0.06082234246599987,
          0.06009573986556312,
          0.05937554486362577,
          0.058661735469746124,
          0.057954289228637046,
          0.057253183229170654,
          0.05655839411336242,
          0.055869898085331104,
          0.05518767092023357,
          0.05451168797317291,
          0.05384192418807712,
          0.053178354106548066,
          0.0525209518766782,
          0.05186969126183358,
          0.05122454564940157,
          0.05058548805950225,
          0.0499524911536605,
          0.04932552724343923,
          0.04870456829903075,
          0.048089585957805686,
          0.04748055153281729,
          0.046877436021261036,
          0.046280210112886175,
          0.04568884419835991,
          0.04510330837758181,
          0.04452357246794738,
          0.04394960601255947,
          0.04338137828838703,
          0.04281885831436842,
          0.04226201485946015,
          0.04171081645062843,
          0.04116523138078308,
          0.04062522771665253,
          0.040090773306599325,
          0.03956183578837405,
          0.039038382596808044,
          0.03852038097144328,
          0.038007797964098276,
          0.037500600446369645,
          0.03699875511706839,
          0.03650222850958936,
          0.03601098699921439,
          0.035524996810347105,
          0.03504422402367954,
          0.03456863458328907,
          0.034098194303666056,
          0.03363286887667,
          0.03317262387841523,
          0.03271742477608443,
          0.03226723693466976,
          0.03182202562364103,
          0.0313817560235407,
          0.030946393232504244,
          0.030515902272706733,
          0.03009024809673428,
          0.029669395593880203,
          0.029253309596365476,
          0.028841954885483394,
          0.028435296197667374,
          0.028033298230482527,
          0.027635925648540102,
          0.027243143089334544,
          0.026854915169003468,
          0.026471206488009328,
          0.026091981636743766,
          0.025717205201053674,
          0.02534684176768902,
          0.024980855929672377,
          0.024619212291590288,
          0.024261875474805593,
          0.023908810122591752,
          0.023559980905188245,
          0.023215352524777584,
          0.022874889720383547,
          0.022538557272691117,
          0.022206320008787528,
          0.021878142806825263,
          0.021553990600606466,
          0.021233828384089257,
          0.020917621215815772,
          0.02060533422326258,
          0.020296932607112798,
          0.019992381645451036,
          0.019691646697880774,
          0.019394693209564544,
          0.019101486715187143,
          0.018811992842842358,
          0.01852617731784287,
          0.0182440059664544,
          0.017965444719553858,
          0.01769045961621198,
          0.017419016807200798,
          0.017151082558426373,
          0.01688662325428682,
          0.016625605400956513,
          0.016367995629596382,
          0.016113760699491095,
          0.015862867501113157,
          0.015615283059114868,
          0.01537097453524784,
          0.015129909231211372,
          0.014892054591429555,
          0.014657378205757814,
          0.014425847812119297,
          0.014197431299071821,
          0.013972096708305426,
          0.013749812237071635,
          0.013530546240544566,
          0.013314267234114502,
          0.01310094389561457,
          0.012890545067481126,
          0.012683039758848042,
          0.012478397147576026,
          0.012276586582217197,
          0.012077577583915528,
          0.011881339848244023,
          0.011687843246978741,
          0.011497057829810836,
          0.011308953825996898,
          0.011123501645948266,
          0.010940671882760036,
          0.010760435313680384,
          0.010582762901520656,
          0.010407625796007226,
          0.010234995335075492,
          0.010064843046106775,
          0.009897140647108758,
          0.009731860047840242,
          0.009568973350880609,
          0.009408452852645017,
          0.009250271044345799,
          0.009094400612900748,
          0.008940814441789048,
          0.008789485611855549,
          0.008640387402063849,
          0.008493493290199277,
          0.008348776953522088,
          0.008206212269371772,
          0.008065773315723097,
          0.00792743437169469,
          0.007791169918010554,
          0.007656954637415658,
          0.007524763415045932,
          0.007394571338753534,
          0.00726635369938804,
          0.007140085991034341,
          0.007015743911207673,
          0.006893303361006898,
          0.006772740445226341,
          0.006654031472427127,
          0.006537152954968541,
          0.006422081609000311,
          0.006308794354416168,
          0.006197268314769776,
          0.006087480817153403,
          0.0059794093920401544,
          0.005873031773090423,
          0.005768325896923301,
          0.005665269902853387,
          0.005563842132594019,
          0.005464021129927337,
          0.005365785640341916,
          0.005269114610638713,
          0.005173987188505767,
          0.005080382722062624,
          0.0049882807593748585,
          0.004897661047939509,
          0.004808503534141959,
          0.004720788362685066,
          0.004634495875990901,
          0.004549606613576058,
          0.00446610131140091,
          0.004383960901193556,
          0.0043031665097490145,
          0.004223699458204393,
          0.0041455412612904025,
          0.00406867362656012,
          0.003993078453595384,
          0.0039187378331914996,
          0.003845634046520795,
          0.003773749564275713,
          0.0037030670457918447,
          0.0036335693381516574,
          0.0035652394752693707,
          0.003498060676957581,
          0.0034320163479761414,
          0.003367090077063996
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>μ</i>=1; <i>σ</i>=2<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>μ</i>=1; <i>σ</i>=2",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>μ</i>=1; <i>σ</i>=2",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          -5.180464612335626,
          -5.168091309808428,
          -5.155718007281229,
          -5.143344704754031,
          -5.130971402226833,
          -5.118598099699634,
          -5.106224797172436,
          -5.093851494645238,
          -5.0814781921180385,
          -5.06910488959084,
          -5.056731587063642,
          -5.044358284536443,
          -5.031984982009245,
          -5.019611679482047,
          -5.007238376954848,
          -4.99486507442765,
          -4.982491771900452,
          -4.9701184693732525,
          -4.957745166846054,
          -4.945371864318856,
          -4.932998561791657,
          -4.920625259264459,
          -4.90825195673726,
          -4.895878654210062,
          -4.883505351682864,
          -4.8711320491556656,
          -4.8587587466284665,
          -4.846385444101268,
          -4.834012141574069,
          -4.821638839046871,
          -4.809265536519673,
          -4.796892233992474,
          -4.784518931465276,
          -4.772145628938078,
          -4.759772326410879,
          -4.7473990238836805,
          -4.735025721356482,
          -4.722652418829283,
          -4.710279116302085,
          -4.697905813774887,
          -4.685532511247688,
          -4.67315920872049,
          -4.660785906193292,
          -4.648412603666093,
          -4.6360393011388945,
          -4.623665998611696,
          -4.611292696084497,
          -4.598919393557299,
          -4.586546091030101,
          -4.574172788502902,
          -4.561799485975704,
          -4.549426183448506,
          -4.537052880921307,
          -4.5246795783941085,
          -4.51230627586691,
          -4.499932973339711,
          -4.487559670812513,
          -4.475186368285315,
          -4.462813065758116,
          -4.450439763230918,
          -4.43806646070372,
          -4.425693158176521,
          -4.4133198556493225,
          -4.400946553122124,
          -4.388573250594925,
          -4.376199948067727,
          -4.363826645540529,
          -4.35145334301333,
          -4.339080040486132,
          -4.326706737958933,
          -4.314333435431735,
          -4.3019601329045365,
          -4.289586830377338,
          -4.277213527850139,
          -4.264840225322941,
          -4.252466922795742,
          -4.240093620268544,
          -4.227720317741346,
          -4.215347015214148,
          -4.202973712686949,
          -4.1906004101597505,
          -4.1782271076325515,
          -4.165853805105353,
          -4.153480502578155,
          -4.141107200050957,
          -4.128733897523758,
          -4.11636059499656,
          -4.103987292469361,
          -4.091613989942163,
          -4.0792406874149645,
          -4.066867384887766,
          -4.054494082360567,
          -4.042120779833369,
          -4.02974747730617,
          -4.017374174778972,
          -4.005000872251774,
          -3.9926275697245757,
          -3.9802542671973766,
          -3.9678809646701785,
          -3.9555076621429794,
          -3.9431343596157813,
          -3.930761057088583,
          -3.918387754561384,
          -3.906014452034186,
          -3.893641149506988,
          -3.8812678469797888,
          -3.8688945444525906,
          -3.8565212419253925,
          -3.8441479393981934,
          -3.8317746368709953,
          -3.8194013343437963,
          -3.807028031816598,
          -3.7946547292894,
          -3.782281426762202,
          -3.7699081242350028,
          -3.7575348217078046,
          -3.7451615191806056,
          -3.7327882166534074,
          -3.7204149141262093,
          -3.708041611599011,
          -3.695668309071812,
          -3.683295006544614,
          -3.670921704017415,
          -3.6585484014902168,
          -3.6461750989630186,
          -3.6338017964358205,
          -3.6214284939086214,
          -3.6090551913814233,
          -3.5966818888542242,
          -3.584308586327026,
          -3.571935283799828,
          -3.55956198127263,
          -3.5471886787454308,
          -3.5348153762182326,
          -3.5224420736910336,
          -3.5100687711638354,
          -3.4976954686366373,
          -3.485322166109439,
          -3.47294886358224,
          -3.460575561055042,
          -3.448202258527843,
          -3.4358289560006448,
          -3.4234556534734466,
          -3.4110823509462485,
          -3.3987090484190494,
          -3.3863357458918513,
          -3.3739624433646522,
          -3.361589140837454,
          -3.349215838310256,
          -3.336842535783057,
          -3.3244692332558587,
          -3.3120959307286606,
          -3.2997226282014616,
          -3.2873493256742634,
          -3.2749760231470653,
          -3.2626027206198662,
          -3.250229418092668,
          -3.23785611556547,
          -3.225482813038271,
          -3.2131095105110727,
          -3.2007362079838746,
          -3.1883629054566756,
          -3.1759896029294774,
          -3.1636163004022784,
          -3.15124299787508,
          -3.138869695347882,
          -3.126496392820684,
          -3.114123090293485,
          -3.1017497877662867,
          -3.0893764852390877,
          -3.0770031827118896,
          -3.0646298801846914,
          -3.0522565776574933,
          -3.039883275130294,
          -3.027509972603096,
          -3.015136670075897,
          -3.002763367548699,
          -2.9903900650215007,
          -2.978016762494302,
          -2.9656434599671035,
          -2.9532701574399054,
          -2.940896854912707,
          -2.928523552385508,
          -2.91615024985831,
          -2.9037769473311115,
          -2.891403644803913,
          -2.8790303422767147,
          -2.866657039749516,
          -2.8542837372223175,
          -2.8419104346951194,
          -2.829537132167921,
          -2.817163829640722,
          -2.804790527113524,
          -2.7924172245863255,
          -2.780043922059127,
          -2.7676706195319283,
          -2.75529731700473,
          -2.7429240144775315,
          -2.730550711950333,
          -2.718177409423135,
          -2.705804106895936,
          -2.6934308043687376,
          -2.6810575018415395,
          -2.668684199314341,
          -2.6563108967871423,
          -2.643937594259944,
          -2.6315642917327455,
          -2.619190989205547,
          -2.606817686678349,
          -2.59444438415115,
          -2.5820710816239516,
          -2.5696977790967535,
          -2.557324476569555,
          -2.5449511740423563,
          -2.532577871515158,
          -2.5202045689879595,
          -2.507831266460761,
          -2.495457963933563,
          -2.483084661406364,
          -2.4707113588791656,
          -2.458338056351967,
          -2.445964753824769,
          -2.4335914512975703,
          -2.4212181487703717,
          -2.4088448462431735,
          -2.396471543715975,
          -2.3840982411887763,
          -2.371724938661578,
          -2.3593516361343796,
          -2.346978333607181,
          -2.334605031079983,
          -2.3222317285527843,
          -2.3098584260255857,
          -2.2974851234983875,
          -2.285111820971189,
          -2.2727385184439903,
          -2.260365215916792,
          -2.2479919133895936,
          -2.235618610862395,
          -2.223245308335197,
          -2.2108720058079983,
          -2.1984987032807997,
          -2.1861254007536015,
          -2.173752098226403,
          -2.1613787956992043,
          -2.1490054931720057,
          -2.1366321906448076,
          -2.124258888117609,
          -2.1118855855904104,
          -2.0995122830632122,
          -2.0871389805360137,
          -2.074765678008815,
          -2.062392375481617,
          -2.0500190729544183,
          -2.0376457704272197,
          -2.0252724679000216,
          -2.012899165372823,
          -2.0005258628456244,
          -1.9881525603184262,
          -1.9757792577912276,
          -1.963405955264029,
          -1.951032652736831,
          -1.9386593502096323,
          -1.9262860476824337,
          -1.9139127451552356,
          -1.901539442628037,
          -1.8891661401008384,
          -1.8767928375736402,
          -1.8644195350464416,
          -1.852046232519243,
          -1.8396729299920445,
          -1.8272996274648463,
          -1.8149263249376477,
          -1.8025530224104491,
          -1.790179719883251,
          -1.7778064173560524,
          -1.7654331148288538,
          -1.7530598123016556,
          -1.740686509774457,
          -1.7283132072472585,
          -1.7159399047200603,
          -1.7035666021928617,
          -1.6911932996656631,
          -1.678819997138465,
          -1.6664466946112664,
          -1.6540733920840678,
          -1.6417000895568696,
          -1.629326787029671,
          -1.6169534845024724,
          -1.6045801819752743,
          -1.5922068794480757,
          -1.5798335769208771,
          -1.567460274393679,
          -1.5550869718664804,
          -1.5427136693392818,
          -1.5303403668120832,
          -1.517967064284885,
          -1.5055937617576864,
          -1.4932204592304879,
          -1.4808471567032897,
          -1.468473854176091,
          -1.4561005516488925,
          -1.4437272491216944,
          -1.4313539465944958,
          -1.4189806440672972,
          -1.406607341540099,
          -1.3942340390129004,
          -1.3818607364857018,
          -1.3694874339585037,
          -1.357114131431305,
          -1.3447408289041065,
          -1.3323675263769084,
          -1.3199942238497098,
          -1.3076209213225112,
          -1.295247618795313,
          -1.2828743162681144,
          -1.2705010137409158,
          -1.2581277112137177,
          -1.245754408686519,
          -1.2333811061593205,
          -1.221007803632122,
          -1.2086345011049238,
          -1.1962611985777252,
          -1.1838878960505266,
          -1.1715145935233284,
          -1.1591412909961303,
          -1.1467679884689312,
          -1.134394685941733,
          -1.122021383414535,
          -1.109648080887336,
          -1.0972747783601378,
          -1.0849014758329396,
          -1.0725281733057406,
          -1.0601548707785424,
          -1.0477815682513434,
          -1.0354082657241452,
          -1.023034963196947,
          -1.010661660669748,
          -0.9982883581425499,
          -0.9859150556153518,
          -0.9735417530881527,
          -0.9611684505609546,
          -0.9487951480337564,
          -0.9364218455065574,
          -0.9240485429793592,
          -0.9116752404521611,
          -0.899301937924962,
          -0.8869286353977639,
          -0.8745553328705657,
          -0.8621820303433667,
          -0.8498087278161686,
          -0.8374354252889704,
          -0.8250621227617714,
          -0.8126888202345732,
          -0.8003155177073751,
          -0.787942215180176,
          -0.7755689126529779,
          -0.7631956101257797,
          -0.7508223075985807,
          -0.7384490050713826,
          -0.7260757025441844,
          -0.7137024000169854,
          -0.7013290974897872,
          -0.6889557949625891,
          -0.67658249243539,
          -0.6642091899081919,
          -0.6518358873809937,
          -0.6394625848537947,
          -0.6270892823265966,
          -0.6147159797993984,
          -0.6023426772721994,
          -0.5899693747450012,
          -0.5775960722178031,
          -0.565222769690604,
          -0.5528494671634059,
          -0.5404761646362077,
          -0.5281028621090087,
          -0.5157295595818105,
          -0.5033562570546124,
          -0.49098295452741336,
          -0.4786096520002152,
          -0.46623634947301706,
          -0.453863046945818,
          -0.4414897444186199,
          -0.42911644189142173,
          -0.4167431393642227,
          -0.40436983683702454,
          -0.3919965343098255,
          -0.37962323178262736,
          -0.3672499292554292,
          -0.35487662672823017,
          -0.342503324201032,
          -0.3301300216738339,
          -0.31775671914663484,
          -0.3053834166194367,
          -0.29301011409223854,
          -0.2806368115650395,
          -0.26826350903784135,
          -0.2558902065106432,
          -0.24351690398344417,
          -0.23114360145624602,
          -0.21877029892904787,
          -0.20639699640184883,
          -0.19402369387465068,
          -0.18165039134745253,
          -0.1692770888202535,
          -0.15690378629305535,
          -0.1445304837658572,
          -0.13215718123865816,
          -0.11978387871146001,
          -0.10741057618426186,
          -0.09503727365706283,
          -0.08266397112986468,
          -0.07029066860266653,
          -0.05791736607546749,
          -0.04554406354826934,
          -0.03317076102107119,
          -0.020797458493872156,
          -0.008424155966674007,
          0.003949146560524142,
          0.01632244908772318,
          0.028695751614921328,
          0.04106905414211948,
          0.053442356669318514,
          0.06581565919651666,
          0.07818896172371481,
          0.09056226425091385,
          0.102935566778112,
          0.11530886930531015,
          0.12768217183250918,
          0.14005547435970733,
          0.15242877688690548,
          0.16480207941410452,
          0.17717538194130267,
          0.18954868446850082,
          0.20192198699569985,
          0.214295289522898,
          0.22666859205009704,
          0.2390418945772952,
          0.25141519710449334,
          0.2637884996316924,
          0.2761618021588905,
          0.2885351046860887,
          0.3009084072132877,
          0.31328170974048586,
          0.325655012267684,
          0.33802831479488304,
          0.3504016173220812,
          0.36277491984927934,
          0.3751482223764784,
          0.38752152490367653,
          0.3998948274308747,
          0.4122681299580737,
          0.42464143248527186,
          0.43701473501247,
          0.44938803753966905,
          0.4617613400668672,
          0.47413464259406535,
          0.4865079451212644,
          0.49888124764846253,
          0.5112545501756607,
          0.5236278527028597,
          0.5360011552300579,
          0.548374457757256,
          0.560747760284455,
          0.5731210628116532,
          0.5854943653388514,
          0.5978676678660504,
          0.6102409703932485,
          0.6226142729204467,
          0.6349875754476457,
          0.6473608779748439,
          0.659734180502042,
          0.6721074830292411,
          0.6844807855564392,
          0.6968540880836374,
          0.7092273906108364,
          0.7216006931380345,
          0.7339739956652327,
          0.7463472981924317,
          0.7587206007196299,
          0.771093903246828,
          0.7834672057740271,
          0.7958405083012252,
          0.8082138108284234,
          0.8205871133556224,
          0.8329604158828205,
          0.8453337184100196,
          0.8577070209372177,
          0.8700803234644159,
          0.8824536259916149,
          0.8948269285188131,
          0.9072002310460112,
          0.9195735335732103,
          0.9319468361004084,
          0.9443201386276066,
          0.9566934411548056,
          0.9690667436820037,
          0.9814400462092019,
          0.9938133487364009,
          1.006186651263599,
          1.0185599537907972,
          1.0309332563179963,
          1.0433065588451944,
          1.0556798613723926,
          1.0680531638995916,
          1.0804264664267897,
          1.092799768953988,
          1.105173071481187,
          1.117546374008385,
          1.1299196765355832,
          1.1422929790627823,
          1.1546662815899804,
          1.1670395841171786,
          1.1794128866443776,
          1.1917861891715757,
          1.204159491698774,
          1.216532794225973,
          1.228906096753171,
          1.2412793992803692,
          1.2536527018075683,
          1.2660260043347664,
          1.2783993068619646,
          1.2907726093891636,
          1.3031459119163618,
          1.31551921444356,
          1.327892516970759,
          1.340265819497957,
          1.3526391220251552,
          1.3650124245523543,
          1.3773857270795524,
          1.3897590296067506,
          1.4021323321339496,
          1.4145056346611478,
          1.426878937188346,
          1.439252239715545,
          1.451625542242743,
          1.4639988447699412,
          1.4763721472971403,
          1.4887454498243384,
          1.5011187523515375,
          1.5134920548787356,
          1.5258653574059338,
          1.5382386599331328,
          1.550611962460331,
          1.562985264987529,
          1.5753585675147281,
          1.5877318700419263,
          1.6001051725691244,
          1.6124784750963235,
          1.6248517776235216,
          1.6372250801507198,
          1.6495983826779188,
          1.661971685205117,
          1.674344987732315,
          1.6867182902595141,
          1.6990915927867123,
          1.7114648953139104,
          1.7238381978411095,
          1.7362115003683076,
          1.7485848028955058,
          1.7609581054227048,
          1.773331407949903,
          1.785704710477101,
          1.7980780130043001,
          1.8104513155314983,
          1.8228246180586964,
          1.8351979205858955,
          1.8475712231130936,
          1.8599445256402918,
          1.8723178281674908,
          1.884691130694689,
          1.8970644332218871,
          1.9094377357490862,
          1.9218110382762843,
          1.9341843408034824,
          1.9465576433306815,
          1.9589309458578796,
          1.9713042483850778,
          1.9836775509122768,
          1.996050853439475,
          2.008424155966673,
          2.020797458493872,
          2.0331707610210703,
          2.0455440635482685,
          2.0579173660754675,
          2.0702906686026656,
          2.082663971129864,
          2.095037273657063,
          2.107410576184261,
          2.11978387871146,
          2.132157181238658,
          2.1445304837658563,
          2.1569037862930553,
          2.1692770888202535,
          2.1816503913474516,
          2.1940236938746507,
          2.206396996401849,
          2.218770298929047,
          2.231143601456246,
          2.243516903983444,
          2.2558902065106423,
          2.2682635090378414,
          2.2806368115650395,
          2.2930101140922377,
          2.3053834166194367,
          2.317756719146635,
          2.330130021673833,
          2.342503324201032,
          2.35487662672823,
          2.3672499292554283,
          2.3796232317826274,
          2.3919965343098255,
          2.4043698368370237,
          2.4167431393642227,
          2.429116441891421,
          2.441489744418619,
          2.453863046945818,
          2.466236349473016,
          2.4786096520002143,
          2.4909829545274134,
          2.5033562570546115,
          2.5157295595818097,
          2.5281028621090087,
          2.540476164636207,
          2.552849467163405,
          2.565222769690604,
          2.577596072217802,
          2.5899693747450003,
          2.6023426772721994,
          2.6147159797993975,
          2.6270892823265957,
          2.6394625848537947,
          2.651835887380993,
          2.664209189908191,
          2.67658249243539,
          2.688955794962588,
          2.7013290974897863,
          2.7137024000169854,
          2.7260757025441835,
          2.7384490050713826,
          2.7508223075985807,
          2.763195610125779,
          2.775568912652978,
          2.787942215180176,
          2.800315517707374,
          2.8126888202345732,
          2.8250621227617714,
          2.8374354252889695,
          2.8498087278161677,
          2.862182030343366,
          2.8745553328705657,
          2.886928635397764,
          2.899301937924962,
          2.91167524045216,
          2.9240485429793583,
          2.9364218455065565,
          2.9487951480337564,
          2.9611684505609546,
          2.9735417530881527,
          2.985915055615351,
          2.998288358142549,
          3.010661660669747,
          3.023034963196947,
          3.0354082657241452,
          3.0477815682513434,
          3.0601548707785415,
          3.0725281733057397,
          3.0849014758329396,
          3.0972747783601378,
          3.109648080887336,
          3.122021383414534,
          3.134394685941732,
          3.1467679884689304,
          3.1591412909961303,
          3.1715145935233284,
          3.1838878960505266,
          3.1962611985777247,
          3.208634501104923,
          3.221007803632121,
          3.233381106159321,
          3.245754408686519,
          3.2581277112137172,
          3.2705010137409154,
          3.2828743162681135,
          3.2952476187953117,
          3.3076209213225116,
          3.3199942238497098,
          3.332367526376908,
          3.344740828904106,
          3.357114131431304,
          3.3694874339585024,
          3.3818607364857023,
          3.3942340390129004,
          3.4066073415400986,
          3.4189806440672967,
          3.431353946594495,
          3.443727249121693,
          3.456100551648893,
          3.468473854176091,
          3.4808471567032893,
          3.4932204592304874,
          3.5055937617576856,
          3.5179670642848837,
          3.5303403668120836,
          3.542713669339282,
          3.55508697186648,
          3.567460274393678,
          3.5798335769208762,
          3.5922068794480744,
          3.6045801819752743,
          3.6169534845024724,
          3.6293267870296706,
          3.6417000895568687,
          3.654073392084067,
          3.666446694611265,
          3.678819997138465,
          3.691193299665663,
          3.7035666021928613,
          3.7159399047200594,
          3.7283132072472576,
          3.7406865097744575,
          3.7530598123016556,
          3.765433114828854,
          3.777806417356052,
          3.79017971988325,
          3.8025530224104482,
          3.814926324937648,
          3.8272996274648463,
          3.8396729299920445,
          3.8520462325192426,
          3.8644195350464408,
          3.876792837573639,
          3.889166140100839,
          3.901539442628037,
          3.913912745155235,
          3.9262860476824333,
          3.9386593502096314,
          3.9510326527368296,
          3.9634059552640295,
          3.9757792577912276,
          3.988152560318426,
          4.000525862845624,
          4.012899165372822,
          4.02527246790002,
          4.03764577042722,
          4.050019072954418,
          4.0623923754816165,
          4.074765678008815,
          4.087138980536013,
          4.099512283063211,
          4.111885585590411,
          4.124258888117609,
          4.136632190644807,
          4.149005493172005,
          4.161378795699203,
          4.173752098226402,
          4.1861254007536015,
          4.1984987032808,
          4.210872005807998,
          4.223245308335196,
          4.235618610862394,
          4.247991913389592,
          4.260365215916792,
          4.27273851844399,
          4.2851118209711885,
          4.297485123498387,
          4.309858426025585,
          4.322231728552783,
          4.334605031079983,
          4.346978333607181,
          4.359351636134379,
          4.371724938661577,
          4.3840982411887754,
          4.396471543715975,
          4.4088448462431735,
          4.421218148770372,
          4.43359145129757,
          4.445964753824768,
          4.458338056351966,
          4.470711358879166,
          4.483084661406364,
          4.495457963933562,
          4.5078312664607605,
          4.520204568987959,
          4.532577871515157,
          4.544951174042357,
          4.557324476569555,
          4.569697779096753,
          4.582071081623951,
          4.594444384151149,
          4.6068176866783475,
          4.619190989205547,
          4.6315642917327455,
          4.643937594259944,
          4.656310896787142,
          4.66868419931434,
          4.681057501841538,
          4.693430804368738,
          4.705804106895936,
          4.718177409423134,
          4.7305507119503325,
          4.742924014477531,
          4.755297317004729,
          4.767670619531929,
          4.780043922059127,
          4.792417224586325,
          4.804790527113523,
          4.817163829640721,
          4.8295371321679195,
          4.841910434695119,
          4.8542837372223175,
          4.866657039749516,
          4.879030342276714,
          4.891403644803912,
          4.90377694733111,
          4.91615024985831,
          4.928523552385508,
          4.940896854912706,
          4.9532701574399045,
          4.965643459967103,
          4.978016762494303,
          4.990390065021501,
          5.002763367548699,
          5.015136670075897,
          5.027509972603095,
          5.039883275130293,
          5.052256577657493,
          5.064629880184691,
          5.0770031827118896,
          5.089376485239088,
          5.101749787766286,
          5.114123090293484,
          5.126496392820684,
          5.138869695347882,
          5.15124299787508,
          5.163616300402278,
          5.1759896029294765,
          5.188362905456675,
          5.200736207983875,
          5.213109510511073,
          5.225482813038271,
          5.237856115565469,
          5.250229418092667,
          5.262602720619865,
          5.274976023147065,
          5.287349325674263,
          5.299722628201462,
          5.31209593072866,
          5.324469233255858,
          5.336842535783056,
          5.349215838310256,
          5.361589140837454,
          5.373962443364652,
          5.38633574589185,
          5.3987090484190485,
          5.411082350946247,
          5.423455653473447,
          5.435828956000645,
          5.448202258527843,
          5.460575561055041,
          5.472948863582239,
          5.485322166109437,
          5.497695468636637,
          5.510068771163835,
          5.522442073691034,
          5.534815376218232,
          5.54718867874543,
          5.559561981272628,
          5.571935283799828,
          5.584308586327026,
          5.596681888854224,
          5.609055191381422,
          5.6214284939086205,
          5.6338017964358205,
          5.646175098963019,
          5.658548401490217,
          5.670921704017415,
          5.683295006544613,
          5.695668309071811,
          5.708041611599011,
          5.720414914126209,
          5.732788216653407,
          5.745161519180606,
          5.757534821707804,
          5.769908124235002,
          5.782281426762202,
          5.7946547292894,
          5.807028031816598,
          5.819401334343796,
          5.831774636870994,
          5.8441479393981925,
          5.8565212419253925,
          5.868894544452591,
          5.881267846979789,
          5.893641149506987,
          5.906014452034185,
          5.918387754561383,
          5.930761057088583,
          5.943134359615781,
          5.955507662142979,
          5.967880964670178,
          5.980254267197376,
          5.992627569724574,
          6.005000872251774,
          6.017374174778972,
          6.02974747730617,
          6.042120779833368,
          6.054494082360566,
          6.066867384887765,
          6.0792406874149645,
          6.091613989942163,
          6.103987292469361,
          6.116360594996559,
          6.128733897523757,
          6.141107200050955,
          6.153480502578155,
          6.165853805105353,
          6.1782271076325515,
          6.19060041015975,
          6.202973712686948,
          6.215347015214146,
          6.227720317741346,
          6.240093620268544,
          6.252466922795742,
          6.26484022532294,
          6.277213527850138,
          6.289586830377338,
          6.3019601329045365,
          6.314333435431735,
          6.326706737958933,
          6.339080040486131,
          6.351453343013329,
          6.363826645540529,
          6.376199948067727,
          6.388573250594925,
          6.4009465531221235,
          6.413319855649322,
          6.42569315817652,
          6.43806646070372,
          6.450439763230918,
          6.462813065758116,
          6.475186368285314,
          6.487559670812512,
          6.49993297333971,
          6.51230627586691,
          6.5246795783941085,
          6.537052880921307,
          6.549426183448505,
          6.561799485975703,
          6.574172788502901,
          6.586546091030101,
          6.598919393557299,
          6.611292696084497,
          6.6236659986116955,
          6.636039301138894,
          6.648412603666092,
          6.660785906193292,
          6.67315920872049,
          6.685532511247688,
          6.697905813774886,
          6.710279116302084,
          6.722652418829282,
          6.735025721356482,
          6.7473990238836805,
          6.759772326410879,
          6.772145628938077,
          6.784518931465275,
          6.796892233992473,
          6.809265536519673,
          6.821638839046871,
          6.834012141574069,
          6.8463854441012675,
          6.858758746628466,
          6.8711320491556656,
          6.883505351682864,
          6.895878654210062,
          6.90825195673726,
          6.920625259264458,
          6.932998561791656,
          6.945371864318856,
          6.957745166846054,
          6.9701184693732525,
          6.982491771900451,
          6.994865074427649,
          7.007238376954847,
          7.019611679482047,
          7.031984982009245,
          7.044358284536443,
          7.056731587063641,
          7.0691048895908395,
          7.081478192118038,
          7.093851494645238,
          7.106224797172436,
          7.118598099699634,
          7.130971402226832,
          7.14334470475403,
          7.155718007281228,
          7.168091309808428,
          7.180464612335626
         ],
         "xaxis": "x",
         "y": [
          0.001683545038531998,
          0.0017160081739880707,
          0.0017490303384787875,
          0.0017826197376346836,
          0.0018167846690758254,
          0.0018515335228959223,
          0.0018868747821378564,
          0.0019228170232603976,
          0.001959368916595748,
          0.0019965392267976903,
          0.0020343368132800565,
          0.0020727706306452012,
          0.0021118497291021964,
          0.0021515832548745072,
          0.002191980450596776,
          0.002233050655700453,
          0.0022748033067880253,
          0.0023172479379954506,
          0.002360394181342533,
          0.0024042517670709797,
          0.0024488305239697503,
          0.0024941403796874253,
          0.002540191361031312,
          0.0025869935942528836,
          0.0026345573053193566,
          0.002682892820170958,
          0.002732010564963666,
          0.002781921066297005,
          0.0028326349514266936,
          0.0028841629484616504,
          0.0029365158865452116,
          0.002989704696020072,
          0.003043740408576696,
          0.003098634157384886,
          0.003154397177208084,
          0.0032110408045001554,
          0.0032685764774842705,
          0.003327015736213558,
          0.003386370222613167,
          0.0034466516805034425,
          0.0035078719556038366,
          0.0035700429955171707,
          0.00363317684969402,
          0.003697285669376762,
          0.0037623817075229603,
          0.0038284773187078243,
          0.003895584959005277,
          0.003963717185847345,
          0.0040328866578615485,
          0.004103106134685881,
          0.004174388476761039,
          0.0042467466450996335,
          0.004320193701031924,
          0.004394742805927774,
          0.004470407220894524,
          0.004547200306450368,
          0.004625135522172893,
          0.004704226426322502,
          0.0047844866754403045,
          0.004865930023920121,
          0.004948570323554379,
          0.005032421523053383,
          0.005117497667537739,
          0.005203812898003606,
          0.005291381450760328,
          0.005380217656840192,
          0.005470335941380018,
          0.005561750822974128,
          0.005654476912998441,
          0.005748528914905418,
          0.0058439216234893706,
          0.0059406699241220115,
          0.006038788791957764,
          0.006138293291108591,
          0.006239198573788005,
          0.006341519879424021,
          0.006445272533740563,
          0.006550471947807285,
          0.006657133617057235,
          0.006765273120272275,
          0.006874906118535812,
          0.006986048354152713,
          0.0070987156495359105,
          0.007212923906059649,
          0.0073286891028788905,
          0.00744602729571477,
          0.007564954615605676,
          0.00768548726762392,
          0.007807641529557434,
          0.007931433750556579,
          0.00805688034974553,
          0.008183997814798184,
          0.008312802700478244,
          0.00844331162714341,
          0.008575541279213186,
          0.008709508403600399,
          0.00884522980810597,
          0.00898272235977692,
          0.00912200298322719,
          0.009263088658921436,
          0.009405996421421179,
          0.009550743357593572,
          0.00969734660478226,
          0.009845823348940373,
          0.009996190822725504,
          0.010148466303556399,
          0.01030266711163129,
          0.010458810607907886,
          0.010616914192044614,
          0.010776995300303224,
          0.010939071403412631,
          0.011103160004393764,
          0.011269278636345558,
          0.011437444860191773,
          0.011607676262388783,
          0.011779990452594105,
          0.011954405061295876,
          0.012130937737402796,
          0.012309606145795144,
          0.012490427964836189,
          0.012673420883844499,
          0.012858602600526826,
          0.013045990818371883,
          0.013235603244004664,
          0.013427457584501734,
          0.013621571544667272,
          0.01381796282427004,
          0.014016649115241253,
          0.014217648098833687,
          0.014420977442741697,
          0.014626654798182738,
          0.014834697796940077,
          0.015045124048367126,
          0.015257951136353344,
          0.015473196616252122,
          0.01569087801177035,
          0.015911012811820516,
          0.016133618467334843,
          0.016358712388042197,
          0.0165863119392076,
          0.016816434438335,
          0.017049097151833028,
          0.017284317291644535,
          0.01752211201183974,
          0.01776249840517354,
          0.018005493499607176,
          0.01825111425479468,
          0.018499377558534195,
          0.018750300223184822,
          0.019003898982049124,
          0.01926019048572162,
          0.019519191298404005,
          0.019780917894187025,
          0.020045386653299663,
          0.020312613858326264,
          0.020582615690391524,
          0.020855408225314197,
          0.021131007429730057,
          0.02140942915718421,
          0.021690689144193514,
          0.021974803006279735,
          0.022261786233973666,
          0.02255165418879088,
          0.022844422099179956,
          0.023140105056443087,
          0.023438718010630518,
          0.023740275766408647,
          0.02404479297890282,
          0.024352284149515357,
          0.024662763621719614,
          0.02497624557683025,
          0.025292744029751124,
          0.025612272824700785,
          0.02593484563091676,
          0.02626047593833907,
          0.026589177053274033,
          0.02692096209403856,
          0.027255843986586457,
          0.027593835460116803,
          0.02793494904266553,
          0.028279197056681183,
          0.028626591614585317,
          0.028977144614318523,
          0.029330867734873062,
          0.029687772431812844,
          0.030047869932781534,
          0.030411171232999915,
          0.030777687090753306,
          0.03114742802286982,
          0.031520404300190645,
          0.03189662594303319,
          0.03227610271664791,
          0.032658844126670035,
          0.03304485941456712,
          0.03343415755308319,
          0.033826747241680846,
          0.034222636901982136,
          0.03462183467320936,
          0.03502434840762655,
          0.03543018566598323,
          0.03583935371296106,
          0.0362518595126246,
          0.036667709723877354,
          0.037086910695924256,
          0.0375094684637414,
          0.03793538874355456,
          0.03836467692832743,
          0.038797338083260614,
          0.039233376941302835,
          0.03967279789867539,
          0.04011560501041077,
          0.040561801985907205,
          0.041011392184499854,
          0.041464378611049985,
          0.04192076391155342,
          0.0423805503687696,
          0.042843739897872005,
          0.043310334042121874,
          0.043780333968565927,
          0.04425374046375955,
          0.04473055392951674,
          0.045210774378688,
          0.045694401430967556,
          0.04618143430873104,
          0.04667187183290503,
          0.047165712418869826,
          0.04766295407239645,
          0.04816359438561957,
          0.04866763053304739,
          0.04917505926760987,
          0.0496858769167466,
          0.0502000793785358,
          0.0507176621178654,
          0.05123862016264793,
          0.05176294810008029,
          0.05229064007294986,
          0.05282168977598802,
          0.05335609045227305,
          0.05389383488968266,
          0.05443491541739872,
          0.05497932390246457,
          0.0555270517463967,
          0.05607808988185188,
          0.056632428769351525,
          0.05719005839406377,
          0.05775096826264563,
          0.058315147400145616,
          0.058882584346968865,
          0.05945326715590535,
          0.06002718338922332,
          0.06060432011582861,
          0.06118466390849129,
          0.06176820084114114,
          0.06235491648623308,
          0.06294479591218369,
          0.06353782368088044,
          0.06413398384526464,
          0.06473325994698931,
          0.06533563501415343,
          0.06594109155911392,
          0.06654961157637579,
          0.06716117654056296,
          0.06777576740446982,
          0.06839336459719515,
          0.06901394802235992,
          0.06963749705640955,
          0.07026399054700216,
          0.07089340681148393,
          0.07152572363545259,
          0.07216091827141022,
          0.07279896743750656,
          0.07343984731637374,
          0.07408353355405377,
          0.07473000125901948,
          0.07537922500129039,
          0.07603117881164433,
          0.07668583618092562,
          0.07734317005945122,
          0.07800315285651577,
          0.0786657564399959,
          0.07933095213605566,
          0.07999871072895343,
          0.08066900246095111,
          0.08134179703232695,
          0.0820170636014927,
          0.08269477078521549,
          0.08337488665894602,
          0.0840573787572534,
          0.08474221407436731,
          0.08542935906482865,
          0.08611877964424917,
          0.08681044119018076,
          0.0875043085430951,
          0.08820034600747463,
          0.08889851735301497,
          0.08959878581593979,
          0.09030111410042861,
          0.09100546438015822,
          0.09171179829995778,
          0.09242007697757881,
          0.09313026100558007,
          0.09384231045332792,
          0.09455618486911252,
          0.09527184328238063,
          0.09598924420608472,
          0.0967083456391494,
          0.0974291050690552,
          0.09815147947453966,
          0.09887542532841685,
          0.09960089860051467,
          0.1003278547607305,
          0.10105624878220541,
          0.10178603514461715,
          0.10251716783759161,
          0.10324960036423327,
          0.10398328574477457,
          0.10471817652034389,
          0.10545422475685283,
          0.1061913820490018,
          0.10692959952440476,
          0.1076688278478322,
          0.10840901722557289,
          0.10915011740991384,
          0.10989207770373816,
          0.11063484696524072,
          0.11137837361276182,
          0.11212260562973746,
          0.11286749056976661,
          0.11361297556179557,
          0.1143590073154176,
          0.11510553212628845,
          0.11585249588165736,
          0.1165998440660123,
          0.11734752176683924,
          0.11809547368049539,
          0.11884364411819451,
          0.11959197701210532,
          0.12034041592156082,
          0.12108890403937837,
          0.12183738419829035,
          0.12258579887748355,
          0.12333409020924693,
          0.12408219998572761,
          0.12483006966579269,
          0.1255776403819971,
          0.12632485294765666,
          0.12707164786402417,
          0.12781796532756862,
          0.12856374523735623,
          0.1293089272025318,
          0.13005345054989922,
          0.13079725433160114,
          0.1315402773328949,
          0.13228245808002434,
          0.13302373484818694,
          0.13376404566959335,
          0.1345033283416192,
          0.1352415204350478,
          0.13597855930240169,
          0.13671438208636175,
          0.1374489257282733,
          0.1381821269767366,
          0.13891392239628028,
          0.13964424837611744,
          0.14037304113898122,
          0.1411002367500389,
          0.1418257711258836,
          0.14254958004360052,
          0.14327159914990698,
          0.14399176397036448,
          0.14471000991866076,
          0.14542627230595964,
          0.1461404863503184,
          0.14685258718616884,
          0.14756250987386144,
          0.14827018940927075,
          0.14897556073345938,
          0.14967855874239894,
          0.15037911829674652,
          0.15107717423167408,
          0.15177266136674847,
          0.1524655145158613,
          0.1531556684972052,
          0.15384305814329502,
          0.1545276183110324,
          0.15520928389181027,
          0.15588798982165616,
          0.15656367109141245,
          0.15723626275694977,
          0.1579056999494133,
          0.15857191788549851,
          0.15923485187775419,
          0.15989443734491124,
          0.1605506098222342,
          0.16120330497189345,
          0.16185245859335606,
          0.16249800663379266,
          0.16313988519849784,
          0.1637780305613225,
          0.16441237917511503,
          0.16504286768216878,
          0.16566943292467481,
          0.16629201195517576,
          0.16691054204701958,
          0.1675249607048106,
          0.16813520567485504,
          0.16874121495559888,
          0.1693429268080558,
          0.16994027976622242,
          0.1705332126474785,
          0.17112166456296984,
          0.17170557492797123,
          0.17228488347222692,
          0.17285953025026662,
          0.17342945565169393,
          0.173994600411445,
          0.17455490562001555,
          0.17511031273365263,
          0.17566076358450947,
          0.17620620039076118,
          0.17674656576667788,
          0.17728180273265362,
          0.17781185472518862,
          0.17833666560682188,
          0.17885617967601197,
          0.17937034167696422,
          0.17987909680940045,
          0.18038239073827017,
          0.18088016960340053,
          0.181372380029082,
          0.1818589691335879,
          0.1823398845386259,
          0.18281507437871794,
          0.18328448731050698,
          0.1837480725219887,
          0.18420577974166438,
          0.1846575592476143,
          0.18510336187648824,
          0.18554313903241115,
          0.18597684269580197,
          0.18640442543210312,
          0.1868258404004181,
          0.18724104136205608,
          0.1876499826889799,
          0.1880526193721564,
          0.18844890702980654,
          0.18883880191555313,
          0.1892222609264641,
          0.1895992416109894,
          0.18996970217678952,
          0.19033360149845308,
          0.19069089912510243,
          0.1910415552878843,
          0.1913855309073441,
          0.19172278760068215,
          0.1920532876888895,
          0.19237699420376134,
          0.19269387089478718,
          0.19300388223591472,
          0.1933069934321864,
          0.19360317042624695,
          0.19389237990471977,
          0.19417458930445067,
          0.19444976681861778,
          0.19471788140270518,
          0.19497890278033927,
          0.19523280144898641,
          0.19547954868550974,
          0.1957191165515844,
          0.19595147789896927,
          0.19617660637463422,
          0.1963944764257406,
          0.19660506330447536,
          0.19680834307273562,
          0.19700429260666366,
          0.19719288960103082,
          0.19737411257346898,
          0.19754794086854885,
          0.19771435466170337,
          0.197873334962996,
          0.19802486362073218,
          0.19816892332491345,
          0.19830549761053298,
          0.19843457086071198,
          0.19855612830967584,
          0.19867015604556942,
          0.19877664101311054,
          0.1988755710160813,
          0.19896693471965593,
          0.19905072165256552,
          0.19912692220909808,
          0.1991955276509338,
          0.19925653010881525,
          0.1993099225840518,
          0.1993556989498578,
          0.19939385395252418,
          0.19942438321242356,
          0.199447283224848,
          0.1994625513606796,
          0.19947018586689358,
          0.19947018586689358,
          0.1994625513606796,
          0.199447283224848,
          0.19942438321242356,
          0.19939385395252418,
          0.1993556989498578,
          0.1993099225840518,
          0.19925653010881525,
          0.1991955276509338,
          0.19912692220909808,
          0.19905072165256554,
          0.19896693471965593,
          0.1988755710160813,
          0.19877664101311057,
          0.19867015604556942,
          0.19855612830967584,
          0.19843457086071198,
          0.19830549761053298,
          0.19816892332491345,
          0.19802486362073218,
          0.197873334962996,
          0.1977143546617034,
          0.19754794086854885,
          0.19737411257346898,
          0.19719288960103082,
          0.19700429260666366,
          0.19680834307273562,
          0.19660506330447539,
          0.19639447642574062,
          0.19617660637463422,
          0.1959514778989693,
          0.19571911655158442,
          0.19547954868550974,
          0.19523280144898644,
          0.1949789027803393,
          0.19471788140270518,
          0.1944497668186178,
          0.1941745893044507,
          0.19389237990471977,
          0.19360317042624697,
          0.1933069934321864,
          0.19300388223591472,
          0.19269387089478723,
          0.19237699420376134,
          0.1920532876888895,
          0.19172278760068218,
          0.1913855309073441,
          0.1910415552878843,
          0.19069089912510245,
          0.19033360149845308,
          0.18996970217678952,
          0.18959924161098943,
          0.1892222609264641,
          0.18883880191555313,
          0.18844890702980657,
          0.1880526193721564,
          0.1876499826889799,
          0.1872410413620561,
          0.1868258404004181,
          0.18640442543210312,
          0.185976842695802,
          0.18554313903241115,
          0.18510336187648824,
          0.18465755924761432,
          0.18420577974166438,
          0.1837480725219887,
          0.18328448731050703,
          0.18281507437871794,
          0.18233988453862593,
          0.18185896913358793,
          0.181372380029082,
          0.1808801696034006,
          0.18038239073827023,
          0.17987909680940045,
          0.17937034167696428,
          0.17885617967601203,
          0.17833666560682188,
          0.17781185472518865,
          0.17728180273265365,
          0.17674656576667788,
          0.17620620039076124,
          0.17566076358450952,
          0.17511031273365263,
          0.17455490562001558,
          0.17399460041144502,
          0.17342945565169393,
          0.17285953025026668,
          0.17228488347222698,
          0.17170557492797123,
          0.17112166456296987,
          0.1705332126474785,
          0.16994027976622242,
          0.16934292680805582,
          0.16874121495559888,
          0.16813520567485504,
          0.16752496070481065,
          0.16691054204701958,
          0.16629201195517576,
          0.16566943292467487,
          0.16504286768216878,
          0.16441237917511503,
          0.16377803056132256,
          0.16313988519849784,
          0.16249800663379266,
          0.16185245859335612,
          0.16120330497189345,
          0.1605506098222342,
          0.15989443734491127,
          0.15923485187775419,
          0.15857191788549851,
          0.15790569994941334,
          0.15723626275694977,
          0.15656367109141245,
          0.15588798982165622,
          0.15520928389181027,
          0.15452761831103248,
          0.1538430581432951,
          0.1531556684972052,
          0.15246551451586132,
          0.15177266136674852,
          0.15107717423167408,
          0.15037911829674658,
          0.149678558742399,
          0.14897556073345938,
          0.14827018940927084,
          0.1475625098738615,
          0.14685258718616884,
          0.14614048635031845,
          0.1454262723059597,
          0.14471000991866076,
          0.14399176397036456,
          0.14327159914990703,
          0.14254958004360052,
          0.14182577112588365,
          0.14110023675003894,
          0.14037304113898122,
          0.1396442483761175,
          0.13891392239628034,
          0.1381821269767366,
          0.13744892572827339,
          0.13671438208636175,
          0.13597855930240169,
          0.1352415204350479,
          0.1345033283416192,
          0.13376404566959335,
          0.133023734848187,
          0.13228245808002434,
          0.1315402773328949,
          0.13079725433160116,
          0.13005345054989925,
          0.12930892720253184,
          0.12856374523735623,
          0.12781796532756862,
          0.12707164786402417,
          0.1263248529476567,
          0.12557764038199717,
          0.12483006966579274,
          0.12408219998572761,
          0.12333409020924693,
          0.12258579887748355,
          0.12183738419829042,
          0.12108890403937844,
          0.12034041592156089,
          0.11959197701210532,
          0.11884364411819451,
          0.11809547368049539,
          0.11734752176683931,
          0.11659984406601234,
          0.11585249588165736,
          0.11510553212628845,
          0.1143590073154176,
          0.11361297556179561,
          0.11286749056976668,
          0.1121226056297375,
          0.11137837361276182,
          0.11063484696524072,
          0.10989207770373816,
          0.1091501174099139,
          0.10840901722557296,
          0.10766882784783224,
          0.10692959952440473,
          0.1061913820490018,
          0.10545422475685284,
          0.10471817652034392,
          0.10398328574477461,
          0.10324960036423336,
          0.1025171678375916,
          0.10178603514461715,
          0.10105624878220544,
          0.10032785476073053,
          0.09960089860051473,
          0.09887542532841692,
          0.09815147947453963,
          0.0974291050690552,
          0.09670834563914944,
          0.09598924420608475,
          0.09527184328238068,
          0.09455618486911259,
          0.09384231045332789,
          0.09313026100558007,
          0.09242007697757883,
          0.0917117982999578,
          0.09100546438015826,
          0.0903011141004287,
          0.08959878581593976,
          0.08889851735301497,
          0.08820034600747467,
          0.08750430854309516,
          0.0868104411901808,
          0.08611877964424926,
          0.08542935906482865,
          0.08474221407436731,
          0.08405737875725343,
          0.08337488665894606,
          0.08269477078521553,
          0.08201706360149277,
          0.08134179703232695,
          0.08066900246095111,
          0.07999871072895345,
          0.0793309521360557,
          0.07866575643999596,
          0.07800315285651574,
          0.07734317005945122,
          0.07668583618092562,
          0.07603117881164435,
          0.07537922500129043,
          0.07473000125901953,
          0.07408353355405374,
          0.07343984731637374,
          0.07279896743750656,
          0.07216091827141026,
          0.07152572363545265,
          0.070893406811484,
          0.07026399054700216,
          0.06963749705640955,
          0.06901394802235994,
          0.06839336459719518,
          0.06777576740446986,
          0.06716117654056304,
          0.06654961157637576,
          0.06594109155911392,
          0.06533563501415345,
          0.06473325994698932,
          0.06413398384526468,
          0.06353782368088051,
          0.06294479591218367,
          0.06235491648623308,
          0.06176820084114115,
          0.06118466390849131,
          0.06060432011582864,
          0.06002718338922338,
          0.05945326715590533,
          0.058882584346968865,
          0.05831514740014565,
          0.05775096826264565,
          0.05719005839406381,
          0.05663242876935157,
          0.05607808988185188,
          0.0555270517463967,
          0.054979323902464586,
          0.05443491541739875,
          0.0538938348896827,
          0.0533560904522731,
          0.05282168977598802,
          0.05229064007294986,
          0.051762948100080315,
          0.05123862016264796,
          0.05071766211786545,
          0.05020007937853586,
          0.0496858769167466,
          0.04917505926760987,
          0.04866763053304741,
          0.048163594385619596,
          0.047662954072396485,
          0.04716571241886981,
          0.04667187183290503,
          0.04618143430873104,
          0.045694401430967584,
          0.04521077437868804,
          0.044730553929516775,
          0.04425374046375954,
          0.043780333968565927,
          0.04331033404212189,
          0.04284373989787203,
          0.04238055036876963,
          0.04192076391155348,
          0.04146437861104997,
          0.041011392184499854,
          0.04056180198590721,
          0.040115605010410775,
          0.039672797898675415,
          0.03923337694130288,
          0.038797338083260594,
          0.03836467692832743,
          0.03793538874355457,
          0.03750946846374142,
          0.03708691069592428,
          0.036667709723877395,
          0.03625185951262458,
          0.03583935371296106,
          0.035430185665983244,
          0.03502434840762656,
          0.03462183467320938,
          0.034222636901982184,
          0.03382674724168083,
          0.03343415755308319,
          0.03304485941456713,
          0.03265884412667007,
          0.032276102716647936,
          0.031896625943033226,
          0.031520404300190645,
          0.03114742802286982,
          0.030777687090753323,
          0.030411171232999936,
          0.03004786993278156,
          0.029687772431812885,
          0.029330867734873062,
          0.028977144614318523,
          0.028626591614585327,
          0.02827919705668121,
          0.027934949042665552,
          0.027593835460116786,
          0.027255843986586457,
          0.02692096209403856,
          0.026589177053274033,
          0.0262604759383391,
          0.02593484563091679,
          0.025612272824700785,
          0.025292744029751124,
          0.02497624557683025,
          0.024662763621719614,
          0.024352284149515374,
          0.024044792978902843,
          0.023740275766408647,
          0.023438718010630518,
          0.023140105056443087,
          0.022844422099179956,
          0.022551654188790904,
          0.02226178623397369,
          0.021974803006279735,
          0.021690689144193514,
          0.02140942915718421,
          0.021131007429730075,
          0.020855408225314214,
          0.02058261569039154,
          0.020312613858326264,
          0.020045386653299663,
          0.019780917894187025,
          0.019519191298404022,
          0.01926019048572164,
          0.019003898982049138,
          0.018750300223184822,
          0.018499377558534195,
          0.01825111425479468,
          0.018005493499607193,
          0.017762498405173553,
          0.01752211201183977,
          0.017284317291644535,
          0.017049097151833028,
          0.016816434438335,
          0.016586311939207614,
          0.016358712388042214,
          0.01613361846733488,
          0.015911012811820516,
          0.01569087801177035,
          0.015473196616252122,
          0.015257951136353367,
          0.01504512404836714,
          0.014834697796940102,
          0.014626654798182738,
          0.014420977442741697,
          0.014217648098833687,
          0.014016649115241264,
          0.013817962824270051,
          0.013621571544667272,
          0.013427457584501734,
          0.013235603244004664,
          0.013045990818371883,
          0.012858602600526837,
          0.01267342088384451,
          0.012490427964836189,
          0.012309606145795144,
          0.012130937737402796,
          0.011954405061295876,
          0.011779990452594123,
          0.011607676262388792,
          0.011437444860191773,
          0.011269278636345558,
          0.011103160004393764,
          0.010939071403412631,
          0.010776995300303233,
          0.010616914192044628,
          0.010458810607907886,
          0.01030266711163129,
          0.010148466303556399,
          0.009996190822725518,
          0.009845823348940387,
          0.009697346604782272,
          0.009550743357593572,
          0.009405996421421179,
          0.009263088658921436,
          0.0091220029832272,
          0.008982722359776929,
          0.00884522980810599,
          0.008709508403600399,
          0.008575541279213186,
          0.00844331162714341,
          0.008312802700478256,
          0.008183997814798191,
          0.008056880349745547,
          0.007931433750556579,
          0.007807641529557434,
          0.00768548726762392,
          0.007564954615605686,
          0.007446027295714777,
          0.007328689102878907,
          0.007212923906059649,
          0.0070987156495359105,
          0.006986048354152713,
          0.0068749061185358175,
          0.006765273120272283,
          0.006657133617057251,
          0.006550471947807285,
          0.006445272533740563,
          0.006341519879424021,
          0.006239198573788013,
          0.0061382932911085986,
          0.006038788791957764,
          0.0059406699241220115,
          0.0058439216234893706,
          0.005748528914905418,
          0.005654476912998449,
          0.005561750822974133,
          0.005470335941380018,
          0.005380217656840192,
          0.005291381450760328,
          0.005203812898003613,
          0.005117497667537746,
          0.0050324215230533875,
          0.004948570323554379,
          0.004865930023920121,
          0.0047844866754403045,
          0.004704226426322508,
          0.004625135522172899,
          0.004547200306450374,
          0.004470407220894524,
          0.004394742805927774,
          0.004320193701031924,
          0.004246746645099639,
          0.004174388476761044,
          0.004103106134685886,
          0.0040328866578615485,
          0.003963717185847345,
          0.003895584959005277,
          0.003828477318707829,
          0.003762381707522966,
          0.003697285669376767,
          0.00363317684969402,
          0.0035700429955171707,
          0.0035078719556038366,
          0.003446651680503449,
          0.0033863702226131706,
          0.0033270157362135636,
          0.0032685764774842705,
          0.0032110408045001554,
          0.003154397177208084,
          0.003098634157384888,
          0.0030437404085767016,
          0.0029897046960200772,
          0.0029365158865452116,
          0.0028841629484616504,
          0.0028326349514266936,
          0.0027819210662970097,
          0.0027320105649636683,
          0.002682892820170958,
          0.0026345573053193566,
          0.0025869935942528836,
          0.002540191361031312,
          0.0024941403796874292,
          0.0024488305239697547,
          0.0024042517670709797,
          0.002360394181342533,
          0.0023172479379954506,
          0.002274803306788029,
          0.002233050655700455,
          0.002191980450596778,
          0.0021515832548745072,
          0.0021118497291021964,
          0.0020727706306452012,
          0.00203433681328006,
          0.001996539226797692,
          0.0019593689165957498,
          0.0019228170232603976,
          0.0018868747821378564,
          0.0018515335228959223,
          0.0018167846690758287,
          0.0017826197376346854,
          0.0017490303384787905,
          0.0017160081739880707,
          0.001683545038531998
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Normalverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "range": [
          -5,
          5
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df=[]\n",
    "x = np.linspace(stats.norm.ppf(0.001), stats.norm.ppf(0.999), NN)\n",
    "y = stats.norm.pdf(x)\n",
    "mu,v = 0, 1\n",
    "df.append(pd.DataFrame({\"x\": x*v+mu, \"y\": y, \"parameter\":f\"<i>μ</i>={mu}; <i>σ</i>={v}\"}))\n",
    "\n",
    "mu,v = 1, 2\n",
    "df.append(pd.DataFrame({\"x\": x*v+mu, \"y\": y/v, \"parameter\":f\"<i>μ</i>={mu}; <i>σ</i>={v}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", range_x=[-5,5], labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Normalverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b0b89f2f-99c4-4c1a-8ae5-5059096943ae",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Gleichverteilung\n",
    "\n",
    "Bei der Gleichverteilung ist die Wahrscheinlichkeit für alle Ereignisse gleich über einen festen Bereich, außerhalb dieses Bereiches ist sie null. Die Gleichverteilung kann sowohl kontinuierlich als auch diskret sein. In der Natur ist sie zum Beispiel beim Würfeln zu beobachten. Auch Computer erzeugte Zahlen sind meist Gleichverteilt."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "09c6e6f3-6676-4a41-a491-983551b7f559",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Bereichsgrenzen $a$ und $b$ sind die Parameter der Gleichverteilung die definiert ist als:\n",
    "\n",
    "$$\n",
    "f(x) = \\begin{cases}\n",
    "  \\frac{1}{b-a} & \\text{for } a \\le x \\le b, \\\\[8pt]\n",
    "  0 & \\text{for } x < a \\ \\text{ or } \\ x > b.\n",
    "  \\end{cases}\n",
    "$$\n",
    "\n",
    "Zu erkennen ist die Geleichverteilung an der kastenähnlichen Verteilung."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "9d254b9f-f1ce-451e-bd85-bd65b6392678",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>a</i>=0.5; <i>b</i>=1.5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=0.5; <i>b</i>=1.5",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=0.5; <i>b</i>=1.5",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          -4.5,
          -4.48998998998999,
          -4.47997997997998,
          -4.46996996996997,
          -4.45995995995996,
          -4.44994994994995,
          -4.43993993993994,
          -4.42992992992993,
          -4.41991991991992,
          -4.40990990990991,
          -4.3998998998999,
          -4.38988988988989,
          -4.37987987987988,
          -4.36986986986987,
          -4.35985985985986,
          -4.34984984984985,
          -4.33983983983984,
          -4.32982982982983,
          -4.31981981981982,
          -4.30980980980981,
          -4.2997997997998,
          -4.28978978978979,
          -4.27977977977978,
          -4.26976976976977,
          -4.25975975975976,
          -4.24974974974975,
          -4.23973973973974,
          -4.22972972972973,
          -4.21971971971972,
          -4.20970970970971,
          -4.1996996996997,
          -4.18968968968969,
          -4.17967967967968,
          -4.16966966966967,
          -4.15965965965966,
          -4.14964964964965,
          -4.13963963963964,
          -4.12962962962963,
          -4.11961961961962,
          -4.10960960960961,
          -4.0995995995996,
          -4.08958958958959,
          -4.07957957957958,
          -4.06956956956957,
          -4.05955955955956,
          -4.04954954954955,
          -4.03953953953954,
          -4.02952952952953,
          -4.01951951951952,
          -4.00950950950951,
          -3.9994994994994997,
          -3.9894894894894897,
          -3.9794794794794797,
          -3.9694694694694697,
          -3.9594594594594597,
          -3.9494494494494496,
          -3.9394394394394396,
          -3.9294294294294296,
          -3.9194194194194196,
          -3.9094094094094096,
          -3.8993993993993996,
          -3.8893893893893896,
          -3.8793793793793796,
          -3.8693693693693696,
          -3.8593593593593596,
          -3.8493493493493496,
          -3.8393393393393396,
          -3.8293293293293296,
          -3.8193193193193196,
          -3.8093093093093096,
          -3.7992992992992995,
          -3.7892892892892895,
          -3.7792792792792795,
          -3.7692692692692695,
          -3.7592592592592595,
          -3.7492492492492495,
          -3.7392392392392395,
          -3.7292292292292295,
          -3.7192192192192195,
          -3.7092092092092095,
          -3.6991991991991995,
          -3.6891891891891895,
          -3.6791791791791795,
          -3.6691691691691695,
          -3.6591591591591595,
          -3.6491491491491495,
          -3.6391391391391394,
          -3.6291291291291294,
          -3.6191191191191194,
          -3.6091091091091094,
          -3.5990990990990994,
          -3.5890890890890894,
          -3.5790790790790794,
          -3.5690690690690694,
          -3.5590590590590594,
          -3.5490490490490494,
          -3.5390390390390394,
          -3.5290290290290294,
          -3.5190190190190194,
          -3.5090090090090094,
          -3.498998998998999,
          -3.488988988988989,
          -3.478978978978979,
          -3.468968968968969,
          -3.458958958958959,
          -3.448948948948949,
          -3.438938938938939,
          -3.428928928928929,
          -3.418918918918919,
          -3.408908908908909,
          -3.398898898898899,
          -3.388888888888889,
          -3.378878878878879,
          -3.368868868868869,
          -3.358858858858859,
          -3.348848848848849,
          -3.338838838838839,
          -3.328828828828829,
          -3.318818818818819,
          -3.308808808808809,
          -3.298798798798799,
          -3.2887887887887888,
          -3.2787787787787788,
          -3.2687687687687688,
          -3.2587587587587588,
          -3.2487487487487487,
          -3.2387387387387387,
          -3.2287287287287287,
          -3.2187187187187187,
          -3.2087087087087087,
          -3.1986986986986987,
          -3.1886886886886887,
          -3.1786786786786787,
          -3.1686686686686687,
          -3.1586586586586587,
          -3.1486486486486487,
          -3.1386386386386387,
          -3.1286286286286287,
          -3.1186186186186187,
          -3.1086086086086087,
          -3.0985985985985987,
          -3.0885885885885886,
          -3.0785785785785786,
          -3.0685685685685686,
          -3.0585585585585586,
          -3.0485485485485486,
          -3.0385385385385386,
          -3.0285285285285286,
          -3.0185185185185186,
          -3.0085085085085086,
          -2.9984984984984986,
          -2.9884884884884886,
          -2.9784784784784786,
          -2.9684684684684686,
          -2.9584584584584586,
          -2.9484484484484486,
          -2.9384384384384385,
          -2.9284284284284285,
          -2.9184184184184185,
          -2.9084084084084085,
          -2.8983983983983985,
          -2.888388388388388,
          -2.878378378378378,
          -2.868368368368368,
          -2.858358358358358,
          -2.848348348348348,
          -2.838338338338338,
          -2.828328328328328,
          -2.818318318318318,
          -2.808308308308308,
          -2.798298298298298,
          -2.788288288288288,
          -2.778278278278278,
          -2.768268268268268,
          -2.758258258258258,
          -2.748248248248248,
          -2.738238238238238,
          -2.728228228228228,
          -2.718218218218218,
          -2.708208208208208,
          -2.698198198198198,
          -2.688188188188188,
          -2.678178178178178,
          -2.668168168168168,
          -2.658158158158158,
          -2.648148148148148,
          -2.638138138138138,
          -2.628128128128128,
          -2.618118118118118,
          -2.608108108108108,
          -2.598098098098098,
          -2.588088088088088,
          -2.578078078078078,
          -2.568068068068068,
          -2.558058058058058,
          -2.548048048048048,
          -2.538038038038038,
          -2.528028028028028,
          -2.518018018018018,
          -2.508008008008008,
          -2.497997997997998,
          -2.487987987987988,
          -2.477977977977978,
          -2.467967967967968,
          -2.457957957957958,
          -2.447947947947948,
          -2.437937937937938,
          -2.4279279279279278,
          -2.4179179179179178,
          -2.4079079079079078,
          -2.3978978978978978,
          -2.3878878878878878,
          -2.3778778778778777,
          -2.3678678678678677,
          -2.3578578578578577,
          -2.3478478478478477,
          -2.3378378378378377,
          -2.3278278278278277,
          -2.3178178178178177,
          -2.3078078078078077,
          -2.2977977977977977,
          -2.2877877877877877,
          -2.2777777777777777,
          -2.2677677677677677,
          -2.2577577577577577,
          -2.2477477477477477,
          -2.2377377377377377,
          -2.2277277277277276,
          -2.2177177177177176,
          -2.2077077077077076,
          -2.1976976976976976,
          -2.1876876876876876,
          -2.1776776776776776,
          -2.1676676676676676,
          -2.1576576576576576,
          -2.1476476476476476,
          -2.1376376376376376,
          -2.1276276276276276,
          -2.1176176176176176,
          -2.1076076076076076,
          -2.0975975975975976,
          -2.0875875875875876,
          -2.0775775775775776,
          -2.0675675675675675,
          -2.0575575575575575,
          -2.0475475475475475,
          -2.0375375375375375,
          -2.0275275275275275,
          -2.0175175175175175,
          -2.0075075075075075,
          -1.9974974974974975,
          -1.9874874874874875,
          -1.9774774774774775,
          -1.9674674674674675,
          -1.9574574574574575,
          -1.9474474474474475,
          -1.9374374374374375,
          -1.9274274274274275,
          -1.9174174174174174,
          -1.9074074074074074,
          -1.8973973973973974,
          -1.8873873873873874,
          -1.8773773773773774,
          -1.8673673673673674,
          -1.8573573573573574,
          -1.8473473473473474,
          -1.8373373373373374,
          -1.8273273273273274,
          -1.8173173173173174,
          -1.8073073073073074,
          -1.7972972972972974,
          -1.7872872872872874,
          -1.7772772772772774,
          -1.7672672672672673,
          -1.7572572572572573,
          -1.7472472472472473,
          -1.7372372372372373,
          -1.7272272272272273,
          -1.7172172172172173,
          -1.7072072072072073,
          -1.6971971971971973,
          -1.6871871871871873,
          -1.6771771771771773,
          -1.6671671671671673,
          -1.6571571571571573,
          -1.6471471471471473,
          -1.6371371371371373,
          -1.6271271271271273,
          -1.6171171171171173,
          -1.6071071071071072,
          -1.5970970970970972,
          -1.5870870870870872,
          -1.5770770770770772,
          -1.5670670670670672,
          -1.5570570570570572,
          -1.5470470470470472,
          -1.5370370370370372,
          -1.5270270270270272,
          -1.5170170170170172,
          -1.5070070070070072,
          -1.4969969969969972,
          -1.4869869869869872,
          -1.4769769769769772,
          -1.4669669669669672,
          -1.4569569569569571,
          -1.4469469469469471,
          -1.4369369369369371,
          -1.4269269269269271,
          -1.4169169169169171,
          -1.4069069069069071,
          -1.3968968968968971,
          -1.386886886886887,
          -1.376876876876877,
          -1.366866866866867,
          -1.356856856856857,
          -1.346846846846847,
          -1.336836836836837,
          -1.326826826826827,
          -1.316816816816817,
          -1.306806806806807,
          -1.296796796796797,
          -1.2867867867867866,
          -1.2767767767767766,
          -1.2667667667667666,
          -1.2567567567567566,
          -1.2467467467467466,
          -1.2367367367367366,
          -1.2267267267267266,
          -1.2167167167167166,
          -1.2067067067067065,
          -1.1966966966966965,
          -1.1866866866866865,
          -1.1766766766766765,
          -1.1666666666666665,
          -1.1566566566566565,
          -1.1466466466466465,
          -1.1366366366366365,
          -1.1266266266266265,
          -1.1166166166166165,
          -1.1066066066066065,
          -1.0965965965965965,
          -1.0865865865865865,
          -1.0765765765765765,
          -1.0665665665665665,
          -1.0565565565565564,
          -1.0465465465465464,
          -1.0365365365365364,
          -1.0265265265265264,
          -1.0165165165165164,
          -1.0065065065065064,
          -0.9964964964964964,
          -0.9864864864864864,
          -0.9764764764764764,
          -0.9664664664664664,
          -0.9564564564564564,
          -0.9464464464464464,
          -0.9364364364364364,
          -0.9264264264264264,
          -0.9164164164164164,
          -0.9064064064064064,
          -0.8963963963963963,
          -0.8863863863863863,
          -0.8763763763763763,
          -0.8663663663663663,
          -0.8563563563563563,
          -0.8463463463463463,
          -0.8363363363363363,
          -0.8263263263263263,
          -0.8163163163163163,
          -0.8063063063063063,
          -0.7962962962962963,
          -0.7862862862862863,
          -0.7762762762762763,
          -0.7662662662662663,
          -0.7562562562562563,
          -0.7462462462462462,
          -0.7362362362362362,
          -0.7262262262262262,
          -0.7162162162162162,
          -0.7062062062062062,
          -0.6961961961961962,
          -0.6861861861861862,
          -0.6761761761761762,
          -0.6661661661661662,
          -0.6561561561561562,
          -0.6461461461461462,
          -0.6361361361361362,
          -0.6261261261261262,
          -0.6161161161161162,
          -0.6061061061061062,
          -0.5960960960960962,
          -0.5860860860860861,
          -0.5760760760760761,
          -0.5660660660660661,
          -0.5560560560560561,
          -0.5460460460460461,
          -0.5360360360360361,
          -0.5260260260260261,
          -0.5160160160160161,
          -0.5060060060060061,
          -0.49599599599599564,
          -0.48598598598598564,
          -0.47597597597597563,
          -0.4659659659659656,
          -0.4559559559559556,
          -0.4459459459459456,
          -0.4359359359359356,
          -0.4259259259259256,
          -0.4159159159159156,
          -0.4059059059059056,
          -0.3958958958958956,
          -0.38588588588588557,
          -0.37587587587587556,
          -0.36586586586586556,
          -0.35585585585585555,
          -0.34584584584584555,
          -0.33583583583583554,
          -0.32582582582582553,
          -0.3158158158158155,
          -0.3058058058058055,
          -0.2957957957957955,
          -0.2857857857857855,
          -0.2757757757757755,
          -0.2657657657657655,
          -0.2557557557557555,
          -0.24574574574574548,
          -0.23573573573573547,
          -0.22572572572572547,
          -0.21571571571571546,
          -0.20570570570570545,
          -0.19569569569569545,
          -0.18568568568568544,
          -0.17567567567567544,
          -0.16566566566566543,
          -0.15565565565565542,
          -0.14564564564564542,
          -0.1356356356356354,
          -0.1256256256256254,
          -0.1156156156156154,
          -0.10560560560560539,
          -0.09559559559559538,
          -0.08558558558558538,
          -0.07557557557557537,
          -0.06556556556556536,
          -0.05555555555555536,
          -0.04554554554554535,
          -0.035535535535535345,
          -0.02552552552552534,
          -0.015515515515515332,
          -0.005505505505505326,
          0.0045045045045046805,
          0.014514514514514687,
          0.024524524524524693,
          0.0345345345345347,
          0.044544544544544706,
          0.05455455455455471,
          0.06456456456456472,
          0.07457457457457473,
          0.08458458458458473,
          0.09459459459459474,
          0.10460460460460475,
          0.11461461461461475,
          0.12462462462462476,
          0.13463463463463476,
          0.14464464464464477,
          0.15465465465465478,
          0.16466466466466478,
          0.1746746746746748,
          0.1846846846846848,
          0.1946946946946948,
          0.2047047047047048,
          0.21471471471471482,
          0.22472472472472482,
          0.23473473473473483,
          0.24474474474474484,
          0.25475475475475484,
          0.26476476476476485,
          0.27477477477477485,
          0.28478478478478486,
          0.29479479479479487,
          0.3048048048048049,
          0.3148148148148149,
          0.3248248248248249,
          0.3348348348348349,
          0.3448448448448449,
          0.3548548548548549,
          0.3648648648648649,
          0.3748748748748749,
          0.3848848848848849,
          0.39489489489489493,
          0.40490490490490494,
          0.41491491491491495,
          0.42492492492492495,
          0.43493493493493496,
          0.44494494494494496,
          0.45495495495495497,
          0.464964964964965,
          0.474974974974975,
          0.484984984984985,
          0.494994994994995,
          0.505005005005005,
          0.515015015015015,
          0.525025025025025,
          0.535035035035035,
          0.545045045045045,
          0.555055055055055,
          0.565065065065065,
          0.575075075075075,
          0.585085085085085,
          0.5950950950950951,
          0.6051051051051051,
          0.6151151151151151,
          0.6251251251251251,
          0.6351351351351351,
          0.6451451451451451,
          0.6551551551551551,
          0.6651651651651651,
          0.6751751751751751,
          0.6851851851851851,
          0.6951951951951951,
          0.7052052052052051,
          0.7152152152152151,
          0.7252252252252251,
          0.7352352352352352,
          0.7452452452452452,
          0.7552552552552552,
          0.7652652652652652,
          0.7752752752752752,
          0.7852852852852852,
          0.7952952952952952,
          0.8053053053053052,
          0.8153153153153152,
          0.8253253253253252,
          0.8353353353353352,
          0.8453453453453452,
          0.8553553553553552,
          0.8653653653653652,
          0.8753753753753752,
          0.8853853853853852,
          0.8953953953953953,
          0.9054054054054053,
          0.9154154154154153,
          0.9254254254254253,
          0.9354354354354353,
          0.9454454454454453,
          0.9554554554554553,
          0.9654654654654653,
          0.9754754754754753,
          0.9854854854854853,
          0.9954954954954953,
          1.0055055055055053,
          1.0155155155155153,
          1.0255255255255253,
          1.0355355355355353,
          1.0455455455455454,
          1.0555555555555554,
          1.0655655655655654,
          1.0755755755755754,
          1.0855855855855854,
          1.0955955955955954,
          1.1056056056056054,
          1.1156156156156154,
          1.1256256256256254,
          1.1356356356356354,
          1.1456456456456454,
          1.1556556556556554,
          1.1656656656656654,
          1.1756756756756754,
          1.1856856856856854,
          1.1956956956956954,
          1.2057057057057055,
          1.2157157157157155,
          1.2257257257257255,
          1.2357357357357355,
          1.2457457457457455,
          1.2557557557557555,
          1.2657657657657655,
          1.2757757757757755,
          1.2857857857857855,
          1.2957957957957955,
          1.3058058058058055,
          1.3158158158158155,
          1.3258258258258255,
          1.3358358358358355,
          1.3458458458458455,
          1.3558558558558556,
          1.3658658658658656,
          1.3758758758758756,
          1.3858858858858856,
          1.3958958958958956,
          1.4059059059059056,
          1.4159159159159156,
          1.4259259259259256,
          1.4359359359359356,
          1.4459459459459456,
          1.4559559559559556,
          1.4659659659659656,
          1.4759759759759756,
          1.4859859859859856,
          1.4959959959959956,
          1.5060060060060056,
          1.5160160160160157,
          1.5260260260260257,
          1.5360360360360357,
          1.5460460460460457,
          1.5560560560560557,
          1.5660660660660657,
          1.5760760760760757,
          1.5860860860860857,
          1.5960960960960957,
          1.6061061061061057,
          1.6161161161161157,
          1.6261261261261257,
          1.6361361361361357,
          1.6461461461461457,
          1.6561561561561557,
          1.6661661661661658,
          1.6761761761761758,
          1.6861861861861858,
          1.6961961961961958,
          1.7062062062062058,
          1.7162162162162158,
          1.7262262262262258,
          1.7362362362362358,
          1.7462462462462458,
          1.7562562562562558,
          1.7662662662662658,
          1.7762762762762758,
          1.7862862862862858,
          1.7962962962962958,
          1.8063063063063058,
          1.8163163163163158,
          1.8263263263263259,
          1.8363363363363359,
          1.8463463463463459,
          1.8563563563563559,
          1.8663663663663659,
          1.8763763763763759,
          1.886386386386386,
          1.896396396396396,
          1.906406406406406,
          1.9164164164164168,
          1.9264264264264268,
          1.9364364364364368,
          1.9464464464464468,
          1.9564564564564568,
          1.9664664664664668,
          1.9764764764764768,
          1.9864864864864868,
          1.9964964964964969,
          2.006506506506507,
          2.016516516516517,
          2.026526526526527,
          2.036536536536537,
          2.046546546546547,
          2.056556556556557,
          2.066566566566567,
          2.076576576576577,
          2.086586586586587,
          2.096596596596597,
          2.106606606606607,
          2.116616616616617,
          2.126626626626627,
          2.136636636636637,
          2.146646646646647,
          2.156656656656657,
          2.166666666666667,
          2.176676676676677,
          2.186686686686687,
          2.196696696696697,
          2.206706706706707,
          2.216716716716717,
          2.226726726726727,
          2.236736736736737,
          2.246746746746747,
          2.256756756756757,
          2.266766766766767,
          2.276776776776777,
          2.286786786786787,
          2.296796796796797,
          2.306806806806807,
          2.316816816816817,
          2.326826826826827,
          2.336836836836837,
          2.346846846846847,
          2.356856856856857,
          2.366866866866867,
          2.376876876876877,
          2.386886886886887,
          2.396896896896897,
          2.406906906906907,
          2.416916916916917,
          2.426926926926927,
          2.436936936936937,
          2.446946946946947,
          2.456956956956957,
          2.466966966966967,
          2.476976976976977,
          2.486986986986987,
          2.496996996996997,
          2.507007007007007,
          2.517017017017017,
          2.527027027027027,
          2.537037037037037,
          2.547047047047047,
          2.557057057057057,
          2.567067067067067,
          2.5770770770770772,
          2.5870870870870872,
          2.5970970970970972,
          2.6071071071071072,
          2.6171171171171173,
          2.6271271271271273,
          2.6371371371371373,
          2.6471471471471473,
          2.6571571571571573,
          2.6671671671671673,
          2.6771771771771773,
          2.6871871871871873,
          2.6971971971971973,
          2.7072072072072073,
          2.7172172172172173,
          2.7272272272272273,
          2.7372372372372373,
          2.7472472472472473,
          2.7572572572572573,
          2.7672672672672673,
          2.7772772772772774,
          2.7872872872872874,
          2.7972972972972974,
          2.8073073073073074,
          2.8173173173173174,
          2.8273273273273274,
          2.8373373373373374,
          2.8473473473473474,
          2.8573573573573574,
          2.8673673673673674,
          2.8773773773773774,
          2.8873873873873874,
          2.8973973973973974,
          2.9074074074074074,
          2.9174174174174174,
          2.9274274274274275,
          2.9374374374374375,
          2.9474474474474475,
          2.9574574574574575,
          2.9674674674674675,
          2.9774774774774775,
          2.9874874874874875,
          2.9974974974974975,
          3.0075075075075075,
          3.0175175175175175,
          3.0275275275275275,
          3.0375375375375375,
          3.0475475475475475,
          3.0575575575575575,
          3.0675675675675675,
          3.0775775775775776,
          3.0875875875875876,
          3.0975975975975976,
          3.1076076076076076,
          3.1176176176176176,
          3.1276276276276276,
          3.1376376376376376,
          3.1476476476476476,
          3.1576576576576576,
          3.1676676676676676,
          3.1776776776776776,
          3.1876876876876876,
          3.1976976976976976,
          3.2077077077077076,
          3.2177177177177176,
          3.2277277277277276,
          3.2377377377377377,
          3.2477477477477477,
          3.2577577577577577,
          3.2677677677677677,
          3.2777777777777777,
          3.2877877877877877,
          3.2977977977977977,
          3.3078078078078077,
          3.3178178178178177,
          3.3278278278278277,
          3.3378378378378377,
          3.3478478478478477,
          3.3578578578578577,
          3.3678678678678677,
          3.3778778778778777,
          3.3878878878878878,
          3.3978978978978978,
          3.4079079079079078,
          3.4179179179179178,
          3.4279279279279278,
          3.437937937937938,
          3.447947947947948,
          3.457957957957958,
          3.467967967967968,
          3.477977977977978,
          3.487987987987988,
          3.497997997997998,
          3.5080080080080087,
          3.5180180180180187,
          3.5280280280280287,
          3.5380380380380387,
          3.5480480480480487,
          3.5580580580580587,
          3.5680680680680688,
          3.5780780780780788,
          3.5880880880880888,
          3.5980980980980988,
          3.608108108108109,
          3.618118118118119,
          3.628128128128129,
          3.638138138138139,
          3.648148148148149,
          3.658158158158159,
          3.668168168168169,
          3.678178178178179,
          3.688188188188189,
          3.698198198198199,
          3.708208208208209,
          3.718218218218219,
          3.728228228228229,
          3.738238238238239,
          3.748248248248249,
          3.758258258258259,
          3.768268268268269,
          3.778278278278279,
          3.788288288288289,
          3.798298298298299,
          3.808308308308309,
          3.818318318318319,
          3.828328328328329,
          3.838338338338339,
          3.848348348348349,
          3.858358358358359,
          3.868368368368369,
          3.878378378378379,
          3.888388388388389,
          3.898398398398399,
          3.908408408408409,
          3.918418418418419,
          3.928428428428429,
          3.938438438438439,
          3.948448448448449,
          3.958458458458459,
          3.968468468468469,
          3.978478478478479,
          3.988488488488489,
          3.998498498498499,
          4.008508508508509,
          4.018518518518519,
          4.028528528528529,
          4.038538538538539,
          4.048548548548549,
          4.058558558558559,
          4.068568568568569,
          4.078578578578579,
          4.088588588588589,
          4.098598598598599,
          4.108608608608609,
          4.118618618618619,
          4.128628628628629,
          4.138638638638639,
          4.148648648648649,
          4.158658658658659,
          4.168668668668669,
          4.178678678678679,
          4.188688688688689,
          4.198698698698699,
          4.208708708708709,
          4.218718718718719,
          4.228728728728729,
          4.238738738738739,
          4.248748748748749,
          4.258758758758759,
          4.268768768768769,
          4.278778778778779,
          4.288788788788789,
          4.298798798798799,
          4.308808808808809,
          4.318818818818819,
          4.328828828828829,
          4.338838838838839,
          4.348848848848849,
          4.358858858858859,
          4.368868868868869,
          4.378878878878879,
          4.388888888888889,
          4.398898898898899,
          4.408908908908909,
          4.418918918918919,
          4.428928928928929,
          4.438938938938939,
          4.448948948948949,
          4.458958958958959,
          4.468968968968969,
          4.478978978978979,
          4.488988988988989,
          4.498998998998999,
          4.509009009009009,
          4.519019019019019,
          4.529029029029029,
          4.539039039039039,
          4.549049049049049,
          4.559059059059059,
          4.569069069069069,
          4.579079079079079,
          4.589089089089089,
          4.599099099099099,
          4.609109109109109,
          4.619119119119119,
          4.629129129129129,
          4.6391391391391394,
          4.6491491491491495,
          4.6591591591591595,
          4.6691691691691695,
          4.6791791791791795,
          4.6891891891891895,
          4.6991991991991995,
          4.7092092092092095,
          4.7192192192192195,
          4.7292292292292295,
          4.7392392392392395,
          4.7492492492492495,
          4.7592592592592595,
          4.7692692692692695,
          4.7792792792792795,
          4.7892892892892895,
          4.7992992992992995,
          4.8093093093093096,
          4.81931931931932,
          4.82932932932933,
          4.83933933933934,
          4.84934934934935,
          4.85935935935936,
          4.86936936936937,
          4.87937937937938,
          4.88938938938939,
          4.8993993993994,
          4.90940940940941,
          4.91941941941942,
          4.92942942942943,
          4.93943943943944,
          4.94944944944945,
          4.95945945945946,
          4.96946946946947,
          4.97947947947948,
          4.98948948948949,
          4.9994994994995,
          5.00950950950951,
          5.01951951951952,
          5.02952952952953,
          5.03953953953954,
          5.04954954954955,
          5.05955955955956,
          5.06956956956957,
          5.07957957957958,
          5.08958958958959,
          5.0995995995996,
          5.10960960960961,
          5.11961961961962,
          5.12962962962963,
          5.13963963963964,
          5.14964964964965,
          5.15965965965966,
          5.16966966966967,
          5.17967967967968,
          5.18968968968969,
          5.1996996996997,
          5.20970970970971,
          5.21971971971972,
          5.22972972972973,
          5.23973973973974,
          5.24974974974975,
          5.25975975975976,
          5.26976976976977,
          5.27977977977978,
          5.28978978978979,
          5.2997997997998,
          5.30980980980981,
          5.31981981981982,
          5.32982982982983,
          5.33983983983984,
          5.34984984984985,
          5.35985985985986,
          5.36986986986987,
          5.37987987987988,
          5.38988988988989,
          5.3998998998999,
          5.40990990990991,
          5.41991991991992,
          5.42992992992993,
          5.43993993993994,
          5.44994994994995,
          5.45995995995996,
          5.46996996996997,
          5.47997997997998,
          5.48998998998999,
          5.5
         ],
         "xaxis": "x",
         "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,
          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,
          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.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          0.1,
          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,
          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
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>a</i>=2; <i>b</i>=4<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=2; <i>b</i>=4",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=2; <i>b</i>=4",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          -8,
          -7.97997997997998,
          -7.95995995995996,
          -7.93993993993994,
          -7.91991991991992,
          -7.8998998998999,
          -7.87987987987988,
          -7.85985985985986,
          -7.83983983983984,
          -7.81981981981982,
          -7.7997997997998,
          -7.77977977977978,
          -7.75975975975976,
          -7.73973973973974,
          -7.71971971971972,
          -7.6996996996997,
          -7.67967967967968,
          -7.65965965965966,
          -7.63963963963964,
          -7.61961961961962,
          -7.5995995995996,
          -7.57957957957958,
          -7.55955955955956,
          -7.53953953953954,
          -7.51951951951952,
          -7.4994994994995,
          -7.47947947947948,
          -7.45945945945946,
          -7.43943943943944,
          -7.41941941941942,
          -7.3993993993994,
          -7.37937937937938,
          -7.35935935935936,
          -7.33933933933934,
          -7.31931931931932,
          -7.2992992992992995,
          -7.2792792792792795,
          -7.2592592592592595,
          -7.2392392392392395,
          -7.2192192192192195,
          -7.1991991991991995,
          -7.1791791791791795,
          -7.1591591591591595,
          -7.1391391391391394,
          -7.119119119119119,
          -7.099099099099099,
          -7.079079079079079,
          -7.059059059059059,
          -7.039039039039039,
          -7.019019019019019,
          -6.998998998998999,
          -6.978978978978979,
          -6.958958958958959,
          -6.938938938938939,
          -6.918918918918919,
          -6.898898898898899,
          -6.878878878878879,
          -6.858858858858859,
          -6.838838838838839,
          -6.818818818818819,
          -6.798798798798799,
          -6.778778778778779,
          -6.758758758758759,
          -6.738738738738739,
          -6.718718718718719,
          -6.698698698698699,
          -6.678678678678679,
          -6.658658658658659,
          -6.638638638638639,
          -6.618618618618619,
          -6.598598598598599,
          -6.578578578578579,
          -6.558558558558559,
          -6.538538538538539,
          -6.518518518518519,
          -6.498498498498499,
          -6.478478478478479,
          -6.458458458458459,
          -6.438438438438439,
          -6.418418418418419,
          -6.398398398398399,
          -6.378378378378379,
          -6.358358358358359,
          -6.338338338338339,
          -6.318318318318319,
          -6.298298298298299,
          -6.278278278278279,
          -6.258258258258259,
          -6.238238238238239,
          -6.218218218218219,
          -6.198198198198199,
          -6.178178178178179,
          -6.158158158158159,
          -6.138138138138139,
          -6.118118118118119,
          -6.098098098098099,
          -6.078078078078079,
          -6.058058058058059,
          -6.038038038038039,
          -6.018018018018019,
          -5.997997997997998,
          -5.977977977977978,
          -5.957957957957958,
          -5.937937937937938,
          -5.917917917917918,
          -5.897897897897898,
          -5.877877877877878,
          -5.857857857857858,
          -5.837837837837838,
          -5.817817817817818,
          -5.797797797797798,
          -5.777777777777778,
          -5.757757757757758,
          -5.737737737737738,
          -5.717717717717718,
          -5.697697697697698,
          -5.677677677677678,
          -5.657657657657658,
          -5.637637637637638,
          -5.617617617617618,
          -5.597597597597598,
          -5.5775775775775776,
          -5.5575575575575575,
          -5.5375375375375375,
          -5.5175175175175175,
          -5.4974974974974975,
          -5.4774774774774775,
          -5.4574574574574575,
          -5.4374374374374375,
          -5.4174174174174174,
          -5.397397397397397,
          -5.377377377377377,
          -5.357357357357357,
          -5.337337337337337,
          -5.317317317317317,
          -5.297297297297297,
          -5.277277277277277,
          -5.257257257257257,
          -5.237237237237237,
          -5.217217217217217,
          -5.197197197197197,
          -5.177177177177177,
          -5.157157157157157,
          -5.137137137137137,
          -5.117117117117117,
          -5.097097097097097,
          -5.077077077077077,
          -5.057057057057057,
          -5.037037037037037,
          -5.017017017017017,
          -4.996996996996997,
          -4.976976976976977,
          -4.956956956956957,
          -4.936936936936937,
          -4.916916916916917,
          -4.896896896896897,
          -4.876876876876877,
          -4.856856856856857,
          -4.836836836836837,
          -4.816816816816817,
          -4.796796796796797,
          -4.776776776776776,
          -4.756756756756756,
          -4.736736736736736,
          -4.716716716716716,
          -4.696696696696696,
          -4.676676676676676,
          -4.656656656656656,
          -4.636636636636636,
          -4.616616616616616,
          -4.596596596596596,
          -4.576576576576576,
          -4.556556556556556,
          -4.536536536536536,
          -4.516516516516516,
          -4.496496496496496,
          -4.476476476476476,
          -4.456456456456456,
          -4.436436436436436,
          -4.416416416416416,
          -4.396396396396396,
          -4.376376376376376,
          -4.356356356356356,
          -4.336336336336336,
          -4.316316316316316,
          -4.296296296296296,
          -4.276276276276276,
          -4.256256256256256,
          -4.236236236236236,
          -4.216216216216216,
          -4.196196196196196,
          -4.176176176176176,
          -4.156156156156156,
          -4.136136136136136,
          -4.116116116116116,
          -4.096096096096096,
          -4.076076076076076,
          -4.056056056056056,
          -4.036036036036036,
          -4.016016016016016,
          -3.9959959959959956,
          -3.9759759759759756,
          -3.9559559559559556,
          -3.9359359359359356,
          -3.9159159159159156,
          -3.8958958958958956,
          -3.8758758758758756,
          -3.8558558558558556,
          -3.8358358358358355,
          -3.8158158158158155,
          -3.7957957957957955,
          -3.7757757757757755,
          -3.7557557557557555,
          -3.7357357357357355,
          -3.7157157157157155,
          -3.6956956956956954,
          -3.6756756756756754,
          -3.6556556556556554,
          -3.6356356356356354,
          -3.6156156156156154,
          -3.5955955955955954,
          -3.5755755755755754,
          -3.5555555555555554,
          -3.5355355355355353,
          -3.5155155155155153,
          -3.4954954954954953,
          -3.4754754754754753,
          -3.4554554554554553,
          -3.4354354354354353,
          -3.4154154154154153,
          -3.3953953953953953,
          -3.3753753753753752,
          -3.3553553553553552,
          -3.335335335335335,
          -3.315315315315315,
          -3.295295295295295,
          -3.275275275275275,
          -3.255255255255255,
          -3.235235235235235,
          -3.215215215215215,
          -3.195195195195195,
          -3.175175175175175,
          -3.155155155155155,
          -3.135135135135135,
          -3.115115115115115,
          -3.095095095095095,
          -3.075075075075075,
          -3.055055055055055,
          -3.035035035035035,
          -3.015015015015015,
          -2.994994994994995,
          -2.974974974974975,
          -2.954954954954955,
          -2.934934934934935,
          -2.914914914914915,
          -2.894894894894895,
          -2.874874874874875,
          -2.854854854854855,
          -2.834834834834835,
          -2.814814814814815,
          -2.794794794794795,
          -2.774774774774775,
          -2.754754754754755,
          -2.734734734734735,
          -2.714714714714715,
          -2.694694694694695,
          -2.674674674674675,
          -2.6546546546546548,
          -2.6346346346346348,
          -2.6146146146146148,
          -2.5945945945945947,
          -2.5745745745745747,
          -2.5545545545545547,
          -2.5345345345345347,
          -2.5145145145145147,
          -2.4944944944944947,
          -2.4744744744744747,
          -2.4544544544544546,
          -2.4344344344344346,
          -2.4144144144144146,
          -2.3943943943943946,
          -2.3743743743743746,
          -2.3543543543543546,
          -2.3343343343343346,
          -2.3143143143143146,
          -2.2942942942942945,
          -2.2742742742742745,
          -2.2542542542542545,
          -2.2342342342342345,
          -2.2142142142142145,
          -2.1941941941941945,
          -2.1741741741741745,
          -2.1541541541541545,
          -2.1341341341341344,
          -2.1141141141141144,
          -2.0940940940940944,
          -2.0740740740740744,
          -2.0540540540540544,
          -2.0340340340340344,
          -2.0140140140140144,
          -1.9939939939939944,
          -1.9739739739739743,
          -1.9539539539539543,
          -1.9339339339339343,
          -1.9139139139139143,
          -1.8938938938938943,
          -1.8738738738738743,
          -1.8538538538538543,
          -1.8338338338338342,
          -1.8138138138138142,
          -1.7937937937937942,
          -1.7737737737737742,
          -1.7537537537537542,
          -1.7337337337337342,
          -1.7137137137137142,
          -1.6936936936936942,
          -1.6736736736736741,
          -1.6536536536536541,
          -1.6336336336336341,
          -1.613613613613614,
          -1.593593593593594,
          -1.5735735735735732,
          -1.5535535535535532,
          -1.5335335335335332,
          -1.5135135135135132,
          -1.4934934934934931,
          -1.4734734734734731,
          -1.4534534534534531,
          -1.433433433433433,
          -1.413413413413413,
          -1.393393393393393,
          -1.373373373373373,
          -1.353353353353353,
          -1.333333333333333,
          -1.313313313313313,
          -1.293293293293293,
          -1.273273273273273,
          -1.253253253253253,
          -1.233233233233233,
          -1.213213213213213,
          -1.193193193193193,
          -1.173173173173173,
          -1.153153153153153,
          -1.133133133133133,
          -1.113113113113113,
          -1.0930930930930929,
          -1.0730730730730729,
          -1.0530530530530529,
          -1.0330330330330328,
          -1.0130130130130128,
          -0.9929929929929928,
          -0.9729729729729728,
          -0.9529529529529528,
          -0.9329329329329328,
          -0.9129129129129128,
          -0.8928928928928928,
          -0.8728728728728727,
          -0.8528528528528527,
          -0.8328328328328327,
          -0.8128128128128127,
          -0.7927927927927927,
          -0.7727727727727727,
          -0.7527527527527527,
          -0.7327327327327327,
          -0.7127127127127126,
          -0.6926926926926926,
          -0.6726726726726726,
          -0.6526526526526526,
          -0.6326326326326326,
          -0.6126126126126126,
          -0.5925925925925926,
          -0.5725725725725725,
          -0.5525525525525525,
          -0.5325325325325325,
          -0.5125125125125125,
          -0.4924924924924925,
          -0.4724724724724725,
          -0.45245245245245247,
          -0.43243243243243246,
          -0.41241241241241244,
          -0.39239239239239243,
          -0.3723723723723724,
          -0.3523523523523524,
          -0.3323323323323324,
          -0.3123123123123124,
          -0.29229229229229237,
          -0.27227227227227235,
          -0.25225225225225234,
          -0.23223223223223233,
          -0.21221221221221231,
          -0.1921921921921923,
          -0.1721721721721723,
          -0.15215215215215228,
          -0.13213213213213226,
          -0.11211211211211225,
          -0.09209209209209224,
          -0.07207207207207222,
          -0.05205205205205221,
          -0.0320320320320322,
          -0.012012012012012185,
          0.008008008008008716,
          0.02802802802802873,
          0.04804804804804874,
          0.06806806806806875,
          0.08808808808808877,
          0.10810810810810878,
          0.1281281281281288,
          0.1481481481481488,
          0.16816816816816882,
          0.18818818818818883,
          0.20820820820820884,
          0.22822822822822886,
          0.24824824824824887,
          0.2682682682682689,
          0.2882882882882889,
          0.3083083083083089,
          0.3283283283283289,
          0.34834834834834894,
          0.36836836836836895,
          0.38838838838838896,
          0.408408408408409,
          0.428428428428429,
          0.448448448448449,
          0.468468468468469,
          0.488488488488489,
          0.508508508508509,
          0.528528528528529,
          0.5485485485485491,
          0.5685685685685691,
          0.5885885885885891,
          0.6086086086086091,
          0.6286286286286291,
          0.6486486486486491,
          0.6686686686686691,
          0.6886886886886892,
          0.7087087087087092,
          0.7287287287287292,
          0.7487487487487492,
          0.7687687687687692,
          0.7887887887887892,
          0.8088088088088092,
          0.8288288288288292,
          0.8488488488488493,
          0.8688688688688693,
          0.8888888888888893,
          0.9089089089089093,
          0.9289289289289293,
          0.9489489489489493,
          0.9689689689689693,
          0.9889889889889893,
          1.0090090090090094,
          1.0290290290290294,
          1.0490490490490494,
          1.0690690690690694,
          1.0890890890890894,
          1.1091091091091094,
          1.1291291291291294,
          1.1491491491491495,
          1.1691691691691695,
          1.1891891891891895,
          1.2092092092092095,
          1.2292292292292295,
          1.2492492492492495,
          1.2692692692692695,
          1.2892892892892895,
          1.3093093093093096,
          1.3293293293293296,
          1.3493493493493496,
          1.3693693693693696,
          1.3893893893893896,
          1.4094094094094096,
          1.4294294294294296,
          1.4494494494494496,
          1.4694694694694697,
          1.4894894894894897,
          1.5095095095095097,
          1.5295295295295297,
          1.5495495495495497,
          1.5695695695695697,
          1.5895895895895897,
          1.6096096096096097,
          1.6296296296296298,
          1.6496496496496498,
          1.6696696696696698,
          1.6896896896896898,
          1.7097097097097098,
          1.7297297297297298,
          1.7497497497497498,
          1.7697697697697699,
          1.7897897897897899,
          1.8098098098098099,
          1.82982982982983,
          1.84984984984985,
          1.86986986986987,
          1.88988988988989,
          1.90990990990991,
          1.92992992992993,
          1.94994994994995,
          1.96996996996997,
          1.98998998998999,
          2.01001001001001,
          2.03003003003003,
          2.05005005005005,
          2.07007007007007,
          2.09009009009009,
          2.11011011011011,
          2.13013013013013,
          2.15015015015015,
          2.17017017017017,
          2.19019019019019,
          2.21021021021021,
          2.23023023023023,
          2.25025025025025,
          2.27027027027027,
          2.29029029029029,
          2.31031031031031,
          2.33033033033033,
          2.3503503503503502,
          2.3703703703703702,
          2.3903903903903903,
          2.4104104104104103,
          2.4304304304304303,
          2.4504504504504503,
          2.4704704704704703,
          2.4904904904904903,
          2.5105105105105103,
          2.5305305305305303,
          2.5505505505505504,
          2.5705705705705704,
          2.5905905905905904,
          2.6106106106106104,
          2.6306306306306304,
          2.6506506506506504,
          2.6706706706706704,
          2.6906906906906904,
          2.7107107107107105,
          2.7307307307307305,
          2.7507507507507505,
          2.7707707707707705,
          2.7907907907907905,
          2.8108108108108105,
          2.8308308308308305,
          2.8508508508508505,
          2.8708708708708706,
          2.8908908908908906,
          2.9109109109109106,
          2.9309309309309306,
          2.9509509509509506,
          2.9709709709709706,
          2.9909909909909906,
          3.0110110110110107,
          3.0310310310310307,
          3.0510510510510507,
          3.0710710710710707,
          3.0910910910910907,
          3.1111111111111107,
          3.1311311311311307,
          3.1511511511511507,
          3.1711711711711708,
          3.1911911911911908,
          3.211211211211211,
          3.231231231231231,
          3.251251251251251,
          3.271271271271271,
          3.291291291291291,
          3.311311311311311,
          3.331331331331331,
          3.351351351351351,
          3.371371371371371,
          3.391391391391391,
          3.411411411411411,
          3.431431431431431,
          3.451451451451451,
          3.471471471471471,
          3.491491491491491,
          3.511511511511511,
          3.531531531531531,
          3.551551551551551,
          3.571571571571571,
          3.591591591591591,
          3.611611611611611,
          3.631631631631631,
          3.651651651651651,
          3.671671671671671,
          3.691691691691691,
          3.711711711711711,
          3.731731731731731,
          3.751751751751751,
          3.771771771771771,
          3.791791791791791,
          3.811811811811811,
          3.831831831831831,
          3.851851851851851,
          3.871871871871871,
          3.891891891891891,
          3.9119119119119112,
          3.9319319319319312,
          3.9519519519519513,
          3.9719719719719713,
          3.9919919919919913,
          4.012012012012011,
          4.032032032032031,
          4.052052052052051,
          4.072072072072071,
          4.092092092092091,
          4.112112112112111,
          4.132132132132131,
          4.152152152152151,
          4.172172172172171,
          4.192192192192191,
          4.212212212212211,
          4.232232232232231,
          4.2522522522522515,
          4.2722722722722715,
          4.2922922922922915,
          4.3123123123123115,
          4.3323323323323315,
          4.3523523523523515,
          4.3723723723723715,
          4.3923923923923915,
          4.4124124124124116,
          4.432432432432432,
          4.452452452452452,
          4.472472472472472,
          4.492492492492492,
          4.512512512512512,
          4.532532532532532,
          4.552552552552552,
          4.572572572572572,
          4.592592592592592,
          4.612612612612612,
          4.632632632632632,
          4.652652652652652,
          4.672672672672672,
          4.692692692692692,
          4.712712712712712,
          4.732732732732732,
          4.752752752752752,
          4.772772772772772,
          4.792792792792792,
          4.812812812812812,
          4.832832832832834,
          4.852852852852854,
          4.872872872872874,
          4.892892892892894,
          4.912912912912914,
          4.932932932932934,
          4.952952952952954,
          4.972972972972974,
          4.992992992992994,
          5.013013013013014,
          5.033033033033034,
          5.053053053053054,
          5.073073073073074,
          5.093093093093094,
          5.113113113113114,
          5.133133133133134,
          5.153153153153154,
          5.173173173173174,
          5.193193193193194,
          5.213213213213214,
          5.233233233233234,
          5.253253253253254,
          5.273273273273274,
          5.293293293293294,
          5.313313313313314,
          5.333333333333334,
          5.353353353353354,
          5.373373373373374,
          5.393393393393394,
          5.413413413413414,
          5.433433433433434,
          5.453453453453454,
          5.473473473473474,
          5.493493493493494,
          5.513513513513514,
          5.533533533533534,
          5.553553553553554,
          5.573573573573574,
          5.593593593593594,
          5.613613613613614,
          5.633633633633634,
          5.653653653653654,
          5.673673673673674,
          5.693693693693694,
          5.713713713713714,
          5.733733733733734,
          5.753753753753754,
          5.773773773773774,
          5.793793793793794,
          5.813813813813814,
          5.833833833833834,
          5.853853853853854,
          5.873873873873874,
          5.893893893893894,
          5.913913913913914,
          5.933933933933934,
          5.953953953953954,
          5.973973973973974,
          5.993993993993994,
          6.014014014014014,
          6.034034034034034,
          6.054054054054054,
          6.074074074074074,
          6.094094094094094,
          6.114114114114114,
          6.134134134134134,
          6.1541541541541545,
          6.1741741741741745,
          6.1941941941941945,
          6.2142142142142145,
          6.2342342342342345,
          6.2542542542542545,
          6.2742742742742745,
          6.2942942942942945,
          6.314314314314315,
          6.334334334334335,
          6.354354354354355,
          6.374374374374375,
          6.394394394394395,
          6.414414414414415,
          6.434434434434435,
          6.454454454454455,
          6.474474474474475,
          6.494494494494495,
          6.514514514514515,
          6.534534534534535,
          6.554554554554555,
          6.574574574574575,
          6.594594594594595,
          6.614614614614615,
          6.634634634634635,
          6.654654654654655,
          6.674674674674675,
          6.694694694694695,
          6.714714714714715,
          6.734734734734735,
          6.754754754754755,
          6.774774774774775,
          6.794794794794795,
          6.814814814814815,
          6.834834834834835,
          6.854854854854855,
          6.874874874874875,
          6.894894894894895,
          6.914914914914915,
          6.934934934934935,
          6.954954954954955,
          6.974974974974975,
          6.994994994994995,
          7.015015015015015,
          7.035035035035035,
          7.055055055055055,
          7.075075075075075,
          7.095095095095095,
          7.115115115115115,
          7.135135135135135,
          7.155155155155155,
          7.175175175175175,
          7.195195195195195,
          7.215215215215215,
          7.235235235235235,
          7.255255255255255,
          7.275275275275275,
          7.295295295295295,
          7.315315315315315,
          7.335335335335335,
          7.355355355355355,
          7.375375375375375,
          7.395395395395395,
          7.415415415415415,
          7.435435435435435,
          7.455455455455455,
          7.475475475475475,
          7.495495495495495,
          7.515515515515515,
          7.535535535535535,
          7.555555555555555,
          7.575575575575575,
          7.595595595595595,
          7.615615615615615,
          7.635635635635635,
          7.655655655655655,
          7.675675675675675,
          7.6956956956956954,
          7.7157157157157155,
          7.7357357357357355,
          7.7557557557557555,
          7.7757757757757755,
          7.7957957957957955,
          7.8158158158158155,
          7.8358358358358355,
          7.8558558558558556,
          7.875875875875876,
          7.895895895895896,
          7.915915915915916,
          7.935935935935936,
          7.955955955955956,
          7.975975975975976,
          7.995995995995996,
          8.016016016016017,
          8.036036036036037,
          8.056056056056057,
          8.076076076076077,
          8.096096096096097,
          8.116116116116117,
          8.136136136136138,
          8.156156156156158,
          8.176176176176178,
          8.196196196196198,
          8.216216216216218,
          8.236236236236238,
          8.256256256256258,
          8.276276276276278,
          8.296296296296298,
          8.316316316316318,
          8.336336336336338,
          8.356356356356358,
          8.376376376376378,
          8.396396396396398,
          8.416416416416418,
          8.436436436436438,
          8.456456456456458,
          8.476476476476478,
          8.496496496496498,
          8.516516516516518,
          8.536536536536538,
          8.556556556556558,
          8.576576576576578,
          8.596596596596598,
          8.616616616616618,
          8.636636636636638,
          8.656656656656658,
          8.676676676676678,
          8.696696696696698,
          8.716716716716718,
          8.736736736736738,
          8.756756756756758,
          8.776776776776778,
          8.796796796796798,
          8.816816816816818,
          8.836836836836838,
          8.856856856856858,
          8.876876876876878,
          8.896896896896898,
          8.916916916916918,
          8.936936936936938,
          8.956956956956958,
          8.976976976976978,
          8.996996996996998,
          9.017017017017018,
          9.037037037037038,
          9.057057057057058,
          9.077077077077078,
          9.097097097097098,
          9.117117117117118,
          9.137137137137138,
          9.157157157157158,
          9.177177177177178,
          9.197197197197198,
          9.217217217217218,
          9.237237237237238,
          9.257257257257258,
          9.277277277277278,
          9.297297297297298,
          9.317317317317318,
          9.337337337337338,
          9.357357357357358,
          9.377377377377378,
          9.397397397397398,
          9.417417417417418,
          9.437437437437438,
          9.457457457457458,
          9.477477477477478,
          9.497497497497498,
          9.517517517517518,
          9.537537537537538,
          9.557557557557558,
          9.577577577577578,
          9.597597597597598,
          9.617617617617618,
          9.637637637637638,
          9.657657657657658,
          9.677677677677679,
          9.697697697697699,
          9.717717717717719,
          9.737737737737739,
          9.757757757757759,
          9.777777777777779,
          9.797797797797799,
          9.817817817817819,
          9.837837837837839,
          9.857857857857859,
          9.877877877877879,
          9.897897897897899,
          9.917917917917919,
          9.937937937937939,
          9.957957957957959,
          9.977977977977979,
          9.997997997997999,
          10.018018018018019,
          10.038038038038039,
          10.058058058058059,
          10.078078078078079,
          10.098098098098099,
          10.118118118118119,
          10.138138138138139,
          10.158158158158159,
          10.178178178178179,
          10.198198198198199,
          10.218218218218219,
          10.238238238238239,
          10.258258258258259,
          10.278278278278279,
          10.298298298298299,
          10.318318318318319,
          10.338338338338339,
          10.358358358358359,
          10.378378378378379,
          10.398398398398399,
          10.418418418418419,
          10.438438438438439,
          10.458458458458459,
          10.478478478478479,
          10.498498498498499,
          10.518518518518519,
          10.538538538538539,
          10.558558558558559,
          10.578578578578579,
          10.598598598598599,
          10.618618618618619,
          10.63863863863864,
          10.65865865865866,
          10.67867867867868,
          10.6986986986987,
          10.71871871871872,
          10.73873873873874,
          10.75875875875876,
          10.77877877877878,
          10.7987987987988,
          10.81881881881882,
          10.83883883883884,
          10.85885885885886,
          10.87887887887888,
          10.8988988988989,
          10.91891891891892,
          10.93893893893894,
          10.95895895895896,
          10.97897897897898,
          10.998998998999,
          11.01901901901902,
          11.03903903903904,
          11.05905905905906,
          11.07907907907908,
          11.0990990990991,
          11.11911911911912,
          11.13913913913914,
          11.15915915915916,
          11.17917917917918,
          11.1991991991992,
          11.21921921921922,
          11.23923923923924,
          11.25925925925926,
          11.27927927927928,
          11.2992992992993,
          11.31931931931932,
          11.33933933933934,
          11.35935935935936,
          11.37937937937938,
          11.3993993993994,
          11.41941941941942,
          11.43943943943944,
          11.45945945945946,
          11.47947947947948,
          11.4994994994995,
          11.51951951951952,
          11.53953953953954,
          11.55955955955956,
          11.57957957957958,
          11.5995995995996,
          11.61961961961962,
          11.63963963963964,
          11.65965965965966,
          11.67967967967968,
          11.6996996996997,
          11.71971971971972,
          11.73973973973974,
          11.75975975975976,
          11.77977977977978,
          11.7997997997998,
          11.81981981981982,
          11.83983983983984,
          11.85985985985986,
          11.87987987987988,
          11.8998998998999,
          11.91991991991992,
          11.93993993993994,
          11.95995995995996,
          11.97997997997998,
          12
         ],
         "xaxis": "x",
         "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,
          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,
          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.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          0.05,
          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,
          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
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Gleichverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          5
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "x = np.linspace(0, 5, NN)\n",
    "a, b = 0.5, 1.5\n",
    "y = stats.uniform.pdf(x, loc=a, scale=b-a)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "a, b = 2, 4\n",
    "y = stats.uniform.pdf(x, loc=a, scale=b-a)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", range_x=[0,5], labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Gleichverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b32fb833-a1ac-4e47-af08-0ebcb4bf6cdf",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "## Exponentialverteilung\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c35ebeb5-35c7-4b48-910f-752deb54fa05",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Bei der Exponentialverteilung sind die Auftrittswahrscheinlichkeiten durch die Exponentialfunktion beschreibbar. Hierbei ist die Wahrscheinlichkeit, dass ein Wert 0 oder klein ist, deutlich größer als das er groß ist. Die Exponentialverteilung tritt oft bei der Modellierung von Zeiten bis zum Eintritt von Ereignissen auf, die im Durchschnitt mit konstanter Rate eintreten, z.B. die Lebensdauer von Atomen bei radioaktiven Zerfällen oder die Wartezeiten zwischen Anrufen in einem Call-Center."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c7c4d3c2-6a70-4c1e-9235-61b5d62b8684",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Exponentialverteilung ist durch die negative Exponentialfunktion definiert und kann damit nur positive Werte annehmen. Der charakteristische Parameter $\\lambda$ wird oft auch als Auftrittsrate oder Bearbeitungsrate bezeichnet. Formal ist die Verteilung definiert durch\n",
    "\n",
    "$$\n",
    "f(x) = \\begin{cases}\n",
    "\\lambda  e^{ - \\lambda x} & x \\ge 0, \\\\\n",
    "0 & x < 0.\n",
    "\\end{cases}\n",
    "$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b7995d4c-85fb-468f-9469-3db307e46a66",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": ""
    },
    "tags": []
   },
   "source": [
    "Zu erkennen ist die Verteilung an der Exponentialfunktion und der hohen Wahrscheinlichkeit von Werten die 0 oder fast 0 sind. Ferner ist sie typisch für Variablen die Zeiten zwischen Ereignissen modellieren, die mit konstanter Rate auftreten."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "id": "32667d81-dd90-4a2c-b280-ea1a6465a99e",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>λ</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=1",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>λ</i>=1",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.006004004004004004,
          0.011008008008008007,
          0.016012012012012012,
          0.021016016016016017,
          0.02602002002002002,
          0.031024024024024023,
          0.03602802802802803,
          0.04103203203203203,
          0.04603603603603604,
          0.05104004004004004,
          0.05604404404404405,
          0.061048048048048045,
          0.06605205205205206,
          0.07105605605605606,
          0.07606006006006007,
          0.08106406406406406,
          0.08606806806806806,
          0.09107207207207207,
          0.09607607607607607,
          0.10108008008008008,
          0.10608408408408408,
          0.1110880880880881,
          0.11609209209209209,
          0.12109609609609609,
          0.1261001001001001,
          0.1311041041041041,
          0.1361081081081081,
          0.1411121121121121,
          0.1461161161161161,
          0.15112012012012013,
          0.15612412412412413,
          0.16112812812812813,
          0.16613213213213213,
          0.17113613613613612,
          0.17614014014014015,
          0.18114414414414415,
          0.18614814814814815,
          0.19115215215215214,
          0.19615615615615617,
          0.20116016016016017,
          0.20616416416416417,
          0.21116816816816816,
          0.21617217217217216,
          0.2211761761761762,
          0.22618018018018018,
          0.23118418418418418,
          0.23618818818818818,
          0.24119219219219218,
          0.2461961961961962,
          0.2512002002002002,
          0.2562042042042042,
          0.2612082082082082,
          0.2662122122122122,
          0.2712162162162162,
          0.27622022022022025,
          0.2812242242242242,
          0.28622822822822824,
          0.2912322322322322,
          0.29623623623623624,
          0.30124024024024026,
          0.30624424424424423,
          0.31124824824824826,
          0.31625225225225223,
          0.32125625625625626,
          0.3262602602602603,
          0.33126426426426425,
          0.3362682682682683,
          0.34127227227227225,
          0.3462762762762763,
          0.3512802802802803,
          0.35628428428428427,
          0.3612882882882883,
          0.36629229229229227,
          0.3712962962962963,
          0.3763003003003003,
          0.3813043043043043,
          0.3863083083083083,
          0.39131231231231234,
          0.3963163163163163,
          0.40132032032032033,
          0.4063243243243243,
          0.41132832832832833,
          0.41633233233233236,
          0.4213363363363363,
          0.42634034034034035,
          0.4313443443443443,
          0.43634834834834835,
          0.4413523523523524,
          0.44635635635635634,
          0.45136036036036037,
          0.45636436436436434,
          0.46136836836836836,
          0.4663723723723724,
          0.47137637637637636,
          0.4763803803803804,
          0.48138438438438436,
          0.4863883883883884,
          0.4913923923923924,
          0.4963963963963964,
          0.5014004004004003,
          0.5064044044044044,
          0.5114084084084084,
          0.5164124124124124,
          0.5214164164164165,
          0.5264204204204204,
          0.5314244244244244,
          0.5364284284284284,
          0.5414324324324324,
          0.5464364364364365,
          0.5514404404404405,
          0.5564444444444444,
          0.5614484484484484,
          0.5664524524524525,
          0.5714564564564565,
          0.5764604604604605,
          0.5814644644644644,
          0.5864684684684685,
          0.5914724724724725,
          0.5964764764764765,
          0.6014804804804805,
          0.6064844844844844,
          0.6114884884884885,
          0.6164924924924925,
          0.6214964964964965,
          0.6265005005005005,
          0.6315045045045045,
          0.6365085085085085,
          0.6415125125125125,
          0.6465165165165165,
          0.6515205205205206,
          0.6565245245245245,
          0.6615285285285285,
          0.6665325325325325,
          0.6715365365365366,
          0.6765405405405406,
          0.6815445445445445,
          0.6865485485485485,
          0.6915525525525525,
          0.6965565565565566,
          0.7015605605605606,
          0.7065645645645645,
          0.7115685685685685,
          0.7165725725725726,
          0.7215765765765766,
          0.7265805805805806,
          0.7315845845845845,
          0.7365885885885886,
          0.7415925925925926,
          0.7465965965965966,
          0.7516006006006006,
          0.7566046046046047,
          0.7616086086086086,
          0.7666126126126126,
          0.7716166166166166,
          0.7766206206206206,
          0.7816246246246247,
          0.7866286286286286,
          0.7916326326326326,
          0.7966366366366366,
          0.8016406406406407,
          0.8066446446446447,
          0.8116486486486486,
          0.8166526526526526,
          0.8216566566566567,
          0.8266606606606607,
          0.8316646646646647,
          0.8366686686686686,
          0.8416726726726727,
          0.8466766766766767,
          0.8516806806806807,
          0.8566846846846847,
          0.8616886886886886,
          0.8666926926926927,
          0.8716966966966967,
          0.8767007007007007,
          0.8817047047047047,
          0.8867087087087087,
          0.8917127127127127,
          0.8967167167167167,
          0.9017207207207207,
          0.9067247247247248,
          0.9117287287287287,
          0.9167327327327327,
          0.9217367367367367,
          0.9267407407407408,
          0.9317447447447448,
          0.9367487487487487,
          0.9417527527527527,
          0.9467567567567567,
          0.9517607607607608,
          0.9567647647647648,
          0.9617687687687687,
          0.9667727727727727,
          0.9717767767767768,
          0.9767807807807808,
          0.9817847847847848,
          0.9867887887887888,
          0.9917927927927928,
          0.9967967967967968,
          1.0018008008008006,
          1.0068048048048046,
          1.0118088088088086,
          1.0168128128128127,
          1.0218168168168167,
          1.0268208208208207,
          1.0318248248248247,
          1.0368288288288288,
          1.0418328328328328,
          1.0468368368368368,
          1.0518408408408406,
          1.0568448448448446,
          1.0618488488488487,
          1.0668528528528527,
          1.0718568568568567,
          1.0768608608608607,
          1.0818648648648648,
          1.0868688688688688,
          1.0918728728728728,
          1.0968768768768768,
          1.1018808808808809,
          1.1068848848848847,
          1.1118888888888887,
          1.1168928928928927,
          1.1218968968968968,
          1.1269009009009008,
          1.1319049049049048,
          1.1369089089089088,
          1.1419129129129129,
          1.1469169169169169,
          1.151920920920921,
          1.1569249249249247,
          1.1619289289289287,
          1.1669329329329328,
          1.1719369369369368,
          1.1769409409409408,
          1.1819449449449448,
          1.1869489489489489,
          1.191952952952953,
          1.196956956956957,
          1.201960960960961,
          1.2069649649649647,
          1.2119689689689688,
          1.2169729729729728,
          1.2219769769769768,
          1.2269809809809809,
          1.2319849849849849,
          1.236988988988989,
          1.241992992992993,
          1.246996996996997,
          1.252001001001001,
          1.2570050050050048,
          1.2620090090090088,
          1.2670130130130128,
          1.2720170170170169,
          1.2770210210210209,
          1.282025025025025,
          1.287029029029029,
          1.292033033033033,
          1.297037037037037,
          1.302041041041041,
          1.307045045045045,
          1.3120490490490488,
          1.3170530530530529,
          1.322057057057057,
          1.327061061061061,
          1.332065065065065,
          1.337069069069069,
          1.342073073073073,
          1.347077077077077,
          1.352081081081081,
          1.357085085085085,
          1.3620890890890889,
          1.367093093093093,
          1.372097097097097,
          1.377101101101101,
          1.382105105105105,
          1.387109109109109,
          1.392113113113113,
          1.397117117117117,
          1.402121121121121,
          1.407125125125125,
          1.412129129129129,
          1.417133133133133,
          1.422137137137137,
          1.427141141141141,
          1.432145145145145,
          1.437149149149149,
          1.442153153153153,
          1.447157157157157,
          1.4521611611611611,
          1.4571651651651651,
          1.462169169169169,
          1.467173173173173,
          1.472177177177177,
          1.477181181181181,
          1.482185185185185,
          1.487189189189189,
          1.492193193193193,
          1.4971971971971971,
          1.5022012012012012,
          1.5072052052052052,
          1.5122092092092092,
          1.517213213213213,
          1.522217217217217,
          1.527221221221221,
          1.532225225225225,
          1.537229229229229,
          1.5422332332332331,
          1.5472372372372372,
          1.5522412412412412,
          1.5572452452452452,
          1.5622492492492492,
          1.567253253253253,
          1.572257257257257,
          1.577261261261261,
          1.5822652652652651,
          1.5872692692692691,
          1.5922732732732732,
          1.5972772772772772,
          1.6022812812812812,
          1.6072852852852852,
          1.6122892892892893,
          1.617293293293293,
          1.622297297297297,
          1.6273013013013011,
          1.6323053053053052,
          1.6373093093093092,
          1.6423133133133132,
          1.6473173173173172,
          1.6523213213213213,
          1.6573253253253253,
          1.6623293293293293,
          1.6673333333333331,
          1.6723373373373371,
          1.6773413413413412,
          1.6823453453453452,
          1.6873493493493492,
          1.6923533533533532,
          1.6973573573573573,
          1.7023613613613613,
          1.7073653653653653,
          1.7123693693693693,
          1.7173733733733734,
          1.7223773773773772,
          1.7273813813813812,
          1.7323853853853852,
          1.7373893893893892,
          1.7423933933933933,
          1.7473973973973973,
          1.7524014014014013,
          1.7574054054054054,
          1.7624094094094094,
          1.7674134134134134,
          1.7724174174174172,
          1.7774214214214212,
          1.7824254254254253,
          1.7874294294294293,
          1.7924334334334333,
          1.7974374374374373,
          1.8024414414414414,
          1.8074454454454454,
          1.8124494494494494,
          1.8174534534534534,
          1.8224574574574572,
          1.8274614614614613,
          1.8324654654654653,
          1.8374694694694693,
          1.8424734734734733,
          1.8474774774774774,
          1.8524814814814814,
          1.8574854854854854,
          1.8624894894894894,
          1.8674934934934935,
          1.8724974974974973,
          1.8775015015015013,
          1.8825055055055053,
          1.8875095095095094,
          1.8925135135135134,
          1.8975175175175174,
          1.9025215215215214,
          1.9075255255255255,
          1.9125295295295295,
          1.9175335335335335,
          1.9225375375375373,
          1.9275415415415413,
          1.9325455455455454,
          1.9375495495495494,
          1.9425535535535534,
          1.9475575575575574,
          1.9525615615615615,
          1.9575655655655655,
          1.9625695695695695,
          1.9675735735735735,
          1.9725775775775776,
          1.9775815815815814,
          1.9825855855855854,
          1.9875895895895894,
          1.9925935935935934,
          1.9975975975975975,
          2.0026016016016013,
          2.0076056056056055,
          2.0126096096096093,
          2.0176136136136136,
          2.0226176176176174,
          2.0276216216216216,
          2.0326256256256254,
          2.0376296296296297,
          2.0426336336336335,
          2.0476376376376377,
          2.0526416416416415,
          2.0576456456456453,
          2.0626496496496496,
          2.0676536536536534,
          2.0726576576576576,
          2.0776616616616614,
          2.0826656656656657,
          2.0876696696696695,
          2.0926736736736737,
          2.0976776776776775,
          2.1026816816816813,
          2.1076856856856856,
          2.1126896896896894,
          2.1176936936936936,
          2.1226976976976974,
          2.1277017017017017,
          2.1327057057057055,
          2.1377097097097097,
          2.1427137137137136,
          2.147717717717718,
          2.1527217217217216,
          2.1577257257257254,
          2.1627297297297297,
          2.1677337337337335,
          2.1727377377377377,
          2.1777417417417415,
          2.1827457457457458,
          2.1877497497497496,
          2.192753753753754,
          2.1977577577577576,
          2.202761761761762,
          2.2077657657657657,
          2.2127697697697695,
          2.2177737737737737,
          2.2227777777777775,
          2.2277817817817818,
          2.2327857857857856,
          2.23778978978979,
          2.2427937937937936,
          2.247797797797798,
          2.2528018018018017,
          2.2578058058058055,
          2.2628098098098097,
          2.2678138138138135,
          2.2728178178178178,
          2.2778218218218216,
          2.282825825825826,
          2.2878298298298296,
          2.292833833833834,
          2.2978378378378377,
          2.302841841841842,
          2.3078458458458457,
          2.3128498498498495,
          2.317853853853854,
          2.3228578578578576,
          2.327861861861862,
          2.3328658658658656,
          2.33786986986987,
          2.3428738738738737,
          2.347877877877878,
          2.3528818818818817,
          2.357885885885886,
          2.36288988988989,
          2.3678938938938936,
          2.372897897897898,
          2.3779019019019016,
          2.382905905905906,
          2.3879099099099097,
          2.392913913913914,
          2.3979179179179178,
          2.402921921921922,
          2.407925925925926,
          2.4129299299299296,
          2.417933933933934,
          2.4229379379379377,
          2.427941941941942,
          2.4329459459459457,
          2.43794994994995,
          2.4429539539539538,
          2.447957957957958,
          2.452961961961962,
          2.457965965965966,
          2.46296996996997,
          2.4679739739739737,
          2.472977977977978,
          2.4779819819819817,
          2.482985985985986,
          2.4879899899899898,
          2.492993993993994,
          2.497997997997998,
          2.503002002002002,
          2.508006006006006,
          2.5130100100100097,
          2.518014014014014,
          2.5230180180180177,
          2.528022022022022,
          2.533026026026026,
          2.53803003003003,
          2.543034034034034,
          2.548038038038038,
          2.553042042042042,
          2.558046046046046,
          2.56305005005005,
          2.5680540540540537,
          2.573058058058058,
          2.578062062062062,
          2.583066066066066,
          2.58807007007007,
          2.593074074074074,
          2.598078078078078,
          2.603082082082082,
          2.608086086086086,
          2.61309009009009,
          2.618094094094094,
          2.623098098098098,
          2.628102102102102,
          2.633106106106106,
          2.63811011011011,
          2.643114114114114,
          2.648118118118118,
          2.653122122122122,
          2.658126126126126,
          2.66313013013013,
          2.668134134134134,
          2.673138138138138,
          2.678142142142142,
          2.683146146146146,
          2.68815015015015,
          2.693154154154154,
          2.698158158158158,
          2.703162162162162,
          2.708166166166166,
          2.7131701701701703,
          2.718174174174174,
          2.723178178178178,
          2.728182182182182,
          2.733186186186186,
          2.73819019019019,
          2.743194194194194,
          2.748198198198198,
          2.753202202202202,
          2.7582062062062063,
          2.76321021021021,
          2.768214214214214,
          2.773218218218218,
          2.778222222222222,
          2.783226226226226,
          2.78823023023023,
          2.7932342342342342,
          2.798238238238238,
          2.8032422422422423,
          2.808246246246246,
          2.8132502502502503,
          2.818254254254254,
          2.823258258258258,
          2.828262262262262,
          2.833266266266266,
          2.8382702702702702,
          2.843274274274274,
          2.8482782782782783,
          2.853282282282282,
          2.8582862862862863,
          2.86329029029029,
          2.8682942942942944,
          2.873298298298298,
          2.878302302302302,
          2.8833063063063062,
          2.88831031031031,
          2.8933143143143143,
          2.898318318318318,
          2.9033223223223223,
          2.908326326326326,
          2.9133303303303304,
          2.918334334334334,
          2.923338338338338,
          2.9283423423423423,
          2.933346346346346,
          2.9383503503503503,
          2.943354354354354,
          2.9483583583583584,
          2.953362362362362,
          2.9583663663663664,
          2.96337037037037,
          2.9683743743743745,
          2.9733783783783783,
          2.978382382382382,
          2.9833863863863863,
          2.98839039039039,
          2.9933943943943944,
          2.998398398398398,
          3.0034024024024024,
          3.008406406406406,
          3.0134104104104105,
          3.0184144144144143,
          3.0234184184184185,
          3.0284224224224223,
          3.033426426426426,
          3.0384304304304304,
          3.043434434434434,
          3.0484384384384384,
          3.0534424424424422,
          3.0584464464464465,
          3.0634504504504503,
          3.0684544544544545,
          3.0734584584584583,
          3.078462462462462,
          3.0834664664664664,
          3.08847047047047,
          3.0934744744744744,
          3.0984784784784782,
          3.1034824824824825,
          3.1084864864864863,
          3.1134904904904905,
          3.1184944944944943,
          3.1234984984984986,
          3.1285025025025024,
          3.133506506506506,
          3.1385105105105104,
          3.1435145145145142,
          3.1485185185185185,
          3.1535225225225223,
          3.1585265265265265,
          3.1635305305305303,
          3.1685345345345346,
          3.1735385385385384,
          3.178542542542542,
          3.1835465465465465,
          3.1885505505505503,
          3.1935545545545545,
          3.1985585585585583,
          3.2035625625625626,
          3.2085665665665664,
          3.2135705705705706,
          3.2185745745745744,
          3.2235785785785787,
          3.2285825825825825,
          3.2335865865865863,
          3.2385905905905905,
          3.2435945945945943,
          3.2485985985985986,
          3.2536026026026024,
          3.2586066066066066,
          3.2636106106106104,
          3.2686146146146147,
          3.2736186186186185,
          3.2786226226226227,
          3.2836266266266265,
          3.2886306306306303,
          3.2936346346346346,
          3.2986386386386384,
          3.3036426426426426,
          3.3086466466466464,
          3.3136506506506507,
          3.3186546546546545,
          3.3236586586586587,
          3.3286626626626625,
          3.3336666666666663,
          3.3386706706706706,
          3.3436746746746744,
          3.3486786786786786,
          3.3536826826826824,
          3.3586866866866867,
          3.3636906906906905,
          3.3686946946946947,
          3.3736986986986985,
          3.378702702702703,
          3.3837067067067066,
          3.3887107107107104,
          3.3937147147147146,
          3.3987187187187184,
          3.4037227227227227,
          3.4087267267267265,
          3.4137307307307307,
          3.4187347347347345,
          3.423738738738739,
          3.4287427427427426,
          3.433746746746747,
          3.4387507507507507,
          3.4437547547547545,
          3.4487587587587587,
          3.4537627627627625,
          3.4587667667667668,
          3.4637707707707706,
          3.468774774774775,
          3.4737787787787786,
          3.478782782782783,
          3.4837867867867867,
          3.4887907907907905,
          3.4937947947947947,
          3.4987987987987985,
          3.5038028028028028,
          3.5088068068068066,
          3.513810810810811,
          3.5188148148148146,
          3.523818818818819,
          3.5288228228228227,
          3.533826826826827,
          3.5388308308308307,
          3.5438348348348345,
          3.5488388388388388,
          3.5538428428428426,
          3.558846846846847,
          3.5638508508508506,
          3.568854854854855,
          3.5738588588588587,
          3.578862862862863,
          3.5838668668668667,
          3.5888708708708705,
          3.593874874874875,
          3.5988788788788786,
          3.603882882882883,
          3.6088868868868866,
          3.613890890890891,
          3.6188948948948947,
          3.623898898898899,
          3.6289029029029027,
          3.633906906906907,
          3.638910910910911,
          3.6439149149149146,
          3.648918918918919,
          3.6539229229229226,
          3.658926926926927,
          3.6639309309309307,
          3.668934934934935,
          3.6739389389389387,
          3.678942942942943,
          3.683946946946947,
          3.688950950950951,
          3.693954954954955,
          3.6989589589589587,
          3.703962962962963,
          3.7089669669669667,
          3.713970970970971,
          3.7189749749749748,
          3.723978978978979,
          3.728982982982983,
          3.733986986986987,
          3.738990990990991,
          3.7439949949949947,
          3.748998998998999,
          3.7540030030030027,
          3.759007007007007,
          3.7640110110110108,
          3.769015015015015,
          3.774019019019019,
          3.779023023023023,
          3.784027027027027,
          3.789031031031031,
          3.794035035035035,
          3.7990390390390387,
          3.804043043043043,
          3.8090470470470468,
          3.814051051051051,
          3.819055055055055,
          3.824059059059059,
          3.829063063063063,
          3.834067067067067,
          3.839071071071071,
          3.8440750750750747,
          3.849079079079079,
          3.854083083083083,
          3.859087087087087,
          3.864091091091091,
          3.869095095095095,
          3.874099099099099,
          3.879103103103103,
          3.884107107107107,
          3.889111111111111,
          3.894115115115115,
          3.899119119119119,
          3.904123123123123,
          3.909127127127127,
          3.914131131131131,
          3.919135135135135,
          3.924139139139139,
          3.929143143143143,
          3.934147147147147,
          3.939151151151151,
          3.9441551551551552,
          3.949159159159159,
          3.954163163163163,
          3.959167167167167,
          3.964171171171171,
          3.969175175175175,
          3.974179179179179,
          3.979183183183183,
          3.984187187187187,
          3.9891911911911913,
          3.994195195195195,
          3.999199199199199,
          4.004203203203203,
          4.009207207207208,
          4.014211211211212,
          4.019215215215215,
          4.024219219219219,
          4.029223223223224,
          4.034227227227228,
          4.0392312312312315,
          4.044235235235235,
          4.049239239239239,
          4.054243243243244,
          4.059247247247248,
          4.064251251251251,
          4.069255255255255,
          4.07425925925926,
          4.079263263263264,
          4.0842672672672675,
          4.089271271271271,
          4.094275275275276,
          4.09927927927928,
          4.104283283283284,
          4.109287287287287,
          4.114291291291291,
          4.119295295295296,
          4.1242992992993,
          4.1293033033033035,
          4.134307307307307,
          4.139311311311312,
          4.144315315315316,
          4.14931931931932,
          4.154323323323323,
          4.159327327327327,
          4.164331331331332,
          4.169335335335336,
          4.1743393393393395,
          4.179343343343343,
          4.184347347347348,
          4.189351351351352,
          4.194355355355356,
          4.1993593593593594,
          4.204363363363363,
          4.209367367367368,
          4.214371371371372,
          4.2193753753753755,
          4.224379379379379,
          4.229383383383384,
          4.234387387387388,
          4.239391391391392,
          4.2443953953953955,
          4.2493993993994,
          4.254403403403404,
          4.259407407407408,
          4.264411411411412,
          4.269415415415415,
          4.27441941941942,
          4.279423423423424,
          4.284427427427428,
          4.2894314314314315,
          4.294435435435436,
          4.29943943943944,
          4.304443443443444,
          4.309447447447448,
          4.314451451451451,
          4.319455455455456,
          4.32445945945946,
          4.329463463463464,
          4.3344674674674675,
          4.339471471471472,
          4.344475475475476,
          4.34947947947948,
          4.354483483483484,
          4.359487487487487,
          4.364491491491492,
          4.369495495495496,
          4.3744994994995,
          4.3795035035035035,
          4.384507507507508,
          4.389511511511512,
          4.394515515515516,
          4.39951951951952,
          4.404523523523524,
          4.409527527527528,
          4.414531531531532,
          4.419535535535536,
          4.4245395395395395,
          4.429543543543544,
          4.434547547547548,
          4.439551551551552,
          4.444555555555556,
          4.44955955955956,
          4.454563563563564,
          4.459567567567568,
          4.464571571571572,
          4.4695755755755755,
          4.47457957957958,
          4.479583583583584,
          4.484587587587588,
          4.489591591591592,
          4.494595595595596,
          4.4995995995996,
          4.504603603603604,
          4.509607607607608,
          4.5146116116116115,
          4.519615615615616,
          4.52461961961962,
          4.529623623623624,
          4.534627627627628,
          4.539631631631632,
          4.544635635635636,
          4.54963963963964,
          4.554643643643644,
          4.559647647647648,
          4.564651651651652,
          4.569655655655656,
          4.57465965965966,
          4.579663663663664,
          4.584667667667668,
          4.589671671671672,
          4.594675675675676,
          4.59967967967968,
          4.604683683683684,
          4.609687687687688,
          4.614691691691692,
          4.619695695695696,
          4.6246996996997,
          4.629703703703704,
          4.634707707707708,
          4.639711711711712,
          4.644715715715716,
          4.64971971971972,
          4.654723723723724,
          4.659727727727728,
          4.664731731731732,
          4.669735735735736,
          4.67473973973974,
          4.679743743743744,
          4.684747747747748,
          4.689751751751752,
          4.694755755755756,
          4.69975975975976,
          4.704763763763764,
          4.709767767767768,
          4.7147717717717725,
          4.719775775775776,
          4.72477977977978,
          4.729783783783784,
          4.734787787787788,
          4.739791791791792,
          4.744795795795796,
          4.7497997997998,
          4.754803803803804,
          4.7598078078078085,
          4.764811811811812,
          4.769815815815816,
          4.77481981981982,
          4.779823823823824,
          4.7848278278278285,
          4.789831831831832,
          4.794835835835836,
          4.79983983983984,
          4.8048438438438446,
          4.809847847847848,
          4.814851851851852,
          4.819855855855856,
          4.82485985985986,
          4.8298638638638645,
          4.834867867867868,
          4.839871871871872,
          4.844875875875876,
          4.849879879879881,
          4.854883883883884,
          4.859887887887888,
          4.864891891891892,
          4.869895895895896,
          4.8748998998999005,
          4.879903903903904,
          4.884907907907908,
          4.889911911911912,
          4.894915915915917,
          4.89991991991992,
          4.904923923923924,
          4.909927927927928,
          4.914931931931933,
          4.9199359359359365,
          4.92493993993994,
          4.929943943943944,
          4.934947947947948,
          4.939951951951953,
          4.944955955955956,
          4.94995995995996,
          4.954963963963964,
          4.959967967967969,
          4.9649719719719725,
          4.969975975975976,
          4.97497997997998,
          4.979983983983984,
          4.984987987987989,
          4.989991991991992,
          4.994995995995996,
          5
         ],
         "xaxis": "x",
         "y": [
          0.999000499833375,
          0.9940139840099952,
          0.989052358404449,
          0.984115498777094,
          0.9792032815084303,
          0.9743155835960052,
          0.9694522826513337,
          0.9646132568968332,
          0.9597983851627747,
          0.9550075468842485,
          0.9502406220981451,
          0.9454974914401515,
          0.9407780361417621,
          0.9360821380273052,
          0.9314096795109833,
          0.9267605435939289,
          0.9221346138612752,
          0.9175317744792404,
          0.9129519101922279,
          0.9083949063199399,
          0.9038606487545058,
          0.8993490239576248,
          0.8948599189577235,
          0.8903932213471265,
          0.8859488192792415,
          0.8815266014657596,
          0.8771264571738674,
          0.8727482762234754,
          0.8683919489844584,
          0.8640573663739103,
          0.859744419853413,
          0.8554530014263185,
          0.8511830036350446,
          0.8469343195583839,
          0.8427068428088271,
          0.8385004675298983,
          0.8343150883935049,
          0.8301506005973,
          0.826006899862058,
          0.8218838824290636,
          0.8177814450575138,
          0.8136994850219325,
          0.809637900109598,
          0.8055965886179842,
          0.8015754493522137,
          0.7975743816225236,
          0.7935932852417447,
          0.7896320605227921,
          0.78569060827617,
          0.781768829807487,
          0.7778666269149856,
          0.7739839018870827,
          0.7701205574999227,
          0.766276497014944,
          0.7624516241764556,
          0.7586458432092272,
          0.7548590588160912,
          0.7510911761755561,
          0.7473421009394327,
          0.7436117392304705,
          0.7398999976400087,
          0.7362067832256356,
          0.7325320035088622,
          0.7288755664728064,
          0.7252373805598886,
          0.7216173546695397,
          0.718015398155919,
          0.7144314208256454,
          0.7108653329355382,
          0.7073170451903705,
          0.7037864687406327,
          0.700273515180308,
          0.6967780965446588,
          0.693300125308024,
          0.6898395143816267,
          0.6863961771113948,
          0.6829700272757899,
          0.6795609790836489,
          0.676168947172036,
          0.6727938466041046,
          0.6694355928669709,
          0.6660941018695974,
          0.6627692899406877,
          0.659461073826591,
          0.6561693706892174,
          0.6528940981039638,
          0.6496351740576498,
          0.6463925169464643,
          0.643166045573922,
          0.6399556791488302,
          0.6367613372832659,
          0.6335829399905628,
          0.6304204076833083,
          0.6272736611713509,
          0.6241426216598172,
          0.6210272107471384,
          0.617927350423088,
          0.6148429630668275,
          0.6117739714449637,
          0.6087202987096136,
          0.6056818683964815,
          0.6026586044229428,
          0.5996504310861405,
          0.5966572730610882,
          0.5936790553987847,
          0.5907157035243372,
          0.5877671432350938,
          0.5848333006987854,
          0.5819141024516771,
          0.5790094753967285,
          0.5761193468017636,
          0.5732436442976494,
          0.5703822958764836,
          0.5675352298897917,
          0.564702375046733,
          0.5618836604123156,
          0.5590790154056196,
          0.5562883697980301,
          0.5535116537114788,
          0.5507487976166944,
          0.5479997323314606,
          0.5452643890188853,
          0.5425426991856753,
          0.5398345946804225,
          0.5371400076918967,
          0.5344588707473479,
          0.5317911167108166,
          0.5291366787814525,
          0.5264954904918426,
          0.523867485706346,
          0.521252598619438,
          0.5186507637540629,
          0.5160619159599937,
          0.5134859904122013,
          0.5109229226092309,
          0.508372648371587,
          0.5058351038401266,
          0.5033102254744597,
          0.5007979500513584,
          0.49829821466317414,
          0.4958109567162619,
          0.49333611392941346,
          0.4908736243322971,
          0.48842342626390667,
          0.48598545837101714,
          0.4835596596066484,
          0.48114596922853664,
          0.47874432679761325,
          0.47635467217649163,
          0.47397694552796127,
          0.4716110873134893,
          0.4692570382917297,
          0.4669147395170401,
          0.46458413233800533,
          0.46226515839596927,
          0.4599577596235731,
          0.4576618782433017,
          0.45537745676603664,
          0.4531044379896165,
          0.4508427649974051,
          0.44859238115686567,
          0.44635323011814304,
          0.4441252558126527,
          0.4419084024516766,
          0.43970261452496656,
          0.4375078367993539,
          0.4353240143173666,
          0.43315109239585325,
          0.4309890166246135,
          0.4288377328650358,
          0.42669718724874184,
          0.42456732617623744,
          0.4224480963155708,
          0.4203394446009964,
          0.4182413182316471,
          0.41615366467021125,
          0.41407643164161756,
          0.41200956713172604,
          0.4099530193860253,
          0.4079067369083371,
          0.40587066845952663,
          0.4038447630562193,
          0.4018289699695244,
          0.39982323872376463,
          0.3978275190952123,
          0.39584176111083186,
          0.39386591504702817,
          0.39189993142840185,
          0.38994376102651,
          0.38799735485863396,
          0.38606066418655244,
          0.3841336405153212,
          0.3822162355920588,
          0.3803084014047382,
          0.37841009018098476,
          0.3765212543868798,
          0.37464184672577033,
          0.37277182013708504,
          0.3709111277951556,
          0.3690597231080442,
          0.36721755971637693,
          0.3653845914921828,
          0.363560772537739,
          0.3617460571844213,
          0.3599403999915608,
          0.35814375574530577,
          0.35635607945748954,
          0.3545773263645044,
          0.35280745192618007,
          0.35104641182466895,
          0.34929416196333624,
          0.3475506584656554,
          0.34581585767411016,
          0.34408971614910067,
          0.34237219066785624,
          0.3406632382233527,
          0.3389628160232358,
          0.33727088148874945,
          0.33558739225366957,
          0.33391230616324336,
          0.33224558127313375,
          0.33058717584836894,
          0.3289370483622973,
          0.32729515749554794,
          0.32566146213499575,
          0.32403592137273185,
          0.3224184945050395,
          0.32080914103137476,
          0.31920782065335224,
          0.3176144932737363,
          0.31602911899543673,
          0.31445165812050996,
          0.3128820711491646,
          0.31132031877877303,
          0.30976636190288664,
          0.308220161610257,
          0.30668167918386124,
          0.30515087609993274,
          0.3036277140269965,
          0.3021121548249093,
          0.3006041605439043,
          0.2991036934236417,
          0.297610715892262,
          0.2961251905654462,
          0.2946470802454791,
          0.29317634792031827,
          0.291712956762667,
          0.29025687012905216,
          0.28880805155890665,
          0.2873664647736566,
          0.28593207367581275,
          0.28450484234806667,
          0.28308473505239123,
          0.2816717162291459,
          0.28026575049618635,
          0.2788668026479783,
          0.27747483765471614,
          0.2760898206614456,
          0.27471171698719116,
          0.27334049212408756,
          0.27197611173651565,
          0.27061854166024274,
          0.26926774790156716,
          0.26792369663646676,
          0.26658635420975224,
          0.2652556871342245,
          0.2639316620898357,
          0.26261424592285537,
          0.26130340564504,
          0.25999910843280705,
          0.25870132162641296,
          0.2574100127291356,
          0.2561251494064603,
          0.2548466994852702,
          0.2535746309530409,
          0.2523089119570385,
          0.25104951080352217,
          0.2497963959569507,
          0.24854953603919253,
          0.24730889982874033,
          0.24607445625992894,
          0.2448461744221577,
          0.24362402355911641,
          0.24240797306801495,
          0.24119799249881732,
          0.23999405155347905,
          0.23879612008518844,
          0.23760416809761176,
          0.2364181657441421,
          0.2352380833271521,
          0.2340638912972502,
          0.23289556025254074,
          0.2317330609378879,
          0.23057636424418276,
          0.22942544120761496,
          0.2282802630089469,
          0.2271408009727925,
          0.2260070265668989,
          0.22487891140143215,
          0.22375642722826639,
          0.22263954594027624,
          0.22152823957063333,
          0.22042248029210576,
          0.21932224041636147,
          0.21822749239327469,
          0.21713820881023638,
          0.21605436239146764,
          0.2149759259973367,
          0.2139028726236795,
          0.21283517540112326,
          0.21177280759441391,
          0.2107157426017465,
          0.2096639539540991,
          0.20861741531457006,
          0.2075761004777184,
          0.2065399833689079,
          0.20550903804365386,
          0.20448323868697368,
          0.20346255961274037,
          0.20244697526303934,
          0.20143646020752845,
          0.20043098914280127,
          0.1994305368917534,
          0.19843507840295216,
          0.19744458875000906,
          0.19645904313095597,
          0.1954784168676238,
          0.19450268540502472,
          0.19353182431073718,
          0.19256580927429423,
          0.19160461610657475,
          0.19064822073919763,
          0.18969659922391935,
          0.18874972773203405,
          0.187807582553777,
          0.18687014009773084,
          0.18593737689023498,
          0.18500926957479769,
          0.18408579491151117,
          0.1831669297764699,
          0.18225265116119133,
          0.1813429361720399,
          0.1804377620296537,
          0.17953710606837422,
          0.17864094573567865,
          0.17774925859161508,
          0.17686202230824088,
          0.17597921466906344,
          0.1751008135684838,
          0.1742267970112433,
          0.1733571431118726,
          0.17249183009414396,
          0.17163083629052558,
          0.1707741401416394,
          0.1699217201957211,
          0.1690735551080828,
          0.16822962364057886,
          0.16738990466107395,
          0.16655437714291385,
          0.165723020164399,
          0.16489581290826058,
          0.16407273466113934,
          0.16325376481306675,
          0.16243888285694916,
          0.1616280683880541,
          0.1608213011034994,
          0.16001856080174492,
          0.15921982738208654,
          0.15842508084415285,
          0.15763430128740452,
          0.15684746891063578,
          0.15606456401147867,
          0.1552855669859097,
          0.15451045832775898,
          0.1537392186282218,
          0.15297182857537242,
          0.15220826895368086,
          0.1514485206435315,
          0.15069256462074432,
          0.14994038195609866,
          0.14919195381485909,
          0.14844726145630388,
          0.1477062862332557,
          0.14696900959161474,
          0.14623541306989404,
          0.14550547829875715,
          0.1447791870005584,
          0.14405652098888497,
          0.14333746216810164,
          0.1426219925328977,
          0.14191009416783595,
          0.14120174924690423,
          0.14049694003306895,
          0.1397956488778311,
          0.13909785822078416,
          0.13840355058917453,
          0.13771270859746385,
          0.1370253149468938,
          0.13634135242505296,
          0.1356608039054457,
          0.13498365234706336,
          0.1343098807939575,
          0.13363947237481558,
          0.132972410302538,
          0.13230867787381836,
          0.13164825846872466,
          0.13099113555028352,
          0.1303372926640658,
          0.12968671343777488,
          0.12903938158083642,
          0.12839528088399063,
          0.1277543952188863,
          0.12711670853767684,
          0.12648220487261883,
          0.12585086833567163,
          0.12522268311810011,
          0.12459763349007826,
          0.12397570380029577,
          0.12335687847556573,
          0.12274114202043511,
          0.1221284790167963,
          0.12151887412350129,
          0.12091231207597761,
          0.12030877768584579,
          0.11970825584053942,
          0.11911073150292632,
          0.1185161897109325,
          0.11792461557716696,
          0.1173359942885494,
          0.11675031110593892,
          0.11616755136376526,
          0.11558770046966131,
          0.11501074390409782,
          0.11443666722001998,
          0.11386545604248535,
          0.11329709606830426,
          0.11273157306568131,
          0.11216887287385933,
          0.11160898140276448,
          0.11105188463265377,
          0.11049756861376361,
          0.10994601946596098,
          0.1093972233783954,
          0.10885116660915335,
          0.10830783548491427,
          0.10776721640060787,
          0.10722929581907378,
          0.10669406027072231,
          0.10616149635319744,
          0.10563159073104088,
          0.10510433013535854,
          0.10457970136348796,
          0.10405769127866782,
          0.10353828680970911,
          0.10302147495066762,
          0.10250724276051847,
          0.10199557736283184,
          0.10148646594545084,
          0.10097989576017034,
          0.1004758541224181,
          0.09997432841093686,
          0.09947530606746853,
          0.09897877459643954,
          0.09848472156464803,
          0.09799313460095266,
          0.0975040013959625,
          0.09701730970172923,
          0.09653304733144,
          0.0960512021591127,
          0.09557176211929191,
          0.09509471520674723,
          0.09462004947617216,
          0.0941477530418855,
          0.09367781407753334,
          0.09321022081579304,
          0.09274496154807878,
          0.092282024624248,
          0.09182139845231008,
          0.09136307149813569,
          0.09090703228516832,
          0.09045326939413662,
          0.0900017714627687,
          0.08955252718550744,
          0.08910552531322741,
          0.0886607546529534,
          0.08821820406757981,
          0.08777786247559213,
          0.08733971885078912,
          0.08690376222200702,
          0.08646998167284456,
          0.08603836634138988,
          0.08560890541994823,
          0.0851815881547717,
          0.08475640384578965,
          0.08433334184634089,
          0.0839123915629072,
          0.0834935424548478,
          0.08307678403413575,
          0.08266210586509495,
          0.08224949756413923,
          0.08183894879951194,
          0.08143044929102762,
          0.0810239888098143,
          0.08061955717805747,
          0.08021714426874532,
          0.07981674000541494,
          0.0794183343619003,
          0.07902191736208082,
          0.07862747907963197,
          0.07823500963777638,
          0.07784449920903676,
          0.07745593801498961,
          0.07706931632602061,
          0.07668462446108075,
          0.07630185278744404,
          0.07592099172046636,
          0.07554203172334528,
          0.0751649633068815,
          0.07478977702924093,
          0.07441646349571863,
          0.0740450133585032,
          0.07367541731644306,
          0.07330766611481318,
          0.07294175054508373,
          0.07257766144468915,
          0.0722153896967989,
          0.07185492623008925,
          0.07149626201851589,
          0.07113938808108813,
          0.0707842954816439,
          0.07043097532862609,
          0.07007941877485975,
          0.06972961701733073,
          0.06938156129696511,
          0.06903524289840993,
          0.06869065314981501,
          0.06834778342261567,
          0.06800662513131689,
          0.067667169733278,
          0.06732940872849914,
          0.0669933336594081,
          0.06665893611064881,
          0.06632620770887036,
          0.0659951401225176,
          0.06566572506162226,
          0.0653379542775955,
          0.06501181956302146,
          0.0646873127514515,
          0.06436442571719994,
          0.06404315037514044,
          0.06372347868050367,
          0.06340540262867571,
          0.06308891425499784,
          0.06277400563456687,
          0.06246066888203678,
          0.06214889615142143,
          0.061838679635897814,
          0.06153001156761082,
          0.06122288421747854,
          0.060917289894998915,
          0.060613220948056934,
          0.060310669762733304,
          0.060009628763113505,
          0.05971009041109836,
          0.05941204720621505,
          0.059115491685429414,
          0.05882041642295915,
          0.058526814030087665,
          0.05823467715497929,
          0.05794399848249498,
          0.05765477073400933,
          0.05736698666722814,
          0.057080639076007265,
          0.05679572079017194,
          0.05651222467533749,
          0.05623014363273045,
          0.05594947059901093,
          0.05567019854609583,
          0.05539232048098264,
          0.05511582944557454,
          0.05484071851650602,
          0.05456698080496967,
          0.05429460945654348,
          0.05402359765101943,
          0.053753938602232536,
          0.05348562555789098,
          0.05321865179940711,
          0.052953010641729054,
          0.05268869543317349,
          0.05242569955525892,
          0.05216401642254012,
          0.05190363948244306,
          0.05164456221510099,
          0.05138677813319103,
          0.0511302807817719,
          0.050875063738122096,
          0.05062112061157919,
          0.050368445043379825,
          0.05011703070650036,
          0.04986687130549861,
          0.049617960576356035,
          0.04937029228632105,
          0.049123860233752814,
          0.04887865824796606,
          0.04863468018907648,
          0.04839191994784709,
          0.04815037144553512,
          0.0479100286337399,
          0.04767088549425142,
          0.047432936038899524,
          0.04719617430940412,
          0.04696059437722581,
          0.046726190343417615,
          0.046492956338477096,
          0.04626088652219954,
          0.046029975083531606,
          0.045800216240425816,
          0.045571604239695904,
          0.04534413335687256,
          0.04511779789606029,
          0.044892592189794585,
          0.04466851059890021,
          0.04444554751234982,
          0.04422369734712361,
          0.04400295454806937,
          0.043783313587763543,
          0.04356476896637267,
          0.043347315211515754,
          0.04313094687812723,
          0.04291565854832057,
          0.04270144483125271,
          0.04248830036298894,
          0.042276219806368705,
          0.04206519785087188,
          0.041855229212485856,
          0.04164630863357318,
          0.04143843088273991,
          0.041231590754704665,
          0.041025783070168215,
          0.04082100267568387,
          0.04061724444352835,
          0.04041450327157346,
          0.040212774083158286,
          0.04001205182696212,
          0.03981233147687788,
          0.03961360803188641,
          0.03941587651593111,
          0.03921913197779338,
          0.0390233694909687,
          0.038828584153543164,
          0.03863477108807086,
          0.0384419254414516,
          0.038250042384809536,
          0.038059117113372114,
          0.03786914484634988,
          0.03768012082681667,
          0.03749204032159058,
          0.03730489862111538,
          0.03711869103934259,
          0.03693341291361423,
          0.036749059604545935,
          0.0365656264959109,
          0.03638310899452419,
          0.03620150253012783,
          0.03602080255527624,
          0.03584100454522251,
          0.035662103997804985,
          0.03548409643333456,
          0.03530697739448256,
          0.03513074244616905,
          0.03495538717545186,
          0.03478090719141597,
          0.03460729812506373,
          0.03443455562920528,
          0.03426267537834983,
          0.034091653068597266,
          0.03392148441753044,
          0.033752165164107895,
          0.03358369106855716,
          0.03341605791226866,
          0.03324926149768999,
          0.03308329764822087,
          0.03291816220810852,
          0.03275385104234365,
          0.03259036003655685,
          0.03242768509691564,
          0.0322658221500219,
          0.032104767142809916,
          0.03194451604244486,
          0.0317850648362218,
          0.0316264095314653,
          0.031468546155429294,
          0.031311470755197794,
          0.031155179397585723,
          0.030999668169040588,
          0.030844933175544355,
          0.03069097054251605,
          0.030537776414714654,
          0.030385346956142596,
          0.03023367834994975,
          0.03008276679833776,
          0.029932608522465057,
          0.02978319976235212,
          0.02963453677678743,
          0.02948661584323371,
          0.029339433257734776,
          0.02919298533482273,
          0.029047268407425733,
          0.028902278826776134,
          0.02875801296231911,
          0.028614467201621814,
          0.028471637950282826,
          0.028329521631842245,
          0.028188114687692035,
          0.028047413576987028,
          0.027907414776556137,
          0.02776811478081427,
          0.027629510101674422,
          0.027491597268460406,
          0.027354372827819967,
          0.027217833343638215,
          0.027081975396951702,
          0.026946795585862708,
          0.026812290525454138,
          0.026678456847704687,
          0.026545291201404593,
          0.026412790252071622,
          0.026280950681867674,
          0.02614976918951562,
          0.026019242490216664,
          0.025889367315568144,
          0.0257601404134816,
          0.02563155854810142,
          0.02550361849972375,
          0.02537631706471594,
          0.025249651055436244,
          0.025123617300154093,
          0.02499821264297058,
          0.024873433943739528,
          0.024749278077988778,
          0.024625741936841992,
          0.02450282242694084,
          0.024380516470367455,
          0.024258821004567457,
          0.024137732982273178,
          0.024017249371427445,
          0.023897367155107572,
          0.023778083331449894,
          0.023659394913574536,
          0.02354129892951065,
          0.023423792422122024,
          0.023306872449032956,
          0.023190536082554686,
          0.023074780409611965,
          0.022959602531670235,
          0.022844999564662925,
          0.022730968638919352,
          0.02261750689909276,
          0.02250461150408892,
          0.022392279626994898,
          0.022280508455008313,
          0.022169295189366934,
          0.022058637045278516,
          0.021948531251851172,
          0.021838975052023882,
          0.021729965702497557,
          0.021621500473666257,
          0.021513576649548925,
          0.0214061915277213,
          0.02129934241924829,
          0.021193026648616668,
          0.021087241553668,
          0.020981984485532065,
          0.02087725280856046,
          0.02077304390026067,
          0.020669355151230317,
          0.020566183965091918,
          0.020463527758427778,
          0.020361383960715376,
          0.02025975001426295,
          0.020158623374145455,
          0.020058001508140893,
          0.019957881896666814,
          0.019858262032717327,
          0.01975913942180023,
          0.01966051158187462,
          0.019562376043288688,
          0.019464730348717933,
          0.01936757205310357,
          0.01927089872359137,
          0.019174707939470678,
          0.019078997292113837,
          0.01898376438491588,
          0.018889006833234485,
          0.018794722264330307,
          0.01870090831730751,
          0.018607562643054715,
          0.018514682904186112,
          0.018422266774982994,
          0.01833031194133547,
          0.01823881610068453,
          0.018147776961964422,
          0.018057192245545268,
          0.017967059683175943,
          0.017877377017927323,
          0.017788142004135733,
          0.017699352407346804,
          0.01761100600425939,
          0.017523100582669992,
          0.01743563394141733,
          0.017348603890327215,
          0.01726200825015778,
          0.017175844852544784,
          0.017090111539947432,
          0.017004806165594265,
          0.016919926593429505,
          0.016835470698059452,
          0.01675143636469934,
          0.016667821489120344,
          0.016584623977596948,
          0.01650184174685444,
          0.016419472724016792,
          0.016337514846554754,
          0.01625596606223418,
          0.016174824329064703,
          0.016094087615248526,
          0.016013753899129585,
          0.015933821169142912,
          0.015854287423764324,
          0.0157751506714602,
          0.015696408930637694,
          0.015618060229595086,
          0.0155401026064724,
          0.015462534109202336,
          0.015385352795461308,
          0.015308556732620857,
          0.01523214399769924,
          0.015156112677313321,
          0.015080460867630591,
          0.01500518667432154,
          0.014930288212512213,
          0.014855763606737,
          0.014781610990891725,
          0.014707828508186844,
          0.014634414311100997,
          0.014561366561334724,
          0.014488683429764483,
          0.014416363096396772,
          0.014344403750322613,
          0.014272803589672171,
          0.014201560821569693,
          0.014130673662088535,
          0.014060140336206546,
          0.013989959077761604,
          0.013920128129407384,
          0.013850645742569402,
          0.01378151017740115,
          0.013712719702740586,
          0.013644272596066763,
          0.01357616714345674,
          0.013508401639542592,
          0.013440974387468765,
          0.013373883698849558,
          0.013307127893726851,
          0.013240705300528077,
          0.013174614256024293,
          0.013108853105288587,
          0.013043420201654611,
          0.012978313906675391,
          0.012913532590082238,
          0.012849074629743966,
          0.012784938411626267,
          0.012721122329751281,
          0.012657624786157427,
          0.012594444190859323,
          0.01253157896180802,
          0.012469027524851361,
          0.012406788313694612,
          0.012344859769861173,
          0.012283240342653597,
          0.012221928489114742,
          0.012160922673989173,
          0.012100221369684664,
          0.012039823056233977,
          0.011979726221256804,
          0.011919929359921873,
          0.011860430974909322,
          0.011801229576373133,
          0.011742323681903876,
          0.011683711816491561,
          0.011625392512488751,
          0.011567364309573745,
          0.011509625754714056,
          0.011452175402130017,
          0.011395011813258565,
          0.011338133556717263,
          0.011281539208268397,
          0.01122522735078335,
          0.011169196574207101,
          0.011113445475522956,
          0.011057972658717354,
          0.011002776734744955,
          0.010947856321493839,
          0.010893210043750906,
          0.010838836533167456,
          0.010784734428224887,
          0.01073090237420063,
          0.01067733902313421,
          0.010624043033793537,
          0.010571013071641253,
          0.01051824780880136,
          0.010465745924025955,
          0.010413506102662172,
          0.010361527036619215,
          0.010309807424335644,
          0.010258345970746761,
          0.010207141387252185,
          0.01015619239168362,
          0.010105497708272685,
          0.01005505606761902,
          0.010004866206658466,
          0.009954926868631489,
          0.009905236803051646,
          0.00985579476567431,
          0.00980659951846551,
          0.00975764982957092,
          0.009708944473285044,
          0.009660482230020476,
          0.009612261886277396,
          0.009564282234613164,
          0.009516542073612123,
          0.009469040207855458,
          0.00942177544789131,
          0.009374746610204968,
          0.009327952517189231,
          0.009281391997114962,
          0.009235063884101682,
          0.009188967018088428,
          0.009143100244804669,
          0.00909746241574145,
          0.009052052388122584,
          0.009006869024876055,
          0.00896191119460555,
          0.00891717777156214,
          0.008872667635616062,
          0.00882837967222869,
          0.008784312772424622,
          0.008740465832763906,
          0.00869683775531444,
          0.00865342744762443,
          0.00861023382269507,
          0.008567255798953304,
          0.008524492300224779,
          0.008481942255706844,
          0.008439604599941778,
          0.008397478272790094,
          0.008355562219403988,
          0.00831385539020096,
          0.00827235674083748,
          0.008231065232182873,
          0.008189979830293282,
          0.008149099506385806,
          0.008108423236812703,
          0.008067950003035774,
          0.008027678791600861,
          0.007987608594112463,
          0.007947738407208504,
          0.00790806723253518,
          0.00786859407672198,
          0.007829317951356803,
          0.0077902378729612235,
          0.007751352862965842,
          0.007712661947685795,
          0.007674164158296372,
          0.007635858530808752,
          0.007597744106045885,
          0.007559819929618439,
          0.007522085051900931,
          0.007484538528007925,
          0.007447179417770413,
          0.007410006785712218,
          0.007373019701026607,
          0.007336217237552968,
          0.007299598473753641,
          0.0072631624926908075,
          0.007226908382003555,
          0.007190835233885025,
          0.0071549421450596735,
          0.007119228216760682,
          0.007083692554707411,
          0.0070483342690830335,
          0.00701315247451224,
          0.006978146290039097,
          0.006943314839104947,
          0.006908657249526486,
          0.006874172653473915,
          0.0068398601874492095,
          0.006805718992264514,
          0.006771748213020597,
          0.006737946999085467
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>λ</i>=2<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=2",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>λ</i>=2",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.006004004004004004,
          0.011008008008008007,
          0.016012012012012012,
          0.021016016016016017,
          0.02602002002002002,
          0.031024024024024023,
          0.03602802802802803,
          0.04103203203203203,
          0.04603603603603604,
          0.05104004004004004,
          0.05604404404404405,
          0.061048048048048045,
          0.06605205205205206,
          0.07105605605605606,
          0.07606006006006007,
          0.08106406406406406,
          0.08606806806806806,
          0.09107207207207207,
          0.09607607607607607,
          0.10108008008008008,
          0.10608408408408408,
          0.1110880880880881,
          0.11609209209209209,
          0.12109609609609609,
          0.1261001001001001,
          0.1311041041041041,
          0.1361081081081081,
          0.1411121121121121,
          0.1461161161161161,
          0.15112012012012013,
          0.15612412412412413,
          0.16112812812812813,
          0.16613213213213213,
          0.17113613613613612,
          0.17614014014014015,
          0.18114414414414415,
          0.18614814814814815,
          0.19115215215215214,
          0.19615615615615617,
          0.20116016016016017,
          0.20616416416416417,
          0.21116816816816816,
          0.21617217217217216,
          0.2211761761761762,
          0.22618018018018018,
          0.23118418418418418,
          0.23618818818818818,
          0.24119219219219218,
          0.2461961961961962,
          0.2512002002002002,
          0.2562042042042042,
          0.2612082082082082,
          0.2662122122122122,
          0.2712162162162162,
          0.27622022022022025,
          0.2812242242242242,
          0.28622822822822824,
          0.2912322322322322,
          0.29623623623623624,
          0.30124024024024026,
          0.30624424424424423,
          0.31124824824824826,
          0.31625225225225223,
          0.32125625625625626,
          0.3262602602602603,
          0.33126426426426425,
          0.3362682682682683,
          0.34127227227227225,
          0.3462762762762763,
          0.3512802802802803,
          0.35628428428428427,
          0.3612882882882883,
          0.36629229229229227,
          0.3712962962962963,
          0.3763003003003003,
          0.3813043043043043,
          0.3863083083083083,
          0.39131231231231234,
          0.3963163163163163,
          0.40132032032032033,
          0.4063243243243243,
          0.41132832832832833,
          0.41633233233233236,
          0.4213363363363363,
          0.42634034034034035,
          0.4313443443443443,
          0.43634834834834835,
          0.4413523523523524,
          0.44635635635635634,
          0.45136036036036037,
          0.45636436436436434,
          0.46136836836836836,
          0.4663723723723724,
          0.47137637637637636,
          0.4763803803803804,
          0.48138438438438436,
          0.4863883883883884,
          0.4913923923923924,
          0.4963963963963964,
          0.5014004004004003,
          0.5064044044044044,
          0.5114084084084084,
          0.5164124124124124,
          0.5214164164164165,
          0.5264204204204204,
          0.5314244244244244,
          0.5364284284284284,
          0.5414324324324324,
          0.5464364364364365,
          0.5514404404404405,
          0.5564444444444444,
          0.5614484484484484,
          0.5664524524524525,
          0.5714564564564565,
          0.5764604604604605,
          0.5814644644644644,
          0.5864684684684685,
          0.5914724724724725,
          0.5964764764764765,
          0.6014804804804805,
          0.6064844844844844,
          0.6114884884884885,
          0.6164924924924925,
          0.6214964964964965,
          0.6265005005005005,
          0.6315045045045045,
          0.6365085085085085,
          0.6415125125125125,
          0.6465165165165165,
          0.6515205205205206,
          0.6565245245245245,
          0.6615285285285285,
          0.6665325325325325,
          0.6715365365365366,
          0.6765405405405406,
          0.6815445445445445,
          0.6865485485485485,
          0.6915525525525525,
          0.6965565565565566,
          0.7015605605605606,
          0.7065645645645645,
          0.7115685685685685,
          0.7165725725725726,
          0.7215765765765766,
          0.7265805805805806,
          0.7315845845845845,
          0.7365885885885886,
          0.7415925925925926,
          0.7465965965965966,
          0.7516006006006006,
          0.7566046046046047,
          0.7616086086086086,
          0.7666126126126126,
          0.7716166166166166,
          0.7766206206206206,
          0.7816246246246247,
          0.7866286286286286,
          0.7916326326326326,
          0.7966366366366366,
          0.8016406406406407,
          0.8066446446446447,
          0.8116486486486486,
          0.8166526526526526,
          0.8216566566566567,
          0.8266606606606607,
          0.8316646646646647,
          0.8366686686686686,
          0.8416726726726727,
          0.8466766766766767,
          0.8516806806806807,
          0.8566846846846847,
          0.8616886886886886,
          0.8666926926926927,
          0.8716966966966967,
          0.8767007007007007,
          0.8817047047047047,
          0.8867087087087087,
          0.8917127127127127,
          0.8967167167167167,
          0.9017207207207207,
          0.9067247247247248,
          0.9117287287287287,
          0.9167327327327327,
          0.9217367367367367,
          0.9267407407407408,
          0.9317447447447448,
          0.9367487487487487,
          0.9417527527527527,
          0.9467567567567567,
          0.9517607607607608,
          0.9567647647647648,
          0.9617687687687687,
          0.9667727727727727,
          0.9717767767767768,
          0.9767807807807808,
          0.9817847847847848,
          0.9867887887887888,
          0.9917927927927928,
          0.9967967967967968,
          1.0018008008008006,
          1.0068048048048046,
          1.0118088088088086,
          1.0168128128128127,
          1.0218168168168167,
          1.0268208208208207,
          1.0318248248248247,
          1.0368288288288288,
          1.0418328328328328,
          1.0468368368368368,
          1.0518408408408406,
          1.0568448448448446,
          1.0618488488488487,
          1.0668528528528527,
          1.0718568568568567,
          1.0768608608608607,
          1.0818648648648648,
          1.0868688688688688,
          1.0918728728728728,
          1.0968768768768768,
          1.1018808808808809,
          1.1068848848848847,
          1.1118888888888887,
          1.1168928928928927,
          1.1218968968968968,
          1.1269009009009008,
          1.1319049049049048,
          1.1369089089089088,
          1.1419129129129129,
          1.1469169169169169,
          1.151920920920921,
          1.1569249249249247,
          1.1619289289289287,
          1.1669329329329328,
          1.1719369369369368,
          1.1769409409409408,
          1.1819449449449448,
          1.1869489489489489,
          1.191952952952953,
          1.196956956956957,
          1.201960960960961,
          1.2069649649649647,
          1.2119689689689688,
          1.2169729729729728,
          1.2219769769769768,
          1.2269809809809809,
          1.2319849849849849,
          1.236988988988989,
          1.241992992992993,
          1.246996996996997,
          1.252001001001001,
          1.2570050050050048,
          1.2620090090090088,
          1.2670130130130128,
          1.2720170170170169,
          1.2770210210210209,
          1.282025025025025,
          1.287029029029029,
          1.292033033033033,
          1.297037037037037,
          1.302041041041041,
          1.307045045045045,
          1.3120490490490488,
          1.3170530530530529,
          1.322057057057057,
          1.327061061061061,
          1.332065065065065,
          1.337069069069069,
          1.342073073073073,
          1.347077077077077,
          1.352081081081081,
          1.357085085085085,
          1.3620890890890889,
          1.367093093093093,
          1.372097097097097,
          1.377101101101101,
          1.382105105105105,
          1.387109109109109,
          1.392113113113113,
          1.397117117117117,
          1.402121121121121,
          1.407125125125125,
          1.412129129129129,
          1.417133133133133,
          1.422137137137137,
          1.427141141141141,
          1.432145145145145,
          1.437149149149149,
          1.442153153153153,
          1.447157157157157,
          1.4521611611611611,
          1.4571651651651651,
          1.462169169169169,
          1.467173173173173,
          1.472177177177177,
          1.477181181181181,
          1.482185185185185,
          1.487189189189189,
          1.492193193193193,
          1.4971971971971971,
          1.5022012012012012,
          1.5072052052052052,
          1.5122092092092092,
          1.517213213213213,
          1.522217217217217,
          1.527221221221221,
          1.532225225225225,
          1.537229229229229,
          1.5422332332332331,
          1.5472372372372372,
          1.5522412412412412,
          1.5572452452452452,
          1.5622492492492492,
          1.567253253253253,
          1.572257257257257,
          1.577261261261261,
          1.5822652652652651,
          1.5872692692692691,
          1.5922732732732732,
          1.5972772772772772,
          1.6022812812812812,
          1.6072852852852852,
          1.6122892892892893,
          1.617293293293293,
          1.622297297297297,
          1.6273013013013011,
          1.6323053053053052,
          1.6373093093093092,
          1.6423133133133132,
          1.6473173173173172,
          1.6523213213213213,
          1.6573253253253253,
          1.6623293293293293,
          1.6673333333333331,
          1.6723373373373371,
          1.6773413413413412,
          1.6823453453453452,
          1.6873493493493492,
          1.6923533533533532,
          1.6973573573573573,
          1.7023613613613613,
          1.7073653653653653,
          1.7123693693693693,
          1.7173733733733734,
          1.7223773773773772,
          1.7273813813813812,
          1.7323853853853852,
          1.7373893893893892,
          1.7423933933933933,
          1.7473973973973973,
          1.7524014014014013,
          1.7574054054054054,
          1.7624094094094094,
          1.7674134134134134,
          1.7724174174174172,
          1.7774214214214212,
          1.7824254254254253,
          1.7874294294294293,
          1.7924334334334333,
          1.7974374374374373,
          1.8024414414414414,
          1.8074454454454454,
          1.8124494494494494,
          1.8174534534534534,
          1.8224574574574572,
          1.8274614614614613,
          1.8324654654654653,
          1.8374694694694693,
          1.8424734734734733,
          1.8474774774774774,
          1.8524814814814814,
          1.8574854854854854,
          1.8624894894894894,
          1.8674934934934935,
          1.8724974974974973,
          1.8775015015015013,
          1.8825055055055053,
          1.8875095095095094,
          1.8925135135135134,
          1.8975175175175174,
          1.9025215215215214,
          1.9075255255255255,
          1.9125295295295295,
          1.9175335335335335,
          1.9225375375375373,
          1.9275415415415413,
          1.9325455455455454,
          1.9375495495495494,
          1.9425535535535534,
          1.9475575575575574,
          1.9525615615615615,
          1.9575655655655655,
          1.9625695695695695,
          1.9675735735735735,
          1.9725775775775776,
          1.9775815815815814,
          1.9825855855855854,
          1.9875895895895894,
          1.9925935935935934,
          1.9975975975975975,
          2.0026016016016013,
          2.0076056056056055,
          2.0126096096096093,
          2.0176136136136136,
          2.0226176176176174,
          2.0276216216216216,
          2.0326256256256254,
          2.0376296296296297,
          2.0426336336336335,
          2.0476376376376377,
          2.0526416416416415,
          2.0576456456456453,
          2.0626496496496496,
          2.0676536536536534,
          2.0726576576576576,
          2.0776616616616614,
          2.0826656656656657,
          2.0876696696696695,
          2.0926736736736737,
          2.0976776776776775,
          2.1026816816816813,
          2.1076856856856856,
          2.1126896896896894,
          2.1176936936936936,
          2.1226976976976974,
          2.1277017017017017,
          2.1327057057057055,
          2.1377097097097097,
          2.1427137137137136,
          2.147717717717718,
          2.1527217217217216,
          2.1577257257257254,
          2.1627297297297297,
          2.1677337337337335,
          2.1727377377377377,
          2.1777417417417415,
          2.1827457457457458,
          2.1877497497497496,
          2.192753753753754,
          2.1977577577577576,
          2.202761761761762,
          2.2077657657657657,
          2.2127697697697695,
          2.2177737737737737,
          2.2227777777777775,
          2.2277817817817818,
          2.2327857857857856,
          2.23778978978979,
          2.2427937937937936,
          2.247797797797798,
          2.2528018018018017,
          2.2578058058058055,
          2.2628098098098097,
          2.2678138138138135,
          2.2728178178178178,
          2.2778218218218216,
          2.282825825825826,
          2.2878298298298296,
          2.292833833833834,
          2.2978378378378377,
          2.302841841841842,
          2.3078458458458457,
          2.3128498498498495,
          2.317853853853854,
          2.3228578578578576,
          2.327861861861862,
          2.3328658658658656,
          2.33786986986987,
          2.3428738738738737,
          2.347877877877878,
          2.3528818818818817,
          2.357885885885886,
          2.36288988988989,
          2.3678938938938936,
          2.372897897897898,
          2.3779019019019016,
          2.382905905905906,
          2.3879099099099097,
          2.392913913913914,
          2.3979179179179178,
          2.402921921921922,
          2.407925925925926,
          2.4129299299299296,
          2.417933933933934,
          2.4229379379379377,
          2.427941941941942,
          2.4329459459459457,
          2.43794994994995,
          2.4429539539539538,
          2.447957957957958,
          2.452961961961962,
          2.457965965965966,
          2.46296996996997,
          2.4679739739739737,
          2.472977977977978,
          2.4779819819819817,
          2.482985985985986,
          2.4879899899899898,
          2.492993993993994,
          2.497997997997998,
          2.503002002002002,
          2.508006006006006,
          2.5130100100100097,
          2.518014014014014,
          2.5230180180180177,
          2.528022022022022,
          2.533026026026026,
          2.53803003003003,
          2.543034034034034,
          2.548038038038038,
          2.553042042042042,
          2.558046046046046,
          2.56305005005005,
          2.5680540540540537,
          2.573058058058058,
          2.578062062062062,
          2.583066066066066,
          2.58807007007007,
          2.593074074074074,
          2.598078078078078,
          2.603082082082082,
          2.608086086086086,
          2.61309009009009,
          2.618094094094094,
          2.623098098098098,
          2.628102102102102,
          2.633106106106106,
          2.63811011011011,
          2.643114114114114,
          2.648118118118118,
          2.653122122122122,
          2.658126126126126,
          2.66313013013013,
          2.668134134134134,
          2.673138138138138,
          2.678142142142142,
          2.683146146146146,
          2.68815015015015,
          2.693154154154154,
          2.698158158158158,
          2.703162162162162,
          2.708166166166166,
          2.7131701701701703,
          2.718174174174174,
          2.723178178178178,
          2.728182182182182,
          2.733186186186186,
          2.73819019019019,
          2.743194194194194,
          2.748198198198198,
          2.753202202202202,
          2.7582062062062063,
          2.76321021021021,
          2.768214214214214,
          2.773218218218218,
          2.778222222222222,
          2.783226226226226,
          2.78823023023023,
          2.7932342342342342,
          2.798238238238238,
          2.8032422422422423,
          2.808246246246246,
          2.8132502502502503,
          2.818254254254254,
          2.823258258258258,
          2.828262262262262,
          2.833266266266266,
          2.8382702702702702,
          2.843274274274274,
          2.8482782782782783,
          2.853282282282282,
          2.8582862862862863,
          2.86329029029029,
          2.8682942942942944,
          2.873298298298298,
          2.878302302302302,
          2.8833063063063062,
          2.88831031031031,
          2.8933143143143143,
          2.898318318318318,
          2.9033223223223223,
          2.908326326326326,
          2.9133303303303304,
          2.918334334334334,
          2.923338338338338,
          2.9283423423423423,
          2.933346346346346,
          2.9383503503503503,
          2.943354354354354,
          2.9483583583583584,
          2.953362362362362,
          2.9583663663663664,
          2.96337037037037,
          2.9683743743743745,
          2.9733783783783783,
          2.978382382382382,
          2.9833863863863863,
          2.98839039039039,
          2.9933943943943944,
          2.998398398398398,
          3.0034024024024024,
          3.008406406406406,
          3.0134104104104105,
          3.0184144144144143,
          3.0234184184184185,
          3.0284224224224223,
          3.033426426426426,
          3.0384304304304304,
          3.043434434434434,
          3.0484384384384384,
          3.0534424424424422,
          3.0584464464464465,
          3.0634504504504503,
          3.0684544544544545,
          3.0734584584584583,
          3.078462462462462,
          3.0834664664664664,
          3.08847047047047,
          3.0934744744744744,
          3.0984784784784782,
          3.1034824824824825,
          3.1084864864864863,
          3.1134904904904905,
          3.1184944944944943,
          3.1234984984984986,
          3.1285025025025024,
          3.133506506506506,
          3.1385105105105104,
          3.1435145145145142,
          3.1485185185185185,
          3.1535225225225223,
          3.1585265265265265,
          3.1635305305305303,
          3.1685345345345346,
          3.1735385385385384,
          3.178542542542542,
          3.1835465465465465,
          3.1885505505505503,
          3.1935545545545545,
          3.1985585585585583,
          3.2035625625625626,
          3.2085665665665664,
          3.2135705705705706,
          3.2185745745745744,
          3.2235785785785787,
          3.2285825825825825,
          3.2335865865865863,
          3.2385905905905905,
          3.2435945945945943,
          3.2485985985985986,
          3.2536026026026024,
          3.2586066066066066,
          3.2636106106106104,
          3.2686146146146147,
          3.2736186186186185,
          3.2786226226226227,
          3.2836266266266265,
          3.2886306306306303,
          3.2936346346346346,
          3.2986386386386384,
          3.3036426426426426,
          3.3086466466466464,
          3.3136506506506507,
          3.3186546546546545,
          3.3236586586586587,
          3.3286626626626625,
          3.3336666666666663,
          3.3386706706706706,
          3.3436746746746744,
          3.3486786786786786,
          3.3536826826826824,
          3.3586866866866867,
          3.3636906906906905,
          3.3686946946946947,
          3.3736986986986985,
          3.378702702702703,
          3.3837067067067066,
          3.3887107107107104,
          3.3937147147147146,
          3.3987187187187184,
          3.4037227227227227,
          3.4087267267267265,
          3.4137307307307307,
          3.4187347347347345,
          3.423738738738739,
          3.4287427427427426,
          3.433746746746747,
          3.4387507507507507,
          3.4437547547547545,
          3.4487587587587587,
          3.4537627627627625,
          3.4587667667667668,
          3.4637707707707706,
          3.468774774774775,
          3.4737787787787786,
          3.478782782782783,
          3.4837867867867867,
          3.4887907907907905,
          3.4937947947947947,
          3.4987987987987985,
          3.5038028028028028,
          3.5088068068068066,
          3.513810810810811,
          3.5188148148148146,
          3.523818818818819,
          3.5288228228228227,
          3.533826826826827,
          3.5388308308308307,
          3.5438348348348345,
          3.5488388388388388,
          3.5538428428428426,
          3.558846846846847,
          3.5638508508508506,
          3.568854854854855,
          3.5738588588588587,
          3.578862862862863,
          3.5838668668668667,
          3.5888708708708705,
          3.593874874874875,
          3.5988788788788786,
          3.603882882882883,
          3.6088868868868866,
          3.613890890890891,
          3.6188948948948947,
          3.623898898898899,
          3.6289029029029027,
          3.633906906906907,
          3.638910910910911,
          3.6439149149149146,
          3.648918918918919,
          3.6539229229229226,
          3.658926926926927,
          3.6639309309309307,
          3.668934934934935,
          3.6739389389389387,
          3.678942942942943,
          3.683946946946947,
          3.688950950950951,
          3.693954954954955,
          3.6989589589589587,
          3.703962962962963,
          3.7089669669669667,
          3.713970970970971,
          3.7189749749749748,
          3.723978978978979,
          3.728982982982983,
          3.733986986986987,
          3.738990990990991,
          3.7439949949949947,
          3.748998998998999,
          3.7540030030030027,
          3.759007007007007,
          3.7640110110110108,
          3.769015015015015,
          3.774019019019019,
          3.779023023023023,
          3.784027027027027,
          3.789031031031031,
          3.794035035035035,
          3.7990390390390387,
          3.804043043043043,
          3.8090470470470468,
          3.814051051051051,
          3.819055055055055,
          3.824059059059059,
          3.829063063063063,
          3.834067067067067,
          3.839071071071071,
          3.8440750750750747,
          3.849079079079079,
          3.854083083083083,
          3.859087087087087,
          3.864091091091091,
          3.869095095095095,
          3.874099099099099,
          3.879103103103103,
          3.884107107107107,
          3.889111111111111,
          3.894115115115115,
          3.899119119119119,
          3.904123123123123,
          3.909127127127127,
          3.914131131131131,
          3.919135135135135,
          3.924139139139139,
          3.929143143143143,
          3.934147147147147,
          3.939151151151151,
          3.9441551551551552,
          3.949159159159159,
          3.954163163163163,
          3.959167167167167,
          3.964171171171171,
          3.969175175175175,
          3.974179179179179,
          3.979183183183183,
          3.984187187187187,
          3.9891911911911913,
          3.994195195195195,
          3.999199199199199,
          4.004203203203203,
          4.009207207207208,
          4.014211211211212,
          4.019215215215215,
          4.024219219219219,
          4.029223223223224,
          4.034227227227228,
          4.0392312312312315,
          4.044235235235235,
          4.049239239239239,
          4.054243243243244,
          4.059247247247248,
          4.064251251251251,
          4.069255255255255,
          4.07425925925926,
          4.079263263263264,
          4.0842672672672675,
          4.089271271271271,
          4.094275275275276,
          4.09927927927928,
          4.104283283283284,
          4.109287287287287,
          4.114291291291291,
          4.119295295295296,
          4.1242992992993,
          4.1293033033033035,
          4.134307307307307,
          4.139311311311312,
          4.144315315315316,
          4.14931931931932,
          4.154323323323323,
          4.159327327327327,
          4.164331331331332,
          4.169335335335336,
          4.1743393393393395,
          4.179343343343343,
          4.184347347347348,
          4.189351351351352,
          4.194355355355356,
          4.1993593593593594,
          4.204363363363363,
          4.209367367367368,
          4.214371371371372,
          4.2193753753753755,
          4.224379379379379,
          4.229383383383384,
          4.234387387387388,
          4.239391391391392,
          4.2443953953953955,
          4.2493993993994,
          4.254403403403404,
          4.259407407407408,
          4.264411411411412,
          4.269415415415415,
          4.27441941941942,
          4.279423423423424,
          4.284427427427428,
          4.2894314314314315,
          4.294435435435436,
          4.29943943943944,
          4.304443443443444,
          4.309447447447448,
          4.314451451451451,
          4.319455455455456,
          4.32445945945946,
          4.329463463463464,
          4.3344674674674675,
          4.339471471471472,
          4.344475475475476,
          4.34947947947948,
          4.354483483483484,
          4.359487487487487,
          4.364491491491492,
          4.369495495495496,
          4.3744994994995,
          4.3795035035035035,
          4.384507507507508,
          4.389511511511512,
          4.394515515515516,
          4.39951951951952,
          4.404523523523524,
          4.409527527527528,
          4.414531531531532,
          4.419535535535536,
          4.4245395395395395,
          4.429543543543544,
          4.434547547547548,
          4.439551551551552,
          4.444555555555556,
          4.44955955955956,
          4.454563563563564,
          4.459567567567568,
          4.464571571571572,
          4.4695755755755755,
          4.47457957957958,
          4.479583583583584,
          4.484587587587588,
          4.489591591591592,
          4.494595595595596,
          4.4995995995996,
          4.504603603603604,
          4.509607607607608,
          4.5146116116116115,
          4.519615615615616,
          4.52461961961962,
          4.529623623623624,
          4.534627627627628,
          4.539631631631632,
          4.544635635635636,
          4.54963963963964,
          4.554643643643644,
          4.559647647647648,
          4.564651651651652,
          4.569655655655656,
          4.57465965965966,
          4.579663663663664,
          4.584667667667668,
          4.589671671671672,
          4.594675675675676,
          4.59967967967968,
          4.604683683683684,
          4.609687687687688,
          4.614691691691692,
          4.619695695695696,
          4.6246996996997,
          4.629703703703704,
          4.634707707707708,
          4.639711711711712,
          4.644715715715716,
          4.64971971971972,
          4.654723723723724,
          4.659727727727728,
          4.664731731731732,
          4.669735735735736,
          4.67473973973974,
          4.679743743743744,
          4.684747747747748,
          4.689751751751752,
          4.694755755755756,
          4.69975975975976,
          4.704763763763764,
          4.709767767767768,
          4.7147717717717725,
          4.719775775775776,
          4.72477977977978,
          4.729783783783784,
          4.734787787787788,
          4.739791791791792,
          4.744795795795796,
          4.7497997997998,
          4.754803803803804,
          4.7598078078078085,
          4.764811811811812,
          4.769815815815816,
          4.77481981981982,
          4.779823823823824,
          4.7848278278278285,
          4.789831831831832,
          4.794835835835836,
          4.79983983983984,
          4.8048438438438446,
          4.809847847847848,
          4.814851851851852,
          4.819855855855856,
          4.82485985985986,
          4.8298638638638645,
          4.834867867867868,
          4.839871871871872,
          4.844875875875876,
          4.849879879879881,
          4.854883883883884,
          4.859887887887888,
          4.864891891891892,
          4.869895895895896,
          4.8748998998999005,
          4.879903903903904,
          4.884907907907908,
          4.889911911911912,
          4.894915915915917,
          4.89991991991992,
          4.904923923923924,
          4.909927927927928,
          4.914931931931933,
          4.9199359359359365,
          4.92493993993994,
          4.929943943943944,
          4.934947947947948,
          4.939951951951953,
          4.944955955955956,
          4.94995995995996,
          4.954963963963964,
          4.959967967967969,
          4.9649719719719725,
          4.969975975975976,
          4.97497997997998,
          4.979983983983984,
          4.984987987987989,
          4.989991991991992,
          4.994995995995996,
          5
         ],
         "xaxis": "x",
         "y": [
          1.99800099966675,
          1.9880279680199904,
          1.978104716808898,
          1.968230997554188,
          1.9584065630168606,
          1.9486311671920105,
          1.9389045653026673,
          1.9292265137936664,
          1.9195967703255494,
          1.910015093768497,
          1.9004812441962902,
          1.890994982880303,
          1.8815560722835243,
          1.8721642760546104,
          1.8628193590219666,
          1.8535210871878578,
          1.8442692277225503,
          1.8350635489584808,
          1.8259038203844558,
          1.8167898126398798,
          1.8077212975090116,
          1.7986980479152497,
          1.789719837915447,
          1.780786442694253,
          1.771897638558483,
          1.7630532029315191,
          1.7542529143477348,
          1.7454965524469508,
          1.7367838979689167,
          1.7281147327478206,
          1.719488839706826,
          1.710906002852637,
          1.7023660072700892,
          1.6938686391167679,
          1.6854136856176543,
          1.6770009350597965,
          1.6686301767870098,
          1.6603012011946,
          1.652013799724116,
          1.6437677648581273,
          1.6355628901150276,
          1.627398970043865,
          1.619275800219196,
          1.6111931772359684,
          1.6031508987044274,
          1.5951487632450472,
          1.5871865704834893,
          1.5792641210455842,
          1.57138121655234,
          1.563537659614974,
          1.5557332538299713,
          1.5479678037741653,
          1.5402411149998454,
          1.532552994029888,
          1.5249032483529112,
          1.5172916864184545,
          1.5097181176321823,
          1.5021823523511122,
          1.4946842018788653,
          1.487223478460941,
          1.4797999952800174,
          1.4724135664512712,
          1.4650640070177243,
          1.4577511329456128,
          1.4504747611197772,
          1.4432347093390794,
          1.436030796311838,
          1.4288628416512907,
          1.4217306658710764,
          1.414634090380741,
          1.4075729374812653,
          1.400547030360616,
          1.3935561930893177,
          1.386600250616048,
          1.3796790287632534,
          1.3727923542227896,
          1.3659400545515799,
          1.3591219581672978,
          1.352337894344072,
          1.3455876932082091,
          1.3388711857339417,
          1.3321882037391948,
          1.3255385798813755,
          1.318922147653182,
          1.3123387413784349,
          1.3057881962079276,
          1.2992703481152996,
          1.2927850338929285,
          1.286332091147844,
          1.2799113582976605,
          1.2735226745665318,
          1.2671658799811256,
          1.2608408153666166,
          1.2545473223427017,
          1.2482852433196343,
          1.2420544214942768,
          1.235854700846176,
          1.229685926133655,
          1.2235479428899274,
          1.2174405974192273,
          1.211363736792963,
          1.2053172088458857,
          1.199300862172281,
          1.1933145461221764,
          1.1873581107975695,
          1.1814314070486744,
          1.1755342864701877,
          1.1696666013975707,
          1.1638282049033541,
          1.158018950793457,
          1.1522386936035272,
          1.1464872885952988,
          1.1407645917529672,
          1.1350704597795833,
          1.129404750093466,
          1.1237673208246313,
          1.118158030811239,
          1.1125767395960602,
          1.1070233074229576,
          1.1014975952333887,
          1.0959994646629212,
          1.0905287780377706,
          1.0850853983713507,
          1.079669189360845,
          1.0742800153837935,
          1.0689177414946958,
          1.0635822334216332,
          1.058273357562905,
          1.0529909809836853,
          1.047734971412692,
          1.042505197238876,
          1.0373015275081259,
          1.0321238319199875,
          1.0269719808244027,
          1.0218458452184618,
          1.016745296743174,
          1.0116702076802533,
          1.0066204509489194,
          1.0015959001027168,
          0.9965964293263483,
          0.9916219134325238,
          0.9866722278588269,
          0.9817472486645942,
          0.9768468525278133,
          0.9719709167420343,
          0.9671193192132967,
          0.9622919384570733,
          0.9574886535952265,
          0.9527093443529833,
          0.9479538910559225,
          0.9432221746269785,
          0.9385140765834594,
          0.9338294790340802,
          0.9291682646760107,
          0.9245303167919385,
          0.9199155192471462,
          0.9153237564866034,
          0.9107549135320733,
          0.906208875979233,
          0.9016855299948102,
          0.8971847623137313,
          0.8927064602362861,
          0.8882505116253054,
          0.8838168049033532,
          0.8794052290499331,
          0.8750156735987078,
          0.8706480286347332,
          0.8663021847917065,
          0.861978033249227,
          0.8576754657300716,
          0.8533943744974837,
          0.8491346523524749,
          0.8448961926311416,
          0.8406788892019929,
          0.8364826364632942,
          0.8323073293404225,
          0.8281528632832351,
          0.8240191342634521,
          0.8199060387720506,
          0.8158134738166742,
          0.8117413369190533,
          0.8076895261124386,
          0.8036579399390488,
          0.7996464774475293,
          0.7956550381904246,
          0.7916835222216637,
          0.7877318300940563,
          0.7837998628568037,
          0.77988752205302,
          0.7759947097172679,
          0.7721213283731049,
          0.7682672810306423,
          0.7644324711841176,
          0.7606168028094764,
          0.7568201803619695,
          0.7530425087737596,
          0.7492836934515407,
          0.7455436402741701,
          0.7418222555903112,
          0.7381194462160884,
          0.7344351194327539,
          0.7307691829843656,
          0.727121545075478,
          0.7234921143688426,
          0.7198807999831216,
          0.7162875114906115,
          0.7127121589149791,
          0.7091546527290088,
          0.7056149038523601,
          0.7020928236493379,
          0.6985883239266725,
          0.6951013169313108,
          0.6916317153482203,
          0.6881794322982013,
          0.6847443813357125,
          0.6813264764467054,
          0.6779256320464716,
          0.6745417629774989,
          0.6711747845073391,
          0.6678246123264867,
          0.6644911625462675,
          0.6611743516967379,
          0.6578740967245946,
          0.6545903149910959,
          0.6513229242699915,
          0.6480718427454637,
          0.644836989010079,
          0.6416182820627495,
          0.6384156413067045,
          0.6352289865474726,
          0.6320582379908735,
          0.6289033162410199,
          0.6257641422983292,
          0.6226406375575461,
          0.6195327238057733,
          0.616440323220514,
          0.6133633583677225,
          0.6103017521998655,
          0.607255428053993,
          0.6042243096498185,
          0.6012083210878086,
          0.5982073868472834,
          0.595221431784524,
          0.5922503811308923,
          0.5892941604909582,
          0.5863526958406365,
          0.583425913525334,
          0.5805137402581043,
          0.5776161031178133,
          0.5747329295473133,
          0.5718641473516255,
          0.5690096846961333,
          0.5661694701047825,
          0.5633434324582918,
          0.5605315009923727,
          0.5577336052959566,
          0.5549496753094323,
          0.5521796413228912,
          0.5494234339743823,
          0.5466809842481751,
          0.5439522234730313,
          0.5412370833204855,
          0.5385354958031343,
          0.5358473932729335,
          0.5331727084195045,
          0.530511374268449,
          0.5278633241796714,
          0.5252284918457107,
          0.52260681129008,
          0.5199982168656141,
          0.5174026432528259,
          0.5148200254582712,
          0.5122502988129206,
          0.5096933989705404,
          0.5071492619060818,
          0.504617823914077,
          0.5020990216070443,
          0.4995927919139014,
          0.49709907207838505,
          0.49461779965748065,
          0.4921489125198579,
          0.4896923488443154,
          0.48724804711823283,
          0.4848159461360299,
          0.48239598499763464,
          0.4799881031069581,
          0.4775922401703769,
          0.4752083361952235,
          0.4728363314882842,
          0.4704761666543042,
          0.4681277825945004,
          0.4657911205050815,
          0.4634661218757758,
          0.4611527284883655,
          0.4588508824152299,
          0.4565605260178938,
          0.454281601945585,
          0.4520140531337978,
          0.4497578228028643,
          0.44751285445653277,
          0.4452790918805525,
          0.44305647914126667,
          0.4408449605842115,
          0.43864448083272295,
          0.43645498478654937,
          0.43427641762047275,
          0.43210872478293527,
          0.4299518519946734,
          0.427805745247359,
          0.4256703508022465,
          0.42354561518882783,
          0.421431485203493,
          0.4193279079081982,
          0.41723483062914013,
          0.4151522009554368,
          0.4130799667378158,
          0.4110180760873077,
          0.40896647737394737,
          0.40692511922548075,
          0.4048939505260787,
          0.4028729204150569,
          0.40086197828560255,
          0.3988610737835068,
          0.3968701568059043,
          0.3948891775000181,
          0.39291808626191194,
          0.3909568337352476,
          0.38900537081004943,
          0.38706364862147435,
          0.38513161854858846,
          0.3832092322131495,
          0.38129644147839525,
          0.3793931984478387,
          0.3774994554640681,
          0.375615165107554,
          0.3737402801954617,
          0.37187475378046997,
          0.37001853914959537,
          0.36817158982302234,
          0.3663338595529398,
          0.36450530232238265,
          0.3626858723440798,
          0.3608755240593074,
          0.35907421213674845,
          0.3572818914713573,
          0.35549851718323017,
          0.35372404461648177,
          0.3519584293381269,
          0.3502016271369676,
          0.3484535940224866,
          0.3467142862237452,
          0.3449836601882879,
          0.34326167258105117,
          0.3415482802832788,
          0.3398434403914422,
          0.3381471102161656,
          0.3364592472811577,
          0.3347798093221479,
          0.3331087542858277,
          0.331446040328798,
          0.32979162581652116,
          0.32814546932227867,
          0.3265075296261335,
          0.3248777657138983,
          0.3232561367761082,
          0.3216426022069988,
          0.32003712160348985,
          0.3184396547641731,
          0.3168501616883057,
          0.31526860257480904,
          0.31369493782127156,
          0.31212912802295734,
          0.3105711339718194,
          0.30902091665551795,
          0.3074784372564436,
          0.30594365715074484,
          0.30441653790736173,
          0.302897041287063,
          0.30138512924148864,
          0.2998807639121973,
          0.29838390762971817,
          0.29689452291260776,
          0.2954125724665114,
          0.2939380191832295,
          0.2924708261397881,
          0.2910109565975143,
          0.2895583740011168,
          0.28811304197776993,
          0.2866749243362033,
          0.2852439850657954,
          0.2838201883356719,
          0.28240349849380847,
          0.2809938800661379,
          0.2795912977556622,
          0.2781957164415683,
          0.27680710117834906,
          0.2754254171949277,
          0.2740506298937876,
          0.27268270485010593,
          0.2713216078108914,
          0.2699673046941267,
          0.268619761587915,
          0.26727894474963115,
          0.265944820605076,
          0.26461735574763673,
          0.2632965169374493,
          0.26198227110056704,
          0.2606745853281316,
          0.25937342687554976,
          0.25807876316167283,
          0.25679056176798126,
          0.2555087904377726,
          0.2542334170753537,
          0.25296440974523765,
          0.25170173667134327,
          0.25044536623620023,
          0.2491952669801565,
          0.24795140760059153,
          0.24671375695113146,
          0.24548228404087022,
          0.2442569580335926,
          0.24303774824700258,
          0.24182462415195521,
          0.24061755537169158,
          0.23941651168107883,
          0.23822146300585265,
          0.237032379421865,
          0.23584923115433393,
          0.2346719885770988,
          0.23350062221187784,
          0.23233510272753052,
          0.23117540093932262,
          0.23002148780819565,
          0.22887333444003996,
          0.2277309120849707,
          0.22659419213660853,
          0.22546314613136262,
          0.22433774574771867,
          0.22321796280552897,
          0.22210376926530753,
          0.22099513722752723,
          0.21989203893192197,
          0.2187944467567908,
          0.2177023332183067,
          0.21661567096982853,
          0.21553443280121573,
          0.21445859163814757,
          0.21338812054144463,
          0.21232299270639488,
          0.21126318146208176,
          0.21020866027071708,
          0.20915940272697592,
          0.20811538255733564,
          0.20707657361941822,
          0.20604294990133523,
          0.20501448552103693,
          0.20399115472566368,
          0.20297293189090168,
          0.2019597915203407,
          0.2009517082448362,
          0.1999486568218737,
          0.19895061213493706,
          0.19795754919287908,
          0.19696944312929607,
          0.19598626920190532,
          0.195008002791925,
          0.19403461940345845,
          0.19306609466288,
          0.1921024043182254,
          0.19114352423858383,
          0.19018943041349445,
          0.1892400989523443,
          0.188295506083771,
          0.18735562815506668,
          0.18642044163158608,
          0.18548992309615756,
          0.184564049248496,
          0.18364279690462015,
          0.18272614299627138,
          0.18181406457033664,
          0.18090653878827323,
          0.1800035429255374,
          0.17910505437101487,
          0.17821105062645481,
          0.1773215093059068,
          0.17643640813515962,
          0.17555572495118427,
          0.17467943770157823,
          0.17380752444401404,
          0.17293996334568912,
          0.17207673268277976,
          0.17121781083989646,
          0.1703631763095434,
          0.1695128076915793,
          0.16866668369268178,
          0.1678247831258144,
          0.1669870849096956,
          0.1661535680682715,
          0.1653242117301899,
          0.16449899512827845,
          0.16367789759902387,
          0.16286089858205524,
          0.1620479776196286,
          0.16123911435611493,
          0.16043428853749064,
          0.1596334800108299,
          0.1588366687238006,
          0.15804383472416164,
          0.15725495815926394,
          0.15647001927555276,
          0.15568899841807352,
          0.15491187602997922,
          0.15413863265204122,
          0.1533692489221615,
          0.1526037055748881,
          0.15184198344093272,
          0.15108406344669056,
          0.150329926613763,
          0.14957955405848186,
          0.14883292699143727,
          0.1480900267170064,
          0.14735083463288612,
          0.14661533222962636,
          0.14588350109016746,
          0.1451553228893783,
          0.1444307793935978,
          0.1437098524601785,
          0.14299252403703178,
          0.14227877616217627,
          0.1415685909632878,
          0.14086195065725218,
          0.1401588375497195,
          0.13945923403466146,
          0.13876312259393023,
          0.13807048579681985,
          0.13738130629963002,
          0.13669556684523135,
          0.13601325026263378,
          0.135334339466556,
          0.1346588174569983,
          0.1339866673188162,
          0.13331787222129762,
          0.13265241541774073,
          0.1319902802450352,
          0.13133145012324451,
          0.130675908555191,
          0.13002363912604292,
          0.129374625502903,
          0.12872885143439988,
          0.12808630075028088,
          0.12744695736100733,
          0.12681080525735142,
          0.12617782850999568,
          0.12554801126913373,
          0.12492133776407356,
          0.12429779230284287,
          0.12367735927179563,
          0.12306002313522164,
          0.12244576843495708,
          0.12183457978999783,
          0.12122644189611387,
          0.12062133952546661,
          0.12001925752622701,
          0.11942018082219671,
          0.1188240944124301,
          0.11823098337085883,
          0.1176408328459183,
          0.11705362806017533,
          0.11646935430995858,
          0.11588799696498996,
          0.11530954146801865,
          0.11473397333445629,
          0.11416127815201453,
          0.11359144158034389,
          0.11302444935067497,
          0.1124602872654609,
          0.11189894119802186,
          0.11134039709219166,
          0.11078464096196527,
          0.11023165889114908,
          0.10968143703301204,
          0.10913396160993934,
          0.10858921891308695,
          0.10804719530203886,
          0.10750787720446507,
          0.10697125111578196,
          0.10643730359881422,
          0.10590602128345811,
          0.10537739086634698,
          0.10485139911051784,
          0.10432803284508024,
          0.10380727896488612,
          0.10328912443020198,
          0.10277355626638206,
          0.1022605615635438,
          0.10175012747624419,
          0.10124224122315838,
          0.10073689008675965,
          0.10023406141300072,
          0.09973374261099723,
          0.09923592115271207,
          0.0987405845726421,
          0.09824772046750563,
          0.09775731649593213,
          0.09726936037815297,
          0.09678383989569418,
          0.09630074289107024,
          0.0958200572674798,
          0.09534177098850284,
          0.09486587207779905,
          0.09439234861880824,
          0.09392118875445161,
          0.09345238068683523,
          0.09298591267695419,
          0.09252177304439908,
          0.09205995016706321,
          0.09160043248085163,
          0.09114320847939181,
          0.09068826671374512,
          0.09023559579212058,
          0.08978518437958917,
          0.08933702119780042,
          0.08889109502469963,
          0.08844739469424721,
          0.08800590909613874,
          0.08756662717552709,
          0.08712953793274535,
          0.08669463042303151,
          0.08626189375625445,
          0.08583131709664114,
          0.08540288966250542,
          0.08497660072597787,
          0.08455243961273741,
          0.08413039570174376,
          0.08371045842497171,
          0.08329261726714636,
          0.08287686176547981,
          0.08246318150940933,
          0.08205156614033643,
          0.08164200535136774,
          0.0812344888870567,
          0.08082900654314693,
          0.08042554816631657,
          0.08002410365392423,
          0.07962466295375575,
          0.07922721606377282,
          0.07883175303186223,
          0.07843826395558676,
          0.0780467389819374,
          0.07765716830708633,
          0.07726954217614172,
          0.0768838508829032,
          0.07650008476961907,
          0.07611823422674423,
          0.07573828969269976,
          0.07536024165363334,
          0.07498408064318116,
          0.07460979724223075,
          0.07423738207868517,
          0.07386682582722846,
          0.07349811920909187,
          0.0731312529918218,
          0.07276621798904838,
          0.07240300506025565,
          0.07204160511055248,
          0.07168200909044502,
          0.07132420799560997,
          0.07096819286666912,
          0.07061395478896512,
          0.0702614848923381,
          0.06991077435090372,
          0.06956181438283195,
          0.06921459625012746,
          0.06886911125841055,
          0.06852535075669966,
          0.06818330613719453,
          0.06784296883506089,
          0.06750433032821579,
          0.06716738213711432,
          0.06683211582453732,
          0.06649852299537998,
          0.06616659529644174,
          0.06583632441621703,
          0.0655077020846873,
          0.0651807200731137,
          0.06485537019383128,
          0.0645316443000438,
          0.06420953428561983,
          0.06388903208488972,
          0.0635701296724436,
          0.0632528190629306,
          0.06293709231085859,
          0.06262294151039559,
          0.062310358795171446,
          0.061999336338081176,
          0.06168986635108871,
          0.0613819410850321,
          0.06107555282942931,
          0.06077069391228519,
          0.0604673566998995,
          0.06016553359667552,
          0.059865217044930114,
          0.05956639952470424,
          0.05926907355357486,
          0.05897323168646742,
          0.05867886651546955,
          0.05838597066964546,
          0.058094536814851466,
          0.05780455765355227,
          0.05751602592463822,
          0.05722893440324363,
          0.05694327590056565,
          0.05665904326368449,
          0.05637622937538407,
          0.056094827153974056,
          0.055814829553112275,
          0.05553622956162854,
          0.055259020203348844,
          0.05498319453692081,
          0.054708745655639934,
          0.05443566668727643,
          0.054163950793903404,
          0.053893591171725416,
          0.053624581050908275,
          0.053356913695409375,
          0.053090582402809186,
          0.052825580504143245,
          0.05256190136373535,
          0.05229953837903124,
          0.05203848498043333,
          0.05177873463113629,
          0.0515202808269632,
          0.05126311709620284,
          0.0510072369994475,
          0.05075263412943188,
          0.05049930211087249,
          0.05024723460030819,
          0.04999642528594116,
          0.049746867887479056,
          0.049498556155977556,
          0.049251483873683985,
          0.04900564485388168,
          0.04876103294073491,
          0.048517642009134915,
          0.048275465964546356,
          0.04803449874285489,
          0.047794734310215144,
          0.04755616666289979,
          0.04731878982714907,
          0.0470825978590213,
          0.04684758484424405,
          0.04661374489806591,
          0.04638107216510937,
          0.04614956081922393,
          0.04591920506334047,
          0.04568999912932585,
          0.045461937277838704,
          0.04523501379818552,
          0.04500922300817784,
          0.044784559253989796,
          0.044561016910016626,
          0.04433859037873387,
          0.04411727409055703,
          0.043897062503702344,
          0.043677950104047764,
          0.043459931404995114,
          0.043243000947332515,
          0.04302715329909785,
          0.0428123830554426,
          0.04259868483849658,
          0.042386053297233335,
          0.042174483107336,
          0.04196396897106413,
          0.04175450561712092,
          0.04154608780052134,
          0.041338710302460634,
          0.041132367930183836,
          0.040927055516855555,
          0.04072276792143075,
          0.0405195000285259,
          0.04031724674829091,
          0.040116003016281786,
          0.03991576379333363,
          0.039716524065434654,
          0.03951827884360046,
          0.03932102316374924,
          0.039124752086577376,
          0.038929460697435865,
          0.03873514410620714,
          0.03854179744718274,
          0.038349415878941355,
          0.038157994584227674,
          0.03796752876983176,
          0.03777801366646897,
          0.037589444528660615,
          0.03740181663461502,
          0.03721512528610943,
          0.037029365808372225,
          0.03684453354996599,
          0.03666062388267094,
          0.03647763220136906,
          0.036295553923928844,
          0.036114384491090536,
          0.03593411936635189,
          0.035754754035854645,
          0.035576284008271467,
          0.03539870481469361,
          0.03522201200851878,
          0.035046201165339984,
          0.03487126788283466,
          0.03469720778065443,
          0.03452401650031556,
          0.03435168970508957,
          0.034180223079894864,
          0.03400961233118853,
          0.03383985318685901,
          0.033670941396118904,
          0.03350287272939868,
          0.03333564297824069,
          0.033169247955193895,
          0.03300368349370888,
          0.032838945448033584,
          0.03267502969310951,
          0.03251193212446836,
          0.03234964865812941,
          0.03218817523049705,
          0.03202750779825917,
          0.031867642338285825,
          0.03170857484752865,
          0.0315503013429204,
          0.03139281786127539,
          0.03123612045919017,
          0.0310802052129448,
          0.030925068218404673,
          0.030770705590922615,
          0.030617113465241715,
          0.03046428799539848,
          0.030312225354626642,
          0.030160921735261182,
          0.03001037334864308,
          0.029860576425024425,
          0.029711527213474,
          0.02956322198178345,
          0.02941565701637369,
          0.029268828622201995,
          0.02912273312266945,
          0.028977366859528966,
          0.028832726192793545,
          0.028688807500645227,
          0.028545607179344342,
          0.028403121643139385,
          0.02826134732417707,
          0.02812028067241309,
          0.02797991815552321,
          0.02784025625881477,
          0.027701291485138804,
          0.0275630203548023,
          0.027425439405481172,
          0.027288545192133525,
          0.02715233428691348,
          0.027016803279085184,
          0.02688194877493753,
          0.026747767397699115,
          0.026614255787453703,
          0.026481410601056153,
          0.026349228512048586,
          0.026217706210577174,
          0.026086840403309223,
          0.025956627813350782,
          0.025827065180164477,
          0.02569814925948793,
          0.025569876823252534,
          0.025442244659502563,
          0.025315249572314853,
          0.025188888381718646,
          0.02506315792361604,
          0.024938055049702722,
          0.024813576627389224,
          0.024689719539722346,
          0.024566480685307195,
          0.024443856978229483,
          0.024321845347978346,
          0.02420044273936933,
          0.024079646112467955,
          0.023959452442513608,
          0.023839858719843746,
          0.023720861949818643,
          0.023602459152746266,
          0.023484647363807752,
          0.023367423632983123,
          0.023250785024977502,
          0.02313472861914749,
          0.023019251509428112,
          0.022904350804260034,
          0.02279002362651713,
          0.022676267113434526,
          0.022563078416536795,
          0.0224504547015667,
          0.022338393148414203,
          0.02222689095104591,
          0.02211594531743471,
          0.02200555346948991,
          0.021895712642987678,
          0.021786420087501812,
          0.02167767306633491,
          0.021569468856449774,
          0.02146180474840126,
          0.02135467804626842,
          0.021248086067587074,
          0.021142026143282505,
          0.02103649561760272,
          0.02093149184805191,
          0.020827012205324343,
          0.02072305407323843,
          0.020619614848671287,
          0.020516691941493522,
          0.02041428277450437,
          0.02031238478336724,
          0.02021099541654537,
          0.02011011213523804,
          0.02000973241331693,
          0.019909853737262978,
          0.01981047360610329,
          0.01971158953134862,
          0.01961319903693102,
          0.01951529965914184,
          0.019417888946570087,
          0.019320964460040953,
          0.01922452377255479,
          0.01912856446922633,
          0.019033084147224245,
          0.018938080415710917,
          0.01884355089578262,
          0.018749493220409936,
          0.018655905034378462,
          0.018562783994229923,
          0.018470127768203365,
          0.018377934036176855,
          0.018286200489609338,
          0.0181949248314829,
          0.018104104776245168,
          0.01801373804975211,
          0.0179238223892111,
          0.01783435554312428,
          0.017745335271232125,
          0.01765675934445738,
          0.017568625544849243,
          0.01748093166552781,
          0.01739367551062888,
          0.01730685489524886,
          0.01722046764539014,
          0.017134511597906608,
          0.017048984600449558,
          0.016963884511413688,
          0.016879209199883557,
          0.01679495654558019,
          0.016711124438807977,
          0.01662771078040192,
          0.01654471348167496,
          0.016462130464365746,
          0.016379959660586564,
          0.016298199012771613,
          0.016216846473625406,
          0.016135900006071548,
          0.016055357583201722,
          0.015975217188224925,
          0.015895476814417008,
          0.01581613446507036,
          0.01573718815344396,
          0.015658635902713606,
          0.015580475745922447,
          0.015502705725931685,
          0.01542532389537159,
          0.015348328316592745,
          0.015271717061617503,
          0.01519548821209177,
          0.015119639859236879,
          0.015044170103801862,
          0.01496907705601585,
          0.014894358835540826,
          0.014820013571424435,
          0.014746039402053214,
          0.014672434475105935,
          0.014599196947507283,
          0.014526324985381615,
          0.01445381676400711,
          0.01438167046777005,
          0.014309884290119347,
          0.014238456433521365,
          0.014167385109414822,
          0.014096668538166067,
          0.01402630494902448,
          0.013956292580078194,
          0.013886629678209894,
          0.013817314499052972,
          0.01374834530694783,
          0.013679720374898419,
          0.013611437984529028,
          0.013543496426041194,
          0.013475893998170934
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>λ</i>=3<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=3",
         "line": {
          "color": "#00cc96",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>λ</i>=3",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.006004004004004004,
          0.011008008008008007,
          0.016012012012012012,
          0.021016016016016017,
          0.02602002002002002,
          0.031024024024024023,
          0.03602802802802803,
          0.04103203203203203,
          0.04603603603603604,
          0.05104004004004004,
          0.05604404404404405,
          0.061048048048048045,
          0.06605205205205206,
          0.07105605605605606,
          0.07606006006006007,
          0.08106406406406406,
          0.08606806806806806,
          0.09107207207207207,
          0.09607607607607607,
          0.10108008008008008,
          0.10608408408408408,
          0.1110880880880881,
          0.11609209209209209,
          0.12109609609609609,
          0.1261001001001001,
          0.1311041041041041,
          0.1361081081081081,
          0.1411121121121121,
          0.1461161161161161,
          0.15112012012012013,
          0.15612412412412413,
          0.16112812812812813,
          0.16613213213213213,
          0.17113613613613612,
          0.17614014014014015,
          0.18114414414414415,
          0.18614814814814815,
          0.19115215215215214,
          0.19615615615615617,
          0.20116016016016017,
          0.20616416416416417,
          0.21116816816816816,
          0.21617217217217216,
          0.2211761761761762,
          0.22618018018018018,
          0.23118418418418418,
          0.23618818818818818,
          0.24119219219219218,
          0.2461961961961962,
          0.2512002002002002,
          0.2562042042042042,
          0.2612082082082082,
          0.2662122122122122,
          0.2712162162162162,
          0.27622022022022025,
          0.2812242242242242,
          0.28622822822822824,
          0.2912322322322322,
          0.29623623623623624,
          0.30124024024024026,
          0.30624424424424423,
          0.31124824824824826,
          0.31625225225225223,
          0.32125625625625626,
          0.3262602602602603,
          0.33126426426426425,
          0.3362682682682683,
          0.34127227227227225,
          0.3462762762762763,
          0.3512802802802803,
          0.35628428428428427,
          0.3612882882882883,
          0.36629229229229227,
          0.3712962962962963,
          0.3763003003003003,
          0.3813043043043043,
          0.3863083083083083,
          0.39131231231231234,
          0.3963163163163163,
          0.40132032032032033,
          0.4063243243243243,
          0.41132832832832833,
          0.41633233233233236,
          0.4213363363363363,
          0.42634034034034035,
          0.4313443443443443,
          0.43634834834834835,
          0.4413523523523524,
          0.44635635635635634,
          0.45136036036036037,
          0.45636436436436434,
          0.46136836836836836,
          0.4663723723723724,
          0.47137637637637636,
          0.4763803803803804,
          0.48138438438438436,
          0.4863883883883884,
          0.4913923923923924,
          0.4963963963963964,
          0.5014004004004003,
          0.5064044044044044,
          0.5114084084084084,
          0.5164124124124124,
          0.5214164164164165,
          0.5264204204204204,
          0.5314244244244244,
          0.5364284284284284,
          0.5414324324324324,
          0.5464364364364365,
          0.5514404404404405,
          0.5564444444444444,
          0.5614484484484484,
          0.5664524524524525,
          0.5714564564564565,
          0.5764604604604605,
          0.5814644644644644,
          0.5864684684684685,
          0.5914724724724725,
          0.5964764764764765,
          0.6014804804804805,
          0.6064844844844844,
          0.6114884884884885,
          0.6164924924924925,
          0.6214964964964965,
          0.6265005005005005,
          0.6315045045045045,
          0.6365085085085085,
          0.6415125125125125,
          0.6465165165165165,
          0.6515205205205206,
          0.6565245245245245,
          0.6615285285285285,
          0.6665325325325325,
          0.6715365365365366,
          0.6765405405405406,
          0.6815445445445445,
          0.6865485485485485,
          0.6915525525525525,
          0.6965565565565566,
          0.7015605605605606,
          0.7065645645645645,
          0.7115685685685685,
          0.7165725725725726,
          0.7215765765765766,
          0.7265805805805806,
          0.7315845845845845,
          0.7365885885885886,
          0.7415925925925926,
          0.7465965965965966,
          0.7516006006006006,
          0.7566046046046047,
          0.7616086086086086,
          0.7666126126126126,
          0.7716166166166166,
          0.7766206206206206,
          0.7816246246246247,
          0.7866286286286286,
          0.7916326326326326,
          0.7966366366366366,
          0.8016406406406407,
          0.8066446446446447,
          0.8116486486486486,
          0.8166526526526526,
          0.8216566566566567,
          0.8266606606606607,
          0.8316646646646647,
          0.8366686686686686,
          0.8416726726726727,
          0.8466766766766767,
          0.8516806806806807,
          0.8566846846846847,
          0.8616886886886886,
          0.8666926926926927,
          0.8716966966966967,
          0.8767007007007007,
          0.8817047047047047,
          0.8867087087087087,
          0.8917127127127127,
          0.8967167167167167,
          0.9017207207207207,
          0.9067247247247248,
          0.9117287287287287,
          0.9167327327327327,
          0.9217367367367367,
          0.9267407407407408,
          0.9317447447447448,
          0.9367487487487487,
          0.9417527527527527,
          0.9467567567567567,
          0.9517607607607608,
          0.9567647647647648,
          0.9617687687687687,
          0.9667727727727727,
          0.9717767767767768,
          0.9767807807807808,
          0.9817847847847848,
          0.9867887887887888,
          0.9917927927927928,
          0.9967967967967968,
          1.0018008008008006,
          1.0068048048048046,
          1.0118088088088086,
          1.0168128128128127,
          1.0218168168168167,
          1.0268208208208207,
          1.0318248248248247,
          1.0368288288288288,
          1.0418328328328328,
          1.0468368368368368,
          1.0518408408408406,
          1.0568448448448446,
          1.0618488488488487,
          1.0668528528528527,
          1.0718568568568567,
          1.0768608608608607,
          1.0818648648648648,
          1.0868688688688688,
          1.0918728728728728,
          1.0968768768768768,
          1.1018808808808809,
          1.1068848848848847,
          1.1118888888888887,
          1.1168928928928927,
          1.1218968968968968,
          1.1269009009009008,
          1.1319049049049048,
          1.1369089089089088,
          1.1419129129129129,
          1.1469169169169169,
          1.151920920920921,
          1.1569249249249247,
          1.1619289289289287,
          1.1669329329329328,
          1.1719369369369368,
          1.1769409409409408,
          1.1819449449449448,
          1.1869489489489489,
          1.191952952952953,
          1.196956956956957,
          1.201960960960961,
          1.2069649649649647,
          1.2119689689689688,
          1.2169729729729728,
          1.2219769769769768,
          1.2269809809809809,
          1.2319849849849849,
          1.236988988988989,
          1.241992992992993,
          1.246996996996997,
          1.252001001001001,
          1.2570050050050048,
          1.2620090090090088,
          1.2670130130130128,
          1.2720170170170169,
          1.2770210210210209,
          1.282025025025025,
          1.287029029029029,
          1.292033033033033,
          1.297037037037037,
          1.302041041041041,
          1.307045045045045,
          1.3120490490490488,
          1.3170530530530529,
          1.322057057057057,
          1.327061061061061,
          1.332065065065065,
          1.337069069069069,
          1.342073073073073,
          1.347077077077077,
          1.352081081081081,
          1.357085085085085,
          1.3620890890890889,
          1.367093093093093,
          1.372097097097097,
          1.377101101101101,
          1.382105105105105,
          1.387109109109109,
          1.392113113113113,
          1.397117117117117,
          1.402121121121121,
          1.407125125125125,
          1.412129129129129,
          1.417133133133133,
          1.422137137137137,
          1.427141141141141,
          1.432145145145145,
          1.437149149149149,
          1.442153153153153,
          1.447157157157157,
          1.4521611611611611,
          1.4571651651651651,
          1.462169169169169,
          1.467173173173173,
          1.472177177177177,
          1.477181181181181,
          1.482185185185185,
          1.487189189189189,
          1.492193193193193,
          1.4971971971971971,
          1.5022012012012012,
          1.5072052052052052,
          1.5122092092092092,
          1.517213213213213,
          1.522217217217217,
          1.527221221221221,
          1.532225225225225,
          1.537229229229229,
          1.5422332332332331,
          1.5472372372372372,
          1.5522412412412412,
          1.5572452452452452,
          1.5622492492492492,
          1.567253253253253,
          1.572257257257257,
          1.577261261261261,
          1.5822652652652651,
          1.5872692692692691,
          1.5922732732732732,
          1.5972772772772772,
          1.6022812812812812,
          1.6072852852852852,
          1.6122892892892893,
          1.617293293293293,
          1.622297297297297,
          1.6273013013013011,
          1.6323053053053052,
          1.6373093093093092,
          1.6423133133133132,
          1.6473173173173172,
          1.6523213213213213,
          1.6573253253253253,
          1.6623293293293293,
          1.6673333333333331,
          1.6723373373373371,
          1.6773413413413412,
          1.6823453453453452,
          1.6873493493493492,
          1.6923533533533532,
          1.6973573573573573,
          1.7023613613613613,
          1.7073653653653653,
          1.7123693693693693,
          1.7173733733733734,
          1.7223773773773772,
          1.7273813813813812,
          1.7323853853853852,
          1.7373893893893892,
          1.7423933933933933,
          1.7473973973973973,
          1.7524014014014013,
          1.7574054054054054,
          1.7624094094094094,
          1.7674134134134134,
          1.7724174174174172,
          1.7774214214214212,
          1.7824254254254253,
          1.7874294294294293,
          1.7924334334334333,
          1.7974374374374373,
          1.8024414414414414,
          1.8074454454454454,
          1.8124494494494494,
          1.8174534534534534,
          1.8224574574574572,
          1.8274614614614613,
          1.8324654654654653,
          1.8374694694694693,
          1.8424734734734733,
          1.8474774774774774,
          1.8524814814814814,
          1.8574854854854854,
          1.8624894894894894,
          1.8674934934934935,
          1.8724974974974973,
          1.8775015015015013,
          1.8825055055055053,
          1.8875095095095094,
          1.8925135135135134,
          1.8975175175175174,
          1.9025215215215214,
          1.9075255255255255,
          1.9125295295295295,
          1.9175335335335335,
          1.9225375375375373,
          1.9275415415415413,
          1.9325455455455454,
          1.9375495495495494,
          1.9425535535535534,
          1.9475575575575574,
          1.9525615615615615,
          1.9575655655655655,
          1.9625695695695695,
          1.9675735735735735,
          1.9725775775775776,
          1.9775815815815814,
          1.9825855855855854,
          1.9875895895895894,
          1.9925935935935934,
          1.9975975975975975,
          2.0026016016016013,
          2.0076056056056055,
          2.0126096096096093,
          2.0176136136136136,
          2.0226176176176174,
          2.0276216216216216,
          2.0326256256256254,
          2.0376296296296297,
          2.0426336336336335,
          2.0476376376376377,
          2.0526416416416415,
          2.0576456456456453,
          2.0626496496496496,
          2.0676536536536534,
          2.0726576576576576,
          2.0776616616616614,
          2.0826656656656657,
          2.0876696696696695,
          2.0926736736736737,
          2.0976776776776775,
          2.1026816816816813,
          2.1076856856856856,
          2.1126896896896894,
          2.1176936936936936,
          2.1226976976976974,
          2.1277017017017017,
          2.1327057057057055,
          2.1377097097097097,
          2.1427137137137136,
          2.147717717717718,
          2.1527217217217216,
          2.1577257257257254,
          2.1627297297297297,
          2.1677337337337335,
          2.1727377377377377,
          2.1777417417417415,
          2.1827457457457458,
          2.1877497497497496,
          2.192753753753754,
          2.1977577577577576,
          2.202761761761762,
          2.2077657657657657,
          2.2127697697697695,
          2.2177737737737737,
          2.2227777777777775,
          2.2277817817817818,
          2.2327857857857856,
          2.23778978978979,
          2.2427937937937936,
          2.247797797797798,
          2.2528018018018017,
          2.2578058058058055,
          2.2628098098098097,
          2.2678138138138135,
          2.2728178178178178,
          2.2778218218218216,
          2.282825825825826,
          2.2878298298298296,
          2.292833833833834,
          2.2978378378378377,
          2.302841841841842,
          2.3078458458458457,
          2.3128498498498495,
          2.317853853853854,
          2.3228578578578576,
          2.327861861861862,
          2.3328658658658656,
          2.33786986986987,
          2.3428738738738737,
          2.347877877877878,
          2.3528818818818817,
          2.357885885885886,
          2.36288988988989,
          2.3678938938938936,
          2.372897897897898,
          2.3779019019019016,
          2.382905905905906,
          2.3879099099099097,
          2.392913913913914,
          2.3979179179179178,
          2.402921921921922,
          2.407925925925926,
          2.4129299299299296,
          2.417933933933934,
          2.4229379379379377,
          2.427941941941942,
          2.4329459459459457,
          2.43794994994995,
          2.4429539539539538,
          2.447957957957958,
          2.452961961961962,
          2.457965965965966,
          2.46296996996997,
          2.4679739739739737,
          2.472977977977978,
          2.4779819819819817,
          2.482985985985986,
          2.4879899899899898,
          2.492993993993994,
          2.497997997997998,
          2.503002002002002,
          2.508006006006006,
          2.5130100100100097,
          2.518014014014014,
          2.5230180180180177,
          2.528022022022022,
          2.533026026026026,
          2.53803003003003,
          2.543034034034034,
          2.548038038038038,
          2.553042042042042,
          2.558046046046046,
          2.56305005005005,
          2.5680540540540537,
          2.573058058058058,
          2.578062062062062,
          2.583066066066066,
          2.58807007007007,
          2.593074074074074,
          2.598078078078078,
          2.603082082082082,
          2.608086086086086,
          2.61309009009009,
          2.618094094094094,
          2.623098098098098,
          2.628102102102102,
          2.633106106106106,
          2.63811011011011,
          2.643114114114114,
          2.648118118118118,
          2.653122122122122,
          2.658126126126126,
          2.66313013013013,
          2.668134134134134,
          2.673138138138138,
          2.678142142142142,
          2.683146146146146,
          2.68815015015015,
          2.693154154154154,
          2.698158158158158,
          2.703162162162162,
          2.708166166166166,
          2.7131701701701703,
          2.718174174174174,
          2.723178178178178,
          2.728182182182182,
          2.733186186186186,
          2.73819019019019,
          2.743194194194194,
          2.748198198198198,
          2.753202202202202,
          2.7582062062062063,
          2.76321021021021,
          2.768214214214214,
          2.773218218218218,
          2.778222222222222,
          2.783226226226226,
          2.78823023023023,
          2.7932342342342342,
          2.798238238238238,
          2.8032422422422423,
          2.808246246246246,
          2.8132502502502503,
          2.818254254254254,
          2.823258258258258,
          2.828262262262262,
          2.833266266266266,
          2.8382702702702702,
          2.843274274274274,
          2.8482782782782783,
          2.853282282282282,
          2.8582862862862863,
          2.86329029029029,
          2.8682942942942944,
          2.873298298298298,
          2.878302302302302,
          2.8833063063063062,
          2.88831031031031,
          2.8933143143143143,
          2.898318318318318,
          2.9033223223223223,
          2.908326326326326,
          2.9133303303303304,
          2.918334334334334,
          2.923338338338338,
          2.9283423423423423,
          2.933346346346346,
          2.9383503503503503,
          2.943354354354354,
          2.9483583583583584,
          2.953362362362362,
          2.9583663663663664,
          2.96337037037037,
          2.9683743743743745,
          2.9733783783783783,
          2.978382382382382,
          2.9833863863863863,
          2.98839039039039,
          2.9933943943943944,
          2.998398398398398,
          3.0034024024024024,
          3.008406406406406,
          3.0134104104104105,
          3.0184144144144143,
          3.0234184184184185,
          3.0284224224224223,
          3.033426426426426,
          3.0384304304304304,
          3.043434434434434,
          3.0484384384384384,
          3.0534424424424422,
          3.0584464464464465,
          3.0634504504504503,
          3.0684544544544545,
          3.0734584584584583,
          3.078462462462462,
          3.0834664664664664,
          3.08847047047047,
          3.0934744744744744,
          3.0984784784784782,
          3.1034824824824825,
          3.1084864864864863,
          3.1134904904904905,
          3.1184944944944943,
          3.1234984984984986,
          3.1285025025025024,
          3.133506506506506,
          3.1385105105105104,
          3.1435145145145142,
          3.1485185185185185,
          3.1535225225225223,
          3.1585265265265265,
          3.1635305305305303,
          3.1685345345345346,
          3.1735385385385384,
          3.178542542542542,
          3.1835465465465465,
          3.1885505505505503,
          3.1935545545545545,
          3.1985585585585583,
          3.2035625625625626,
          3.2085665665665664,
          3.2135705705705706,
          3.2185745745745744,
          3.2235785785785787,
          3.2285825825825825,
          3.2335865865865863,
          3.2385905905905905,
          3.2435945945945943,
          3.2485985985985986,
          3.2536026026026024,
          3.2586066066066066,
          3.2636106106106104,
          3.2686146146146147,
          3.2736186186186185,
          3.2786226226226227,
          3.2836266266266265,
          3.2886306306306303,
          3.2936346346346346,
          3.2986386386386384,
          3.3036426426426426,
          3.3086466466466464,
          3.3136506506506507,
          3.3186546546546545,
          3.3236586586586587,
          3.3286626626626625,
          3.3336666666666663,
          3.3386706706706706,
          3.3436746746746744,
          3.3486786786786786,
          3.3536826826826824,
          3.3586866866866867,
          3.3636906906906905,
          3.3686946946946947,
          3.3736986986986985,
          3.378702702702703,
          3.3837067067067066,
          3.3887107107107104,
          3.3937147147147146,
          3.3987187187187184,
          3.4037227227227227,
          3.4087267267267265,
          3.4137307307307307,
          3.4187347347347345,
          3.423738738738739,
          3.4287427427427426,
          3.433746746746747,
          3.4387507507507507,
          3.4437547547547545,
          3.4487587587587587,
          3.4537627627627625,
          3.4587667667667668,
          3.4637707707707706,
          3.468774774774775,
          3.4737787787787786,
          3.478782782782783,
          3.4837867867867867,
          3.4887907907907905,
          3.4937947947947947,
          3.4987987987987985,
          3.5038028028028028,
          3.5088068068068066,
          3.513810810810811,
          3.5188148148148146,
          3.523818818818819,
          3.5288228228228227,
          3.533826826826827,
          3.5388308308308307,
          3.5438348348348345,
          3.5488388388388388,
          3.5538428428428426,
          3.558846846846847,
          3.5638508508508506,
          3.568854854854855,
          3.5738588588588587,
          3.578862862862863,
          3.5838668668668667,
          3.5888708708708705,
          3.593874874874875,
          3.5988788788788786,
          3.603882882882883,
          3.6088868868868866,
          3.613890890890891,
          3.6188948948948947,
          3.623898898898899,
          3.6289029029029027,
          3.633906906906907,
          3.638910910910911,
          3.6439149149149146,
          3.648918918918919,
          3.6539229229229226,
          3.658926926926927,
          3.6639309309309307,
          3.668934934934935,
          3.6739389389389387,
          3.678942942942943,
          3.683946946946947,
          3.688950950950951,
          3.693954954954955,
          3.6989589589589587,
          3.703962962962963,
          3.7089669669669667,
          3.713970970970971,
          3.7189749749749748,
          3.723978978978979,
          3.728982982982983,
          3.733986986986987,
          3.738990990990991,
          3.7439949949949947,
          3.748998998998999,
          3.7540030030030027,
          3.759007007007007,
          3.7640110110110108,
          3.769015015015015,
          3.774019019019019,
          3.779023023023023,
          3.784027027027027,
          3.789031031031031,
          3.794035035035035,
          3.7990390390390387,
          3.804043043043043,
          3.8090470470470468,
          3.814051051051051,
          3.819055055055055,
          3.824059059059059,
          3.829063063063063,
          3.834067067067067,
          3.839071071071071,
          3.8440750750750747,
          3.849079079079079,
          3.854083083083083,
          3.859087087087087,
          3.864091091091091,
          3.869095095095095,
          3.874099099099099,
          3.879103103103103,
          3.884107107107107,
          3.889111111111111,
          3.894115115115115,
          3.899119119119119,
          3.904123123123123,
          3.909127127127127,
          3.914131131131131,
          3.919135135135135,
          3.924139139139139,
          3.929143143143143,
          3.934147147147147,
          3.939151151151151,
          3.9441551551551552,
          3.949159159159159,
          3.954163163163163,
          3.959167167167167,
          3.964171171171171,
          3.969175175175175,
          3.974179179179179,
          3.979183183183183,
          3.984187187187187,
          3.9891911911911913,
          3.994195195195195,
          3.999199199199199,
          4.004203203203203,
          4.009207207207208,
          4.014211211211212,
          4.019215215215215,
          4.024219219219219,
          4.029223223223224,
          4.034227227227228,
          4.0392312312312315,
          4.044235235235235,
          4.049239239239239,
          4.054243243243244,
          4.059247247247248,
          4.064251251251251,
          4.069255255255255,
          4.07425925925926,
          4.079263263263264,
          4.0842672672672675,
          4.089271271271271,
          4.094275275275276,
          4.09927927927928,
          4.104283283283284,
          4.109287287287287,
          4.114291291291291,
          4.119295295295296,
          4.1242992992993,
          4.1293033033033035,
          4.134307307307307,
          4.139311311311312,
          4.144315315315316,
          4.14931931931932,
          4.154323323323323,
          4.159327327327327,
          4.164331331331332,
          4.169335335335336,
          4.1743393393393395,
          4.179343343343343,
          4.184347347347348,
          4.189351351351352,
          4.194355355355356,
          4.1993593593593594,
          4.204363363363363,
          4.209367367367368,
          4.214371371371372,
          4.2193753753753755,
          4.224379379379379,
          4.229383383383384,
          4.234387387387388,
          4.239391391391392,
          4.2443953953953955,
          4.2493993993994,
          4.254403403403404,
          4.259407407407408,
          4.264411411411412,
          4.269415415415415,
          4.27441941941942,
          4.279423423423424,
          4.284427427427428,
          4.2894314314314315,
          4.294435435435436,
          4.29943943943944,
          4.304443443443444,
          4.309447447447448,
          4.314451451451451,
          4.319455455455456,
          4.32445945945946,
          4.329463463463464,
          4.3344674674674675,
          4.339471471471472,
          4.344475475475476,
          4.34947947947948,
          4.354483483483484,
          4.359487487487487,
          4.364491491491492,
          4.369495495495496,
          4.3744994994995,
          4.3795035035035035,
          4.384507507507508,
          4.389511511511512,
          4.394515515515516,
          4.39951951951952,
          4.404523523523524,
          4.409527527527528,
          4.414531531531532,
          4.419535535535536,
          4.4245395395395395,
          4.429543543543544,
          4.434547547547548,
          4.439551551551552,
          4.444555555555556,
          4.44955955955956,
          4.454563563563564,
          4.459567567567568,
          4.464571571571572,
          4.4695755755755755,
          4.47457957957958,
          4.479583583583584,
          4.484587587587588,
          4.489591591591592,
          4.494595595595596,
          4.4995995995996,
          4.504603603603604,
          4.509607607607608,
          4.5146116116116115,
          4.519615615615616,
          4.52461961961962,
          4.529623623623624,
          4.534627627627628,
          4.539631631631632,
          4.544635635635636,
          4.54963963963964,
          4.554643643643644,
          4.559647647647648,
          4.564651651651652,
          4.569655655655656,
          4.57465965965966,
          4.579663663663664,
          4.584667667667668,
          4.589671671671672,
          4.594675675675676,
          4.59967967967968,
          4.604683683683684,
          4.609687687687688,
          4.614691691691692,
          4.619695695695696,
          4.6246996996997,
          4.629703703703704,
          4.634707707707708,
          4.639711711711712,
          4.644715715715716,
          4.64971971971972,
          4.654723723723724,
          4.659727727727728,
          4.664731731731732,
          4.669735735735736,
          4.67473973973974,
          4.679743743743744,
          4.684747747747748,
          4.689751751751752,
          4.694755755755756,
          4.69975975975976,
          4.704763763763764,
          4.709767767767768,
          4.7147717717717725,
          4.719775775775776,
          4.72477977977978,
          4.729783783783784,
          4.734787787787788,
          4.739791791791792,
          4.744795795795796,
          4.7497997997998,
          4.754803803803804,
          4.7598078078078085,
          4.764811811811812,
          4.769815815815816,
          4.77481981981982,
          4.779823823823824,
          4.7848278278278285,
          4.789831831831832,
          4.794835835835836,
          4.79983983983984,
          4.8048438438438446,
          4.809847847847848,
          4.814851851851852,
          4.819855855855856,
          4.82485985985986,
          4.8298638638638645,
          4.834867867867868,
          4.839871871871872,
          4.844875875875876,
          4.849879879879881,
          4.854883883883884,
          4.859887887887888,
          4.864891891891892,
          4.869895895895896,
          4.8748998998999005,
          4.879903903903904,
          4.884907907907908,
          4.889911911911912,
          4.894915915915917,
          4.89991991991992,
          4.904923923923924,
          4.909927927927928,
          4.914931931931933,
          4.9199359359359365,
          4.92493993993994,
          4.929943943943944,
          4.934947947947948,
          4.939951951951953,
          4.944955955955956,
          4.94995995995996,
          4.954963963963964,
          4.959967967967969,
          4.9649719719719725,
          4.969975975975976,
          4.97497997997998,
          4.979983983983984,
          4.984987987987989,
          4.989991991991992,
          4.994995995995996,
          5
         ],
         "xaxis": "x",
         "y": [
          2.997001499500125,
          2.9820419520299857,
          2.967157075213347,
          2.952346496331282,
          2.9376098445252907,
          2.922946750788016,
          2.9083568479540007,
          2.8938397706904997,
          2.879395155488324,
          2.8650226406527457,
          2.8507218662944354,
          2.8364924743204547,
          2.822334108425286,
          2.808246414081916,
          2.79422903853295,
          2.780281630781787,
          2.7664038415838252,
          2.7525953234377214,
          2.7388557305766836,
          2.7251847189598197,
          2.711581946263517,
          2.6980470718728746,
          2.6845797568731706,
          2.6711796640413796,
          2.6578464578377243,
          2.644579804397279,
          2.6313793715216023,
          2.6182448286704263,
          2.605175846953375,
          2.592172099121731,
          2.579233259560239,
          2.5663590042789557,
          2.553549010905134,
          2.540802958675152,
          2.5281205284264816,
          2.515501402589695,
          2.5029452651805144,
          2.4904518017918997,
          2.4780206995861738,
          2.4656516472871908,
          2.4533443351725417,
          2.4410984550657973,
          2.428913700328794,
          2.4167897658539528,
          2.404726348056641,
          2.3927231448675705,
          2.380779855725234,
          2.3688961815683762,
          2.35707182482851,
          2.3453064894224607,
          2.333599880744957,
          2.321951705661248,
          2.310361672499768,
          2.298829491044832,
          2.2873548725293666,
          2.2759375296276816,
          2.2645771764482734,
          2.2532735285266683,
          2.242026302818298,
          2.2308352176914115,
          2.219699992920026,
          2.208620349676907,
          2.1975960105265866,
          2.186626699418419,
          2.175712141679666,
          2.164852064008619,
          2.1540461944677567,
          2.143294262476936,
          2.1325959988066145,
          2.121951135571112,
          2.111359406221898,
          2.100820545540924,
          2.0903342896339767,
          2.0799003759240717,
          2.06951854314488,
          2.0591885313341844,
          2.04891008182737,
          2.0386829372509467,
          2.028506841516108,
          2.0183815398123137,
          2.008306778600913,
          1.9982823056087922,
          1.988307869822063,
          1.9783832214797732,
          1.9685081120676524,
          1.9586822943118913,
          1.9489055221729494,
          1.9391775508393927,
          1.929498136721766,
          1.9198670374464908,
          1.9102840118497977,
          1.9007488199716884,
          1.8912612230499248,
          1.8818209835140527,
          1.8724278649794515,
          1.8630816322414152,
          1.853782051269264,
          1.8445288892004825,
          1.8353219143348911,
          1.826160896128841,
          1.8170456051894446,
          1.8079758132688286,
          1.7989512932584213,
          1.7899718191832645,
          1.7810371661963542,
          1.7721471105730116,
          1.7633014297052814,
          1.754499902096356,
          1.745742307355031,
          1.7370284261901856,
          1.7283580404052907,
          1.7197309328929482,
          1.7111468876294507,
          1.702605689669375,
          1.6941071251401991,
          1.685650981236947,
          1.6772370462168587,
          1.6688651093940903,
          1.6605349611344364,
          1.652246392850083,
          1.6439991969943817,
          1.635793167056656,
          1.627628097557026,
          1.6195037840412674,
          1.61142002307569,
          1.6033766122420436,
          1.5953733501324496,
          1.5874100363443575,
          1.579486471475528,
          1.5716024571190381,
          1.5637577958583138,
          1.5559522912621888,
          1.5481857478799812,
          1.540457971236604,
          1.5327687678276927,
          1.525117945114761,
          1.51750531152038,
          1.509930676423379,
          1.5023938501540752,
          1.4948946439895225,
          1.4874328701487858,
          1.4800083417882404,
          1.4726208729968913,
          1.46527027879172,
          1.4579563751130515,
          1.450678978819945,
          1.4434379076856099,
          1.4362329803928398,
          1.429064016529475,
          1.4219308365838839,
          1.4148332619404678,
          1.4077711148751892,
          1.4007442185511203,
          1.393752397014016,
          1.386795475187908,
          1.3798732788707193,
          1.372985634729905,
          1.3661323702981099,
          1.3593133139688496,
          1.3525282949922153,
          1.345777143470597,
          1.3390596903544292,
          1.3323757674379582,
          1.3257252073550299,
          1.3191078435748997,
          1.3125235103980617,
          1.3059720429520998,
          1.2994532771875598,
          1.2929670498738404,
          1.2865131985951073,
          1.2800915617462256,
          1.2737019785287123,
          1.2673442889467124,
          1.2610183338029892,
          1.2547239546949414,
          1.2484609940106337,
          1.2422292949248526,
          1.236028701395178,
          1.229859058158076,
          1.2237202107250114,
          1.21761200537858,
          1.2115342891686578,
          1.2054869099085732,
          1.199469716171294,
          1.193482557285637,
          1.1875252833324956,
          1.1815977451410844,
          1.1756997942852054,
          1.16983128307953,
          1.1639920645759019,
          1.1581819925596573,
          1.1524009215459636,
          1.1466487067761764,
          1.1409252042142146,
          1.1352302705429542,
          1.1295637631606392,
          1.123925540177311,
          1.118315460411255,
          1.112733383385467,
          1.1071791693241326,
          1.1016526791491308,
          1.0961537744765484,
          1.090682317613217,
          1.085238171553264,
          1.0798211999746825,
          1.0744312672359173,
          1.0690682383724686,
          1.0637319790935131,
          1.0584223557785402,
          1.0531392354740068,
          1.0478824858900087,
          1.0426519753969663,
          1.0374475730223305,
          1.0322691484473019,
          1.0271165720035687,
          1.021989714670058,
          1.0168884480697074,
          1.0118126444662483,
          1.0067621767610087,
          1.00173691848973,
          0.9967367438194012,
          0.9917615275451068,
          0.9868111450868919,
          0.9818854724866438,
          0.9769843864049872,
          0.9721077641181955,
          0.9672554835151186,
          0.9624274230941243,
          0.9576234619600568,
          0.9528434798212089,
          0.9480873569863102,
          0.9433549743615299,
          0.9386462134474938,
          0.9339609563363191,
          0.9292990857086599,
          0.924660484830771,
          0.9200450375515837,
          0.9154526282997982,
          0.9108831420809895,
          0.9063364644747278,
          0.901812481631713,
          0.897311080270925,
          0.892832147676786,
          0.8883755716963385,
          0.8839412407364373,
          0.8795290437609549,
          0.875138870288001,
          0.8707706103871564,
          0.86642415467672,
          0.8620993943209698,
          0.8577962210274382,
          0.8535145270441999,
          0.8492542051571736,
          0.8450151486874377,
          0.8407972514885591,
          0.8366004079439349,
          0.8324245129641484,
          0.8282694619843368,
          0.8241351509615735,
          0.8200214763722626,
          0.815928335209547,
          0.8118556249807283,
          0.8078032437047015,
          0.8037710899094003,
          0.7997590626292568,
          0.7957670614026735,
          0.7917949862695071,
          0.7878427377685662,
          0.78391021693512,
          0.7799973252984211,
          0.7761039648792389,
          0.7722300381874068,
          0.768375448219381,
          0.7645400984558106,
          0.7607238928591227,
          0.7569267358711154,
          0.7531485324105665,
          0.7493891878708521,
          0.7456486081175776,
          0.741926699486221,
          0.7382233687797868,
          0.7345385232664731,
          0.7308720706773493,
          0.7272239192040448,
          0.7235939774964519,
          0.7199821546604371,
          0.7163883602555653,
          0.7128125042928353,
          0.7092544972324263,
          0.7057142499814563,
          0.7021916738917506,
          0.6986866807576222,
          0.6951991828136637,
          0.6917290927325483,
          0.6882763236228449,
          0.6848407890268408,
          0.6814224029183775,
          0.6780210797006967,
          0.6746367342042965,
          0.6712692816847992,
          0.6679186378208287,
          0.6645847187119001,
          0.6612674408763173,
          0.6579667212490844,
          0.6546824771798241,
          0.6514146264307091,
          0.6481630871744029,
          0.6449277779920101,
          0.6417086178710385,
          0.6385055262033698,
          0.6353184227832418,
          0.6321472278052395,
          0.6289918618622973,
          0.6258522459437101,
          0.6227283014331553,
          0.6196199501067237,
          0.6165271141309616,
          0.613449716060921,
          0.6103876788382211,
          0.607340925789118,
          0.6043093806225853,
          0.6012929674284038,
          0.5982916106752603,
          0.5953052352088565,
          0.5923337662500272,
          0.5893771293928679,
          0.5864352506028714,
          0.5835080562150742,
          0.5805954729322116,
          0.5776974278228827,
          0.5748138483197243,
          0.5719446622175929,
          0.569089797671758,
          0.5662491831961022,
          0.5634227476613309,
          0.5606104202931925,
          0.5578121306707049,
          0.5550278087243931,
          0.5522573847345336,
          0.5495007893294097,
          0.546757953483574,
          0.5440288085161197,
          0.5413132860889611,
          0.5386113182051226,
          0.5359228372070359,
          0.5332477757748453,
          0.5305860669247227,
          0.5279376440071903,
          0.5253024407054514,
          0.5226803910337299,
          0.5200714293356179,
          0.5174754902824319,
          0.5148925088715768,
          0.5123224204249183,
          0.5097651605871634,
          0.5072206653242484,
          0.5046888709217365,
          0.5021697139832219,
          0.4996631314287415,
          0.497169060493197,
          0.4946874387247817,
          0.492218203983418,
          0.48976129443920025,
          0.48731664857084744,
          0.4848842051641623,
          0.4824639033104982,
          0.4800556824052348,
          0.47765948214625964,
          0.47527524253245856,
          0.47290290386221356,
          0.47054240673190734,
          0.468193692034436,
          0.46585670095772913,
          0.4635313749832769,
          0.46121765588466535,
          0.4589154857261173,
          0.45662480686104256,
          0.4543455619305945,
          0.45207769386223295,
          0.44982114586829597,
          0.4475758614445773,
          0.44534178436891164,
          0.44311885869976714,
          0.4409070287748442,
          0.4387062392096821,
          0.43651643489627145,
          0.4343375610016752,
          0.4321695629666549,
          0.43001238650430496,
          0.4278659775986931,
          0.42573028250350786,
          0.42360524774071273,
          0.42149082009920685,
          0.4193869466334933,
          0.4172935746623525,
          0.4152106517675236,
          0.4131381257923915,
          0.4110759448406814,
          0.4090240572751589,
          0.4069824117163371,
          0.4049509570411901,
          0.4029296423818725,
          0.40091841712444676,
          0.398917230907614,
          0.39692603362145507,
          0.394944775406174,
          0.39297340665085057,
          0.3910118779921974,
          0.38906014031332464,
          0.3871181447425093,
          0.38518584265197187,
          0.38326318565665884,
          0.3813501256130305,
          0.37944661461785645,
          0.37755260500701493,
          0.3756680493543003,
          0.3737929004702348,
          0.3719271114008873,
          0.37007063542669716,
          0.3682234260613053,
          0.3663854370503889,
          0.3645566223705039,
          0.3627369362279328,
          0.36092633305753735,
          0.35912476752161826,
          0.35733219450877896,
          0.35554856913279753,
          0.3537738467315009,
          0.3520079828656482,
          0.35025093331781676,
          0.34850265409129577,
          0.3467631014089839,
          0.34503223171229347,
          0.3433100016600599,
          0.3415963681274561,
          0.33989128820491277,
          0.3381947191970439,
          0.336506618621578,
          0.33482694420829345,
          0.3331556538979613,
          0.33149270584129087,
          0.32983805839788294,
          0.3281916701351862,
          0.32655349982746007,
          0.32492350645474277,
          0.3233016492018236,
          0.3216878874572213,
          0.32008218081216694,
          0.3184844890595923,
          0.3168947721931226,
          0.31531299040607563,
          0.3137391040904639,
          0.31217307383600346,
          0.31061486042912734,
          0.30906442485200286,
          0.3075217282815554,
          0.3059867320884955,
          0.3044593978363525,
          0.302939687280511,
          0.3014275623672543,
          0.2999229852328106,
          0.2984259182024056,
          0.2969363237893186,
          0.2954541646939441,
          0.293979403802858,
          0.29251200418788753,
          0.2910519291051877,
          0.28959914199432,
          0.2881536064773381,
          0.28671528635787574,
          0.2852841456202417,
          0.2838601484285165,
          0.2824432591256565,
          0.2810334422326,
          0.2796306624473791,
          0.27823488464423635,
          0.276846073872744,
          0.27546419535693023,
          0.27408921449440704,
          0.27272109685550494,
          0.27135980818240985,
          0.2700053143883061,
          0.2686575815565223,
          0.2673165759396822,
          0.26598226395886015,
          0.26465461220273945,
          0.26333358742677637,
          0.26201915655236735,
          0.26071128666602106,
          0.25940994501853365,
          0.2581150990241696,
          0.25682671625984466,
          0.25554476446431507,
          0.254269211537369,
          0.2530000255390227,
          0.2517371746887216,
          0.2504806273645434,
          0.24923035210240724,
          0.24798631759528486,
          0.24674849269241766,
          0.24551684639853583,
          0.24429134787308288,
          0.2430719664294429,
          0.2418586715341724,
          0.24065143280623597,
          0.23945022001624483,
          0.23825500308570088,
          0.23706575208624248,
          0.2358824372388959,
          0.23470502891332914,
          0.2335334976271103,
          0.2323678140449688,
          0.23120794897806185,
          0.23005387338324224,
          0.22890555836233212,
          0.2277629751613991,
          0.22662609517003585,
          0.22549488992064448,
          0.22436933108772278,
          0.22324939048715592,
          0.2221350400755096,
          0.22102625194932918,
          0.21992299834443954,
          0.21882525163525118,
          0.21773298433406746,
          0.2166461690903967,
          0.21556477869026774,
          0.21448878605554766,
          0.2134181642432644,
          0.21235288644493172,
          0.2112929259858783,
          0.21023825632457926,
          0.2091888510519922,
          0.20814468389089535,
          0.20710572869522978,
          0.20607195944944504,
          0.20504335026784704,
          0.20401987539395067,
          0.20300150919983398,
          0.20198822618549744,
          0.2009800009782243,
          0.19997680833194642,
          0.19897862312661108,
          0.1979854203675528,
          0.19699717518486676,
          0.19601386283278652,
          0.19503545868906438,
          0.19406193825435447,
          0.19309327715159982,
          0.19212945112542132,
          0.19117043604151102,
          0.1902162078860271,
          0.1892667427649935,
          0.1883220169037006,
          0.18738200664611035,
          0.1864466884542643,
          0.18551603890769344,
          0.18459003470283247,
          0.18366865265243562,
          0.18275186968499674,
          0.1818396628441708,
          0.1809320092881999,
          0.18002888628934052,
          0.17913027123329506,
          0.17823614161864515,
          0.17734647505628826,
          0.17646124926887743,
          0.175580442090263,
          0.17470403146493788,
          0.17383199544748493,
          0.172964312202028,
          0.17210096000168443,
          0.1712419172280218,
          0.17038716237051582,
          0.16953667402601247,
          0.16869043089819136,
          0.1678484117970328,
          0.1670105956382875,
          0.1661769614429479,
          0.16534748833672364,
          0.16452215554951807,
          0.163700942414909,
          0.16288382836963045,
          0.1620707929530583,
          0.1612618158066976,
          0.16045687667367292,
          0.15965595539822133,
          0.15885903192518716,
          0.15806608629952046,
          0.15727709866577677,
          0.15649204926762036,
          0.15571091844732918,
          0.15493368664530296,
          0.15416033439957308,
          0.1533908423453157,
          0.1526251912143663,
          0.15186336183473756,
          0.15110533513013946,
          0.15035109211950107,
          0.14960061391649584,
          0.1488538817290681,
          0.14811087685896315,
          0.14737158070125844,
          0.1466359747438982,
          0.14590404056722944,
          0.14517575984354128,
          0.14445111433660535,
          0.14373008590121972,
          0.14301265648275427,
          0.14229880811669857,
          0.14158852292821236,
          0.14088178313167743,
          0.14017857103025283,
          0.13947886901543127,
          0.13878265956659863,
          0.13808992525059482,
          0.13740064872127744,
          0.1367148127190877,
          0.13603240007061768,
          0.13535339368818086,
          0.13467777656938376,
          0.13400553179670063,
          0.13333664253704947,
          0.13267109204137081,
          0.1320088636442081,
          0.13134994076329062,
          0.130694306899118,
          0.13004194563454727,
          0.12939284063438167,
          0.1287469756449617,
          0.12810433449375813,
          0.1274649010889668,
          0.12682865941910612,
          0.12619559355261564,
          0.12556568763745757,
          0.12493892590071953,
          0.12431529264821972,
          0.12369477226411399,
          0.12307734921050464,
          0.12246300802705162,
          0.12185173333058505,
          0.12124350981472039,
          0.12063832224947485,
          0.12003615548088635,
          0.11943699443063363,
          0.11884082409565924,
          0.11824762954779333,
          0.11765739593338014,
          0.1170701084729061,
          0.11648575246062949,
          0.11590431326421258,
          0.1153257763243548,
          0.11475012715442862,
          0.11417735134011633,
          0.11360743453904965,
          0.11304036248045,
          0.11247612096477173,
          0.11191469586334613,
          0.11135607311802775,
          0.11080023874084269,
          0.1102471788136378,
          0.1096968794877327,
          0.10914932698357258,
          0.10860450759038348,
          0.10806240766582872,
          0.10752301363566752,
          0.10698631199341496,
          0.1064522893000037,
          0.10592093218344768,
          0.10539222733850716,
          0.10486616152635558,
          0.10434272157424793,
          0.1038218943751912,
          0.10330366688761583,
          0.10278802613504949,
          0.1022749592057918,
          0.10176445325259133,
          0.10125649549232368,
          0.10075107320567148,
          0.10024817373680599,
          0.09974778449306997,
          0.0992498929446626,
          0.09875448662432555,
          0.09826155312703094,
          0.09777108010967053,
          0.09728305529074692,
          0.09679746645006569,
          0.09631430142842975,
          0.09583354812733458,
          0.0953551945086654,
          0.09487922859439589,
          0.09440563846628788,
          0.09393441226559338,
          0.09346553819275717,
          0.09299900450712176,
          0.09253479952663307,
          0.09207291162754816,
          0.09161332924414396,
          0.0911560408684278,
          0.09070103504984925,
          0.09024830039501328,
          0.08979782556739517,
          0.08934959928705635,
          0.08890361033036229,
          0.08845984752970112,
          0.08801829977320433,
          0.08757895600446819,
          0.0871418052222772,
          0.0867068364803284,
          0.08627403888695732,
          0.08584340160486545,
          0.08541491385084848,
          0.08498856489552674,
          0.08456434406307611,
          0.08414224073096108,
          0.0837222443296684,
          0.08330434434244281,
          0.08288853030502327,
          0.08247479180538123,
          0.0820631184834599,
          0.08165350003091465,
          0.0812459261908551,
          0.08084038675758812,
          0.08043687157636241,
          0.08003537054311406,
          0.07963587360421379,
          0.07923837075621487,
          0.07884285204560303,
          0.07844930756854686,
          0.07805772747064998,
          0.07766810194670443,
          0.0772804212404448,
          0.07689467564430426,
          0.07651085549917125,
          0.07612895119414782,
          0.07574895316630872,
          0.07537085190046228,
          0.07499463792891173,
          0.07462030183121858,
          0.07424783423396633,
          0.07387722581052597,
          0.07350846728082253,
          0.07314154941110236,
          0.07277646301370237,
          0.07241319894681954,
          0.07205174811428233,
          0.07169210146532272,
          0.07133424999434967,
          0.07097818474072361,
          0.07062389678853195,
          0.07027137726636606,
          0.06992061734709887,
          0.06957160824766406,
          0.06922434122883589,
          0.06887880759501071,
          0.06853499869398877,
          0.06819290591675806,
          0.06785252069727829,
          0.06751383451226677,
          0.06717683888098469,
          0.06684152536502494,
          0.0665078855681008,
          0.06617591113583554,
          0.06584559375555352,
          0.06551692515607165,
          0.06518989710749268,
          0.06486450142099877,
          0.06454072994864678,
          0.06421857458316389,
          0.06389802725774488,
          0.06357907994585,
          0.06326172466100399,
          0.06294595345659619,
          0.06263175842568139,
          0.06231913170078201,
          0.06200806545369095,
          0.061698551895275754,
          0.061390583275283336,
          0.06108415188214612,
          0.06077925004278885,
          0.06047587012243637,
          0.060174004524422675,
          0.05987364569000044,
          0.05957478609815198,
          0.059277418265400686,
          0.058981534745623856,
          0.05868712812986607,
          0.0583941910461538,
          0.05810271615931071,
          0.05781269617077411,
          0.05752412381841203,
          0.057236991876341514,
          0.056951293154747645,
          0.05666702049970346,
          0.05638416679299092,
          0.05610272495192253,
          0.055822687929164144,
          0.05554404871255834,
          0.05526680032494898,
          0.05499093582400641,
          0.05471644830205359,
          0.05444333088589327,
          0.05417157673663581,
          0.053901179049527834,
          0.053632131053781965,
          0.0533644260124072,
          0.05309805722204041,
          0.05283301801277817,
          0.05256930174800997,
          0.05230690182425199,
          0.05204581167098164,
          0.051786024750473336,
          0.051527534557634355,
          0.051270334619842296,
          0.051014418496782794,
          0.05075977978028852,
          0.05050641209417836,
          0.050254309094098025,
          0.050003464467361036,
          0.04975387193279084,
          0.049505525240563314,
          0.04925841817205037,
          0.04901254453966426,
          0.04876789818670254,
          0.04852447298719411,
          0.04828226284574558,
          0.04804126169738876,
          0.04780146350742874,
          0.04756286227129297,
          0.047325452014380605,
          0.04708922679191308,
          0.04685418068878526,
          0.0466203078194172,
          0.04638760232760701,
          0.046156058386383925,
          0.045925670197862575,
          0.04569643199309772,
          0.04546833803193996,
          0.045241382602891775,
          0.04501556002296462,
          0.044790864637536634,
          0.044567290820211,
          0.04434483297267518,
          0.04412348552456053,
          0.04390324293330299,
          0.04368409968400418,
          0.04346605028929345,
          0.043249089289190315,
          0.04303321125096784,
          0.04281841076901651,
          0.04260468246470908,
          0.042392020986265606,
          0.042180421008619635,
          0.04196987723328481,
          0.04176038438822215,
          0.041551937227708204,
          0.04134453053220345,
          0.04113815910822176,
          0.040932817788200286,
          0.04072850143037022,
          0.04052520491862778,
          0.04032292316240629,
          0.04012165109654867,
          0.039921383681180554,
          0.039722115901584226,
          0.03952384276807288,
          0.03932655931586576,
          0.039130260604963836,
          0.03893494172002617,
          0.038740597770246715,
          0.038547223889231895,
          0.0383548152348788,
          0.03816336698925384,
          0.03797287435847228,
          0.03778333257257797,
          0.03759473688542406,
          0.03740708257455408,
          0.037220364941083835,
          0.03703457930958352,
          0.03684972102796079,
          0.036665785467344225,
          0.03648276802196752,
          0.03630066410905399,
          0.03611946916870193,
          0.035939178663770416,
          0.03575978807976562,
          0.03558129292472796,
          0.0354036887291194,
          0.035226971045711625,
          0.035051135449474684,
          0.03487617753746625,
          0.034702092928721236,
          0.034528877264142166,
          0.03435652620639005,
          0.03418503543977569,
          0.03401440067015179,
          0.033844617624805194,
          0.033675682052350046,
          0.0335075897226213,
          0.03334033642656887,
          0.03317391797615206,
          0.03300833020423487,
          0.03284356896448152,
          0.03267963013125272,
          0.03251650959950236,
          0.03235420328467466,
          0.03219270712260189,
          0.03203201706940263,
          0.03187212910138061,
          0.03171303921492376,
          0.03155474342640408,
          0.03139723777207787,
          0.031240518307986513,
          0.031084581109857644,
          0.03092942227300693,
          0.03077503791224028,
          0.030621424161756554,
          0.03046857717505086,
          0.030316493124818055,
          0.030165168202857057,
          0.030014598619975397,
          0.029864780605894467,
          0.02971571040915494,
          0.02956738429702293,
          0.029419798555396528,
          0.029272949488712764,
          0.02912683341985513,
          0.02898144669006143,
          0.028836785658832187,
          0.028692846703839495,
          0.028549626220836368,
          0.028407120623566373,
          0.02826532634367393,
          0.028124239830614906,
          0.027983857551567695,
          0.027844175991344887,
          0.027705191652305047,
          0.027566901054265285,
          0.027429300734414006,
          0.027292387247224353,
          0.027156157164367752,
          0.027020607074628167,
          0.02688573358381665,
          0.026751533314686424,
          0.02661800290684819,
          0.02648513901668607,
          0.026352938317273866,
          0.026221397498291717,
          0.02609051326594332,
          0.025960282342873293,
          0.02583070146808521,
          0.025701767396859913,
          0.02557347690067434,
          0.02544582676712053,
          0.025318813799825333,
          0.02519243481837028,
          0.025066686658211965,
          0.02494156617060288,
          0.02481707022251244,
          0.02469319569654862,
          0.024569939490879846,
          0.024447298519157418,
          0.024325269710438108,
          0.02420385000910732,
          0.024083036374802583,
          0.02396282578233739,
          0.02384321522162551,
          0.02372420169760554,
          0.02360578223016594,
          0.02348795385407041,
          0.02337071361888367,
          0.02325405858889753,
          0.023137985843057388,
          0.023022492474889116,
          0.022907575592426253,
          0.022793232318137655,
          0.022679459788855317,
          0.02256625515570279,
          0.022453615584023777,
          0.022341538253311238,
          0.022230020357136653,
          0.022119059103079822,
          0.0220086517126589,
          0.021898795421260924,
          0.02178948747807242,
          0.021680725146010667,
          0.021572505701655073,
          0.02146482643517902,
          0.021357684650282045,
          0.021251077664122233,
          0.0211450028072491,
          0.02103945742353672,
          0.02093443887011729,
          0.02082994451731484,
          0.020725971748579458,
          0.020622517960421746,
          0.02051958056234763,
          0.02041715697679354,
          0.020315244639061793,
          0.0202138409972564
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Exponentialverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          5
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "l = 1\n",
    "x = np.linspace(0.001, 5, NN)\n",
    "y = stats.expon.pdf(x, scale=1/l)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={l}\"}))\n",
    "\n",
    "l = 2\n",
    "y = stats.expon.pdf(x, scale=1/l)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={l}\"}))\n",
    "\n",
    "l = 3\n",
    "y = stats.expon.pdf(x, scale=1/l)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={l}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", range_x=[0,5], labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Exponentialverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d8cb176b-6a3b-45ff-9fef-a0a84683e1f9",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Pareto-Verteilung\n",
    "\n",
    "Die Pareto-Verteilung, benannt nach Vilfredo Pareto, gleicht im ersten Eindruck der Exponentialverteilung. Sie wird oft verwendet, um Phänomene zu modellieren, bei denen eine kleine Anzahl von Elementen einen Großteil der Gesamtwerte ausmacht. Sie wird häufig in wirtschaftlichen und sozialen Studien verwendet, um die Verteilung von Einkommen, Vermögenswerten oder anderen Ressourcen zu beschreiben. (z.B. das 20/80-Prinzip: 20% der Arbeit führen zu 80% der Ergebnisse)."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b279d5bd-d8eb-485a-8089-262c39921d9c",
   "metadata": {
    "editable": true,
    "jp-MarkdownHeadingCollapsed": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Wahrscheinlichkeitsdichte der Pareto-Verteilung basiert nicht auf der Exponentialverteilung sondern ist proportional zu $1/x^k$. Sie wird bestimmt durch den Offset $x_{\\min}>0$ und der Steigung $k>0$.\n",
    "\n",
    "$$\n",
    "f(x)=\n",
    "    \\begin{cases}\\displaystyle\n",
    "        \\frac{k x_{\\min}^k}{x^{k+1}} & x\\geq x_{\\min}, \\\\\n",
    "        0                            & x<x_{\\min}.\n",
    "    \\end{cases}\n",
    "$$\n",
    "\n",
    "Die Verteilung sieht erstmal der Exponentialverteilung ähnlich, hat aber eine andere, flexiblere Form, die durch die zwei Parameter bestimmt ist. Sie liegt meist vor bei Werten, bei denen einige wenige Elemente einen Großteil der Gesamtwerte ausmachen."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "id": "e4998732-5126-4b1b-848b-d57cf9e9cce0",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>x<sub>min</sub></i>=0.2; <i>λ</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>x<sub>min</sub></i>=0.2; <i>λ</i>=1",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>x<sub>min</sub></i>=0.2; <i>λ</i>=1",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.201,
          0.211009009009009,
          0.22101801801801804,
          0.23102702702702704,
          0.24103603603603604,
          0.25104504504504505,
          0.2610540540540541,
          0.27106306306306305,
          0.2810720720720721,
          0.2910810810810811,
          0.30109009009009013,
          0.3110990990990991,
          0.32110810810810814,
          0.3311171171171171,
          0.34112612612612614,
          0.35113513513513517,
          0.3611441441441442,
          0.37115315315315317,
          0.3811621621621622,
          0.3911711711711712,
          0.4011801801801802,
          0.41118918918918923,
          0.42119819819819826,
          0.43120720720720723,
          0.44121621621621626,
          0.45122522522522523,
          0.46123423423423426,
          0.4712432432432433,
          0.48125225225225227,
          0.4912612612612613,
          0.5012702702702703,
          0.5112792792792793,
          0.5212882882882883,
          0.5312972972972974,
          0.5413063063063064,
          0.5513153153153154,
          0.5613243243243244,
          0.5713333333333334,
          0.5813423423423424,
          0.5913513513513514,
          0.6013603603603603,
          0.6113693693693694,
          0.6213783783783784,
          0.6313873873873874,
          0.6413963963963965,
          0.6514054054054055,
          0.6614144144144145,
          0.6714234234234235,
          0.6814324324324326,
          0.6914414414414415,
          0.7014504504504504,
          0.7114594594594594,
          0.7214684684684685,
          0.7314774774774775,
          0.7414864864864865,
          0.7514954954954955,
          0.7615045045045046,
          0.7715135135135136,
          0.7815225225225226,
          0.7915315315315317,
          0.8015405405405407,
          0.8115495495495497,
          0.8215585585585585,
          0.8315675675675676,
          0.8415765765765766,
          0.8515855855855856,
          0.8615945945945946,
          0.8716036036036037,
          0.8816126126126127,
          0.8916216216216217,
          0.9016306306306308,
          0.9116396396396398,
          0.9216486486486488,
          0.9316576576576576,
          0.9416666666666667,
          0.9516756756756757,
          0.9616846846846847,
          0.9716936936936937,
          0.9817027027027028,
          0.9917117117117118,
          1.0017207207207208,
          1.0117297297297299,
          1.0217387387387389,
          1.031747747747748,
          1.041756756756757,
          1.0517657657657657,
          1.0617747747747748,
          1.0717837837837838,
          1.0817927927927928,
          1.0918018018018019,
          1.101810810810811,
          1.11181981981982,
          1.121828828828829,
          1.131837837837838,
          1.141846846846847,
          1.151855855855856,
          1.161864864864865,
          1.1718738738738739,
          1.181882882882883,
          1.191891891891892,
          1.2019009009009007,
          1.2119099099099098,
          1.2219189189189188,
          1.2319279279279278,
          1.2419369369369369,
          1.2519459459459459,
          1.261954954954955,
          1.271963963963964,
          1.281972972972973,
          1.291981981981982,
          1.301990990990991,
          1.3119999999999998,
          1.3220090090090089,
          1.332018018018018,
          1.342027027027027,
          1.352036036036036,
          1.362045045045045,
          1.372054054054054,
          1.382063063063063,
          1.392072072072072,
          1.402081081081081,
          1.4120900900900901,
          1.4220990990990992,
          1.432108108108108,
          1.442117117117117,
          1.452126126126126,
          1.462135135135135,
          1.472144144144144,
          1.482153153153153,
          1.4921621621621621,
          1.5021711711711712,
          1.5121801801801802,
          1.5221891891891892,
          1.5321981981981982,
          1.542207207207207,
          1.552216216216216,
          1.5622252252252251,
          1.5722342342342341,
          1.5822432432432432,
          1.5922522522522522,
          1.6022612612612612,
          1.6122702702702703,
          1.6222792792792793,
          1.6322882882882883,
          1.6422972972972973,
          1.6523063063063064,
          1.6623153153153152,
          1.6723243243243242,
          1.6823333333333332,
          1.6923423423423423,
          1.7023513513513513,
          1.7123603603603603,
          1.7223693693693694,
          1.7323783783783784,
          1.7423873873873874,
          1.7523963963963964,
          1.7624054054054055,
          1.7724144144144145,
          1.7824234234234233,
          1.7924324324324323,
          1.8024414414414414,
          1.8124504504504504,
          1.8224594594594594,
          1.8324684684684684,
          1.8424774774774775,
          1.8524864864864865,
          1.8624954954954955,
          1.8725045045045046,
          1.8825135135135136,
          1.8925225225225224,
          1.9025315315315314,
          1.9125405405405405,
          1.9225495495495495,
          1.9325585585585585,
          1.9425675675675675,
          1.9525765765765766,
          1.9625855855855856,
          1.9725945945945946,
          1.9826036036036037,
          1.9926126126126127,
          2.0026216216216217,
          2.0126306306306305,
          2.0226396396396398,
          2.0326486486486486,
          2.042657657657658,
          2.0526666666666666,
          2.062675675675676,
          2.0726846846846847,
          2.082693693693694,
          2.0927027027027028,
          2.102711711711712,
          2.112720720720721,
          2.12272972972973,
          2.132738738738739,
          2.1427477477477477,
          2.152756756756757,
          2.1627657657657657,
          2.172774774774775,
          2.182783783783784,
          2.192792792792793,
          2.202801801801802,
          2.212810810810811,
          2.22281981981982,
          2.232828828828829,
          2.242837837837838,
          2.252846846846847,
          2.262855855855856,
          2.2728648648648653,
          2.282873873873874,
          2.2928828828828833,
          2.302891891891892,
          2.312900900900901,
          2.32290990990991,
          2.332918918918919,
          2.3429279279279283,
          2.352936936936937,
          2.3629459459459463,
          2.372954954954955,
          2.3829639639639644,
          2.392972972972973,
          2.4029819819819824,
          2.4129909909909912,
          2.423,
          2.4330090090090093,
          2.443018018018018,
          2.4530270270270274,
          2.463036036036036,
          2.4730450450450454,
          2.483054054054054,
          2.4930630630630635,
          2.5030720720720723,
          2.5130810810810815,
          2.5230900900900903,
          2.533099099099099,
          2.5431081081081084,
          2.553117117117117,
          2.5631261261261264,
          2.5731351351351353,
          2.5831441441441445,
          2.5931531531531533,
          2.6031621621621626,
          2.6131711711711714,
          2.6231801801801806,
          2.6331891891891894,
          2.6431981981981987,
          2.6532072072072075,
          2.6632162162162163,
          2.6732252252252255,
          2.6832342342342343,
          2.6932432432432436,
          2.7032522522522524,
          2.7132612612612617,
          2.7232702702702705,
          2.7332792792792797,
          2.7432882882882885,
          2.7532972972972978,
          2.7633063063063066,
          2.7733153153153154,
          2.7833243243243246,
          2.7933333333333334,
          2.8033423423423427,
          2.8133513513513515,
          2.8233603603603608,
          2.8333693693693696,
          2.843378378378379,
          2.8533873873873876,
          2.863396396396397,
          2.8734054054054057,
          2.8834144144144145,
          2.8934234234234237,
          2.9034324324324325,
          2.913441441441442,
          2.9234504504504506,
          2.93345945945946,
          2.9434684684684687,
          2.953477477477478,
          2.9634864864864867,
          2.973495495495496,
          2.9835045045045048,
          2.993513513513514,
          3.003522522522523,
          3.0135315315315316,
          3.023540540540541,
          3.0335495495495497,
          3.043558558558559,
          3.0535675675675678,
          3.063576576576577,
          3.073585585585586,
          3.083594594594595,
          3.093603603603604,
          3.103612612612613,
          3.113621621621622,
          3.1236306306306307,
          3.13363963963964,
          3.143648648648649,
          3.153657657657658,
          3.163666666666667,
          3.173675675675676,
          3.183684684684685,
          3.193693693693694,
          3.203702702702703,
          3.213711711711712,
          3.223720720720721,
          3.23372972972973,
          3.243738738738739,
          3.253747747747748,
          3.263756756756757,
          3.273765765765766,
          3.283774774774775,
          3.293783783783784,
          3.3037927927927933,
          3.313801801801802,
          3.3238108108108113,
          3.33381981981982,
          3.3438288288288294,
          3.353837837837838,
          3.363846846846847,
          3.3738558558558562,
          3.383864864864865,
          3.3938738738738743,
          3.403882882882883,
          3.4138918918918923,
          3.423900900900901,
          3.4339099099099104,
          3.443918918918919,
          3.4539279279279285,
          3.4639369369369373,
          3.473945945945946,
          3.4839549549549553,
          3.493963963963964,
          3.5039729729729734,
          3.513981981981982,
          3.5239909909909914,
          3.5340000000000003,
          3.5440090090090095,
          3.5540180180180183,
          3.5640270270270276,
          3.5740360360360364,
          3.584045045045045,
          3.5940540540540544,
          3.6040630630630632,
          3.6140720720720725,
          3.6240810810810813,
          3.6340900900900905,
          3.6440990990990993,
          3.6541081081081086,
          3.6641171171171174,
          3.6741261261261267,
          3.6841351351351355,
          3.6941441441441447,
          3.7041531531531535,
          3.7141621621621623,
          3.7241711711711716,
          3.7341801801801804,
          3.7441891891891896,
          3.7541981981981984,
          3.7642072072072077,
          3.7742162162162165,
          3.7842252252252258,
          3.7942342342342346,
          3.804243243243244,
          3.8142522522522526,
          3.8242612612612614,
          3.8342702702702707,
          3.8442792792792795,
          3.8542882882882887,
          3.8642972972972975,
          3.874306306306307,
          3.8843153153153156,
          3.894324324324325,
          3.9043333333333337,
          3.914342342342343,
          3.9243513513513517,
          3.9343603603603605,
          3.9443693693693698,
          3.9543783783783786,
          3.964387387387388,
          3.9743963963963966,
          3.984405405405406,
          3.9944144144144147,
          4.0044234234234235,
          4.014432432432432,
          4.024441441441442,
          4.034450450450451,
          4.04445945945946,
          4.054468468468468,
          4.064477477477477,
          4.074486486486487,
          4.084495495495496,
          4.0945045045045045,
          4.104513513513513,
          4.114522522522523,
          4.124531531531532,
          4.134540540540541,
          4.1445495495495495,
          4.154558558558559,
          4.164567567567568,
          4.174576576576577,
          4.184585585585586,
          4.194594594594594,
          4.204603603603604,
          4.214612612612614,
          4.224621621621623,
          4.234630630630631,
          4.24463963963964,
          4.25464864864865,
          4.264657657657659,
          4.2746666666666675,
          4.284675675675676,
          4.294684684684685,
          4.304693693693695,
          4.314702702702704,
          4.324711711711712,
          4.334720720720721,
          4.344729729729731,
          4.35473873873874,
          4.3647477477477485,
          4.374756756756757,
          4.384765765765767,
          4.394774774774776,
          4.404783783783785,
          4.4147927927927935,
          4.424801801801802,
          4.434810810810812,
          4.444819819819821,
          4.45482882882883,
          4.464837837837838,
          4.474846846846848,
          4.484855855855857,
          4.494864864864866,
          4.5048738738738745,
          4.514882882882883,
          4.524891891891893,
          4.534900900900902,
          4.544909909909911,
          4.554918918918919,
          4.564927927927929,
          4.574936936936938,
          4.584945945945947,
          4.5949549549549555,
          4.604963963963965,
          4.614972972972974,
          4.624981981981983,
          4.634990990990992,
          4.6450000000000005,
          4.65500900900901,
          4.665018018018019,
          4.675027027027028,
          4.685036036036037,
          4.695045045045046,
          4.705054054054055,
          4.715063063063064,
          4.725072072072073,
          4.735081081081082,
          4.745090090090091,
          4.7550990990991,
          4.765108108108109,
          4.775117117117118,
          4.785126126126127,
          4.795135135135136,
          4.805144144144145,
          4.815153153153154,
          4.825162162162163,
          4.835171171171172,
          4.845180180180181,
          4.85518918918919,
          4.865198198198199,
          4.875207207207208,
          4.885216216216217,
          4.895225225225226,
          4.905234234234235,
          4.9152432432432445,
          4.925252252252253,
          4.935261261261262,
          4.945270270270271,
          4.955279279279281,
          4.965288288288289,
          4.975297297297298,
          4.985306306306307,
          4.995315315315316,
          5.0053243243243255,
          5.015333333333334,
          5.025342342342343,
          5.035351351351352,
          5.045360360360362,
          5.05536936936937,
          5.065378378378379,
          5.075387387387388,
          5.085396396396398,
          5.0954054054054065,
          5.105414414414415,
          5.115423423423424,
          5.125432432432433,
          5.135441441441443,
          5.1454504504504515,
          5.15545945945946,
          5.165468468468469,
          5.175477477477479,
          5.185486486486488,
          5.195495495495496,
          5.205504504504505,
          5.215513513513514,
          5.225522522522524,
          5.2355315315315325,
          5.245540540540541,
          5.25554954954955,
          5.26555855855856,
          5.275567567567569,
          5.285576576576577,
          5.295585585585586,
          5.305594594594596,
          5.315603603603605,
          5.3256126126126135,
          5.335621621621622,
          5.345630630630631,
          5.355639639639641,
          5.36564864864865,
          5.3756576576576585,
          5.385666666666667,
          5.395675675675677,
          5.405684684684686,
          5.415693693693695,
          5.425702702702703,
          5.435711711711713,
          5.445720720720722,
          5.455729729729731,
          5.4657387387387395,
          5.475747747747748,
          5.485756756756758,
          5.495765765765767,
          5.505774774774776,
          5.515783783783784,
          5.525792792792794,
          5.535801801801803,
          5.545810810810812,
          5.5558198198198205,
          5.565828828828829,
          5.575837837837839,
          5.585846846846848,
          5.595855855855857,
          5.6058648648648655,
          5.615873873873875,
          5.625882882882884,
          5.635891891891893,
          5.645900900900902,
          5.655909909909911,
          5.66591891891892,
          5.675927927927929,
          5.685936936936938,
          5.6959459459459465,
          5.705954954954956,
          5.715963963963965,
          5.725972972972974,
          5.735981981981983,
          5.745990990990992,
          5.756000000000001,
          5.76600900900901,
          5.776018018018019,
          5.786027027027028,
          5.796036036036037,
          5.806045045045046,
          5.816054054054055,
          5.826063063063064,
          5.836072072072073,
          5.846081081081082,
          5.856090090090091,
          5.8660990990991,
          5.8761081081081095,
          5.886117117117118,
          5.896126126126127,
          5.906135135135136,
          5.916144144144145,
          5.926153153153154,
          5.936162162162163,
          5.946171171171172,
          5.956180180180181,
          5.9661891891891905,
          5.976198198198199,
          5.986207207207208,
          5.996216216216217,
          6.006225225225227,
          6.016234234234235,
          6.026243243243244,
          6.036252252252253,
          6.046261261261262,
          6.0562702702702715,
          6.06627927927928,
          6.076288288288289,
          6.086297297297298,
          6.096306306306308,
          6.1063153153153165,
          6.116324324324325,
          6.126333333333334,
          6.136342342342344,
          6.146351351351353,
          6.156360360360361,
          6.16636936936937,
          6.176378378378379,
          6.186387387387389,
          6.1963963963963975,
          6.206405405405406,
          6.216414414414415,
          6.226423423423425,
          6.236432432432434,
          6.246441441441442,
          6.256450450450451,
          6.26645945945946,
          6.27646846846847,
          6.2864774774774785,
          6.296486486486487,
          6.306495495495496,
          6.316504504504506,
          6.326513513513515,
          6.3365225225225235,
          6.346531531531532,
          6.356540540540542,
          6.366549549549551,
          6.37655855855856,
          6.386567567567568,
          6.396576576576577,
          6.406585585585587,
          6.416594594594596,
          6.4266036036036045,
          6.436612612612613,
          6.446621621621623,
          6.456630630630632,
          6.466639639639641,
          6.476648648648649,
          6.486657657657659,
          6.496666666666668,
          6.506675675675677,
          6.5166846846846855,
          6.526693693693694,
          6.536702702702704,
          6.546711711711713,
          6.556720720720722,
          6.5667297297297305,
          6.57673873873874,
          6.586747747747749,
          6.596756756756758,
          6.606765765765767,
          6.616774774774775,
          6.626783783783785,
          6.636792792792794,
          6.646801801801803,
          6.6568108108108115,
          6.666819819819821,
          6.67682882882883,
          6.686837837837839,
          6.696846846846848,
          6.706855855855857,
          6.716864864864866,
          6.726873873873875,
          6.736882882882884,
          6.7468918918918925,
          6.756900900900902,
          6.766909909909911,
          6.77691891891892,
          6.786927927927929,
          6.796936936936938,
          6.806945945945947,
          6.816954954954956,
          6.826963963963965,
          6.8369729729729745,
          6.846981981981983,
          6.856990990990992,
          6.867000000000001,
          6.87700900900901,
          6.887018018018019,
          6.897027027027028,
          6.907036036036037,
          6.917045045045046,
          6.9270540540540555,
          6.937063063063064,
          6.947072072072073,
          6.957081081081082,
          6.967090090090091,
          6.9770990990991,
          6.987108108108109,
          6.997117117117118,
          7.007126126126127,
          7.0171351351351365,
          7.027144144144145,
          7.037153153153154,
          7.047162162162163,
          7.057171171171173,
          7.0671801801801815,
          7.07718918918919,
          7.087198198198199,
          7.097207207207208,
          7.107216216216218,
          7.117225225225226,
          7.127234234234235,
          7.137243243243244,
          7.147252252252254,
          7.1572612612612625,
          7.167270270270271,
          7.17727927927928,
          7.18728828828829,
          7.197297297297299,
          7.207306306306307,
          7.217315315315316,
          7.227324324324325,
          7.237333333333335,
          7.2473423423423435,
          7.257351351351352,
          7.267360360360361,
          7.277369369369371,
          7.28737837837838,
          7.2973873873873885,
          7.307396396396397,
          7.317405405405406,
          7.327414414414416,
          7.337423423423425,
          7.347432432432433,
          7.357441441441442,
          7.367450450450452,
          7.377459459459461,
          7.3874684684684695,
          7.397477477477478,
          7.407486486486488,
          7.417495495495497,
          7.427504504504506,
          7.437513513513514,
          7.447522522522523,
          7.457531531531533,
          7.467540540540542,
          7.4775495495495505,
          7.487558558558559,
          7.497567567567569,
          7.507576576576578,
          7.517585585585587,
          7.5275945945945955,
          7.537603603603605,
          7.547612612612614,
          7.557621621621623,
          7.567630630630632,
          7.57763963963964,
          7.58764864864865,
          7.597657657657659,
          7.607666666666668,
          7.6176756756756765,
          7.627684684684686,
          7.637693693693695,
          7.647702702702704,
          7.657711711711713,
          7.667720720720721,
          7.677729729729731,
          7.68773873873874,
          7.697747747747749,
          7.7077567567567575,
          7.717765765765767,
          7.727774774774776,
          7.737783783783785,
          7.747792792792794,
          7.757801801801803,
          7.767810810810812,
          7.777819819819821,
          7.78782882882883,
          7.797837837837839,
          7.807846846846848,
          7.817855855855857,
          7.827864864864866,
          7.837873873873875,
          7.847882882882884,
          7.857891891891893,
          7.867900900900902,
          7.877909909909911,
          7.8879189189189205,
          7.897927927927929,
          7.907936936936938,
          7.917945945945947,
          7.927954954954956,
          7.937963963963965,
          7.947972972972974,
          7.957981981981983,
          7.967990990990992,
          7.9780000000000015,
          7.98800900900901,
          7.998018018018019,
          8.008027027027028,
          8.018036036036037,
          8.028045045045046,
          8.038054054054054,
          8.048063063063063,
          8.058072072072072,
          8.068081081081083,
          8.078090090090091,
          8.0880990990991,
          8.098108108108109,
          8.108117117117118,
          8.118126126126127,
          8.128135135135135,
          8.138144144144144,
          8.148153153153153,
          8.158162162162164,
          8.168171171171172,
          8.178180180180181,
          8.18818918918919,
          8.198198198198199,
          8.208207207207206,
          8.218216216216216,
          8.228225225225225,
          8.238234234234234,
          8.248243243243243,
          8.258252252252252,
          8.26826126126126,
          8.27827027027027,
          8.288279279279278,
          8.298288288288287,
          8.308297297297297,
          8.318306306306306,
          8.328315315315315,
          8.338324324324324,
          8.348333333333333,
          8.358342342342342,
          8.36835135135135,
          8.37836036036036,
          8.388369369369368,
          8.398378378378379,
          8.408387387387387,
          8.418396396396396,
          8.428405405405405,
          8.438414414414414,
          8.448423423423423,
          8.458432432432431,
          8.46844144144144,
          8.478450450450449,
          8.48845945945946,
          8.498468468468468,
          8.508477477477477,
          8.518486486486486,
          8.528495495495495,
          8.538504504504504,
          8.548513513513512,
          8.558522522522521,
          8.568531531531532,
          8.57854054054054,
          8.58854954954955,
          8.598558558558558,
          8.608567567567567,
          8.618576576576576,
          8.628585585585585,
          8.638594594594593,
          8.648603603603602,
          8.658612612612613,
          8.668621621621622,
          8.67863063063063,
          8.68863963963964,
          8.698648648648648,
          8.708657657657657,
          8.718666666666666,
          8.728675675675674,
          8.738684684684683,
          8.748693693693694,
          8.758702702702703,
          8.768711711711711,
          8.77872072072072,
          8.788729729729729,
          8.798738738738738,
          8.808747747747747,
          8.818756756756756,
          8.828765765765764,
          8.838774774774775,
          8.848783783783784,
          8.858792792792793,
          8.868801801801801,
          8.87881081081081,
          8.888819819819819,
          8.898828828828828,
          8.908837837837837,
          8.918846846846847,
          8.928855855855856,
          8.938864864864865,
          8.948873873873874,
          8.958882882882882,
          8.968891891891891,
          8.9789009009009,
          8.988909909909909,
          8.998918918918918,
          9.008927927927928,
          9.018936936936937,
          9.028945945945946,
          9.038954954954955,
          9.048963963963963,
          9.058972972972972,
          9.068981981981981,
          9.07899099099099,
          9.088999999999999,
          9.09900900900901,
          9.109018018018018,
          9.119027027027027,
          9.129036036036036,
          9.139045045045044,
          9.149054054054053,
          9.159063063063062,
          9.16907207207207,
          9.17908108108108,
          9.18909009009009,
          9.199099099099099,
          9.209108108108108,
          9.219117117117117,
          9.229126126126125,
          9.239135135135134,
          9.249144144144143,
          9.259153153153152,
          9.269162162162162,
          9.279171171171171,
          9.28918018018018,
          9.299189189189189,
          9.309198198198198,
          9.319207207207207,
          9.329216216216215,
          9.339225225225224,
          9.349234234234233,
          9.359243243243244,
          9.369252252252252,
          9.379261261261261,
          9.38927027027027,
          9.399279279279279,
          9.409288288288288,
          9.419297297297296,
          9.429306306306305,
          9.439315315315314,
          9.449324324324325,
          9.459333333333333,
          9.469342342342342,
          9.479351351351351,
          9.48936036036036,
          9.499369369369369,
          9.509378378378377,
          9.519387387387386,
          9.529396396396395,
          9.539405405405406,
          9.549414414414414,
          9.559423423423423,
          9.569432432432432,
          9.57944144144144,
          9.58945045045045,
          9.599459459459458,
          9.609468468468467,
          9.619477477477478,
          9.629486486486487,
          9.639495495495495,
          9.649504504504504,
          9.659513513513513,
          9.669522522522522,
          9.67953153153153,
          9.68954054054054,
          9.699549549549548,
          9.709558558558559,
          9.719567567567568,
          9.729576576576576,
          9.739585585585585,
          9.749594594594594,
          9.759603603603603,
          9.769612612612612,
          9.77962162162162,
          9.78963063063063,
          9.79963963963964,
          9.809648648648649,
          9.819657657657658,
          9.829666666666666,
          9.839675675675675,
          9.849684684684684,
          9.859693693693693,
          9.869702702702702,
          9.87971171171171,
          9.889720720720721,
          9.89972972972973,
          9.909738738738739,
          9.919747747747747,
          9.929756756756756,
          9.939765765765765,
          9.949774774774774,
          9.959783783783783,
          9.969792792792793,
          9.979801801801802,
          9.98981081081081,
          9.99981981981982,
          10.009828828828828,
          10.019837837837837,
          10.029846846846846,
          10.039855855855855,
          10.049864864864864,
          10.059873873873874,
          10.069882882882883,
          10.079891891891892,
          10.0899009009009,
          10.09990990990991,
          10.109918918918918,
          10.119927927927927,
          10.129936936936936,
          10.139945945945945,
          10.149954954954955,
          10.159963963963964,
          10.169972972972973,
          10.179981981981982,
          10.18999099099099,
          10.2
         ],
         "xaxis": "x",
         "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,
          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.9962090110609936,
          0.97659905973553,
          0.9575624808766853,
          0.9390771374085265,
          0.9211219503841113,
          0.9036768388677078,
          0.8867226637644768,
          0.8702411753041409,
          0.8542149639094895,
          0.8386274142026674,
          0.8234626619222957,
          0.8087055535427775,
          0.7943416084038121,
          0.7803569831733596,
          0.766738438481163,
          0.7534733075726324,
          0.7405494668444768,
          0.7279553081340807,
          0.7156797126443385,
          0.7037120263945527,
          0.6920420370961737,
          0.6806599523596458,
          0.6695563791455023,
          0.6587223043791844,
          0.6481490766548662,
          0.6378283889589289,
          0.6277522623486518,
          0.6179130305262361,
          0.6083033252524671,
          0.5989160625481862,
          0.5897444296353187,
          0.5807818725725009,
          0.5720220845434008,
          0.5634589947586521,
          0.5550867579349331,
          0.5468997443171388,
          0.5388925302118465,
          0.5310598890023438,
          0.5233967826174296,
          0.5158983534279811,
          0.5085599165469498,
          0.5013769525099955,
          0.4943451003154035,
          0.4874601508032707,
          0.4807180403551909,
          0.4741148448968305,
          0.46764677418686657,
          0.4613101663767649,
          0.45510148282682145,
          0.4490173031647593,
          0.4430543205740003,
          0.4372093372994896,
          0.4314792603596695,
          0.42586109745386563,
          0.42035195305497375,
          0.41494902467792055,
          0.4096495993149193,
          0.40445105002905385,
          0.39935083269820476,
          0.39434648290178176,
          0.38943561294315004,
          0.38461590900103143,
          0.3798851284035362,
          0.3752410970188291,
          0.37068170675675993,
          0.36620491317609993,
          0.3618087331923111,
          0.3574912428810515,
          0.3532505753728728,
          0.3490849188348098,
          0.344992514534786,
          0.3409716549849761,
          0.33702068216046416,
          0.33313798578972903,
          0.32932200171366516,
          0.32557121031001723,
          0.3218841349802648,
          0.31825934069614437,
          0.3146954326031374,
          0.3111910546783873,
          0.30774488844063347,
          0.30435565170987205,
          0.3010220974145641,
          0.29774301244431994,
          0.29451721654608837,
          0.29134356126197597,
          0.28822092890691176,
          0.2851482315844577,
          0.28212441023914775,
          0.2791484337438134,
          0.27621929802042744,
          0.2733360251930674,
          0.27049766277166276,
          0.26770328286525574,
          0.2649519814235609,
          0.26224287750566766,
          0.2595751125747795,
          0.2569478498179372,
          0.25436027348971935,
          0.25181158827895844,
          0.24930101869755578,
          0.24682780849051728,
          0.24439122006637345,
          0.2419905339471806,
          0.23962504823734052,
          0.23729407811050315,
          0.2349969553138553,
          0.2327330276891224,
          0.23050165870964498,
          0.22830222703291403,
          0.2261341260679804,
          0.22399676355717332,
          0.22188956117159175,
          0.2198119541198522,
          0.21776339076959705,
          0.2157433322812936,
          0.21375125225386543,
          0.2117866363817252,
          0.2098489821227884,
          0.20793779837707055,
          0.20605260517548168,
          0.2041929333784525,
          0.20235832438403648,
          0.2005483298451503,
          0.1987625113956276,
          0.19700044038477113,
          0.1952616976201066,
          0.19354587311804658,
          0.1918525658621909,
          0.1901813835689943,
          0.18853194246054858,
          0.18690386704423112,
          0.18529678989898576,
          0.18371035146800696,
          0.18214419985761018,
          0.18059799064207838,
          0.17907138667428119,
          0.1775640579018748,
          0.17607568118889272,
          0.17460594014254988,
          0.1731545249450847,
          0.17172113219047427,
          0.17030546472585953,
          0.16890723149752876,
          0.16752614740130714,
          0.16616193313721175,
          0.1648143150682312,
          0.16348302508309834,
          0.16216780046292698,
          0.16086838375158816,
          0.159584522629708,
          0.15831596979217008,
          0.15706248282901356,
          0.1558238241096178,
          0.1545997606700719,
          0.1533900641036282,
          0.1521945104541448,
          0.15101288011242284,
          0.14984495771535042,
          0.14869053204776603,
          0.1475493959469573,
          0.14642134620971622,
          0.145306183501871,
          0.14420371227022097,
          0.14311374065680071,
          0.14203608041540441,
          0.14097054683030105,
          0.13991695863707698,
          0.13887513794554046,
          0.13784491016462827,
          0.13682610392925523,
          0.13581855102904816,
          0.13482208633891077,
          0.1338365477513643,
          0.13286177611061345,
          0.1318976151482863,
          0.1309439114208013,
          0.1300005142483129,
          0.1290672756551916,
          0.12814405031199375,
          0.1272306954788796,
          0.12632707095043716,
          0.12543303900187308,
          0.12454846433653197,
          0.12367321403470583,
          0.12280715750369883,
          0.12195016642911119,
          0.12110211472730915,
          0.12026287849904747,
          0.11943233598421324,
          0.1186103675176594,
          0.11779685548609903,
          0.1169916842860303,
          0.11619474028266497,
          0.11540591176983271,
          0.11462508893083466,
          0.11385216380022128,
          0.11308703022646875,
          0.1123295838355309,
          0.1115797219952421,
          0.1108373437805497,
          0.11010234993955281,
          0.10937464286032732,
          0.10865412653851514,
          0.10794070654565885,
          0.10723428999826143,
          0.10653478552755219,
          0.10584210324994116,
          0.10515615473814321,
          0.10447685299295542,
          0.10380411241567018,
          0.10313784878110836,
          0.10247797921125588,
          0.10182442214948936,
          0.10117709733537456,
          0.10053592578002445,
          0.09990082974200155,
          0.0992717327037518,
          0.09864855934855597,
          0.09803123553798593,
          0.09741968828985323,
          0.09681384575663748,
          0.09621363720438304,
          0.0956189929920519,
          0.09502984455132216,
          0.09444612436682047,
          0.09386776595677847,
          0.09329470385410227,
          0.09272687358784536,
          0.09216421166507505,
          0.09160665555312252,
          0.09105414366220813,
          0.09050661532843178,
          0.08996401079712071,
          0.08942627120652528,
          0.08889333857185512,
          0.088365155769647,
          0.08784166652245713,
          0.08732281538386957,
          0.08680854772381393,
          0.08629880971418473,
          0.08579354831475534,
          0.08529271125938,
          0.08479624704247647,
          0.08430410490578387,
          0.08381623482538812,
          0.08333258749900996,
          0.08285311433354849,
          0.08237776743287521,
          0.08190649958587225,
          0.08143926425470949,
          0.08097601556335501,
          0.08051670828631376,
          0.08006129783758907,
          0.07960974025986203,
          0.07916199221388401,
          0.0787180109680772,
          0.07827775438833902,
          0.07784118092804512,
          0.07740824961824747,
          0.07697892005806227,
          0.07655315240524437,
          0.0761309073669432,
          0.07571214619063701,
          0.07529683065524109,
          0.07488492306238606,
          0.07447638622786297,
          0.07407118347323101,
          0.07366927861758489,
          0.07327063596947789,
          0.07287522031899767,
          0.07248299692999113,
          0.07209393153243566,
          0.07170799031495291,
          0.07132513991746282,
          0.07094534742397442,
          0.07056858035551049,
          0.07019480666316368,
          0.06982399472128069,
          0.06945611332077246,
          0.06909113166254706,
          0.06872901935106335,
          0.06836974638800238,
          0.06801328316605441,
          0.06765960046281884,
          0.0673086694348151,
          0.06696046161160178,
          0.0666149488900021,
          0.06627210352843331,
          0.06593189814133804,
          0.06559430569371545,
          0.06525929949575,
          0.06492685319753626,
          0.06459694078389717,
          0.06426953656929464,
          0.0639446151928298,
          0.0636221516133318,
          0.06330212110453293,
          0.06298449925032841,
          0.0626692619401195,
          0.062356385364237564,
          0.062045846009448284,
          0.061737620654533844,
          0.06143168636595167,
          0.06112802049356849,
          0.06082660066646782,
          0.06052740478882982,
          0.06023041103588167,
          0.059935597849917525,
          0.059642943936386396,
          0.05935242826004672,
          0.05906403004118646,
          0.058777728751907045,
          0.058493504112470535,
          0.0582113360877082,
          0.057931204883489816,
          0.05765309094325204,
          0.057376974944585185,
          0.057102837795876916,
          0.056830660633012155,
          0.05656042481612758,
          0.05629211192642034,
          0.056025703763009416,
          0.05576118233984892,
          0.05549852988269236,
          0.05523772882610664,
          0.054978761810535244,
          0.05472161167940937,
          0.054466261476306434,
          0.05421269444215455,
          0.05396089401248275,
          0.05371084381471573,
          0.053462527665512204,
          0.053215929568146574,
          0.05297103370993232,
          0.0527278244596872,
          0.05248628636523882,
          0.05224640415097033,
          0.05200816271540505,
          0.05177154712882974,
          0.05153654263095552,
          0.05130313462861604,
          0.051071308693501745,
          0.05084105055993021,
          0.05061234612265142,
          0.05038518143468751,
          0.0501595427052065,
          0.049935416297429085,
          0.04971278872656828,
          0.04949164665780098,
          0.049271976904271236,
          0.0490537664251242,
          0.04883700232357073,
          0.048621671844981715,
          0.04840776237501188,
          0.04819526143775222,
          0.04798415669391091,
          0.04777443593902202,
          0.04756608710168151,
          0.04735909824181024,
          0.047153457548943116,
          0.046949153340544454,
          0.04674617406034864,
          0.04654450827672603,
          0.046344144681073236,
          0.04614507208622782,
          0.045947279424906666,
          0.045750755748167754,
          0.045555490223894955,
          0.045361472135305295,
          0.045168690879478536,
          0.04497713596590855,
          0.04478679701507617,
          0.04459766375704303,
          0.04440972603006629,
          0.04422297377923365,
          0.0440373970551185,
          0.04385298601245463,
          0.0436697309088305,
          0.043487622103402464,
          0.04330665005562673,
          0.04312680532400985,
          0.042948078564877194,
          0.04277046053115933,
          0.042593942071195955,
          0.04241851412755705,
          0.04224416773588092,
          0.042070894023729,
          0.04189868420945707,
          0.04172752960110257,
          0.04155742159528779,
          0.04138835167613867,
          0.041220311414219044,
          0.04105329246547987,
          0.04088728657022349,
          0.040722285552082314,
          0.04055828131701211,
          0.04039526585229931,
          0.040233231225582325,
          0.04007216958388656,
          0.039912073152672874,
          0.039752934234899395,
          0.03959474521009636,
          0.03943749853345382,
          0.03928118673492199,
          0.03912580241832407,
          0.038971338260481304,
          0.03881778701035019,
          0.038665141488171406,
          0.03851339458463055,
          0.03836253926003036,
          0.03821256854347428,
          0.03806347553206108,
          0.03791525339009057,
          0.03776789534828003,
          0.037621394702991376,
          0.03747574481546869,
          0.03733093911108612,
          0.0371869710786059,
          0.037043834269446435,
          0.03690152229696017,
          0.03676002883572112,
          0.036619347620822,
          0.03647947244718077,
          0.03634039716885638,
          0.0362021156983736,
          0.03606462200605693,
          0.03592791011937326,
          0.035791974122283264,
          0.035656808154601406,
          0.03552240641136427,
          0.03538876314220735,
          0.03525587265074993,
          0.03512372929398813,
          0.03499232748169578,
          0.03486166167583318,
          0.03473172638996364,
          0.03460251618867749,
          0.034474025687023686,
          0.034346249549948714,
          0.03421918249174281,
          0.03409281927549327,
          0.03396715471254497,
          0.03384218366196758,
          0.03371790103002988,
          0.03359430176968063,
          0.03347138088003626,
          0.0333491334058749,
          0.03322755443713708,
          0.033106639108432645,
          0.03298638259855397,
          0.03286678012999545,
          0.03274782696847888,
          0.03262951842248504,
          0.03251184984279105,
          0.03239481662201364,
          0.032278414194158125,
          0.03216263803417302,
          0.03204748365751029,
          0.0319329466196911,
          0.031819022515876906,
          0.031705706980445975,
          0.03159299568657515,
          0.0314808843458268,
          0.03136936870774092,
          0.03125844455943225,
          0.03114810772519231,
          0.03103835406609652,
          0.030929179479616008,
          0.030820579899234174,
          0.030712551294068094,
          0.030605089668494425,
          0.03049819106177995,
          0.030391851547716654,
          0.03028606723426116,
          0.030180834263178614,
          0.030076148809690898,
          0.029972007082129094,
          0.029868405321590102,
          0.029765339801597502,
          0.029662806827766404,
          0.029560802737472445,
          0.029459323899524624,
          0.02935836671384219,
          0.029257927611135316,
          0.029158003052589625,
          0.029058589529554504,
          0.028959683563235052,
          0.02886128170438777,
          0.02876338053301982,
          0.028665976658091903,
          0.02856906671722455,
          0.028472647376407992,
          0.028376715329715377,
          0.02828126729901944,
          0.028186300033712378,
          0.028091810310429153,
          0.027997794932773927,
          0.027904250731049768,
          0.027811174561991486,
          0.027718563308501545,
          0.02762641387938912,
          0.027534723209112114,
          0.027443488257522252,
          0.02735270600961302,
          0.027262373475270597,
          0.02717248768902764,
          0.027083045709819894,
          0.026994044620745627,
          0.026905481528827786,
          0.026817353564778913,
          0.02672965788276874,
          0.026642391660194477,
          0.026555552097453618,
          0.026469136417719457,
          0.026383141866719074,
          0.026297565712513904,
          0.026212405245282712,
          0.0261276577771071,
          0.026043320641759397,
          0.02595939119449295,
          0.025875866811834812,
          0.02579274489138066,
          0.025710022851592147,
          0.02562769813159642,
          0.025545768190987955,
          0.02546423050963254,
          0.02538308258747349,
          0.02530232194434002,
          0.025221946119757716,
          0.025141952672761137,
          0.02506233918170849,
          0.024983103244098342,
          0.024904242476388373,
          0.02482575451381613,
          0.024747637010221736,
          0.02466988763787256,
          0.024592504087289798,
          0.024515484067077025,
          0.02443882530375049,
          0.0243625255415714,
          0.024286582542379937,
          0.024210994085431148,
          0.024135757967232597,
          0.024060872001383755,
          0.02398633401841716,
          0.0239121418656413,
          0.023838293406985185,
          0.023764786522844587,
          0.02369161910992994,
          0.023618789081115893,
          0.023546294365292483,
          0.023474132907217848,
          0.023402302667372605,
          0.023330801621815705,
          0.023259627762041872,
          0.02318877909484058,
          0.02311825364215645,
          0.023048049440951218,
          0.022978164543067125,
          0.022908597015091774,
          0.02283934493822438,
          0.02277040640814348,
          0.022701779534876003,
          0.02263346244266776,
          0.022565453269855224,
          0.022497750168738746,
          0.022430351305457025,
          0.022363254859862937,
          0.022296459025400662,
          0.02222996200898404,
          0.022163762030876277,
          0.022097857324570827,
          0.02203224613667358,
          0.021966926726786205,
          0.021901897367390753,
          0.021837156343735432,
          0.02177270195372156,
          0.021708532507791704,
          0.021644646328818944,
          0.021581041751997286,
          0.021517717124733216,
          0.02145467080653835,
          0.021391901168923175,
          0.021329406595291908,
          0.021267185480838377,
          0.021205236232443046,
          0.021143557268570982,
          0.021082147019170952,
          0.021021003925575488,
          0.020960126440401988,
          0.020899513027454835,
          0.020839162161628445,
          0.020779072328811356,
          0.020719242025791264,
          0.02065966976016101,
          0.020600354050225488,
          0.020541293424909544,
          0.02048248642366674,
          0.02042393159638909,
          0.02036562750331762,
          0.020307572714953894,
          0.02024976581197239,
          0.020192205385133735,
          0.020134890035198836,
          0.020077818372843833,
          0.020020989018575904,
          0.019964400602649895,
          0.01990805176498582,
          0.019851941155087094,
          0.019796067431959635,
          0.01974042926403174,
          0.01968502532907475,
          0.019629854314124496,
          0.019574914915403505,
          0.01952020583824398,
          0.01946572579701151,
          0.01941147351502957,
          0.019357447724504706,
          0.019303647166452456,
          0.019250070590624037,
          0.019196716755433683,
          0.019143584427886724,
          0.01909067238350834,
          0.019037979406273026,
          0.018985504288534707,
          0.018933245830957582,
          0.018881202842447535,
          0.01882937414008432,
          0.018777758549054304,
          0.01872635490258393,
          0.018675162041873732,
          0.01862417881603307,
          0.01857340408201541,
          0.018522836704554294,
          0.018472475556099845,
          0.01842231951675593,
          0.01837236747421789,
          0.018322618323710883,
          0.018273070967928802,
          0.018223724316973746,
          0.018174577288296096,
          0.018125628806635142,
          0.01807687780396028,
          0.018028323219412726,
          0.017979963999247835,
          0.017931799096777896,
          0.01788382747231552,
          0.01783604809311753,
          0.017788459933329365,
          0.01774106197393002,
          0.017693853202677495,
          0.01764683261405477,
          0.01759999920921622,
          0.017553351995934604,
          0.017506889988548494,
          0.01746061220791023,
          0.017414517681334295,
          0.017368605442546228,
          0.017322874531631987,
          0.017277323994987753,
          0.017231952885270255,
          0.017186760261347467,
          0.01714174518824984,
          0.017096906737121914,
          0.017052243985174444,
          0.017007756015636866,
          0.0169634419177103,
          0.016919300786520895,
          0.01687533172307368,
          0.016831533834206738,
          0.01678790623254589,
          0.016744448036459723,
          0.016701158370015057,
          0.016658036362932827,
          0.016615081150544296,
          0.016572291873747758,
          0.01652966767896555,
          0.01648720771810151,
          0.016444911148498758,
          0.01640277713289792,
          0.016360804839395667,
          0.016318993441403667,
          0.016277342117607896,
          0.016235850051928274,
          0.01619451643347872,
          0.016153340456527523,
          0.016112321320458076,
          0.016071458229729954,
          0.016030750393840346,
          0.015990197027285824,
          0.015949797349524456,
          0.01590955058493823,
          0.01586945596279584,
          0.015829512717215784,
          0.015789720087129783,
          0.015750077316246548,
          0.01571058365301582,
          0.015671238350592757,
          0.015632040666802637,
          0.015592989864105858,
          0.015554085209563204,
          0.01551532597480153,
          0.015476711435979597,
          0.015438240873754318,
          0.015399913573247237,
          0.015361728824011336,
          0.015323685919998095,
          0.015285784159524862,
          0.015248022845242501,
          0.015210401284103298,
          0.015172918787329199,
          0.015135574670380241,
          0.01509836825292332,
          0.015061298858801201,
          0.015024365816001802,
          0.014987568456627734,
          0.014950906116866098,
          0.014914378136958563,
          0.014877983861171666,
          0.014841722637767412,
          0.014805593818974056,
          0.0147695967609572,
          0.014733730823791107,
          0.014697995371430253,
          0.014662389771681132,
          0.014626913396174298,
          0.014591565620336634,
          0.014556345823363862,
          0.014521253388193307,
          0.014486287701476837,
          0.01445144815355408,
          0.014416734138425844,
          0.01438214505372777,
          0.014347680300704197,
          0.014313339284182252,
          0.014279121412546142,
          0.01424502609771171,
          0.014211052755101117,
          0.01417720080361782,
          0.014143469665621713,
          0.014109858766904482,
          0.014076367536665173,
          0.014042995407485957,
          0.014009741815308093,
          0.013976606199408088,
          0.013943588002374089,
          0.013910686670082398,
          0.01387790165167425,
          0.013845232399532751,
          0.013812678369260006,
          0.013780239019654443,
          0.013747913812688322,
          0.013715702213485417,
          0.013683603690298892,
          0.013651617714489377,
          0.01361974376050317,
          0.013587981305850661,
          0.013556329831084927,
          0.013524788819780491,
          0.013493357758512249,
          0.013462036136834582,
          0.01343082344726064,
          0.013399719185241759,
          0.013368722849147113,
          0.01333783394024345,
          0.013307051962675042,
          0.013276376423443795,
          0.013245806832389502,
          0.01321534270217026,
          0.013184983548243049,
          0.013154728888844466,
          0.013124578244971622,
          0.01309453114036316,
          0.013064587101480462,
          0.013034745657488992,
          0.013005006340239782,
          0.012975368684251077,
          0.012945832226690114,
          0.012916396507355061,
          0.012887061068657075,
          0.012857825455602552,
          0.01282868921577544,
          0.012799651899319767,
          0.012770713058922266,
          0.012741872249795155,
          0.012713129029659034,
          0.01268448295872594,
          0.01265593359968252,
          0.012627480517673335,
          0.012599123280284324,
          0.012570861457526337,
          0.012542694621818869,
          0.01251462234797387,
          0.012486644213179698,
          0.012458759796985214,
          0.012430968681283966,
          0.012403270450298529,
          0.012375664690564947,
          0.012348150990917317,
          0.012320728942472456,
          0.012293398138614726,
          0.012266158174980954,
          0.012239008649445484,
          0.012211949162105324,
          0.012184979315265427,
          0.012158098713424076,
          0.012131306963258396,
          0.012104603673609942,
          0.012077988455470444,
          0.012051460921967624,
          0.012025020688351148,
          0.011998667371978673,
          0.011972400592301993,
          0.011946219970853319,
          0.011920125131231625,
          0.011894115699089141,
          0.01186819130211791,
          0.011842351570036469,
          0.011816596134576631,
          0.011790924629470362,
          0.011765336690436756,
          0.011739831955169115,
          0.011714410063322123,
          0.011689070656499115,
          0.011663813378239463,
          0.011638637874006007,
          0.01161354379117264,
          0.011588530779011952,
          0.01156359848868297,
          0.011538746573219008,
          0.011513974687515579,
          0.011489282488318429,
          0.011464669634211633,
          0.011440135785605812,
          0.011415680604726398,
          0.011391303755602019,
          0.01136700490405296,
          0.011342783717679706,
          0.01131863986585158,
          0.011294573019695454,
          0.011270582852084545,
          0.011246669037627324,
          0.011222831252656447,
          0.011199069175217825,
          0.011175382485059749,
          0.0111517708636221,
          0.011128233994025632,
          0.01110477156106135,
          0.011081383251179949,
          0.011058068752481338,
          0.01103482775470426,
          0.011011659949215933,
          0.010988565029001841,
          0.010965542688655537,
          0.01094259262436856,
          0.010919714533920408,
          0.01089690811666859,
          0.010874173073538742,
          0.010851509107014828,
          0.010828915921129419,
          0.010806393221454004,
          0.01078394071508941,
          0.01076155811065629,
          0.010739245118285655,
          0.010717001449609492,
          0.010694826817751453,
          0.010672720937317599,
          0.010650683524387214,
          0.01062871429650371,
          0.010606812972665546,
          0.010584979273317257,
          0.01056321292034054,
          0.010541513637045386,
          0.01051988114816129,
          0.010498315179828523,
          0.010476815459589459,
          0.010455381716379986,
          0.010434013680520939,
          0.010412711083709633,
          0.010391473659011432,
          0.010370301140851397,
          0.010349193265005972,
          0.010328149768594745,
          0.010307170390072272,
          0.01028625486921993,
          0.010265402947137877,
          0.010244614366237003,
          0.010223888870231011,
          0.010203226204128491,
          0.010182626114225097,
          0.01016208834809574,
          0.010141612654586874,
          0.010121198783808804,
          0.010100846487128065,
          0.010080555517159863,
          0.010060325627760538,
          0.01004015657402011,
          0.010020048112254867,
          0.01
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>x<sub>min</sub></i>=1; <i>λ</i>=2<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>x<sub>min</sub></i>=1; <i>λ</i>=2",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>x<sub>min</sub></i>=1; <i>λ</i>=2",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          1.001,
          1.011009009009009,
          1.021018018018018,
          1.031027027027027,
          1.041036036036036,
          1.051045045045045,
          1.061054054054054,
          1.071063063063063,
          1.0810720720720721,
          1.0910810810810811,
          1.1010900900900902,
          1.1110990990990992,
          1.1211081081081082,
          1.131117117117117,
          1.141126126126126,
          1.151135135135135,
          1.1611441441441441,
          1.1711531531531532,
          1.1811621621621622,
          1.1911711711711712,
          1.2011801801801802,
          1.2111891891891893,
          1.2211981981981983,
          1.2312072072072073,
          1.2412162162162161,
          1.2512252252252252,
          1.2612342342342342,
          1.2712432432432432,
          1.2812522522522523,
          1.2912612612612613,
          1.3012702702702703,
          1.3112792792792793,
          1.3212882882882884,
          1.3312972972972974,
          1.3413063063063064,
          1.3513153153153152,
          1.3613243243243245,
          1.3713333333333333,
          1.3813423423423423,
          1.3913513513513514,
          1.4013603603603604,
          1.4113693693693694,
          1.4213783783783784,
          1.4313873873873875,
          1.4413963963963965,
          1.4514054054054055,
          1.4614144144144143,
          1.4714234234234236,
          1.4814324324324324,
          1.4914414414414414,
          1.5014504504504504,
          1.5114594594594595,
          1.5214684684684685,
          1.5314774774774775,
          1.5414864864864866,
          1.5514954954954956,
          1.5615045045045046,
          1.5715135135135134,
          1.5815225225225227,
          1.5915315315315315,
          1.6015405405405407,
          1.6115495495495495,
          1.6215585585585586,
          1.6315675675675676,
          1.6415765765765766,
          1.6515855855855857,
          1.6615945945945947,
          1.6716036036036037,
          1.6816126126126125,
          1.6916216216216218,
          1.7016306306306306,
          1.7116396396396398,
          1.7216486486486486,
          1.7316576576576577,
          1.7416666666666667,
          1.7516756756756757,
          1.7616846846846848,
          1.7716936936936938,
          1.7817027027027028,
          1.7917117117117116,
          1.8017207207207209,
          1.8117297297297297,
          1.821738738738739,
          1.8317477477477477,
          1.841756756756757,
          1.8517657657657658,
          1.8617747747747748,
          1.8717837837837838,
          1.8817927927927929,
          1.891801801801802,
          1.901810810810811,
          1.91181981981982,
          1.9218288288288288,
          1.931837837837838,
          1.9418468468468468,
          1.951855855855856,
          1.9618648648648649,
          1.971873873873874,
          1.981882882882883,
          1.991891891891892,
          2.0019009009009006,
          2.01190990990991,
          2.021918918918919,
          2.031927927927928,
          2.0419369369369367,
          2.051945945945946,
          2.061954954954955,
          2.071963963963964,
          2.081972972972973,
          2.091981981981982,
          2.1019909909909913,
          2.112,
          2.122009009009009,
          2.1320180180180177,
          2.142027027027027,
          2.152036036036036,
          2.162045045045045,
          2.172054054054054,
          2.182063063063063,
          2.1920720720720723,
          2.202081081081081,
          2.21209009009009,
          2.222099099099099,
          2.232108108108108,
          2.2421171171171173,
          2.252126126126126,
          2.262135135135135,
          2.272144144144144,
          2.2821531531531534,
          2.292162162162162,
          2.302171171171171,
          2.3121801801801802,
          2.3221891891891895,
          2.3321981981981983,
          2.342207207207207,
          2.352216216216216,
          2.362225225225225,
          2.3722342342342344,
          2.382243243243243,
          2.392252252252252,
          2.4022612612612613,
          2.4122702702702705,
          2.4222792792792793,
          2.432288288288288,
          2.4422972972972974,
          2.4523063063063066,
          2.4623153153153154,
          2.4723243243243243,
          2.482333333333333,
          2.4923423423423423,
          2.5023513513513516,
          2.5123603603603604,
          2.522369369369369,
          2.5323783783783784,
          2.5423873873873877,
          2.5523963963963965,
          2.5624054054054053,
          2.5724144144144145,
          2.5824234234234233,
          2.5924324324324326,
          2.6024414414414414,
          2.61245045045045,
          2.6224594594594595,
          2.6324684684684687,
          2.6424774774774775,
          2.6524864864864863,
          2.6624954954954956,
          2.672504504504505,
          2.6825135135135136,
          2.6925225225225224,
          2.7025315315315313,
          2.7125405405405405,
          2.7225495495495498,
          2.7325585585585586,
          2.7425675675675674,
          2.7525765765765766,
          2.762585585585586,
          2.7725945945945947,
          2.7826036036036035,
          2.7926126126126127,
          2.802621621621622,
          2.812630630630631,
          2.8226396396396396,
          2.8326486486486484,
          2.8426576576576577,
          2.852666666666667,
          2.8626756756756757,
          2.8726846846846845,
          2.8826936936936938,
          2.892702702702703,
          2.902711711711712,
          2.9127207207207206,
          2.92272972972973,
          2.9327387387387387,
          2.942747747747748,
          2.9527567567567568,
          2.9627657657657656,
          2.972774774774775,
          2.982783783783784,
          2.992792792792793,
          3.0028018018018017,
          3.012810810810811,
          3.0228198198198197,
          3.032828828828829,
          3.042837837837838,
          3.052846846846847,
          3.062855855855856,
          3.072864864864865,
          3.082873873873874,
          3.092882882882883,
          3.102891891891892,
          3.1129009009009008,
          3.12290990990991,
          3.132918918918919,
          3.142927927927928,
          3.152936936936937,
          3.162945945945946,
          3.172954954954955,
          3.182963963963964,
          3.192972972972973,
          3.2029819819819823,
          3.212990990990991,
          3.223,
          3.233009009009009,
          3.243018018018018,
          3.253027027027027,
          3.263036036036036,
          3.2730450450450452,
          3.283054054054054,
          3.2930630630630633,
          3.303072072072072,
          3.3130810810810813,
          3.32309009009009,
          3.333099099099099,
          3.343108108108108,
          3.353117117117117,
          3.3631261261261263,
          3.373135135135135,
          3.3831441441441443,
          3.393153153153153,
          3.4031621621621624,
          3.413171171171171,
          3.4231801801801804,
          3.4331891891891892,
          3.4431981981981985,
          3.4532072072072073,
          3.463216216216216,
          3.4732252252252254,
          3.483234234234234,
          3.4932432432432434,
          3.5032522522522522,
          3.5132612612612615,
          3.5232702702702703,
          3.5332792792792795,
          3.5432882882882883,
          3.5532972972972976,
          3.5633063063063064,
          3.573315315315315,
          3.5833243243243245,
          3.5933333333333333,
          3.6033423423423425,
          3.6133513513513513,
          3.6233603603603606,
          3.6333693693693694,
          3.6433783783783786,
          3.6533873873873874,
          3.6633963963963967,
          3.6734054054054055,
          3.6834144144144143,
          3.6934234234234236,
          3.7034324324324324,
          3.7134414414414416,
          3.7234504504504504,
          3.7334594594594597,
          3.7434684684684685,
          3.7534774774774777,
          3.7634864864864865,
          3.773495495495496,
          3.7835045045045046,
          3.793513513513514,
          3.8035225225225227,
          3.8135315315315315,
          3.8235405405405407,
          3.8335495495495495,
          3.8435585585585588,
          3.8535675675675676,
          3.863576576576577,
          3.8735855855855856,
          3.883594594594595,
          3.8936036036036037,
          3.903612612612613,
          3.9136216216216217,
          3.9236306306306306,
          3.93363963963964,
          3.9436486486486486,
          3.953657657657658,
          3.9636666666666667,
          3.973675675675676,
          3.9836846846846847,
          3.993693693693694,
          4.003702702702703,
          4.0137117117117125,
          4.023720720720721,
          4.03372972972973,
          4.043738738738739,
          4.053747747747748,
          4.0637567567567565,
          4.073765765765765,
          4.083774774774775,
          4.093783783783784,
          4.1037927927927935,
          4.113801801801802,
          4.123810810810811,
          4.13381981981982,
          4.143828828828829,
          4.1538378378378376,
          4.163846846846846,
          4.173855855855856,
          4.183864864864865,
          4.193873873873875,
          4.203882882882883,
          4.213891891891892,
          4.223900900900901,
          4.23390990990991,
          4.243918918918919,
          4.253927927927928,
          4.263936936936937,
          4.273945945945946,
          4.283954954954956,
          4.293963963963964,
          4.303972972972973,
          4.313981981981982,
          4.323990990990991,
          4.334,
          4.344009009009009,
          4.354018018018018,
          4.364027027027028,
          4.374036036036037,
          4.384045045045045,
          4.394054054054054,
          4.404063063063063,
          4.414072072072072,
          4.424081081081081,
          4.43409009009009,
          4.444099099099099,
          4.454108108108109,
          4.464117117117118,
          4.4741261261261265,
          4.484135135135135,
          4.494144144144144,
          4.504153153153153,
          4.514162162162162,
          4.524171171171171,
          4.53418018018018,
          4.54418918918919,
          4.554198198198199,
          4.5642072072072075,
          4.574216216216216,
          4.584225225225225,
          4.594234234234234,
          4.604243243243244,
          4.614252252252252,
          4.624261261261261,
          4.634270270270271,
          4.64427927927928,
          4.6542882882882886,
          4.664297297297297,
          4.674306306306306,
          4.684315315315315,
          4.694324324324325,
          4.7043333333333335,
          4.714342342342343,
          4.724351351351352,
          4.734360360360361,
          4.74436936936937,
          4.754378378378378,
          4.764387387387387,
          4.774396396396396,
          4.784405405405406,
          4.7944144144144145,
          4.804423423423424,
          4.814432432432433,
          4.824441441441442,
          4.834450450450451,
          4.844459459459459,
          4.854468468468468,
          4.864477477477477,
          4.874486486486487,
          4.8844954954954956,
          4.894504504504505,
          4.904513513513514,
          4.914522522522523,
          4.924531531531532,
          4.9345405405405405,
          4.944549549549549,
          4.954558558558559,
          4.964567567567568,
          4.974576576576577,
          4.984585585585586,
          4.994594594594595,
          5.004603603603604,
          5.014612612612614,
          5.024621621621622,
          5.034630630630631,
          5.04463963963964,
          5.05464864864865,
          5.0646576576576585,
          5.074666666666667,
          5.084675675675676,
          5.094684684684685,
          5.104693693693695,
          5.114702702702703,
          5.124711711711712,
          5.134720720720721,
          5.144729729729731,
          5.15473873873874,
          5.164747747747748,
          5.174756756756757,
          5.184765765765767,
          5.194774774774776,
          5.2047837837837845,
          5.214792792792793,
          5.224801801801802,
          5.234810810810812,
          5.244819819819821,
          5.254828828828829,
          5.264837837837838,
          5.274846846846848,
          5.284855855855857,
          5.2948648648648655,
          5.304873873873874,
          5.314882882882883,
          5.324891891891893,
          5.334900900900902,
          5.34490990990991,
          5.354918918918919,
          5.364927927927929,
          5.374936936936938,
          5.3849459459459466,
          5.394954954954955,
          5.404963963963965,
          5.414972972972974,
          5.424981981981983,
          5.4349909909909915,
          5.445,
          5.45500900900901,
          5.465018018018019,
          5.475027027027028,
          5.485036036036036,
          5.495045045045046,
          5.505054054054055,
          5.515063063063064,
          5.5250720720720725,
          5.535081081081082,
          5.545090090090091,
          5.5550990990991,
          5.565108108108109,
          5.575117117117117,
          5.585126126126127,
          5.595135135135136,
          5.605144144144145,
          5.6151531531531536,
          5.625162162162163,
          5.635171171171172,
          5.645180180180181,
          5.65518918918919,
          5.6651981981981985,
          5.675207207207208,
          5.685216216216217,
          5.695225225225226,
          5.705234234234235,
          5.715243243243244,
          5.725252252252253,
          5.735261261261262,
          5.745270270270271,
          5.75527927927928,
          5.765288288288289,
          5.775297297297298,
          5.785306306306307,
          5.795315315315316,
          5.805324324324325,
          5.815333333333334,
          5.825342342342343,
          5.835351351351352,
          5.845360360360361,
          5.85536936936937,
          5.865378378378379,
          5.875387387387388,
          5.8853963963963976,
          5.895405405405406,
          5.905414414414415,
          5.915423423423424,
          5.925432432432433,
          5.9354414414414425,
          5.945450450450451,
          5.95545945945946,
          5.965468468468469,
          5.975477477477479,
          5.985486486486487,
          5.995495495495496,
          6.005504504504505,
          6.015513513513514,
          6.0255225225225235,
          6.035531531531532,
          6.045540540540541,
          6.05554954954955,
          6.06555855855856,
          6.075567567567568,
          6.085576576576577,
          6.095585585585586,
          6.105594594594596,
          6.1156036036036046,
          6.125612612612613,
          6.135621621621622,
          6.145630630630631,
          6.155639639639641,
          6.1656486486486495,
          6.175657657657658,
          6.185666666666667,
          6.195675675675677,
          6.205684684684686,
          6.215693693693694,
          6.225702702702703,
          6.235711711711713,
          6.245720720720722,
          6.2557297297297305,
          6.265738738738739,
          6.275747747747748,
          6.285756756756758,
          6.295765765765767,
          6.305774774774775,
          6.315783783783784,
          6.325792792792794,
          6.335801801801803,
          6.3458108108108116,
          6.35581981981982,
          6.365828828828829,
          6.375837837837839,
          6.385846846846848,
          6.3958558558558565,
          6.405864864864865,
          6.415873873873875,
          6.425882882882884,
          6.435891891891893,
          6.445900900900901,
          6.455909909909911,
          6.46591891891892,
          6.475927927927929,
          6.4859369369369375,
          6.495945945945946,
          6.505954954954956,
          6.515963963963965,
          6.525972972972974,
          6.535981981981982,
          6.545990990990992,
          6.556000000000001,
          6.56600900900901,
          6.5760180180180186,
          6.586027027027028,
          6.596036036036037,
          6.606045045045046,
          6.616054054054055,
          6.6260630630630635,
          6.636072072072073,
          6.646081081081082,
          6.656090090090091,
          6.6660990990991,
          6.676108108108109,
          6.686117117117118,
          6.696126126126127,
          6.706135135135136,
          6.7161441441441445,
          6.726153153153154,
          6.736162162162163,
          6.746171171171172,
          6.756180180180181,
          6.76618918918919,
          6.776198198198199,
          6.786207207207208,
          6.796216216216217,
          6.806225225225226,
          6.816234234234235,
          6.826243243243244,
          6.836252252252253,
          6.846261261261262,
          6.856270270270271,
          6.86627927927928,
          6.876288288288289,
          6.886297297297298,
          6.8963063063063075,
          6.906315315315316,
          6.916324324324325,
          6.926333333333334,
          6.936342342342344,
          6.946351351351352,
          6.956360360360361,
          6.96636936936937,
          6.976378378378379,
          6.9863873873873885,
          6.996396396396397,
          7.006405405405406,
          7.016414414414415,
          7.026423423423425,
          7.036432432432433,
          7.046441441441442,
          7.056450450450451,
          7.06645945945946,
          7.0764684684684696,
          7.086477477477478,
          7.096486486486487,
          7.106495495495496,
          7.116504504504506,
          7.1265135135135145,
          7.136522522522523,
          7.146531531531532,
          7.156540540540542,
          7.166549549549551,
          7.176558558558559,
          7.186567567567568,
          7.196576576576577,
          7.206585585585587,
          7.2165945945945955,
          7.226603603603604,
          7.236612612612613,
          7.246621621621623,
          7.256630630630632,
          7.26663963963964,
          7.276648648648649,
          7.286657657657659,
          7.296666666666668,
          7.3066756756756766,
          7.316684684684685,
          7.326693693693694,
          7.336702702702704,
          7.346711711711713,
          7.3567207207207215,
          7.36672972972973,
          7.37673873873874,
          7.386747747747749,
          7.396756756756758,
          7.406765765765766,
          7.416774774774775,
          7.426783783783785,
          7.436792792792794,
          7.4468018018018025,
          7.456810810810811,
          7.466819819819821,
          7.47682882882883,
          7.486837837837839,
          7.496846846846847,
          7.506855855855857,
          7.516864864864866,
          7.526873873873875,
          7.5368828828828835,
          7.546891891891892,
          7.556900900900902,
          7.566909909909911,
          7.57691891891892,
          7.5869279279279285,
          7.596936936936938,
          7.606945945945947,
          7.616954954954956,
          7.626963963963965,
          7.636972972972974,
          7.646981981981983,
          7.656990990990992,
          7.667000000000001,
          7.6770090090090095,
          7.687018018018019,
          7.697027027027028,
          7.707036036036037,
          7.717045045045046,
          7.727054054054055,
          7.737063063063064,
          7.747072072072073,
          7.757081081081082,
          7.7670900900900905,
          7.7770990990991,
          7.787108108108109,
          7.797117117117118,
          7.807126126126127,
          7.817135135135136,
          7.827144144144145,
          7.837153153153154,
          7.847162162162163,
          7.8571711711711725,
          7.867180180180181,
          7.87718918918919,
          7.887198198198199,
          7.897207207207208,
          7.907216216216217,
          7.917225225225226,
          7.927234234234235,
          7.937243243243244,
          7.9472522522522535,
          7.957261261261262,
          7.967270270270271,
          7.97727927927928,
          7.98728828828829,
          7.997297297297298,
          8.007306306306308,
          8.017315315315315,
          8.027324324324326,
          8.037333333333335,
          8.047342342342343,
          8.057351351351352,
          8.067360360360361,
          8.077369369369372,
          8.087378378378379,
          8.09738738738739,
          8.107396396396396,
          8.117405405405407,
          8.127414414414416,
          8.137423423423424,
          8.147432432432433,
          8.157441441441442,
          8.167450450450453,
          8.17745945945946,
          8.18746846846847,
          8.197477477477477,
          8.207486486486488,
          8.217495495495497,
          8.227504504504505,
          8.237513513513514,
          8.247522522522523,
          8.257531531531534,
          8.26754054054054,
          8.277549549549551,
          8.287558558558558,
          8.297567567567569,
          8.307576576576578,
          8.317585585585586,
          8.327594594594595,
          8.337603603603604,
          8.347612612612615,
          8.357621621621622,
          8.367630630630632,
          8.37763963963964,
          8.38764864864865,
          8.397657657657659,
          8.407666666666668,
          8.417675675675676,
          8.427684684684685,
          8.437693693693696,
          8.447702702702703,
          8.457711711711713,
          8.46772072072072,
          8.477729729729731,
          8.48773873873874,
          8.497747747747749,
          8.507756756756757,
          8.517765765765766,
          8.527774774774777,
          8.537783783783784,
          8.547792792792794,
          8.557801801801803,
          8.567810810810812,
          8.57781981981982,
          8.58782882882883,
          8.597837837837838,
          8.607846846846847,
          8.617855855855858,
          8.627864864864865,
          8.637873873873875,
          8.647882882882884,
          8.657891891891893,
          8.667900900900902,
          8.67790990990991,
          8.687918918918921,
          8.697927927927928,
          8.707936936936939,
          8.717945945945946,
          8.727954954954956,
          8.737963963963965,
          8.747972972972974,
          8.757981981981983,
          8.767990990990992,
          8.778000000000002,
          8.78800900900901,
          8.79801801801802,
          8.808027027027027,
          8.818036036036037,
          8.828045045045046,
          8.838054054054055,
          8.848063063063064,
          8.858072072072073,
          8.868081081081083,
          8.87809009009009,
          8.888099099099101,
          8.898108108108108,
          8.908117117117119,
          8.918126126126127,
          8.928135135135136,
          8.938144144144145,
          8.948153153153154,
          8.958162162162164,
          8.968171171171171,
          8.978180180180182,
          8.988189189189189,
          8.9981981981982,
          9.008207207207207,
          9.018216216216217,
          9.028225225225226,
          9.038234234234235,
          9.048243243243244,
          9.058252252252252,
          9.068261261261261,
          9.07827027027027,
          9.088279279279279,
          9.098288288288288,
          9.108297297297298,
          9.118306306306307,
          9.128315315315316,
          9.138324324324325,
          9.148333333333333,
          9.158342342342342,
          9.168351351351351,
          9.17836036036036,
          9.188369369369369,
          9.19837837837838,
          9.208387387387388,
          9.218396396396397,
          9.228405405405406,
          9.238414414414414,
          9.248423423423423,
          9.258432432432432,
          9.26844144144144,
          9.27845045045045,
          9.28845945945946,
          9.298468468468469,
          9.308477477477478,
          9.318486486486487,
          9.328495495495496,
          9.338504504504504,
          9.348513513513513,
          9.358522522522522,
          9.368531531531533,
          9.378540540540541,
          9.38854954954955,
          9.398558558558559,
          9.408567567567568,
          9.418576576576577,
          9.428585585585585,
          9.438594594594594,
          9.448603603603603,
          9.458612612612614,
          9.468621621621622,
          9.478630630630631,
          9.48863963963964,
          9.498648648648649,
          9.508657657657658,
          9.518666666666666,
          9.528675675675675,
          9.538684684684684,
          9.548693693693695,
          9.558702702702703,
          9.568711711711712,
          9.578720720720721,
          9.58872972972973,
          9.598738738738739,
          9.608747747747747,
          9.618756756756756,
          9.628765765765765,
          9.638774774774776,
          9.648783783783784,
          9.658792792792793,
          9.668801801801802,
          9.67881081081081,
          9.68881981981982,
          9.698828828828828,
          9.708837837837837,
          9.718846846846848,
          9.728855855855857,
          9.738864864864865,
          9.748873873873874,
          9.758882882882883,
          9.768891891891892,
          9.7789009009009,
          9.78890990990991,
          9.798918918918918,
          9.808927927927929,
          9.818936936936938,
          9.828945945945947,
          9.838954954954955,
          9.848963963963964,
          9.858972972972973,
          9.868981981981982,
          9.87899099099099,
          9.889,
          9.89900900900901,
          9.909018018018019,
          9.919027027027028,
          9.929036036036036,
          9.939045045045045,
          9.949054054054054,
          9.959063063063063,
          9.969072072072072,
          9.97908108108108,
          9.989090090090091,
          9.9990990990991,
          10.009108108108109,
          10.019117117117117,
          10.029126126126126,
          10.039135135135135,
          10.049144144144144,
          10.059153153153153,
          10.069162162162163,
          10.079171171171172,
          10.08918018018018,
          10.09918918918919,
          10.109198198198198,
          10.119207207207207,
          10.129216216216216,
          10.139225225225225,
          10.149234234234234,
          10.159243243243244,
          10.169252252252253,
          10.179261261261262,
          10.18927027027027,
          10.19927927927928,
          10.209288288288288,
          10.219297297297297,
          10.229306306306306,
          10.239315315315315,
          10.249324324324325,
          10.259333333333334,
          10.269342342342343,
          10.279351351351352,
          10.28936036036036,
          10.29936936936937,
          10.309378378378378,
          10.319387387387387,
          10.329396396396396,
          10.339405405405406,
          10.349414414414415,
          10.359423423423424,
          10.369432432432433,
          10.379441441441442,
          10.38945045045045,
          10.39945945945946,
          10.409468468468468,
          10.419477477477479,
          10.429486486486487,
          10.439495495495496,
          10.449504504504505,
          10.459513513513514,
          10.469522522522523,
          10.479531531531531,
          10.48954054054054,
          10.499549549549549,
          10.50955855855856,
          10.519567567567568,
          10.529576576576577,
          10.539585585585586,
          10.549594594594595,
          10.559603603603604,
          10.569612612612612,
          10.579621621621621,
          10.58963063063063,
          10.59963963963964,
          10.60964864864865,
          10.619657657657658,
          10.629666666666667,
          10.639675675675676,
          10.649684684684685,
          10.659693693693693,
          10.669702702702702,
          10.679711711711711,
          10.689720720720722,
          10.69972972972973,
          10.70973873873874,
          10.719747747747748,
          10.729756756756757,
          10.739765765765766,
          10.749774774774774,
          10.759783783783783,
          10.769792792792794,
          10.779801801801803,
          10.789810810810812,
          10.79981981981982,
          10.80982882882883,
          10.819837837837838,
          10.829846846846847,
          10.839855855855856,
          10.849864864864864,
          10.859873873873875,
          10.869882882882884,
          10.879891891891893,
          10.889900900900901,
          10.89990990990991,
          10.909918918918919,
          10.919927927927928,
          10.929936936936937,
          10.939945945945945,
          10.949954954954956,
          10.959963963963965,
          10.969972972972974,
          10.979981981981982,
          10.989990990990991,
          11
         ],
         "xaxis": "x",
         "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,
          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,
          1.9886378187008533,
          1.9302094982397722,
          1.8740478586886016,
          1.8200440398859208,
          1.7680953956618624,
          1.7181050839168177,
          1.6699816873157092,
          1.623638862049276,
          1.5789950123473688,
          1.5359729886394864,
          1.4944998074472056,
          1.4545063912639884,
          1.4159273268320685,
          1.3787006403654944,
          1.3427675883944163,
          1.3080724630198348,
          1.274562410471395,
          1.2421872619545722,
          1.2108993758586921,
          1.1806534904745365,
          1.1514065864405616,
          1.1231177582007208,
          1.0957480938151127,
          1.0692605625177602,
          1.0436199094642271,
          1.0187925571559886,
          0.9947465130688073,
          0.9714512830492921,
          0.948877790077556,
          0.9269982980248018,
          0.9057863400629632,
          0.8852166514094911,
          0.8652651061141771,
          0.8459086576167599,
          0.8271252828241444,
          0.8088939294745019,
          0.7911944665725126,
          0.7740076376956126,
          0.7573150169855072,
          0.7410989676524641,
          0.7253426028321234,
          0.7100297486458389,
          0.6951449093259746,
          0.6806732342771983,
          0.6666004869536986,
          0.6529130154404698,
          0.6395977246344152,
          0.6266420499280528,
          0.6140339323051335,
          0.6017617947635169,
          0.5898145199862562,
          0.5781814291870394,
          0.5668522620609565,
          0.5558171577760425,
          0.5450666369452071,
          0.5345915845220314,
          0.5243832335675073,
          0.5144331498381438,
          0.5047332171489816,
          0.49527562346795406,
          0.4860528477007456,
          0.477057647127806,
          0.4682830454575416,
          0.4597223214618886,
          0.4513689981625248,
          0.44321683253788546,
          0.43525980572293393,
          0.42749211367530715,
          0.4199081582830158,
          0.4125025388903379,
          0.40527004421990837,
          0.3982056446702896,
          0.39130448496949866,
          0.38456187716609214,
          0.377973293940461,
          0.37153436221996866,
          0.36524085708249443,
          0.3590886959338072,
          0.35307393294501166,
          0.347192753737069,
          0.34144147030011657,
          0.33581651613598074,
          0.3303144416129128,
          0.3249319095221755,
          0.3196656908266635,
          0.31451266059227345,
          0.30946979409323216,
          0.3045341630830604,
          0.2997029322232894,
          0.29497335566246163,
          0.29034277375833867,
          0.2858086099366072,
          0.2813683676797212,
          0.2770196276398463,
          0.2727600448701826,
          0.2685873461692328,
          0.2644993275328574,
          0.2604938517092222,
          0.25656884585198575,
          0.25272229926730905,
          0.24895226125048867,
          0.24525683900822137,
          0.2416341956627084,
          0.23808254833398668,
          0.23460016629705893,
          0.23118536921055222,
          0.22783652541380087,
          0.22455205028939001,
          0.2213304046883472,
          0.2181700934152938,
          0.21506966377100453,
          0.21202770414993466,
          0.20904284269039763,
          0.20611374597517754,
          0.203239117780466,
          0.20041769787111335,
          0.1976482608402709,
          0.19492961499159608,
          0.19226060126226852,
          0.18964009218515182,
          0.18706699088850462,
          0.18454023013172202,
          0.18205877137565135,
          0.17962160388609627,
          0.17722774386918097,
          0.17487623363730553,
          0.1725661408044828,
          0.170296557509894,
          0.16806659966855833,
          0.16587540624805222,
          0.16372213857026763,
          0.16160597963723478,
          0.15952613348008376,
          0.15748182453025225,
          0.15547229701209012,
          0.1534968143560445,
          0.15155465863164316,
          0.14964512999953006,
          0.1477675461818333,
          0.14592124195018097,
          0.14410556863070356,
          0.142319893625394,
          0.14056359994921724,
          0.13883608578239134,
          0.13713676403728012,
          0.13546506193936605,
          0.1338204206217877,
          0.13220229473295192,
          0.13061015205674736,
          0.1290434731449054,
          0.1275017509610747,
          0.12598449053618913,
          0.12449120863472975,
          0.12302143343149265,
          0.1215747041984944,
          0.12015057100165642,
          0.1187485944069285,
          0.11736834519551975,
          0.11600940408792286,
          0.11467136147642623,
          0.11335381716582119,
          0.11205638012202412,
          0.11077866822834119,
          0.10952030804911686,
          0.1082809346005138,
          0.10706019112818486,
          0.10585772889160297,
          0.1046732069548273,
          0.10350629198348878,
          0.102356658047789,
          0.10122398643131242,
          0.10010796544545901,
          0.09900829024931342,
          0.0979246626747707,
          0.09685679105674799,
          0.09580439006831509,
          0.0947671805605854,
          0.09374488940721197,
          0.09273724935334139,
          0.09174399886888097,
          0.09076488200594257,
          0.0897996482603283,
          0.08884805243693089,
          0.08790985451892414,
          0.08698481954062347,
          0.08607271746390212,
          0.08517332305805025,
          0.0842864157829708,
          0.08341177967560676,
          0.08254920323950103,
          0.08169847933739077,
          0.08085940508674379,
          0.08003178175814574,
          0.07921541467645155,
          0.07841011312461664,
          0.07761569025012595,
          0.07683196297394305,
          0.07605875190190216,
          0.07529588123847067,
          0.07454317870280995,
          0.07380047544706693,
          0.07306760597682879,
          0.07234440807367769,
          0.07163072271978227,
          0.07092639402446689,
          0.07023126915269978,
          0.06954519825544386,
          0.06886803440181641,
          0.0681996335130041,
          0.0675398542978833,
          0.06688855819029545,
          0.06624560928793068,
          0.06561087429277247,
          0.06498422245305972,
          0.06436552550672173,
          0.06375465762624523,
          0.06315149536493192,
          0.06255591760450782,
          0.06196780550404609,
          0.06138704245016607,
          0.060813514008473436,
          0.06024710787620611,
          0.05968771383605289,
          0.05913522371111175,
          0.058589531320956796,
          0.05805053243878262,
          0.05751812474959721,
          0.05699220780943376,
          0.05647268300555436,
          0.05595945351761797,
          0.05545242427978655,
          0.054951501943744235,
          0.05445659484260442,
          0.05396761295568129,
          0.05348446787410216,
          0.05300707276723853,
          0.05253534234993354,
          0.05206919285050513,
          0.05160854197950383,
          0.051153308899205524,
          0.05070341419381981,
          0.05025877984039478,
          0.049819329180400496,
          0.04938498689197284,
          0.04895567896280102,
          0.04853133266364157,
          0.04811187652244299,
          0.0476972402990648,
          0.04728735496057625,
          0.046882152657119085,
          0.04648156669832067,
          0.046085531530242654,
          0.045693982712852174,
          0.04530685689800194,
          0.044924091807906276,
          0.04454562621410095,
          0.04417139991687407,
          0.04380135372515681,
          0.04343542943686176,
          0.04307356981965845,
          0.04271571859217445,
          0.04236182040561204,
          0.04201182082576975,
          0.04166566631545898,
          0.04132330421730596,
          0.04098468273692935,
          0.04064975092648463,
          0.04031845866856594,
          0.03999075666045703,
          0.03966659639872239,
          0.039345930164130835,
          0.03902871100690295,
          0.03871489273227508,
          0.03840442988637186,
          0.03809727774238014,
          0.03779339228701701,
          0.03749273020728479,
          0.03719524887750642,
          0.036900906346634274,
          0.036609661325826215,
          0.036321473176282336,
          0.03603630189733649,
          0.03575410811479631,
          0.03547485306952634,
          0.03519849860626801,
          0.034925007162691604,
          0.03465434175867417,
          0.03438646598579868,
          0.034121343997068954,
          0.03385894049683556,
          0.033599220730927776,
          0.033342150476986826,
          0.033087696034995964,
          0.03283582421800265,
          0.03258650234302872,
          0.03233969822216398,
          0.03209538015383944,
          0.03185351691427567,
          0.03161407774910275,
          0.031377032365147786,
          0.03114235092238603,
          0.030910004026052384,
          0.030679962718909305,
          0.03045219847366777,
          0.030226683185558028,
          0.030003389165046575,
          0.029782289130696415,
          0.029563356202167046,
          0.029346563893351527,
          0.029131886105647355,
          0.028919297121358253,
          0.028708771597224174,
          0.028500284558076378,
          0.028293811390615306,
          0.02808932783730824,
          0.027886809990404392,
          0.027686234286064614,
          0.0274875774986036,
          0.02729081673484189,
          0.02709592942856556,
          0.026902893335090924,
          0.026711686525932504,
          0.02652228738357168,
          0.026334674596324027,
          0.02614882715330334,
          0.025964724339480046,
          0.02578234573083231,
          0.025601671189587696,
          0.025422680859553605,
          0.025245355161534425,
          0.02506967478883388,
          0.024895620702840557,
          0.024723174128695,
          0.024552316551036707,
          0.024383029709829196,
          0.024215295596261774,
          0.02404909644872626,
          0.02388441474886724,
          0.023721233217704144,
          0.023559534811823962,
          0.023399302719642915,
          0.023240520357735876,
          0.023083171367231883,
          0.022927239610274774,
          0.02277270916654732,
          0.022619564329857726,
          0.022467789604787246,
          0.022317369703397545,
          0.022168289541996823,
          0.022020534237963352,
          0.021874089106625416,
          0.02172893965819633,
          0.02158507159476371,
          0.02144247080733171,
          0.021301123372915304,
          0.021161015551685453,
          0.021022133784164294,
          0.02088446468846933,
          0.02074799505760556,
          0.02061271185680483,
          0.020478602220911146,
          0.02034565345181144,
          0.02021385301591061,
          0.020083188541650164,
          0.019953647817069434,
          0.01982521878740875,
          0.019697889552753627,
          0.019571648365719185,
          0.019446483629174147,
          0.019322383894003443,
          0.019199337856908895,
          0.01907733435824716,
          0.01895636237990423,
          0.01883641104320576,
          0.018717469606862627,
          0.018599527464950985,
          0.01848257414492625,
          0.018366599305670184,
          0.018251592735570733,
          0.018137544350633777,
          0.018024444192626294,
          0.017912282427250386,
          0.01780104934234743,
          0.017690735346132035,
          0.017581330965455017,
          0.017472826844095072,
          0.01736521374107837,
          0.017258482529025804,
          0.017152624192527215,
          0.017047629826542204,
          0.01694349063482691,
          0.016840197928386442,
          0.0167377431239524,
          0.016636117742485003,
          0.01653531340769952,
          0.016435321844616317,
          0.016336134878134373,
          0.016237744431627628,
          0.01614014252556389,
          0.016043321276145744,
          0.01594727289397326,
          0.015851989682727944,
          0.015757464037877627,
          0.01566368844540195,
          0.015570655480537949,
          0.015478357806545554,
          0.015386788173492509,
          0.015295939417058478,
          0.015205804457357853,
          0.015116376297781123,
          0.015027648023854309,
          0.014939612802116274,
          0.014852263879013465,
          0.01476559457981192,
          0.014679598307526139,
          0.014594268541864562,
          0.014509598838191393,
          0.014425582826504387,
          0.01434221421042845,
          0.014259486766224695,
          0.014177394341814744,
          0.014095930855819902,
          0.01401509029661511,
          0.013934866721397281,
          0.013855254255267898,
          0.013776247090329452,
          0.013697839484795709,
          0.01362002576211538,
          0.013542800310109071,
          0.01346615758011927,
          0.01339009208617309,
          0.01331459840415765,
          0.013239671171007796,
          0.013165305083906037,
          0.013091494899494361,
          0.013018235433097896,
          0.012945521557960079,
          0.012873348204489224,
          0.012801710359516279,
          0.012730603065563518,
          0.012660021420124127,
          0.01258996057495235,
          0.012520415735364165,
          0.012451382159548153,
          0.012382855157886554,
          0.012314830092286237,
          0.012247302375519473,
          0.012180267470574286,
          0.012113720890014322,
          0.012047658195347997,
          0.011982074996406807,
          0.011916966950732662,
          0.01185232976297405,
          0.011788159184290943,
          0.011724451011768278,
          0.011661201087837882,
          0.01159840529970866,
          0.011536059578805,
          0.011474159900213181,
          0.01141270228213572,
          0.011351682785353444,
          0.011291097512695273,
          0.01123094260851552,
          0.011171214258178573,
          0.011111908687550935,
          0.01105302216250037,
          0.010994550988402164,
          0.010936491509652322,
          0.010878840109187625,
          0.010821593208012377,
          0.010764747264731839,
          0.01070829877509214,
          0.010652244271526641,
          0.01059658032270862,
          0.010541303533110141,
          0.010486410542567099,
          0.010431898025850254,
          0.010377762692242252,
          0.010324001285120413,
          0.010270610581545346,
          0.010217587391855186,
          0.010164928559265433,
          0.010112630959474242,
          0.010060691500273168,
          0.010009107121163197,
          0.009957874792976029,
          0.00990699151750054,
          0.009856454327114286,
          0.009806260284420045,
          0.00975640648188727,
          0.009706890041498413,
          0.009657708114399994,
          0.009608857880558408,
          0.009560336548420346,
          0.009512141354577815,
          0.009464269563437596,
          0.009416718466895182,
          0.009369485384013054,
          0.009322567660703258,
          0.009275962669414226,
          0.009229667808821727,
          0.009183680503523969,
          0.009137998203740715,
          0.009092618385016415,
          0.009047538547927215,
          0.009002756217791874,
          0.008958268944386482,
          0.008914074301662913,
          0.008870169887471012,
          0.008826553323284372,
          0.008783222253929752,
          0.008740174347319996,
          0.008697407294190475,
          0.008654918807838906,
          0.008612706623868613,
          0.008570768499935077,
          0.008529102215495818,
          0.008487705571563454,
          0.008446576390462009,
          0.008405712515586325,
          0.008365111811164594,
          0.008324772162023946,
          0.008284691473359019,
          0.00824486767050353,
          0.008205298698704747,
          0.008165982522900857,
          0.008126917127501158,
          0.008088100516169061,
          0.008049530711607857,
          0.008011205755349193,
          0.007973123707544232,
          0.007935282646757457,
          0.007897680669763082,
          0.007860315891344033,
          0.00782318644409346,
          0.007786290478218733,
          0.007749626161347924,
          0.007713191678338689,
          0.007676985231089571,
          0.007641005038353626,
          0.007605249335554404,
          0.007569716374604213,
          0.007534404423724635,
          0.0074993117672692965,
          0.007464436705548799,
          0.00742977755465785,
          0.0073953326463045135,
          0.007361100327641586,
          0.007327078961100021,
          0.0072932669242244275,
          0.007259662609510589,
          0.007226264424244967,
          0.007193070790346166,
          0.007160080144208356,
          0.007127290936546585,
          0.007094701632243994,
          0.007062310710200895,
          0.007030116663185658,
          0.006998117997687435,
          0.0069663132337706565,
          0.006934700904931301,
          0.006903279557954874,
          0.0068720477527761305,
          0.006841004062340467,
          0.006810147072467003,
          0.00677947538171327,
          0.006748987601241561,
          0.006718682354686863,
          0.006688558278026365,
          0.006658614019450538,
          0.006628848239235732,
          0.006599259609618308,
          0.006569846814670254,
          0.006540608550176292,
          0.006511543523512417,
          0.0064826504535258934,
          0.006453928070416664,
          0.006425375115620153,
          0.006396990341691466,
          0.00636877251219092,
          0.006340720401570952,
          0.0063128327950643355,
          0.0062851084885737155,
          0.006257546288562418,
          0.006230145011946559,
          0.006202903485988389,
          0.006175820548190906,
          0.0061488950461936545,
          0.006122125837669774,
          0.006095511790224216,
          0.0060690517812931515,
          0.006042744698044538,
          0.006016589437279824,
          0.005990584905336805,
          0.005964730017993581,
          0.0059390237003736366,
          0.0059134648868519836,
          0.0058880525209624,
          0.00586278555530573,
          0.005837662951459222,
          0.005812683679886902,
          0.005787846719850979,
          0.005763151059324247,
          0.005738595694903485,
          0.005714179631723851,
          0.005689901883374222,
          0.005665761471813514,
          0.005641757427287937,
          0.005617888788249192,
          0.005594154601273574,
          0.005570553920981998,
          0.005547085809960921,
          0.005523749338684149,
          0.0055005435854355265,
          0.005477467636232475,
          0.005454520584750405,
          0.0054317015322479555,
          0.005409009587493083,
          0.005386443866689952,
          0.005364003493406656,
          0.005341687598503727,
          0.005319495320063455,
          0.005297425803319965,
          0.005275478200590082,
          0.005253651671204961,
          0.005231945381442458,
          0.005210358504460265,
          0.005188890220229748,
          0.005167539715470546,
          0.005146306183585861,
          0.005125188824598475,
          0.0051041868450874455,
          0.005083299458125512,
          0.005062525883217169,
          0.005041865346237428,
          0.005021317079371229,
          0.00500088032105352,
          0.004980554315909983,
          0.004960338314698402,
          0.0049402315742506685,
          0.0049202333574154015,
          0.004900342933001198,
          0.004880559575720491,
          0.004860882566134011,
          0.004841311190595836,
          0.004821844741199048,
          0.0048024825157219515,
          0.004783223817574883,
          0.004764067955747585,
          0.0047450142447571265,
          0.0047260620045964045,
          0.004707210560683166,
          0.004688459243809602,
          0.0046698073900924356,
          0.0046512543409235815,
          0.0046327994429213,
          0.004614442047881879,
          0.004596181512731815,
          0.004578017199480513,
          0.004559948475173474,
          0.004541974711845973,
          0.004524095286477238,
          0.0045063095809450854,
          0.004488616981981052,
          0.004471016881125983,
          0.004453508674686099,
          0.004436091763689493,
          0.004418765553843114,
          0.004401529455490173,
          0.004384382883568009,
          0.004367325257566374,
          0.004350356001486167,
          0.0043334745437985855,
          0.004316680317404702,
          0.004299972759595461,
          0.004283351312012079,
          0.0042668154206068586,
          0.004250364535604409,
          0.0042339981114632615,
          0.00421771560683787,
          0.004201516484541016,
          0.004185400211506585,
          0.0041693662587527335,
          0.004153414101345425,
          0.004137543218362339,
          0.004121753092857148,
          0.004106043211824156,
          0.004090413066163304,
          0.004074862150645515,
          0.0040593899638784025,
          0.004043996008272322,
          0.004028679790006769,
          0.004013440818997102,
          0.003998278608861622,
          0.003983192676888963,
          0.003968182544005827,
          0.0039532477347450305,
          0.003938387777213877,
          0.003923602203062846,
          0.003908890547454589,
          0.003894252349033256,
          0.003879687149894082,
          0.003865194495553345,
          0.003850773934918554,
          0.003836425020258977,
          0.003822147307176446,
          0.003807940354576454,
          0.0037938037246395373,
          0.003779736982792941,
          0.003765739697682566,
          0.003751811441145186,
          0.003737951788180957,
          0.0037241603169261644,
          0.0037104366086262715,
          0.003696780247609213,
          0.003683190821258956,
          0.00366966791998932,
          0.003656211137218053,
          0.0036428200693411567,
          0.0036294943157074676,
          0.00361623347859349,
          0.003603037163178455,
          0.0035899049775196426,
          0.0035768365325279353,
          0.003563831441943605,
          0.003550889322312342,
          0.0035380097929615093,
          0.0035251924759766295,
          0.0035124369961780973,
          0.003499742981098123,
          0.0034871100609578814,
          0.0034745378686448997,
          0.00346202603969065,
          0.0034495742122483616,
          0.003437182027071046,
          0.0034248491274897286,
          0.003412575159391891,
          0.0034003597712001267,
          0.0033882026138509786,
          0.0033761033407740024,
          0.0033640616078710155,
          0.003352077073495546,
          0.003340149398432478,
          0.003328278245877887,
          0.00331646328141907,
          0.003304704173014759,
          0.0032930005909755328,
          0.0032813522079443947,
          0.00326975869887755,
          0.003258219741025357,
          0.003246735013913461,
          0.0032353041993240985,
          0.0032239269812775846,
          0.003212603046013968,
          0.003201332081974859,
          0.003190113779785437,
          0.003178947832236603,
          0.0031678339342673225,
          0.00315677178294712,
          0.00314576107745874,
          0.0031348015190809674,
          0.003123892811171609,
          0.0031130346591506327,
          0.0031022267704834583,
          0.0030914688546644156,
          0.0030807606232003356,
          0.003070101789594309,
          0.0030594920693295907,
          0.003048931179853648,
          0.0030384188405623595,
          0.0030279547727843593,
          0.003017538699765519,
          0.0030071703466535865,
          0.002996849440482943,
          0.002986575710159519,
          0.0029763488864458384,
          0.002966168701946204,
          0.002956034891092011,
          0.002945947190127203,
          0.0029359053370938523,
          0.0029259090718178737,
          0.0029159581358948763,
          0.0029060522726761253,
          0.0028961912272546467,
          0.0028863747464514533,
          0.002876602578801891,
          0.0028668744745421137,
          0.0028571901855956755,
          0.002847549465560248,
          0.0028379520696944494,
          0.0028283977549048082,
          0.002818886279732818,
          0.0028094174043421342,
          0.0027999908905058674,
          0.0027906065015940013,
          0.0027812640025609153,
          0.0027719631599330235,
          0.002762703741796522,
          0.0027534855177852413,
          0.00274430825906862,
          0.0027351717383397632,
          0.002726075729803629,
          0.0027170200091653058,
          0.0027080043536183976,
          0.0026990285418335134,
          0.002690092353946857,
          0.0026811955715489123,
          0.0026723379776732443,
          0.002663519356785374,
          0.0026547394947717727,
          0.002645998178928944,
          0.0026372951979525988,
          0.002628630341926934,
          0.0026200034023139964,
          0.0026114141719431423,
          0.0026028624450005903,
          0.002594348017019071,
          0.002585870684867549,
          0.002577430246741054,
          0.002569026502150592,
          0.0025606592519131395,
          0.0025523282981417352,
          0.002544033444235649,
          0.0025357744948706386,
          0.002527551255989289,
          0.0025193635347914452,
          0.0025112111397247085,
          0.002503093880475031,
          0.0024950115679573874,
          0.0024869640143065203,
          0.0024789510328677754,
          0.0024709724381880055,
          0.00246302804600656,
          0.0024551176732463455,
          0.002447241138004972,
          0.0024393982595459604,
          0.0024315888582900386,
          0.002423812755806505,
          0.0024160697748046686,
          0.002408359739125358,
          0.002400682473732507,
          0.002393037804704808,
          0.002385425559227443,
          0.0023778455655838714,
          0.0023702976531477004,
          0.002362781652374619,
          0.002355297394794401,
          0.002347844713002971,
          0.0023404234406545466,
          0.002333033412453837,
          0.0023256744641483125,
          0.0023183464325205413,
          0.002311049155380581,
          0.0023037824715584454,
          0.002296546220896627,
          0.0022893402442426846,
          0.002282164383441892,
          0.0022750184813299505,
          0.0022679023817257574,
          0.0022608159294242387,
          0.002253758970189244,
          0.00224673135074649,
          0.0022397329187765747,
          0.002232763522908042,
          0.0022258230127105076,
          0.0022189112386878395,
          0.0022120280522713955,
          0.0022051733058133173,
          0.002198346852579878,
          0.0021915485467448926,
          0.002184778243383165,
          0.0021780357984640085,
          0.0021713210688448087,
          0.0021646339122646414,
          0.0021579741873379438,
          0.002151341753548236,
          0.0021447364712418953,
          0.0021381582016219832,
          0.002131606806742116,
          0.0021250821495003938,
          0.002118584093633374,
          0.0021121125037100942,
          0.002105667245126147,
          0.0020992481840977984,
          0.0020928551876561573,
          0.0020864881236413897,
          0.0020801468606969865,
          0.002073831268264064,
          0.0020675412165757265,
          0.002061276576651462,
          0.002055037220291592,
          0.0020488230200717585,
          0.0020426338493374626,
          0.0020364695821986404,
          0.002030330093524286,
          0.0020242152589371224,
          0.0020181249548083023,
          0.0020120590582521627,
          0.0020060174471210196,
          0.002
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>x<sub>min</sub></i>=2; <i>λ</i>=3<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>x<sub>min</sub></i>=2; <i>λ</i>=3",
         "line": {
          "color": "#00cc96",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>x<sub>min</sub></i>=2; <i>λ</i>=3",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          2.001,
          2.011009009009009,
          2.021018018018018,
          2.031027027027027,
          2.041036036036036,
          2.0510450450450453,
          2.061054054054054,
          2.071063063063063,
          2.081072072072072,
          2.091081081081081,
          2.10109009009009,
          2.111099099099099,
          2.1211081081081082,
          2.131117117117117,
          2.1411261261261263,
          2.151135135135135,
          2.1611441441441444,
          2.171153153153153,
          2.1811621621621624,
          2.191171171171171,
          2.20118018018018,
          2.2111891891891893,
          2.221198198198198,
          2.2312072072072073,
          2.241216216216216,
          2.2512252252252254,
          2.261234234234234,
          2.2712432432432434,
          2.2812522522522523,
          2.291261261261261,
          2.3012702702702703,
          2.311279279279279,
          2.3212882882882884,
          2.331297297297297,
          2.3413063063063064,
          2.3513153153153152,
          2.3613243243243245,
          2.3713333333333333,
          2.3813423423423425,
          2.3913513513513514,
          2.4013603603603606,
          2.4113693693693694,
          2.421378378378378,
          2.4313873873873875,
          2.4413963963963963,
          2.4514054054054055,
          2.4614144144144143,
          2.4714234234234236,
          2.4814324324324324,
          2.4914414414414416,
          2.5014504504504504,
          2.5114594594594593,
          2.5214684684684685,
          2.5314774774774778,
          2.5414864864864866,
          2.5514954954954954,
          2.5615045045045046,
          2.5715135135135134,
          2.5815225225225227,
          2.5915315315315315,
          2.6015405405405407,
          2.6115495495495495,
          2.621558558558559,
          2.6315675675675676,
          2.6415765765765764,
          2.6515855855855857,
          2.661594594594595,
          2.6716036036036037,
          2.6816126126126125,
          2.6916216216216218,
          2.7016306306306306,
          2.71163963963964,
          2.7216486486486486,
          2.7316576576576574,
          2.7416666666666667,
          2.751675675675676,
          2.7616846846846848,
          2.7716936936936936,
          2.781702702702703,
          2.7917117117117116,
          2.801720720720721,
          2.8117297297297297,
          2.821738738738739,
          2.8317477477477477,
          2.841756756756757,
          2.851765765765766,
          2.8617747747747746,
          2.871783783783784,
          2.881792792792793,
          2.891801801801802,
          2.9018108108108107,
          2.91181981981982,
          2.9218288288288288,
          2.931837837837838,
          2.941846846846847,
          2.951855855855856,
          2.961864864864865,
          2.971873873873874,
          2.981882882882883,
          2.9918918918918918,
          3.0019009009009006,
          3.01190990990991,
          3.021918918918919,
          3.031927927927928,
          3.0419369369369367,
          3.051945945945946,
          3.061954954954955,
          3.071963963963964,
          3.081972972972973,
          3.091981981981982,
          3.1019909909909913,
          3.112,
          3.122009009009009,
          3.1320180180180177,
          3.142027027027027,
          3.152036036036036,
          3.162045045045045,
          3.172054054054054,
          3.182063063063063,
          3.1920720720720723,
          3.202081081081081,
          3.21209009009009,
          3.222099099099099,
          3.232108108108108,
          3.2421171171171173,
          3.252126126126126,
          3.262135135135135,
          3.272144144144144,
          3.2821531531531534,
          3.292162162162162,
          3.302171171171171,
          3.3121801801801802,
          3.3221891891891895,
          3.3321981981981983,
          3.342207207207207,
          3.352216216216216,
          3.362225225225225,
          3.3722342342342344,
          3.382243243243243,
          3.392252252252252,
          3.4022612612612613,
          3.4122702702702705,
          3.4222792792792793,
          3.432288288288288,
          3.4422972972972974,
          3.4523063063063066,
          3.4623153153153154,
          3.4723243243243243,
          3.482333333333333,
          3.4923423423423423,
          3.5023513513513516,
          3.5123603603603604,
          3.522369369369369,
          3.5323783783783784,
          3.5423873873873877,
          3.5523963963963965,
          3.5624054054054053,
          3.5724144144144145,
          3.5824234234234233,
          3.5924324324324326,
          3.6024414414414414,
          3.61245045045045,
          3.6224594594594595,
          3.6324684684684687,
          3.6424774774774775,
          3.6524864864864863,
          3.6624954954954956,
          3.672504504504505,
          3.6825135135135136,
          3.6925225225225224,
          3.7025315315315313,
          3.7125405405405405,
          3.7225495495495498,
          3.7325585585585586,
          3.7425675675675674,
          3.7525765765765766,
          3.762585585585586,
          3.7725945945945947,
          3.7826036036036035,
          3.7926126126126127,
          3.802621621621622,
          3.812630630630631,
          3.8226396396396396,
          3.8326486486486484,
          3.8426576576576577,
          3.852666666666667,
          3.8626756756756757,
          3.8726846846846845,
          3.8826936936936938,
          3.892702702702703,
          3.902711711711712,
          3.9127207207207206,
          3.92272972972973,
          3.9327387387387387,
          3.942747747747748,
          3.9527567567567568,
          3.9627657657657656,
          3.972774774774775,
          3.982783783783784,
          3.992792792792793,
          4.002801801801802,
          4.0128108108108105,
          4.022819819819819,
          4.032828828828829,
          4.042837837837838,
          4.0528468468468475,
          4.062855855855856,
          4.072864864864865,
          4.082873873873874,
          4.092882882882883,
          4.1028918918918915,
          4.1129009009009,
          4.12290990990991,
          4.132918918918919,
          4.1429279279279285,
          4.152936936936937,
          4.162945945945946,
          4.172954954954955,
          4.182963963963964,
          4.192972972972973,
          4.202981981981982,
          4.212990990990991,
          4.223,
          4.23300900900901,
          4.243018018018018,
          4.253027027027027,
          4.263036036036036,
          4.273045045045045,
          4.283054054054054,
          4.293063063063063,
          4.303072072072072,
          4.313081081081082,
          4.323090090090091,
          4.333099099099099,
          4.343108108108108,
          4.353117117117117,
          4.363126126126126,
          4.373135135135135,
          4.383144144144144,
          4.393153153153153,
          4.403162162162163,
          4.413171171171172,
          4.42318018018018,
          4.433189189189189,
          4.443198198198198,
          4.453207207207207,
          4.463216216216216,
          4.473225225225225,
          4.483234234234234,
          4.493243243243244,
          4.503252252252253,
          4.5132612612612615,
          4.52327027027027,
          4.533279279279279,
          4.543288288288288,
          4.553297297297298,
          4.563306306306306,
          4.573315315315315,
          4.583324324324325,
          4.593333333333334,
          4.6033423423423425,
          4.613351351351351,
          4.62336036036036,
          4.633369369369369,
          4.643378378378379,
          4.653387387387387,
          4.663396396396397,
          4.673405405405406,
          4.683414414414415,
          4.693423423423424,
          4.703432432432432,
          4.713441441441441,
          4.72345045045045,
          4.73345945945946,
          4.7434684684684685,
          4.753477477477478,
          4.763486486486487,
          4.773495495495496,
          4.783504504504505,
          4.793513513513513,
          4.803522522522522,
          4.813531531531531,
          4.823540540540541,
          4.8335495495495495,
          4.843558558558559,
          4.853567567567568,
          4.863576576576577,
          4.873585585585586,
          4.883594594594594,
          4.893603603603603,
          4.903612612612613,
          4.913621621621622,
          4.9236306306306306,
          4.93363963963964,
          4.943648648648649,
          4.953657657657658,
          4.963666666666667,
          4.9736756756756755,
          4.983684684684684,
          4.993693693693694,
          5.003702702702703,
          5.0137117117117125,
          5.023720720720721,
          5.03372972972973,
          5.043738738738739,
          5.053747747747748,
          5.0637567567567565,
          5.073765765765765,
          5.083774774774775,
          5.093783783783784,
          5.1037927927927935,
          5.113801801801802,
          5.123810810810811,
          5.13381981981982,
          5.143828828828829,
          5.1538378378378376,
          5.163846846846846,
          5.173855855855856,
          5.183864864864865,
          5.193873873873875,
          5.203882882882883,
          5.213891891891892,
          5.223900900900901,
          5.23390990990991,
          5.243918918918919,
          5.253927927927928,
          5.263936936936937,
          5.273945945945946,
          5.283954954954956,
          5.293963963963964,
          5.303972972972973,
          5.313981981981982,
          5.323990990990991,
          5.334,
          5.344009009009009,
          5.354018018018018,
          5.364027027027028,
          5.374036036036037,
          5.384045045045045,
          5.394054054054054,
          5.404063063063063,
          5.414072072072072,
          5.424081081081081,
          5.43409009009009,
          5.444099099099099,
          5.454108108108109,
          5.464117117117118,
          5.4741261261261265,
          5.484135135135135,
          5.494144144144144,
          5.504153153153153,
          5.514162162162162,
          5.524171171171171,
          5.53418018018018,
          5.54418918918919,
          5.554198198198199,
          5.5642072072072075,
          5.574216216216216,
          5.584225225225225,
          5.594234234234234,
          5.604243243243244,
          5.614252252252252,
          5.624261261261261,
          5.634270270270271,
          5.64427927927928,
          5.6542882882882886,
          5.664297297297297,
          5.674306306306306,
          5.684315315315315,
          5.694324324324325,
          5.7043333333333335,
          5.714342342342343,
          5.724351351351352,
          5.734360360360361,
          5.74436936936937,
          5.754378378378378,
          5.764387387387387,
          5.774396396396396,
          5.784405405405406,
          5.7944144144144145,
          5.804423423423424,
          5.814432432432433,
          5.824441441441442,
          5.834450450450451,
          5.844459459459459,
          5.854468468468468,
          5.864477477477477,
          5.874486486486487,
          5.8844954954954956,
          5.894504504504505,
          5.904513513513514,
          5.914522522522523,
          5.924531531531532,
          5.9345405405405405,
          5.944549549549549,
          5.954558558558559,
          5.964567567567568,
          5.974576576576577,
          5.984585585585586,
          5.994594594594595,
          6.004603603603604,
          6.014612612612614,
          6.024621621621622,
          6.034630630630631,
          6.04463963963964,
          6.05464864864865,
          6.0646576576576585,
          6.074666666666667,
          6.084675675675676,
          6.094684684684685,
          6.104693693693695,
          6.114702702702703,
          6.124711711711712,
          6.134720720720721,
          6.144729729729731,
          6.15473873873874,
          6.164747747747748,
          6.174756756756757,
          6.184765765765767,
          6.194774774774776,
          6.2047837837837845,
          6.214792792792793,
          6.224801801801802,
          6.234810810810812,
          6.244819819819821,
          6.254828828828829,
          6.264837837837838,
          6.274846846846848,
          6.284855855855857,
          6.2948648648648655,
          6.304873873873874,
          6.314882882882883,
          6.324891891891893,
          6.334900900900902,
          6.34490990990991,
          6.354918918918919,
          6.364927927927929,
          6.374936936936938,
          6.3849459459459466,
          6.394954954954955,
          6.404963963963965,
          6.414972972972974,
          6.424981981981983,
          6.4349909909909915,
          6.445,
          6.45500900900901,
          6.465018018018019,
          6.475027027027028,
          6.485036036036036,
          6.495045045045046,
          6.505054054054055,
          6.515063063063064,
          6.5250720720720725,
          6.535081081081082,
          6.545090090090091,
          6.5550990990991,
          6.565108108108109,
          6.575117117117117,
          6.585126126126127,
          6.595135135135136,
          6.605144144144145,
          6.6151531531531536,
          6.625162162162163,
          6.635171171171172,
          6.645180180180181,
          6.65518918918919,
          6.6651981981981985,
          6.675207207207208,
          6.685216216216217,
          6.695225225225226,
          6.705234234234235,
          6.715243243243244,
          6.725252252252253,
          6.735261261261262,
          6.745270270270271,
          6.75527927927928,
          6.765288288288289,
          6.775297297297298,
          6.785306306306307,
          6.795315315315316,
          6.805324324324325,
          6.815333333333334,
          6.825342342342343,
          6.835351351351352,
          6.845360360360361,
          6.85536936936937,
          6.865378378378379,
          6.875387387387388,
          6.8853963963963976,
          6.895405405405406,
          6.905414414414415,
          6.915423423423424,
          6.925432432432433,
          6.9354414414414425,
          6.945450450450451,
          6.95545945945946,
          6.965468468468469,
          6.975477477477479,
          6.985486486486487,
          6.995495495495496,
          7.005504504504505,
          7.015513513513514,
          7.0255225225225235,
          7.035531531531532,
          7.045540540540541,
          7.05554954954955,
          7.06555855855856,
          7.075567567567568,
          7.085576576576577,
          7.095585585585586,
          7.105594594594596,
          7.1156036036036046,
          7.125612612612613,
          7.135621621621622,
          7.145630630630631,
          7.155639639639641,
          7.1656486486486495,
          7.175657657657658,
          7.185666666666667,
          7.195675675675677,
          7.205684684684686,
          7.215693693693694,
          7.225702702702703,
          7.235711711711713,
          7.245720720720722,
          7.2557297297297305,
          7.265738738738739,
          7.275747747747748,
          7.285756756756758,
          7.295765765765767,
          7.305774774774775,
          7.315783783783784,
          7.325792792792794,
          7.335801801801803,
          7.3458108108108116,
          7.35581981981982,
          7.365828828828829,
          7.375837837837839,
          7.385846846846848,
          7.3958558558558565,
          7.405864864864865,
          7.415873873873875,
          7.425882882882884,
          7.435891891891893,
          7.445900900900901,
          7.455909909909911,
          7.46591891891892,
          7.475927927927929,
          7.4859369369369375,
          7.495945945945946,
          7.505954954954956,
          7.515963963963965,
          7.525972972972974,
          7.535981981981982,
          7.545990990990992,
          7.556000000000001,
          7.56600900900901,
          7.5760180180180186,
          7.586027027027028,
          7.596036036036037,
          7.606045045045046,
          7.616054054054055,
          7.6260630630630635,
          7.636072072072073,
          7.646081081081082,
          7.656090090090091,
          7.6660990990991,
          7.676108108108109,
          7.686117117117118,
          7.696126126126127,
          7.706135135135136,
          7.7161441441441445,
          7.726153153153154,
          7.736162162162163,
          7.746171171171172,
          7.756180180180181,
          7.76618918918919,
          7.776198198198199,
          7.786207207207208,
          7.796216216216217,
          7.806225225225226,
          7.816234234234235,
          7.826243243243244,
          7.836252252252253,
          7.846261261261262,
          7.856270270270271,
          7.86627927927928,
          7.876288288288289,
          7.886297297297298,
          7.8963063063063075,
          7.906315315315316,
          7.916324324324325,
          7.926333333333334,
          7.936342342342344,
          7.946351351351352,
          7.956360360360361,
          7.96636936936937,
          7.976378378378379,
          7.9863873873873885,
          7.996396396396397,
          8.006405405405406,
          8.016414414414415,
          8.026423423423424,
          8.036432432432434,
          8.046441441441441,
          8.056450450450452,
          8.066459459459459,
          8.07646846846847,
          8.086477477477478,
          8.096486486486487,
          8.106495495495496,
          8.116504504504505,
          8.126513513513515,
          8.136522522522522,
          8.146531531531533,
          8.156540540540542,
          8.16654954954955,
          8.17655855855856,
          8.186567567567568,
          8.196576576576577,
          8.206585585585586,
          8.216594594594596,
          8.226603603603603,
          8.236612612612614,
          8.246621621621623,
          8.256630630630632,
          8.26663963963964,
          8.27664864864865,
          8.28665765765766,
          8.296666666666667,
          8.306675675675677,
          8.316684684684684,
          8.326693693693695,
          8.336702702702704,
          8.346711711711713,
          8.356720720720721,
          8.36672972972973,
          8.37673873873874,
          8.386747747747748,
          8.396756756756758,
          8.406765765765766,
          8.416774774774776,
          8.426783783783785,
          8.436792792792794,
          8.446801801801803,
          8.456810810810811,
          8.466819819819822,
          8.476828828828829,
          8.48683783783784,
          8.496846846846847,
          8.506855855855857,
          8.516864864864866,
          8.526873873873875,
          8.536882882882884,
          8.546891891891892,
          8.556900900900903,
          8.56690990990991,
          8.57691891891892,
          8.586927927927928,
          8.596936936936938,
          8.606945945945947,
          8.616954954954956,
          8.626963963963965,
          8.636972972972973,
          8.646981981981984,
          8.656990990990991,
          8.667000000000002,
          8.677009009009009,
          8.68701801801802,
          8.697027027027028,
          8.707036036036037,
          8.717045045045046,
          8.727054054054054,
          8.737063063063065,
          8.747072072072072,
          8.757081081081083,
          8.76709009009009,
          8.7770990990991,
          8.787108108108109,
          8.797117117117118,
          8.807126126126127,
          8.817135135135135,
          8.827144144144146,
          8.837153153153153,
          8.847162162162164,
          8.857171171171172,
          8.867180180180181,
          8.87718918918919,
          8.887198198198199,
          8.897207207207208,
          8.907216216216217,
          8.917225225225227,
          8.927234234234234,
          8.937243243243245,
          8.947252252252254,
          8.957261261261262,
          8.967270270270271,
          8.97727927927928,
          8.98728828828829,
          8.997297297297298,
          9.007306306306308,
          9.017315315315315,
          9.027324324324326,
          9.037333333333335,
          9.047342342342343,
          9.057351351351352,
          9.067360360360361,
          9.077369369369372,
          9.087378378378379,
          9.09738738738739,
          9.107396396396396,
          9.117405405405407,
          9.127414414414416,
          9.137423423423424,
          9.147432432432433,
          9.157441441441442,
          9.167450450450453,
          9.17745945945946,
          9.18746846846847,
          9.197477477477477,
          9.207486486486488,
          9.217495495495497,
          9.227504504504505,
          9.237513513513514,
          9.247522522522523,
          9.257531531531534,
          9.26754054054054,
          9.277549549549551,
          9.287558558558558,
          9.297567567567569,
          9.307576576576578,
          9.317585585585586,
          9.327594594594595,
          9.337603603603604,
          9.347612612612615,
          9.357621621621622,
          9.367630630630632,
          9.37763963963964,
          9.38764864864865,
          9.397657657657659,
          9.407666666666668,
          9.417675675675676,
          9.427684684684685,
          9.437693693693696,
          9.447702702702703,
          9.457711711711713,
          9.46772072072072,
          9.477729729729731,
          9.48773873873874,
          9.497747747747749,
          9.507756756756757,
          9.517765765765766,
          9.527774774774777,
          9.537783783783784,
          9.547792792792794,
          9.557801801801803,
          9.567810810810812,
          9.57781981981982,
          9.58782882882883,
          9.597837837837838,
          9.607846846846847,
          9.617855855855858,
          9.627864864864865,
          9.637873873873875,
          9.647882882882884,
          9.657891891891893,
          9.667900900900902,
          9.67790990990991,
          9.687918918918921,
          9.697927927927928,
          9.707936936936939,
          9.717945945945946,
          9.727954954954956,
          9.737963963963965,
          9.747972972972974,
          9.757981981981983,
          9.767990990990992,
          9.778000000000002,
          9.78800900900901,
          9.79801801801802,
          9.808027027027027,
          9.818036036036037,
          9.828045045045046,
          9.838054054054055,
          9.848063063063064,
          9.858072072072073,
          9.868081081081083,
          9.87809009009009,
          9.888099099099101,
          9.898108108108108,
          9.908117117117119,
          9.918126126126127,
          9.928135135135136,
          9.938144144144145,
          9.948153153153154,
          9.958162162162164,
          9.968171171171171,
          9.978180180180182,
          9.988189189189189,
          9.9981981981982,
          10.008207207207207,
          10.018216216216217,
          10.028225225225226,
          10.038234234234235,
          10.048243243243244,
          10.058252252252252,
          10.068261261261261,
          10.07827027027027,
          10.088279279279279,
          10.098288288288288,
          10.108297297297298,
          10.118306306306307,
          10.128315315315316,
          10.138324324324325,
          10.148333333333333,
          10.158342342342342,
          10.168351351351351,
          10.17836036036036,
          10.188369369369369,
          10.19837837837838,
          10.208387387387388,
          10.218396396396397,
          10.228405405405406,
          10.238414414414414,
          10.248423423423423,
          10.258432432432432,
          10.26844144144144,
          10.27845045045045,
          10.28845945945946,
          10.298468468468469,
          10.308477477477478,
          10.318486486486487,
          10.328495495495496,
          10.338504504504504,
          10.348513513513513,
          10.358522522522522,
          10.368531531531533,
          10.378540540540541,
          10.38854954954955,
          10.398558558558559,
          10.408567567567568,
          10.418576576576577,
          10.428585585585585,
          10.438594594594594,
          10.448603603603603,
          10.458612612612614,
          10.468621621621622,
          10.478630630630631,
          10.48863963963964,
          10.498648648648649,
          10.508657657657658,
          10.518666666666666,
          10.528675675675675,
          10.538684684684684,
          10.548693693693695,
          10.558702702702703,
          10.568711711711712,
          10.578720720720721,
          10.58872972972973,
          10.598738738738739,
          10.608747747747747,
          10.618756756756756,
          10.628765765765765,
          10.638774774774776,
          10.648783783783784,
          10.658792792792793,
          10.668801801801802,
          10.67881081081081,
          10.68881981981982,
          10.698828828828828,
          10.708837837837837,
          10.718846846846848,
          10.728855855855857,
          10.738864864864865,
          10.748873873873874,
          10.758882882882883,
          10.768891891891892,
          10.7789009009009,
          10.78890990990991,
          10.798918918918918,
          10.808927927927929,
          10.818936936936938,
          10.828945945945947,
          10.838954954954955,
          10.848963963963964,
          10.858972972972973,
          10.868981981981982,
          10.87899099099099,
          10.889,
          10.89900900900901,
          10.909018018018019,
          10.919027027027028,
          10.929036036036036,
          10.939045045045045,
          10.949054054054054,
          10.959063063063063,
          10.969072072072072,
          10.97908108108108,
          10.989090090090091,
          10.9990990990991,
          11.009108108108109,
          11.019117117117117,
          11.029126126126126,
          11.039135135135135,
          11.049144144144144,
          11.059153153153153,
          11.069162162162163,
          11.079171171171172,
          11.08918018018018,
          11.09918918918919,
          11.109198198198198,
          11.119207207207207,
          11.129216216216216,
          11.139225225225225,
          11.149234234234234,
          11.159243243243244,
          11.169252252252253,
          11.179261261261262,
          11.18927027027027,
          11.19927927927928,
          11.209288288288288,
          11.219297297297297,
          11.229306306306306,
          11.239315315315315,
          11.249324324324325,
          11.259333333333334,
          11.269342342342343,
          11.279351351351352,
          11.28936036036036,
          11.29936936936937,
          11.309378378378378,
          11.319387387387387,
          11.329396396396396,
          11.339405405405406,
          11.349414414414415,
          11.359423423423424,
          11.369432432432433,
          11.379441441441442,
          11.38945045045045,
          11.39945945945946,
          11.409468468468468,
          11.419477477477479,
          11.429486486486487,
          11.439495495495496,
          11.449504504504505,
          11.459513513513514,
          11.469522522522523,
          11.479531531531531,
          11.48954054054054,
          11.499549549549549,
          11.50955855855856,
          11.519567567567568,
          11.529576576576577,
          11.539585585585586,
          11.549594594594595,
          11.559603603603604,
          11.569612612612612,
          11.579621621621621,
          11.58963063063063,
          11.59963963963964,
          11.60964864864865,
          11.619657657657658,
          11.629666666666667,
          11.639675675675676,
          11.649684684684685,
          11.659693693693693,
          11.669702702702702,
          11.679711711711711,
          11.689720720720722,
          11.69972972972973,
          11.70973873873874,
          11.719747747747748,
          11.729756756756757,
          11.739765765765766,
          11.749774774774774,
          11.759783783783783,
          11.769792792792794,
          11.779801801801803,
          11.789810810810812,
          11.79981981981982,
          11.80982882882883,
          11.819837837837838,
          11.829846846846847,
          11.839855855855856,
          11.849864864864864,
          11.859873873873875,
          11.869882882882884,
          11.879891891891893,
          11.889900900900901,
          11.89990990990991,
          11.909918918918919,
          11.919927927927928,
          11.929936936936937,
          11.939945945945945,
          11.949954954954956,
          11.959963963963965,
          11.969972972972974,
          11.979981981981982,
          11.989990990990991,
          12
         ],
         "xaxis": "x",
         "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,
          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,
          2.9772971811573687,
          2.8612371704289643,
          2.7507777143481364,
          2.645597610010178,
          2.545396942438287,
          2.449895487317799,
          2.3588312473007083,
          2.271959109584197,
          2.1890496137006714,
          2.1098878195567567,
          2.034272266740459,
          1.9620140169927902,
          1.8929357725246656,
          1.8268710635622807,
          1.7636634991335962,
          1.703166075673328,
          1.6452405385309161,
          1.589756791921753,
          1.5365923532720487,
          1.4856318482769826,
          1.4367665433246657,
          1.3898939122387062,
          1.344917234563307,
          1.3017452228598687,
          1.2602916767056669,
          1.220475161285828,
          1.1822187086515517,
          1.1454495398823519,
          1.1100988065396262,
          1.0761013499346683,
          1.0433954768576623,
          1.011922750526462,
          0.9816277956161326,
          0.9524581163232924,
          0.9243639265041452,
          0.8972979910024557,
          0.8712154773543774,
          0.8460738171215451,
          0.8218325761628307,
          0.7984533332091062,
          0.7758995661547214,
          0.7541365455246307,
          0.7331312346175392,
          0.7128521958634424,
          0.6932695029688047,
          0.6743546584546369,
          0.6560805162221464,
          0.6384212088076755,
          0.621352079013515,
          0.6048496156240601,
          0.5888913929378672,
          0.5734560138655765,
          0.5585230563615823,
          0.5440730229738325,
          0.5300872933113926,
          0.5165480792434726,
          0.5034383826566218,
          0.4907419556088126,
          0.4784432627302486,
          0.4665274457310158,
          0.454980289885221,
          0.4437881923700691,
          0.43293813234651357,
          0.42241764267568294,
          0.4122147831723137,
          0.4023181153029447,
          0.39271667824267487,
          0.38339996620991684,
          0.374357907003797,
          0.3655808416737173,
          0.35705950525510366,
          0.3487850085095808,
          0.34074882061171385,
          0.33294275272811313,
          0.32535894243808583,
          0.31798983894818844,
          0.31082818905598,
          0.3038670238210335,
          0.2970996459038274,
          0.2905196175355411,
          0.28412074908401375,
          0.2778970881832228,
          0.2718429093955899,
          0.26595270437825536,
          0.2602211725261665,
          0.25464321206643226,
          0.2492139115798892,
          0.24392854192723054,
          0.2387825485583608,
          0.23377154418487245,
          0.22889130179669315,
          0.22413774800503555,
          0.21950695669479658,
          0.21499514297050537,
          0.2105986573808129,
          0.20631398040735788,
          0.2021377172046283,
          0.19806659257818365,
          0.19409744618929445,
          0.190227227974715,
          0.18645299377091717,
          0.18277190113269443,
          0.17918120533659174,
          0.1756782555601247,
          0.1722604912282433,
          0.1689254385189407,
          0.16567070702034636,
          0.16249398653203745,
          0.15939304400369295,
          0.15636572060456466,
          0.15340992891758776,
          0.1505236502522646,
          0.14770493207076468,
          0.144951885521964,
          0.1422626830784167,
          0.13963555627150998,
          0.13706879352028684,
          0.13456073804965524,
          0.1321097858939111,
          0.1297143839817097,
          0.1273730282988088,
          0.12508426212509147,
          0.12284667434254479,
          0.12065889781103761,
          0.11851960780889098,
          0.1164275205353813,
          0.11438139167245781,
          0.11238001500308095,
          0.11042222108371891,
          0.10850687596865083,
          0.10663287998384281,
          0.10479916654826286,
          0.10300470104060663,
          0.10124847970949594,
          0.09952952862530712,
          0.09784690267186869,
          0.09619968457634978,
          0.09458698397574104,
          0.09300793651839775,
          0.09146170299919112,
          0.08994746852687391,
          0.088464441722335,
          0.08701185394647296,
          0.0855889585564793,
          0.08419503018937347,
          0.0828293640716857,
          0.08149127535423055,
          0.08018009847096287,
          0.0788951865209511,
          0.0776359106725447,
          0.07640165958885535,
          0.07519183887370592,
          0.07400587053724253,
          0.0728431924804353,
          0.07170325799773053,
          0.07058553529714551,
          0.06948950703713037,
          0.06841466987954697,
          0.06736053405814547,
          0.0663266229619432,
          0.06531247273293592,
          0.06431763187759673,
          0.06334166089163822,
          0.06238413189753804,
          0.06144462829434605,
          0.06052274441931367,
          0.059618085220902305,
          0.058730265942748536,
          0.05785891181817868,
          0.05700365777488332,
          0.05616414814937806,
          0.05534003641089047,
          0.054530984894330135,
          0.05373666454200966,
          0.052956754653800314,
          0.05219094264541632,
          0.05143892381453599,
          0.050700401114477434,
          0.04997508493515965,
          0.04926269289108836,
          0.04856294961611819,
          0.04787558656475034,
          0.04720034181973623,
          0.046536959905765125,
          0.04588519160902247,
          0.045244793802414876,
          0.04461552927626375,
          0.043997166574279045,
          0.043389479834629964,
          0.04279224863593799,
          0.04220525784802269,
          0.041628297487238695,
          0.04106116257624657,
          0.040503653008067894,
          0.039955573414279244,
          0.03941673303720527,
          0.03888694560597725,
          0.03836602921632677,
          0.037853806213990704,
          0.037350103081606544,
          0.03685475032898328,
          0.03636758238663523,
          0.03588843750247244,
          0.035417157641542976,
          0.03495358838872811,
          0.034497578854293685,
          0.034048981582204624,
          0.033607652461113614,
          0.03317345063793696,
          0.03274623843393486,
          0.032325881263215284,
          0.03191224755358432,
          0.03150520866966778,
          0.03110463883823226,
          0.030710415075635572,
          0.03032241711733975,
          0.02994052734942115,
          0.02956463074201543,
          0.02919461478463671,
          0.028830369423312224,
          0.0284717869994765,
          0.028118762190569982,
          0.027771191952289928,
          0.02742897546244221,
          0.027092014066345364,
          0.026760211223738752,
          0.026433472457149616,
          0.026111705301673935,
          0.025794819256128764,
          0.025482725735534263,
          0.025175338024885297,
          0.024872571234174114,
          0.024574342254626166,
          0.024280569716113358,
          0.023991173945709036,
          0.023706076927351393,
          0.023425202262581934,
          0.0231484751323277,
          0.022875822259696105,
          0.022607171873753037,
          0.02234245367425519,
          0.02208159879730878,
          0.0218245397819279,
          0.0215712105374661,
          0.021321546311896235,
          0.021075483660913812,
          0.02083296041784045,
          0.020593915664304168,
          0.02035828970167463,
          0.020126024023231475,
          0.019897061287045208,
          0.01967134528955014,
          0.01944882093979004,
          0.019229434234317434,
          0.01901313223272809,
          0.018799863033813095,
          0.01858957575231097,
          0.018382220496243384,
          0.018177748344817963,
          0.017976111326882725,
          0.017777262399916626,
          0.017581155429541716,
          0.01738774516954226,
          0.01719698724237717,
          0.017008838120172166,
          0.016823255106178443,
          0.01664019631668545,
          0.01645962066337515,
          0.01628148783610605,
          0.016105758286115244,
          0.01593239320962735,
          0.015761354531859312,
          0.015592604891410563,
          0.015426107625028142,
          0.015261826752736945,
          0.015099726963325299,
          0.014939773600176419,
          0.014781932647436779,
          0.014626170716512302,
          0.014472455032883956,
          0.014320753423234236,
          0.014171034302876521,
          0.014023266663479292,
          0.0138774200610777,
          0.013733464604364823,
          0.013591370943255639,
          0.01345111025771639,
          0.013312654246852774,
          0.013175975118250149,
          0.013041045577559324,
          0.012907838818321773,
          0.01277632851202799,
          0.012646488798403271,
          0.012518294275914953,
          0.012391719992495703,
          0.012266741436477241,
          0.012143334527729338,
          0.012021475608998857,
          0.011901141437443861,
          0.01178230917635793,
          0.0116649563870799,
          0.011549061021084508,
          0.011434601412249371,
          0.011321556269293959,
          0.011209904668386388,
          0.01109962604591383,
          0.010990700191412578,
          0.01088310724065377,
          0.010776827668881116,
          0.010671842284196792,
          0.010568132221091979,
          0.01046567893411853,
          0.01036446419169828,
          0.010264470070066822,
          0.010165678947348355,
          0.010068073497758623,
          0.009971636685932673,
          0.009876351761374668,
          0.009782202253026688,
          0.009689171963953792,
          0.009597244966142462,
          0.009506405595409908,
          0.009416638446421464,
          0.009327928367813636,
          0.009240260457420291,
          0.009153620057599478,
          0.009067992750658706,
          0.008983364354376218,
          0.008899720917616146,
          0.008817048716035242,
          0.00873533424787919,
          0.008654564229866359,
          0.008574725593156975,
          0.00849580547940581,
          0.00841779123689636,
          0.008340670416754764,
          0.008264430769241563,
          0.008189060240119589,
          0.008114546967096145,
          0.008040879276337917,
          0.007968045679056889,
          0.007896034868165706,
          0.00782483571500084,
          0.007754437266112141,
          0.007684828740117205,
          0.007615999524619136,
          0.007547939173186302,
          0.007480637402392638,
          0.007414084088917241,
          0.007348269266701869,
          0.007283183124165114,
          0.007218816001471926,
          0.007155158387857358,
          0.007092200919003264,
          0.00702993437446685,
          0.006968349675159858,
          0.006907437880877384,
          0.006847190187875154,
          0.0067875979264942566,
          0.0067286525588323015,
          0.006670345676459943,
          0.006612668998181869,
          0.006555614367841236,
          0.006499173752166654,
          0.006443339238660746,
          0.006388103033529486,
          0.006333457459651355,
          0.0062793949545855154,
          0.006225908068618167,
          0.006172989462846236,
          0.006120631907297663,
          0.006068828279087474,
          0.006017571560608908,
          0.005966854837758809,
          0.005916671298196643,
          0.005867014229636361,
          0.005817877018170478,
          0.005769253146625625,
          0.005721136192948999,
          0.005673519828625017,
          0.005626397817121544,
          0.005579764012365134,
          0.005533612357244591,
          0.0054879368821423745,
          0.00544273170349319,
          0.005397991022369271,
          0.005353709123091726,
          0.005309880371867509,
          0.005266499215451421,
          0.005223560179832673,
          0.005181057868945475,
          0.005138986963403192,
          0.005097342219255591,
          0.005056118466768679,
          0.0050153106092267336,
          0.004974913621755997,
          0.004934922550169682,
          0.0048953325098338146,
          0.004856138684553518,
          0.0048173363254792895,
          0.004778920750032932,
          0.00474088734085271,
          0.0047032315447573456,
          0.004665948871728517,
          0.004629034893911433,
          0.0045924852446332,
          0.004556295617438562,
          0.004520461765142736,
          0.004484979498900941,
          0.004449844687294349,
          0.004415053255432112,
          0.00438060118406916,
          0.004346484508739437,
          0.004312699318904322,
          0.004279241757115898,
          0.004246108018194803,
          0.004213294348422386,
          0.004180797044746857,
          0.004148612454003215,
          0.004116736972146642,
          0.004085167043499146,
          0.004053899160009144,
          0.0040229298605238065,
          0.0039922557300738635,
          0.003961873399170675,
          0.003931779543115285,
          0.0039019708813192973,
          0.003872444176637291,
          0.0038431962347105853,
          0.003814223903322148,
          0.0037855240717624,
          0.0037570936702057594,
          0.0037289296690976893,
          0.0037010290785520804,
          0.0036733889477587245,
          0.0036460063644007685,
          0.003618878454081891,
          0.0035920023797630625,
          0.003565375341208707,
          0.0035389945744420575,
          0.0035128573512095917,
          0.0034869609784543365,
          0.0034613027977978975,
          0.0034358801850310366,
          0.0034106905496126706,
          0.003385731334177102,
          0.0033610000140493704,
          0.0033364940967685235,
          0.0033122111216187244,
          0.003288148659168005,
          0.0032643043108145525,
          0.0032406757083403917,
          0.003217260513472299,
          0.0031940564174498727,
          0.0031710611406005765,
          0.0031482724319216735,
          0.003125688068668886,
          0.003103305855951699,
          0.0030811236263351676,
          0.0030591392394481247,
          0.0030373505815976445,
          0.0030157555653897014,
          0.0029943521293558676,
          0.0029731382375859676,
          0.002952111879366587,
          0.0029312710688252975,
          0.002910613844580554,
          0.0028901382693971114,
          0.0028698424298468994,
          0.002849724435975233,
          0.002829782420972291,
          0.002810014540849752,
          0.002790418974122503,
          0.002770993921495342,
          0.002751737605554562,
          0.0027326482704643686,
          0.002713724181668014,
          0.0026949636255935894,
          0.002676364909364376,
          0.0026579263605136932,
          0.0026396463267041557,
          0.002621523175451275,
          0.0026035552938513083,
          0.0025857410883133114,
          0.002568078984295303,
          0.0025505674260444776,
          0.002533204876341404,
          0.0025159898162481196,
          0.002498920744860085,
          0.002481996179061911,
          0.0024652146532868095,
          0.002448574719279683,
          0.002432074945863819,
          0.0024157139187111114,
          0.0023994902401157587,
          0.0023834025287713632,
          0.0023674494195514003,
          0.0023516295632929844,
          0.0023359416265838744,
          0.002320384291552687,
          0.0023049562556622244,
          0.0022896562315059114,
          0.0022744829466072518,
          0.0022594351432222853,
          0.0022445115781449605,
          0.0022297110225154133,
          0.0022150322616310758,
          0.0022004740947605813,
          0.0021860353349604177,
          0.0021717148088942796,
          0.002157511356655081,
          0.0021434238315895834,
          0.0021294511001256006,
          0.0021155920416017194,
          0.0021018455480995273,
          0.002088210524278274,
          0.0020746858872119607,
          0.0020612705662287744,
          0.0020479635027528757,
          0.0020347636501484734,
          0.0020216699735661546,
          0.002008681449791443,
          0.0019957970670955293,
          0.0019830158250881713,
          0.001970336734572692,
          0.001957758817403076,
          0.0019452811063431017,
          0.0019329026449275,
          0.0019206224873250912,
          0.0019084396982038837,
          0.0018963533525980826,
          0.0018843625357770019,
          0.0018724663431158315,
          0.0018606638799682404,
          0.0018489542615407863,
          0.00183733661276909,
          0.0018258100681957717,
          0.0018143737718500962,
          0.0018030268771293224,
          0.001791768546681706,
          0.0017805979522911562,
          0.001769514274763502,
          0.0017585167038143461,
          0.0017476044379584957,
          0.0017367766844009179,
          0.0017260326589292288,
          0.001715371585807666,
          0.00170479269767254,
          0.0016942952354291273,
          0.0016838784481499926,
          0.0016735415929747177,
          0.0016632839350110133,
          0.0016531047472371837,
          0.001643003310405945,
          0.001632978912949555,
          0.001623030850886247,
          0.0016131584277279465,
          0.0016033609543892398,
          0.0015936377490975955,
          0.0015839881373048016,
          0.001574411451599615,
          0.0015649070316215868,
          0.0015554742239760652,
          0.0015461123821503449,
          0.001536820866430956,
          0.0015275990438220594,
          0.0015184462879649528,
          0.001509361979058653,
          0.00150034550378155,
          0.0014913962552141119,
          0.0014825136327626214,
          0.001473697042083939,
          0.0014649458950112657,
          0.0014562596094809038,
          0.0014476376094599824,
          0.0014390793248751541,
          0.001430584191542234,
          0.001422151651096772,
          0.0014137811509255477,
          0.0014054721440989663,
          0.0013972240893043505,
          0.0013890364507801111,
          0.0013809086982507868,
          0.0013728403068629302,
          0.0013648307571218455,
          0.0013568795348291478,
          0.0013489861310211461,
          0.0013411500419080223,
          0.001333370768813816,
          0.0013256478181171802,
          0.0013179807011929156,
          0.001310368934354263,
          0.00130281203879594,
          0.0012953095405379216,
          0.0012878609703699446,
          0.0012804658637967337,
          0.0012731237609839249,
          0.001265834206704696,
          0.001258596750287077,
          0.0012514109455619418,
          0.0012442763508116613,
          0.0012371925287194198,
          0.0012301590463191776,
          0.0012231754749462713,
          0.0012162413901886484,
          0.0012093563718387163,
          0.0012025200038458107,
          0.0011957318742692625,
          0.001188991575232065,
          0.001182298702875122,
          0.0011756528573120787,
          0.0011690536425847222,
          0.0011625006666189433,
          0.0011559935411812564,
          0.00114953188183586,
          0.001143115307902243,
          0.001136743442413318,
          0.0011304159120740834,
          0.0011241323472207972,
          0.001117892381780664,
          0.0011116956532320253,
          0.001105541802565045,
          0.001099430474242881,
          0.001093361316163344,
          0.0010873339796210273,
          0.0010813481192699093,
          0.001075403393086418,
          0.0010694994623329467,
          0.0010636359915218285,
          0.001057812648379746,
          0.0010520291038125873,
          0.0010462850318707245,
          0.0010405801097147249,
          0.0010349140175814802,
          0.0010292864387507516,
          0.001023697059512119,
          0.0010181455691323392,
          0.0010126316598230985,
          0.0010071550267091575,
          0.0010017153677968874,
          0.0009963123839431807,
          0.0009909457788247447,
          0.0009856152589077648,
          0.0009803205334179353,
          0.0009750613143108482,
          0.0009698373162427445,
          0.0009646482565416138,
          0.0009594938551786419,
          0.0009543738347400046,
          0.0009492879203989924,
          0.0009442358398884772,
          0.000939217323473702,
          0.0009342321039254012,
          0.0009292799164932346,
          0.000924360498879544,
          0.0009194735912134187,
          0.0009146189360250714,
          0.0009097962782205144,
          0.0009050053650565394,
          0.0009002459461159922,
          0.0008955177732833388,
          0.0008908206007205215,
          0.0008861541848430974,
          0.0008815182842966594,
          0.0008769126599335341,
          0.0008723370747897539,
          0.0008677912940622961,
          0.0008632750850865927,
          0.0008587882173142999,
          0.0008543304622913308,
          0.0008499015936361386,
          0.0008455013870182595,
          0.0008411296201370996,
          0.0008367860727009721,
          0.0008324705264063769,
          0.0008281827649175171,
          0.0008239225738460578,
          0.0008196897407311151,
          0.0008154840550194777,
          0.0008113053080460561,
          0.0008071532930145565,
          0.0008030278049783781,
          0.0007989286408217279,
          0.0007948555992409557,
          0.0007908084807260981,
          0.0007867870875426373,
          0.0007827912237134665,
          0.0007788206950010635,
          0.0007748753088898638,
          0.0007709548745688373,
          0.0007670592029142613,
          0.0007631881064726924,
          0.0007593413994441252,
          0.0007555188976653494,
          0.0007517204185934886,
          0.0007479457812897292,
          0.0007441948064032322,
          0.0007404673161552236,
          0.0007367631343232674,
          0.0007330820862257142,
          0.000729423998706324,
          0.0007257887001190584,
          0.000722176020313053,
          0.0007185857906177449,
          0.0007150178438281754,
          0.0007114720141904535,
          0.0007079481373873822,
          0.0007044460505242436,
          0.0007009655921147436,
          0.0006975066020671116,
          0.0006940689216703537,
          0.0006906523935806621,
          0.0006872568618079679,
          0.0006838821717026483,
          0.0006805281699423791,
          0.0006771947045191305,
          0.0006738816247263078,
          0.0006705887811460323,
          0.0006673160256365628,
          0.0006640632113198538,
          0.000660830192569253,
          0.0006576168249973282,
          0.0006544229654438322,
          0.0006512484719637965,
          0.0006480932038157555,
          0.0006449570214500985,
          0.0006418397864975493,
          0.00063874136175777,
          0.0006356616111880876,
          0.0006326003998923468,
          0.0006295575941098772,
          0.0006265330612045848,
          0.0006235266696541594,
          0.0006205382890393984,
          0.0006175677900336459,
          0.0006146150443923447,
          0.0006116799249427013,
          0.0006087623055734631,
          0.0006058620612248011,
          0.0006029790678783054,
          0.0006001132025470848,
          0.0005972643432659739,
          0.0005944323690818435,
          0.000591617160044015,
          0.0005888185971947763,
          0.0005860365625599978,
          0.0005832709391398519,
          0.0005805216108996244,
          0.0005777884627606287,
          0.0005750713805912143,
          0.0005723702511978698,
          0.0005696849623164205,
          0.0005670154026033191,
          0.0005643614616270262,
          0.0005617230298594843,
          0.0005590999986676805,
          0.0005564922603052951,
          0.0005538997079044411,
          0.0005513222354674893,
          0.0005487597378589781,
          0.0005462121107976081,
          0.0005436792508483206,
          0.0005411610554144585,
          0.0005386574227300082,
          0.0005361682518519244,
          0.0005336934426525303,
          0.000531232895812001,
          0.0005287865128109228,
          0.0005263541959229292,
          0.0005239358482074141,
          0.0005215313735023197,
          0.0005191406764169975,
          0.0005167636623251473,
          0.0005144002373578217,
          0.0005120503083965091,
          0.0005097137830662844,
          0.0005073905697290308,
          0.0005050805774767305,
          0.0005027837161248249,
          0.000500499896205642,
          0.0004982290289618906,
          0.0004959710263402229,
          0.0004937258009848591,
          0.0004914932662312804,
          0.0004892733360999832,
          0.0004870659252902995,
          0.00048487094917427773,
          0.0004826883237906263,
          0.00048051796583871887,
          0.00047835979267265893,
          0.00047621372229540726,
          0.0004740796733529636,
          0.00047195756512861194,
          0.000469847317537221,
          0.00046774885111960213,
          0.0004656620870369251,
          0.00046358694706518847,
          0.00046152335358974606,
          0.00045947122959988796,
          0.000457430498683477,
          0.0004554010850216354,
          0.000453382913383488,
          0.0004513759091209563,
          0.00044937999816360415,
          0.0004473951070135347,
          0.000445421162740339,
          0.0004434580929760925,
          0.0004415058259104049,
          0.000439564290285514,
          0.0004376334153914319,
          0.0004357131310611382,
          0.00043380336766581936,
          0.00043190405611015677,
          0.00043001512782765944,
          0.000428136514776044,
          0.0004262681494326592,
          0.0004244099647899563,
          0.00042256189435100163,
          0.0004207238721250356,
          0.0004188958326230742,
          0.0004170777108535524,
          0.0004152694423180119,
          0.0004134709630068296,
          0.00041168220939498786,
          0.00040990311843788595,
          0.0004081336275671936,
          0.0004063736746867412,
          0.00040462319816845377,
          0.0004028821368483221,
          0.00040115043002241326,
          0.0003994280174429202,
          0.00039771483931424844,
          0.0003960108362891416,
          0.0003943159494648429,
          0.0003926301203792962,
          0.0003909532910073794,
          0.000389285403757178,
          0.00038762640146629214,
          0.00038597622739817956,
          0.00038433482523853404,
          0.00038270213909169737,
          0.0003810781134771066,
          0.0003794626933257753,
          0.00037785582397680684,
          0.00037625745117394213,
          0.00037466752106214067,
          0.0003730859801841924,
          0.000371512775477363,
          0.0003699478542700707,
          0.0003683911642785945,
          0.0003668426536038125,
          0.0003653022707279743,
          0.0003637699645114988,
          0.00036224568418980667,
          0.0003607293793701807,
          0.00035922100002865563,
          0.00035772049650693784,
          0.00035622781950935337,
          0.000354742920099825,
          0.0003532657496988773,
          0.0003517962600806707,
          0.0003503344033700611,
          0.00034888013203968933,
          0.00034743339890709656,
          0.00034599415713186684,
          0.00034456236021279587,
          0.00034313796198508705,
          0.0003417209166175723,
          0.00034031117860995976,
          0.00033890870279010705,
          0.0003375134443113183,
          0.0003361253586496678,
          0.000334744401601348,
          0.00033337052928004155,
          0.00033200369811431786,
          0.0003306438648450539,
          0.000329290986522878,
          0.0003279450205056387,
          0.00032660592445589437,
          0.0003252736563384283,
          0.00032394817441778535,
          0.0003226294372558313,
          0.00032131740370933484,
          0.0003200120329275711,
          0.0003187132843499478,
          0.0003174211177036522,
          0.00031613549300132097,
          0.00031485637053872885,
          0.0003135837108925006,
          0.00031231747491784295,
          0.00031105762374629664,
          0.00030980411878350956,
          0.0003085569217070298,
          0.0003073159944641184,
          0.00030608129926958214,
          0.0003048527986036265,
          0.0003036304552097264,
          0.0003024142320925177,
          0.0003012040925157069,
          0.00030000000000000003
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Pareto-Verteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          5
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          10
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df=[]\n",
    "b,xm = 1, 0.2\n",
    "x = np.linspace(0.001, 10, NN)\n",
    "y = stats.pareto.pdf(x, b)\n",
    "df.append(pd.DataFrame({\"x\": x+xm, \"y\": y, \"parameter\":f\"<i>x<sub>min</sub></i>={xm}; <i>λ</i>={b}\"}))\n",
    "\n",
    "b,xm = 2, 1\n",
    "y = stats.pareto.pdf(x, b)\n",
    "df.append(pd.DataFrame({\"x\": x+xm, \"y\": y, \"parameter\":f\"<i>x<sub>min</sub></i>={xm}; <i>λ</i>={b}\"}))\n",
    "\n",
    "b,xm = 3, 2\n",
    "y = stats.pareto.pdf(x, b)\n",
    "df.append(pd.DataFrame({\"x\": x+xm, \"y\": y, \"parameter\":f\"<i>x<sub>min</sub></i>={xm}; <i>λ</i>={b}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", range_x=[0,5], range_y=[0,10], labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Pareto-Verteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "f372b47d-1870-4795-80cc-7370ffdb8360",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Gammaverteilung\n",
    "\n",
    "Die Gammaverteilung ist eine kontinuierliche Wahrscheinlichkeitsverteilung, die sowohl der Exponentialverteilung gleichen kann als auch der Normalverteilung. Die Gammaverteilung wird häufig verwendet, um die Summe von unabhängigen Exponentialverteilungen zu modellieren. Sie kann als eine verallgemeinerte Exponentialverteilung angesehen werden. Sie wird häufig verwendet, um die Wartezeit bis zum Auftreten eines Ereignisses zu modellieren, sowie in verschiedenen anderen Anwendungen."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1b1dea93-8359-4bd5-bb2e-3904049246e7",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Parameter der Gammaverteilung ist der Formparameter $\\alpha>0$ und der Skalen- oder Ratenparamter $\\beta>0$. Die Verteilung ist positiv definiert durch\n",
    "\n",
    "$$\n",
    " f(x) = \\begin{cases}\n",
    "\\frac{ x^{\\alpha-1} e^{-\\beta x} \\beta^\\alpha}{\\Gamma(\\alpha)}, x\\geq0 ,\\\\\n",
    "0,  x<0.\n",
    "\\end{cases}\n",
    "$$\n",
    "\n",
    "Die Gammaverteilung kann man von der Exponentialverteilung durch linksseitigen Anstieg unterscheiden. Die Gammaverteilung kann rechtschief und linksschief sein. Wenn die Summe von Exponentialverteilungen modelliert werden soll, ist die Gammaverteilung die richtige Wahl."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "id": "24dfb22f-db1b-46b9-81ad-e8c782dfb121",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>α</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>α</i>=1",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>α</i>=1",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.01,
          0.014599769955944034,
          0.019199539911888067,
          0.023799309867832102,
          0.028399079823776138,
          0.032998849779720174,
          0.0375986197356642,
          0.04219838969160824,
          0.046798159647552275,
          0.05139792960349631,
          0.055997699559440346,
          0.060597469515384375,
          0.06519723947132841,
          0.06979700942727245,
          0.07439677938321647,
          0.0789965493391605,
          0.08359631929510454,
          0.08819608925104858,
          0.09279585920699261,
          0.09739562916293665,
          0.10199539911888068,
          0.1065951690748247,
          0.11119493903076874,
          0.11579470898671278,
          0.12039447894265681,
          0.12499424889860085,
          0.12959401885454488,
          0.13419378881048893,
          0.13879355876643296,
          0.143393328722377,
          0.14799309867832103,
          0.15259286863426508,
          0.1571926385902091,
          0.16179240854615312,
          0.16639217850209717,
          0.1709919484580412,
          0.17559171841398524,
          0.18019148836992926,
          0.18479125832587331,
          0.18939102828181734,
          0.19399079823776139,
          0.1985905681937054,
          0.20319033814964943,
          0.20779010810559348,
          0.2123898780615375,
          0.21698964801748155,
          0.22158941797342557,
          0.22618918792936962,
          0.23078895788531364,
          0.23538872784125767,
          0.23998849779720172,
          0.24458826775314574,
          0.2491880377090898,
          0.2537878076650338,
          0.25838757762097786,
          0.2629873475769219,
          0.2675871175328659,
          0.2721868874888099,
          0.276786657444754,
          0.281386427400698,
          0.28598619735664205,
          0.29058596731258607,
          0.29518573726853015,
          0.29978550722447417,
          0.3043852771804182,
          0.3089850471363622,
          0.31358481709230623,
          0.3181845870482503,
          0.32278435700419433,
          0.32738412696013836,
          0.3319838969160824,
          0.33658366687202645,
          0.3411834368279705,
          0.3457832067839145,
          0.3503829767398585,
          0.35498274669580254,
          0.3595825166517466,
          0.36418228660769064,
          0.36878205656363466,
          0.3733818265195787,
          0.37798159647552276,
          0.3825813664314668,
          0.3871811363874108,
          0.39178090634335483,
          0.39638067629929885,
          0.40098044625524293,
          0.40558021621118695,
          0.41017998616713097,
          0.414779756123075,
          0.419379526079019,
          0.4239792960349631,
          0.4285790659909071,
          0.43317883594685114,
          0.43777860590279516,
          0.44237837585873924,
          0.44697814581468326,
          0.4515779157706273,
          0.4561776857265713,
          0.4607774556825153,
          0.4653772256384594,
          0.4699769955944034,
          0.47457676555034745,
          0.47917653550629147,
          0.48377630546223555,
          0.48837607541817957,
          0.4929758453741236,
          0.4975756153300676,
          0.5021753852860116,
          0.5067751552419557,
          0.5113749251978997,
          0.5159746951538438,
          0.5205744651097878,
          0.5251742350657318,
          0.5297740050216758,
          0.5343737749776198,
          0.538973544933564,
          0.543573314889508,
          0.548173084845452,
          0.552772854801396,
          0.5573726247573401,
          0.5619723947132841,
          0.5665721646692281,
          0.5711719346251721,
          0.5757717045811162,
          0.5803714745370603,
          0.5849712444930043,
          0.5895710144489483,
          0.5941707844048923,
          0.5987705543608364,
          0.6033703243167804,
          0.6079700942727244,
          0.6125698642286684,
          0.6171696341846125,
          0.6217694041405566,
          0.6263691740965006,
          0.6309689440524446,
          0.6355687140083887,
          0.6401684839643327,
          0.6447682539202767,
          0.6493680238762207,
          0.6539677938321647,
          0.6585675637881088,
          0.6631673337440529,
          0.6677671036999969,
          0.6723668736559409,
          0.676966643611885,
          0.681566413567829,
          0.686166183523773,
          0.690765953479717,
          0.695365723435661,
          0.6999654933916051,
          0.7045652633475492,
          0.7091650333034932,
          0.7137648032594373,
          0.7183645732153813,
          0.7229643431713253,
          0.7275641131272693,
          0.7321638830832133,
          0.7367636530391574,
          0.7413634229951014,
          0.7459631929510455,
          0.7505629629069895,
          0.7551627328629336,
          0.7597625028188776,
          0.7643622727748216,
          0.7689620427307656,
          0.7735618126867096,
          0.7781615826426537,
          0.7827613525985977,
          0.7873611225545417,
          0.7919608925104858,
          0.7965606624664299,
          0.8011604324223739,
          0.8057602023783179,
          0.8103599723342619,
          0.814959742290206,
          0.81955951224615,
          0.824159282202094,
          0.828759052158038,
          0.8333588221139822,
          0.8379585920699262,
          0.8425583620258702,
          0.8471581319818142,
          0.8517579019377582,
          0.8563576718937023,
          0.8609574418496463,
          0.8655572118055903,
          0.8701569817615343,
          0.8747567517174785,
          0.8793565216734225,
          0.8839562916293665,
          0.8885560615853105,
          0.8931558315412546,
          0.8977556014971986,
          0.9023553714531426,
          0.9069551414090866,
          0.9115549113650306,
          0.9161546813209748,
          0.9207544512769188,
          0.9253542212328628,
          0.9299539911888068,
          0.9345537611447509,
          0.9391535311006949,
          0.9437533010566389,
          0.9483530710125829,
          0.952952840968527,
          0.9575526109244711,
          0.9621523808804151,
          0.9667521508363591,
          0.9713519207923031,
          0.9759516907482472,
          0.9805514607041912,
          0.9851512306601352,
          0.9897510006160792,
          0.9943507705720233,
          0.9989505405279674,
          1.0035503104839114,
          1.0081500804398553,
          1.0127498503957995,
          1.0173496203517434,
          1.0219493903076875,
          1.0265491602636316,
          1.0311489302195755,
          1.0357487001755197,
          1.0403484701314636,
          1.0449482400874077,
          1.0495480100433516,
          1.0541477799992958,
          1.0587475499552397,
          1.0633473199111838,
          1.067947089867128,
          1.0725468598230719,
          1.077146629779016,
          1.08174639973496,
          1.086346169690904,
          1.090945939646848,
          1.095545709602792,
          1.100145479558736,
          1.1047452495146801,
          1.1093450194706242,
          1.1139447894265682,
          1.1185445593825123,
          1.1231443293384562,
          1.1277440992944003,
          1.1323438692503442,
          1.1369436392062884,
          1.1415434091622323,
          1.1461431791181764,
          1.1507429490741206,
          1.1553427190300645,
          1.1599424889860086,
          1.1645422589419525,
          1.1691420288978966,
          1.1737417988538406,
          1.1783415688097847,
          1.1829413387657286,
          1.1875411087216727,
          1.1921408786776169,
          1.1967406486335608,
          1.201340418589505,
          1.2059401885454488,
          1.210539958501393,
          1.2151397284573369,
          1.219739498413281,
          1.224339268369225,
          1.228939038325169,
          1.2335388082811132,
          1.238138578237057,
          1.2427383481930012,
          1.2473381181489451,
          1.2519378881048893,
          1.2565376580608332,
          1.2611374280167773,
          1.2657371979727212,
          1.2703369679286654,
          1.2749367378846095,
          1.2795365078405534,
          1.2841362777964975,
          1.2887360477524414,
          1.2933358177083856,
          1.2979355876643295,
          1.3025353576202736,
          1.3071351275762175,
          1.3117348975321617,
          1.3163346674881058,
          1.3209344374440497,
          1.3255342073999938,
          1.3301339773559377,
          1.3347337473118819,
          1.3393335172678258,
          1.34393328722377,
          1.3485330571797138,
          1.353132827135658,
          1.357732597091602,
          1.362332367047546,
          1.3669321370034901,
          1.371531906959434,
          1.3761316769153782,
          1.380731446871322,
          1.3853312168272662,
          1.3899309867832101,
          1.3945307567391543,
          1.3991305266950984,
          1.4037302966510423,
          1.4083300666069865,
          1.4129298365629304,
          1.4175296065188745,
          1.4221293764748184,
          1.4267291464307625,
          1.4313289163867065,
          1.4359286863426506,
          1.4405284562985947,
          1.4451282262545386,
          1.4497279962104828,
          1.4543277661664267,
          1.4589275361223708,
          1.4635273060783147,
          1.4681270760342588,
          1.4727268459902028,
          1.477326615946147,
          1.481926385902091,
          1.486526155858035,
          1.491125925813979,
          1.495725695769923,
          1.5003254657258671,
          1.504925235681811,
          1.5095250056377552,
          1.514124775593699,
          1.5187245455496432,
          1.5233243155055871,
          1.5279240854615312,
          1.5325238554174754,
          1.5371236253734193,
          1.5417233953293634,
          1.5463231652853073,
          1.5509229352412515,
          1.5555227051971954,
          1.5601224751531395,
          1.5647222451090834,
          1.5693220150650276,
          1.5739217850209717,
          1.5785215549769156,
          1.5831213249328597,
          1.5877210948888036,
          1.5923208648447478,
          1.5969206348006917,
          1.6015204047566358,
          1.6061201747125797,
          1.6107199446685239,
          1.615319714624468,
          1.619919484580412,
          1.624519254536356,
          1.6291190244923,
          1.633718794448244,
          1.638318564404188,
          1.6429183343601321,
          1.647518104316076,
          1.6521178742720202,
          1.6567176442279643,
          1.6613174141839082,
          1.6659171841398523,
          1.6705169540957963,
          1.6751167240517404,
          1.6797164940076843,
          1.6843162639636284,
          1.6889160339195723,
          1.6935158038755165,
          1.6981155738314606,
          1.7027153437874045,
          1.7073151137433487,
          1.7119148836992926,
          1.7165146536552367,
          1.7211144236111806,
          1.7257141935671247,
          1.7303139635230687,
          1.7349137334790128,
          1.739513503434957,
          1.7441132733909008,
          1.748713043346845,
          1.7533128133027889,
          1.757912583258733,
          1.762512353214677,
          1.767112123170621,
          1.771711893126565,
          1.776311663082509,
          1.7809114330384532,
          1.7855112029943971,
          1.7901109729503413,
          1.7947107429062852,
          1.7993105128622293,
          1.8039102828181732,
          1.8085100527741174,
          1.8131098227300613,
          1.8177095926860054,
          1.8223093626419495,
          1.8269091325978934,
          1.8315089025538376,
          1.8361086725097815,
          1.8407084424657256,
          1.8453082124216695,
          1.8499079823776137,
          1.8545077523335576,
          1.8591075222895017,
          1.8637072922454458,
          1.8683070622013898,
          1.872906832157334,
          1.8775066021132778,
          1.882106372069222,
          1.8867061420251658,
          1.89130591198111,
          1.8959056819370539,
          1.900505451892998,
          1.9051052218489422,
          1.909704991804886,
          1.9143047617608302,
          1.918904531716774,
          1.9235043016727182,
          1.9281040716286622,
          1.9327038415846063,
          1.9373036115405502,
          1.9419033814964943,
          1.9465031514524385,
          1.9511029214083824,
          1.9557026913643265,
          1.9603024613202704,
          1.9649022312762146,
          1.9695020012321585,
          1.9741017711881026,
          1.9787015411440465,
          1.9833013110999906,
          1.9879010810559348,
          1.9925008510118787,
          1.9971006209678228,
          2.0017003909237667,
          2.006300160879711,
          2.0108999308356545,
          2.0154997007915987,
          2.020099470747543,
          2.0246992407034865,
          2.0292990106594306,
          2.0338987806153748,
          2.038498550571319,
          2.043098320527263,
          2.0476980904832067,
          2.052297860439151,
          2.056897630395095,
          2.061497400351039,
          2.066097170306983,
          2.070696940262927,
          2.075296710218871,
          2.079896480174815,
          2.0844962501307593,
          2.089096020086703,
          2.093695790042647,
          2.0982955599985913,
          2.1028953299545354,
          2.107495099910479,
          2.1120948698664233,
          2.1166946398223674,
          2.1212944097783115,
          2.1258941797342557,
          2.1304939496901993,
          2.1350937196461435,
          2.1396934896020876,
          2.1442932595580317,
          2.1488930295139754,
          2.1534927994699196,
          2.1580925694258637,
          2.162692339381808,
          2.167292109337752,
          2.1718918792936956,
          2.17649164924964,
          2.181091419205584,
          2.185691189161528,
          2.1902909591174717,
          2.194890729073416,
          2.19949049902936,
          2.204090268985304,
          2.2086900389412483,
          2.213289808897192,
          2.217889578853136,
          2.2224893488090802,
          2.2270891187650244,
          2.231688888720968,
          2.236288658676912,
          2.2408884286328563,
          2.2454881985888004,
          2.2500879685447446,
          2.2546877385006883,
          2.2592875084566324,
          2.2638872784125765,
          2.2684870483685207,
          2.2730868183244644,
          2.2776865882804085,
          2.2822863582363526,
          2.2868861281922968,
          2.291485898148241,
          2.2960856681041846,
          2.3006854380601287,
          2.305285208016073,
          2.309884977972017,
          2.3144847479279607,
          2.319084517883905,
          2.323684287839849,
          2.328284057795793,
          2.332883827751737,
          2.337483597707681,
          2.342083367663625,
          2.346683137619569,
          2.3512829075755133,
          2.355882677531457,
          2.360482447487401,
          2.3650822174433452,
          2.3696819873992894,
          2.3742817573552335,
          2.378881527311177,
          2.3834812972671213,
          2.3880810672230655,
          2.3926808371790096,
          2.3972806071349533,
          2.4018803770908974,
          2.4064801470468415,
          2.4110799170027857,
          2.41567968695873,
          2.4202794569146735,
          2.4248792268706176,
          2.4294789968265618,
          2.434078766782506,
          2.4386785367384496,
          2.4432783066943937,
          2.447878076650338,
          2.452477846606282,
          2.457077616562226,
          2.46167738651817,
          2.466277156474114,
          2.470876926430058,
          2.475476696386002,
          2.480076466341946,
          2.48467623629789,
          2.489276006253834,
          2.4938757762097783,
          2.4984755461657224,
          2.503075316121666,
          2.5076750860776102,
          2.5122748560335544,
          2.5168746259894985,
          2.521474395945442,
          2.5260741659013863,
          2.5306739358573305,
          2.5352737058132746,
          2.5398734757692187,
          2.5444732457251624,
          2.5490730156811066,
          2.5536727856370507,
          2.558272555592995,
          2.5628723255489385,
          2.5674720955048826,
          2.572071865460827,
          2.576671635416771,
          2.581271405372715,
          2.5858711753286587,
          2.590470945284603,
          2.595070715240547,
          2.599670485196491,
          2.604270255152435,
          2.608870025108379,
          2.613469795064323,
          2.618069565020267,
          2.6226693349762114,
          2.627269104932155,
          2.631868874888099,
          2.6364686448440433,
          2.6410684147999874,
          2.645668184755931,
          2.6502679547118753,
          2.6548677246678194,
          2.6594674946237635,
          2.6640672645797077,
          2.6686670345356514,
          2.6732668044915955,
          2.6778665744475396,
          2.6824663444034837,
          2.6870661143594274,
          2.6916658843153716,
          2.6962656542713157,
          2.70086542422726,
          2.705465194183204,
          2.7100649641391477,
          2.714664734095092,
          2.719264504051036,
          2.72386427400698,
          2.7284640439629237,
          2.733063813918868,
          2.737663583874812,
          2.742263353830756,
          2.7468631237867003,
          2.751462893742644,
          2.756062663698588,
          2.7606624336545322,
          2.7652622036104764,
          2.76986197356642,
          2.774461743522364,
          2.7790615134783083,
          2.7836612834342525,
          2.7882610533901966,
          2.7928608233461403,
          2.7974605933020844,
          2.8020603632580285,
          2.8066601332139727,
          2.8112599031699164,
          2.8158596731258605,
          2.8204594430818046,
          2.8250592130377488,
          2.829658982993693,
          2.8342587529496366,
          2.8388585229055807,
          2.843458292861525,
          2.848058062817469,
          2.8526578327734127,
          2.857257602729357,
          2.861857372685301,
          2.866457142641245,
          2.871056912597189,
          2.875656682553133,
          2.880256452509077,
          2.884856222465021,
          2.8894559924209653,
          2.894055762376909,
          2.898655532332853,
          2.9032553022887972,
          2.9078550722447414,
          2.9124548422006855,
          2.917054612156629,
          2.9216543821125733,
          2.9262541520685175,
          2.9308539220244616,
          2.9354536919804053,
          2.9400534619363494,
          2.9446532318922936,
          2.9492530018482377,
          2.953852771804182,
          2.9584525417601255,
          2.9630523117160696,
          2.9676520816720138,
          2.972251851627958,
          2.9768516215839016,
          2.9814513915398457,
          2.98605116149579,
          2.990650931451734,
          2.9952507014076777,
          2.999850471363622,
          3.004450241319566,
          3.00905001127551,
          3.013649781231454,
          3.018249551187398,
          3.022849321143342,
          3.027449091099286,
          3.0320488610552303,
          3.036648631011174,
          3.041248400967118,
          3.0458481709230623,
          3.0504479408790064,
          3.0550477108349505,
          3.059647480790894,
          3.0642472507468383,
          3.0688470207027825,
          3.0734467906587266,
          3.0780465606146703,
          3.0826463305706144,
          3.0872461005265586,
          3.0918458704825027,
          3.096445640438447,
          3.1010454103943905,
          3.1056451803503347,
          3.110244950306279,
          3.114844720262223,
          3.1194444902181666,
          3.1240442601741107,
          3.128644030130055,
          3.133243800085999,
          3.137843570041943,
          3.142443339997887,
          3.147043109953831,
          3.151642879909775,
          3.1562426498657192,
          3.160842419821663,
          3.165442189777607,
          3.170041959733551,
          3.1746417296894953,
          3.1792414996454395,
          3.183841269601383,
          3.1884410395573273,
          3.1930408095132714,
          3.1976405794692155,
          3.2022403494251592,
          3.2068401193811034,
          3.2114398893370475,
          3.2160396592929916,
          3.2206394292489358,
          3.2252391992048794,
          3.2298389691608236,
          3.2344387391167677,
          3.239038509072712,
          3.2436382790286555,
          3.2482380489845997,
          3.252837818940544,
          3.257437588896488,
          3.262037358852432,
          3.2666371288083758,
          3.27123689876432,
          3.275836668720264,
          3.280436438676208,
          3.285036208632152,
          3.289635978588096,
          3.29423574854404,
          3.2988355184999842,
          3.3034352884559284,
          3.308035058411872,
          3.312634828367816,
          3.3172345983237603,
          3.3218343682797045,
          3.326434138235648,
          3.3310339081915923,
          3.3356336781475364,
          3.3402334481034806,
          3.3448332180594247,
          3.3494329880153684,
          3.3540327579713125,
          3.3586325279272566,
          3.3632322978832008,
          3.3678320678391445,
          3.3724318377950886,
          3.3770316077510327,
          3.381631377706977,
          3.386231147662921,
          3.3908309176188647,
          3.395430687574809,
          3.400030457530753,
          3.404630227486697,
          3.4092299974426408,
          3.413829767398585,
          3.418429537354529,
          3.423029307310473,
          3.4276290772664173,
          3.432228847222361,
          3.436828617178305,
          3.4414283871342493,
          3.4460281570901934,
          3.450627927046137,
          3.455227697002081,
          3.4598274669580253,
          3.4644272369139695,
          3.4690270068699136,
          3.4736267768258573,
          3.4782265467818014,
          3.4828263167377456,
          3.4874260866936897,
          3.4920258566496334,
          3.4966256266055775,
          3.5012253965615217,
          3.505825166517466,
          3.51042493647341,
          3.5150247064293536,
          3.5196244763852977,
          3.524224246341242,
          3.528824016297186,
          3.5334237862531297,
          3.538023556209074,
          3.542623326165018,
          3.547223096120962,
          3.5518228660769062,
          3.55642263603285,
          3.561022405988794,
          3.565622175944738,
          3.5702219459006823,
          3.574821715856626,
          3.57942148581257,
          3.5840212557685143,
          3.5886210257244584,
          3.5932207956804025,
          3.5978205656363462,
          3.6024203355922904,
          3.6070201055482345,
          3.6116198755041786,
          3.6162196454601223,
          3.6208194154160664,
          3.6254191853720106,
          3.6300189553279547,
          3.634618725283899,
          3.6392184952398425,
          3.6438182651957867,
          3.648418035151731,
          3.653017805107675,
          3.6576175750636186,
          3.6622173450195628,
          3.666817114975507,
          3.671416884931451,
          3.676016654887395,
          3.680616424843339,
          3.685216194799283,
          3.689815964755227,
          3.6944157347111712,
          3.699015504667115,
          3.703615274623059,
          3.708215044579003,
          3.7128148145349473,
          3.7174145844908915,
          3.722014354446835,
          3.7266141244027793,
          3.7312138943587234,
          3.7358136643146675,
          3.7404134342706112,
          3.7450132042265554,
          3.7496129741824995,
          3.7542127441384436,
          3.7588125140943878,
          3.7634122840503315,
          3.7680120540062756,
          3.7726118239622197,
          3.777211593918164,
          3.7818113638741075,
          3.7864111338300517,
          3.791010903785996,
          3.79561067374194,
          3.800210443697884,
          3.8048102136538278,
          3.809409983609772,
          3.814009753565716,
          3.81860952352166,
          3.823209293477604,
          3.827809063433548,
          3.832408833389492,
          3.8370086033454363,
          3.8416083733013804,
          3.846208143257324,
          3.850807913213268,
          3.8554076831692123,
          3.8600074531251565,
          3.8646072230811,
          3.8692069930370443,
          3.8738067629929884,
          3.8784065329489326,
          3.8830063029048767,
          3.8876060728608204,
          3.8922058428167645,
          3.8968056127727086,
          3.901405382728653,
          3.9060051526845965,
          3.9106049226405406,
          3.9152046925964847,
          3.919804462552429,
          3.924404232508373,
          3.9290040024643167,
          3.933603772420261,
          3.938203542376205,
          3.942803312332149,
          3.947403082288093,
          3.952002852244037,
          3.956602622199981,
          3.961202392155925,
          3.9658021621118693,
          3.970401932067813,
          3.975001702023757,
          3.9796014719797013,
          3.9842012419356454,
          3.988801011891589,
          3.993400781847533,
          3.9980005518034774,
          4.002600321759422,
          4.007200091715366,
          4.011799861671309,
          4.016399631627253,
          4.020999401583198,
          4.025599171539142,
          4.030198941495086,
          4.03479871145103,
          4.039398481406973,
          4.043998251362917,
          4.0485980213188615,
          4.053197791274806,
          4.05779756123075,
          4.062397331186694,
          4.066997101142638,
          4.071596871098582,
          4.076196641054526,
          4.0807964110104695,
          4.085396180966414,
          4.089995950922358,
          4.094595720878302,
          4.099195490834246,
          4.10379526079019,
          4.108395030746134,
          4.1129948007020785,
          4.117594570658023,
          4.122194340613966,
          4.12679411056991,
          4.131393880525854,
          4.135993650481798,
          4.140593420437742,
          4.1451931903936865,
          4.149792960349631,
          4.154392730305575,
          4.158992500261519,
          4.163592270217462,
          4.168192040173406,
          4.17279181012935,
          4.1773915800852945,
          4.181991350041239,
          4.186591119997183,
          4.191190889953127,
          4.195790659909071,
          4.200390429865015,
          4.2049901998209585,
          4.209589969776903,
          4.214189739732847,
          4.218789509688791,
          4.223389279644735,
          4.227989049600679,
          4.232588819556623,
          4.237188589512567,
          4.2417883594685115,
          4.246388129424455,
          4.250987899380399,
          4.255587669336343,
          4.260187439292287,
          4.264787209248231,
          4.269386979204175,
          4.27398674916012,
          4.278586519116064,
          4.283186289072008,
          4.287786059027951,
          4.292385828983895,
          4.296985598939839,
          4.3015853688957835,
          4.306185138851728,
          4.310784908807672,
          4.315384678763616,
          4.31998444871956,
          4.324584218675504,
          4.329183988631447,
          4.3337837585873915,
          4.338383528543336,
          4.34298329849928,
          4.347583068455224,
          4.352182838411168,
          4.356782608367112,
          4.361382378323056,
          4.365982148279,
          4.370581918234944,
          4.375181688190888,
          4.379781458146832,
          4.384381228102776,
          4.38898099805872,
          4.393580768014664,
          4.3981805379706085,
          4.402780307926553,
          4.407380077882497,
          4.41197984783844,
          4.416579617794384,
          4.421179387750328,
          4.425779157706272,
          4.4303789276622165,
          4.434978697618161,
          4.439578467574105,
          4.444178237530049,
          4.448778007485993,
          4.453377777441936,
          4.45797754739788,
          4.462577317353825,
          4.467177087309769,
          4.471776857265713,
          4.476376627221657,
          4.480976397177601,
          4.485576167133545,
          4.490175937089489,
          4.494775707045433,
          4.499375477001377,
          4.503975246957321,
          4.508575016913265,
          4.513174786869209,
          4.517774556825153,
          4.522374326781097,
          4.5269740967370415,
          4.531573866692986,
          4.536173636648929,
          4.540773406604873,
          4.545373176560817,
          4.549972946516761,
          4.5545727164727055,
          4.55917248642865,
          4.563772256384594,
          4.568372026340538,
          4.572971796296482,
          4.577571566252425,
          4.582171336208369,
          4.5867711061643135,
          4.591370876120258,
          4.595970646076202,
          4.600570416032146,
          4.60517018598809
         ],
         "xaxis": "x",
         "y": [
          0.9900498337491681,
          0.985506289908206,
          0.9809835973314238,
          0.9764816603280495,
          0.9720003836464557,
          0.9675396724721448,
          0.9630994324257423,
          0.9586795695610001,
          0.9542799903628094,
          0.9499006017452212,
          0.9455413110494771,
          0.9412020260420494,
          0.9368826549126889,
          0.9325831062724825,
          0.9283032891519203,
          0.9240431129989696,
          0.9198024876771602,
          0.9155813234636768,
          0.9113795310474607,
          0.9071970215273201,
          0.903033706410049,
          0.8988894976085555,
          0.8947643074399972,
          0.8906580486239267,
          0.8865706342804445,
          0.882501977928361,
          0.8784519934833668,
          0.8744205952562111,
          0.8704076979508889,
          0.8664132166628362,
          0.8624370668771337,
          0.8584791644667185,
          0.8545394256906044,
          0.8506177671921096,
          0.8467141059970936,
          0.8428283595122016,
          0.8389604455231164,
          0.8351102821928198,
          0.8312777880598602,
          0.8274628820366299,
          0.8236654834076486,
          0.8198855118278563,
          0.8161228873209133,
          0.8123775302775076,
          0.808649361453671,
          0.804938301969102,
          0.8012442733054976,
          0.7975671973048913,
          0.7939069961679998,
          0.7902635924525766,
          0.7866369090717741,
          0.7830268692925119,
          0.7794333967338536,
          0.7758564153653911,
          0.7722958495056351,
          0.7687516238204147,
          0.7652236633212832,
          0.7617118933639311,
          0.7582162396466071,
          0.7547366282085464,
          0.751272985428405,
          0.7478252380227031,
          0.7443933130442733,
          0.7409771378807183,
          0.7375766402528741,
          0.7341917482132806,
          0.7308223901446596,
          0.7274684947583995,
          0.7241299910930467,
          0.7208068085128048,
          0.7174988767060391,
          0.7142061256837902,
          0.7109284857782922,
          0.707665887641499,
          0.7044182622436171,
          0.7011855408716453,
          0.69796765512792,
          0.6947645369286692,
          0.6915761185025712,
          0.688402332389321,
          0.6852431114382028,
          0.6820983888066696,
          0.6789680979589284,
          0.675852172664533,
          0.6727505469969823,
          0.6696631553323256,
          0.666589932347774,
          0.6635308130203186,
          0.6604857326253546,
          0.6574546267353115,
          0.6544374312182907,
          0.6514340822367077,
          0.6484445162459425,
          0.6454686699929938,
          0.642506480515142,
          0.6395578851386164,
          0.636622821477269,
          0.6337012274312548,
          0.630793041185718,
          0.6278982012094837,
          0.6250166462537569,
          0.6221483153508253,
          0.6192931478127705,
          0.6164510832301834,
          0.6136220614708863,
          0.6108060226786604,
          0.6080029072719795,
          0.6052126559427494,
          0.6024352096550531,
          0.5996705096439016,
          0.5969184974139905,
          0.5941791147384627,
          0.5914523036576761,
          0.5887380064779772,
          0.5860361657704811,
          0.5833467243698555,
          0.580669625373112,
          0.5780048121384014,
          0.5753522282838162,
          0.5727118176861966,
          0.5700835244799443,
          0.5674672930558389,
          0.5648630680598631,
          0.5622707943920302,
          0.5596904172052188,
          0.5571218819040125,
          0.5545651341435441,
          0.552020119828347,
          0.5494867851112093,
          0.5469650763920353,
          0.5444549403167112,
          0.5419563237759765,
          0.5394691739042998,
          0.5369934380787607,
          0.5345290639179364,
          0.5320759992807933,
          0.5296341922655835,
          0.5272035912087474,
          0.5247841446838197,
          0.5223758015003425,
          0.5199785107027806,
          0.5175922215694452,
          0.515216883611419,
          0.5128524465714899,
          0.5104988604230853,
          0.5081560753692159,
          0.5058240418414206,
          0.5035027104987183,
          0.501192032226564,
          0.4988919581358096,
          0.49660243956166905,
          0.4943234280626895,
          0.49205487541972576,
          0.4897967336349203,
          0.4875489549306879,
          0.4853114917487042,
          0.48308429674890024,
          0.4808673228084601,
          0.47866052302082457,
          0.4764638506946981,
          0.47427725935306114,
          0.4721007027321871,
          0.4699341347806631,
          0.46777750965841547,
          0.4656307817357405,
          0.46349390559233844,
          0.4613668360163528,
          0.4592495280034136,
          0.45714193675568526,
          0.4550440176809188,
          0.4529557263915082,
          0.4508770187035515,
          0.4488078506359158,
          0.4467481784093066,
          0.4446979584453417,
          0.44265714736562933,
          0.4406257019908498,
          0.4386035793398427,
          0.4365907366286965,
          0.43458713126984444,
          0.43259272087116274,
          0.4306074632350737,
          0.42863131635765334,
          0.4266642384277421,
          0.4247061878260607,
          0.4227571231243293,
          0.4208170030843909,
          0.4188857866573392,
          0.41696343298264965,
          0.4150499013873151,
          0.4131451513849854,
          0.4112491426751106,
          0.4093618351420881,
          0.40748318885441454,
          0.40561316406384007,
          0.4037517212045281,
          0.40189882089221773,
          0.40005442392339063,
          0.3982184912744415,
          0.3963909841008525,
          0.3945718637363713,
          0.3927610916921931,
          0.39095862965614603,
          0.38916443949188084,
          0.3873784832380639,
          0.3856007231075739,
          0.3838311214867025,
          0.3820696409343586,
          0.38031624418127585,
          0.3785708941292244,
          0.37683355385022577,
          0.37510418658577166,
          0.37338275574604624,
          0.37166922490915183,
          0.36996355782033846,
          0.3682657183912366,
          0.366575670699094,
          0.36489337898601515,
          0.36321880765820475,
          0.3615519212852153,
          0.35989268459919643,
          0.35824106249414966,
          0.3565970200251851,
          0.354960522407782,
          0.3533315350170532,
          0.3517100233870122,
          0.3500959532098442,
          0.34848929033517995,
          0.3468900007693733,
          0.3452980506747821,
          0.34371340636905195,
          0.34213603432440415,
          0.3405659011669254,
          0.33900297367586274,
          0.3374472187829196,
          0.3358986035715571,
          0.33435709527629687,
          0.3328226612820285,
          0.33129526912331847,
          0.3297748864837245,
          0.32826148119511084,
          0.3267550212369679,
          0.32525547473573524,
          0.32376280996412615,
          0.32227699534045773,
          0.3207979994279814,
          0.3193257909342186,
          0.3178603387102984,
          0.3164016117502985,
          0.3149495791905893,
          0.31350421030918046,
          0.31206547452507166,
          0.31063334139760473,
          0.30920778062582027,
          0.30778876204781613,
          0.3063762556401094,
          0.30497023151700114,
          0.30357065992994414,
          0.3021775112669134,
          0.3007907560517795,
          0.2994103649436855,
          0.29803630873642517,
          0.296668558357826,
          0.29530708486913365,
          0.2939518594643996,
          0.29260285346987186,
          0.2912600383433882,
          0.28992338567377246,
          0.28859286718023297,
          0.28726845471176476,
          0.28595012024655336,
          0.2846378358913825,
          0.28333157388104335,
          0.2820313065777478,
          0.2807370064705428,
          0.2794486461747291,
          0.27816619843128143,
          0.27688963610627176,
          0.2756189321902954,
          0.2743540597978992,
          0.27309499216701316,
          0.2718417026583838,
          0.27059416475501097,
          0.26935235206158603,
          0.2681162383039344,
          0.26688579732845885,
          0.2656610031015864,
          0.26444182970921776,
          0.26322825135617856,
          0.26202024236567395,
          0.2608177771787452,
          0.25962083035372907,
          0.258429376565719,
          0.2572433906060301,
          0.2560628473816652,
          0.2548877219147839,
          0.2537179893421747,
          0.2525536249147281,
          0.25139460399691377,
          0.25024090206625854,
          0.24909249471282832,
          0.24794935763871098,
          0.24681146665750275,
          0.24567879769379625,
          0.24455132678267094,
          0.24342903006918654,
          0.24231188380787777,
          0.24119986436225246,
          0.240092948204291,
          0.2389911119139489,
          0.23789433217866093,
          0.23680258579284819,
          0.235715849657427,
          0.23463410077932,
          0.2335573162709701,
          0.23248547334985561,
          0.23141854933800887,
          0.2303565216615359,
          0.2292993678501391,
          0.22824706553664165,
          0.22719959245651442,
          0.22615692644740484,
          0.2251190454486678,
          0.22408592750089923,
          0.22305755074547123,
          0.2220338934240698,
          0.22101493387823407,
          0.22000065054889867,
          0.218991021975937,
          0.2179860267977076,
          0.21698564375060184,
          0.21598985166859436,
          0.21499862948279502,
          0.21401195622100308,
          0.21302981100726376,
          0.21205217306142618,
          0.21107902169870402,
          0.21011033632923762,
          0.20914609645765858,
          0.20818628168265582,
          0.20723087169654428,
          0.206279846284835,
          0.2053331853258074,
          0.2043908687900839,
          0.20345287674020554,
          0.20251918933021085,
          0.20158978680521528,
          0.20066464950099375,
          0.19974375784356427,
          0.19882709234877394,
          0.19791463362188674,
          0.19700636235717298,
          0.1961022593375011,
          0.19520230543393086,
          0.1943064816053087,
          0.19341476889786482,
          0.19252714844481233,
          0.19164360146594778,
          0.19076410926725407,
          0.1898886532405048,
          0.1890172148628705,
          0.1881497756965269,
          0.18728631738826468,
          0.18642682166910124,
          0.185571270353894,
          0.18471964534095597,
          0.1838719286116724,
          0.1830281022301197,
          0.1821881483426861,
          0.18135204917769354,
          0.18051978704502203,
          0.17969134433573514,
          0.17886670352170755,
          0.178045847155254,
          0.17722875786876052,
          0.17641541837431646,
          0.17560581146334914,
          0.17479992000625955,
          0.17399772695205987,
          0.17319921532801297,
          0.17240436823927296,
          0.171613168868528,
          0.17082560047564432,
          0.17004164639731215,
          0.16926129004669302,
          0.168484514913069,
          0.16771130456149322,
          0.16694164263244213,
          0.16617551284146953,
          0.16541289897886183,
          0.16465378490929522,
          0.16389815457149418,
          0.16314599197789184,
          0.16239728121429142,
          0.16165200643952982,
          0.16091015188514224,
          0.16017170185502866,
          0.15943664072512176,
          0.15870495294305617,
          0.15797662302783974,
          0.15725163556952562,
          0.1565299752288865,
          0.15581162673708993,
          0.15509657489537532,
          0.15438480457473233,
          0.15367630071558075,
          0.15297104832745198,
          0.15226903248867169,
          0.1515702383460443,
          0.15087465111453852,
          0.15018225607697477,
          0.1494930385837135,
          0.1488069840523455,
          0.14812407796738328,
          0.14744430587995377,
          0.14676765340749298,
          0.1460941062334413,
          0.14542365010694094,
          0.14475627084253412,
          0.14409195431986316,
          0.1434306864833715,
          0.14277245334200664,
          0.14211724096892375,
          0.14146503550119122,
          0.1408158231394974,
          0.14016959014785832,
          0.13952632285332756,
          0.13888600764570647,
          0.13824863097725654,
          0.13761417936241258,
          0.13698263937749747,
          0.13635399766043818,
          0.13572824091048288,
          0.1351053558879198,
          0.13448532941379682,
          0.13386814836964286,
          0.1332537996971901,
          0.1326422703980979,
          0.13203354753367777,
          0.13142761822461935,
          0.13082446965071828,
          0.13022408905060473,
          0.12962646372147338,
          0.12903158101881484,
          0.12843942835614777,
          0.12784999320475304,
          0.1272632630934083,
          0.12667922560812425,
          0.12609786839188186,
          0.1255191791443712,
          0.12494314562173083,
          0.12436975563628906,
          0.12379899705630597,
          0.1232308578057165,
          0.1226653258638754,
          0.12210238926530248,
          0.12154203609942979,
          0.12098425451034922,
          0.12042903269656206,
          0.11987635891072905,
          0.11932622145942193,
          0.11877860870287603,
          0.11823350905474383,
          0.11769091098185014,
          0.1171508030039478,
          0.11661317369347497,
          0.11607801167531309,
          0.11554530562654654,
          0.11501504427622285,
          0.11448721640511426,
          0.11396181084548049,
          0.11343881648083212,
          0.11291822224569577,
          0.11240001712537977,
          0.11188419015574118,
          0.11137073042295369,
          0.11085962706327687,
          0.11035086926282626,
          0.10984444625734455,
          0.10934034733197384,
          0.10883856182102883,
          0.10833907910777138,
          0.10784188862418574,
          0.10734697985075502,
          0.10685434231623839,
          0.1063639655974499,
          0.1058758393190377,
          0.10538995315326456,
          0.10490629681978945,
          0.10442486008544982,
          0.10394563276404532,
          0.10346860471612218,
          0.10299376584875873,
          0.10252110611535163,
          0.10205061551540366,
          0.1015822840943119,
          0.10111610194315716,
          0.10065205919849439,
          0.10019014604214377,
          0.09973035270098332,
          0.09927266944674186,
          0.09881708659579332,
          0.09836359450895167,
          0.09791218359126722,
          0.09746284429182346,
          0.09701556710353502,
          0.09657034256294654,
          0.0961271612500323,
          0.09568601378799717,
          0.09524689084307798,
          0.09480978312434626,
          0.09437468138351135,
          0.09394157641472504,
          0.09351045905438667,
          0.09308132018094917,
          0.09265415071472623,
          0.09222894161769998,
          0.09180568389332999,
          0.09138436858636279,
          0.09096498678264245,
          0.09054752960892185,
          0.09013198823267514,
          0.08971835386191074,
          0.0893066177449853,
          0.08889677117041868,
          0.08848880546670936,
          0.08808271200215127,
          0.08767848218465098,
          0.08727610746154602,
          0.0868755793194237,
          0.08647688928394132,
          0.0860800289196466,
          0.08568498982979933,
          0.08529176365619373,
          0.08490034207898141,
          0.0845107168164956,
          0.08412287962507585,
          0.0837368222988935,
          0.08335253666977811,
          0.08297001460704477,
          0.08258924801732188,
          0.08221022884438006,
          0.08183294906896163,
          0.08145740070861086,
          0.08108357581750528,
          0.08071146648628735,
          0.08034106484189733,
          0.07997236304740643,
          0.07960535330185124,
          0.0792400278400686,
          0.07887637893253126,
          0.07851439888518441,
          0.07815408003928276,
          0.07779541477122867,
          0.07743839549241077,
          0.07708301464904341,
          0.07672926472200671,
          0.07637713822668774,
          0.07602662771282193,
          0.07567772576433553,
          0.07533042499918874,
          0.07498471806921936,
          0.07464059765998751,
          0.0742980564906208,
          0.07395708731366024,
          0.0736176829149069,
          0.07327983611326937,
          0.07294353976061171,
          0.07260878674160229,
          0.07227556997356323,
          0.07194388240632042,
          0.07161371702205456,
          0.07128506683515255,
          0.07095792489205976,
          0.07063228427113274,
          0.070308138082493,
          0.06998547946788113,
          0.06966430160051164,
          0.06934459768492865,
          0.0690263609568619,
          0.06870958468308391,
          0.06839426216126732,
          0.06808038671984314,
          0.06776795171785956,
          0.06745695054484152,
          0.0671473766206508,
          0.06683922339534677,
          0.06653248434904789,
          0.06622715299179359,
          0.06592322286340718,
          0.06562068753335905,
          0.06531954060063061,
          0.06501977569357881,
          0.06472138646980145,
          0.06442436661600297,
          0.06412870984786075,
          0.06383440990989228,
          0.0635414605753227,
          0.06324985564595316,
          0.06295958895202963,
          0.06267065435211236,
          0.06238304573294587,
          0.06209675700932976,
          0.061811782123989856,
          0.06152811504745005,
          0.06124574977790479,
          0.06096468034109197,
          0.06068490079016668,
          0.06040640520557531,
          0.06012918769493032,
          0.05985324239288548,
          0.05957856346101193,
          0.05930514508767454,
          0.059032981487908975,
          0.05876206690329934,
          0.05849239560185621,
          0.05822396187789554,
          0.057956760051917806,
          0.05769078447048793,
          0.05742602950611553,
          0.05716248955713603,
          0.05690015904759201,
          0.05663903242711529,
          0.05637910417080951,
          0.056120368779133116,
          0.05586282077778316,
          0.05560645471757939,
          0.055351265174349,
          0.05509724674881175,
          0.05484439406646591,
          0.0545927017774744,
          0.054342164556551664,
          0.05409277710285103,
          0.05384453413985239,
          0.05359743041525081,
          0.05335146070084519,
          0.0531066197924278,
          0.05286290250967399,
          0.052620303696032794,
          0.05237881821861769,
          0.05213844096809802,
          0.05189916685859096,
          0.05166099082755375,
          0.0514239078356768,
          0.05118791286677689,
          0.05095300092769115,
          0.0507191670481713,
          0.05048640628077863,
          0.050254713700779205,
          0.05002408440603977,
          0.04979451351692388,
          0.04956599617618884,
          0.04933852754888282,
          0.049112102822242584,
          0.04888671720559168,
          0.04866236593023901,
          0.04843904424937805,
          0.04821674743798631,
          0.047995470792725474,
          0.04777520963184171,
          0.04755595929506682,
          0.047337715143519504,
          0.04712047255960726,
          0.04690422694692869,
          0.046688973730176164,
          0.04647470835503917,
          0.04626142628810783,
          0.046049123016777056,
          0.045837794049150976,
          0.04562743491394801,
          0.045418041160406215,
          0.0452096083581891,
          0.04500213209729193,
          0.04479560798794834,
          0.04459003166053757,
          0.04438539876549193,
          0.04418170497320483,
          0.043978945973939074,
          0.0437771174777358,
          0.04357621521432364,
          0.04337623493302838,
          0.04317717240268307,
          0.04297902341153837,
          0.04278178376717362,
          0.04258544929640802,
          0.04239001584521237,
          0.04219547927862111,
          0.04200183548064498,
          0.041809080354183806,
          0.041617209820939846,
          0.04142621982133156,
          0.04123610631440758,
          0.041046865277761385,
          0.04085849270744607,
          0.04067098461788972,
          0.04048433704181094,
          0.04029854603013509,
          0.04011360765191065,
          0.039929517994226026,
          0.0397462731621268,
          0.03956386927853326,
          0.03938230248415849,
          0.0392015689374266,
          0.03902166481439151,
          0.038842586308655974,
          0.038664329631291135,
          0.038486891010756315,
          0.03831026669281919,
          0.03813445294047644,
          0.03795944603387455,
          0.03778524227023123,
          0.03761183796375703,
          0.03743922944557735,
          0.03726741306365479,
          0.03709638518271192,
          0.03692614218415436,
          0.03675668046599421,
          0.036587996442773836,
          0.03642008654548999,
          0.03625294722151835,
          0.03608657493453832,
          0.035920966164458196,
          0.0357561174073407,
          0.03559202517532887,
          0.035428685996572236,
          0.03526609641515335,
          0.03510425299101474,
          0.03494315229988598,
          0.03478279093321141,
          0.0346231654980779,
          0.03446427261714314,
          0.034306108928564075,
          0.0341486710859259,
          0.03399195575817118,
          0.033835959629529413,
          0.03368067939944685,
          0.03352611178251662,
          0.033372253508409326,
          0.03321910132180376,
          0.033066651982318084,
          0.03291490226444119,
          0.032763848957464564,
          0.03261348886541427,
          0.03246381880698337,
          0.03231483561546461,
          0.03216653613868338,
          0.03201891723893108,
          0.031871975792898695,
          0.031725708691610746,
          0.031580112840359435,
          0.031435185158639266,
          0.03129092258008181,
          0.031147322052390822,
          0.03100438053727771,
          0.030862095010397165,
          0.030720462461283272,
          0.030579479893285758,
          0.030439144323506598,
          0.030299452782736876,
          0.030160402315394033,
          0.030021989979459266,
          0.029884212846415317,
          0.029747068001184505,
          0.029610552542067015,
          0.02947466358067956,
          0.029339398241894243,
          0.02920475366377773,
          0.029070726997530653,
          0.028937315407427416,
          0.02880451607075614,
          0.02867232617775896,
          0.02854074293157258,
          0.028409763548169053,
          0.02827938525629695,
          0.02814960529742268,
          0.028020420925672147,
          0.027891829407772593,
          0.027763828022994867,
          0.027636414063095784,
          0.02750958483226085,
          0.027383337647047246,
          0.02725766983632697,
          0.02713257874123044,
          0.027008061715090147,
          0.02688411612338471,
          0.026760739343683067,
          0.026637928765589087,
          0.026515681790686262,
          0.02639399583248276,
          0.02627286831635671,
          0.026152296679501676,
          0.026032278370872505,
          0.025912810851131316,
          0.02579389159259378,
          0.025675518079175598,
          0.025557687806339345,
          0.025440398281041426,
          0.025323647021679326,
          0.025207431558039152,
          0.025091749431243277,
          0.024976598193698428,
          0.024861975409043814,
          0.02474787865209964,
          0.024634305508815707,
          0.024521253576220446,
          0.02440872046237,
          0.02429670378629765,
          0.024185201177963418,
          0.024074210278203917,
          0.02396372873868247,
          0.023853754221839395,
          0.023744284400842575,
          0.023635316959538168,
          0.023526849592401672,
          0.02341888000448911,
          0.023311405911388472,
          0.023204425039171406,
          0.02309793512434505,
          0.02299193391380422,
          0.022886419164783678,
          0.02278138864481071,
          0.02267684013165787,
          0.02257277141329598,
          0.022469180287847328,
          0.02236606456353907,
          0.02226342205865687,
          0.022161250601498705,
          0.02205954803032897,
          0.021958312193332705,
          0.021857540948570082,
          0.02175723216393105,
          0.021657383717090285,
          0.02155799349546224,
          0.021459059396156464,
          0.021360579325933108,
          0.02126255120115862,
          0.021164972947761686,
          0.02106784250118934,
          0.02097115780636328,
          0.020874916817636355,
          0.020779117498749344,
          0.02068375782278783,
          0.020588835772139328,
          0.0204943493384506,
          0.020400296522585137,
          0.0203066753345809,
          0.020213483793608197,
          0.020120719927927782,
          0.020028381774849092,
          0.0199364673806888,
          0.019844974800729415,
          0.019753902099178162,
          0.019663247349126035,
          0.019573008632506977,
          0.019483184040057364,
          0.01939377167127557,
          0.019304769634381772,
          0.019216176046277893,
          0.019127989032507803,
          0.019040206727217644,
          0.018952827273116334,
          0.0188658488214363,
          0.018779269531894318,
          0.018693087572652634,
          0.018607301120280164,
          0.018521908359713946,
          0.018436907484220676,
          0.018352296695358566,
          0.01826807420293922,
          0.018184238224989817,
          0.018100786987715375,
          0.018017718725461176,
          0.01793503168067551,
          0.01785272410387242,
          0.017770794253594707,
          0.01768924039637707,
          0.017608060806709458,
          0.017527253767000504,
          0.017446817567541264,
          0.01736675050646899,
          0.017287050889731127,
          0.017207717031049487,
          0.017128747251884558,
          0.0170501398814,
          0.016971893256427277,
          0.0168940057214305,
          0.016816475628471328,
          0.0167393013371742,
          0.016662481214691563,
          0.016586013635669333,
          0.01650989698221252,
          0.01643412964385099,
          0.01635871001750538,
          0.016283636507453205,
          0.016208907525295087,
          0.016134521489921096,
          0.016060476827477393,
          0.015986771971332858,
          0.01591340536204598,
          0.01584037544733183,
          0.01576768068202925,
          0.015695319528068147,
          0.015623290454436936,
          0.015551591937150187,
          0.015480222459216316,
          0.01540918051060556,
          0.015338464588217986,
          0.0152680731958517,
          0.015198004844171185,
          0.015128258050675797,
          0.01505883133966839,
          0.014989723242224104,
          0.014920932296159284,
          0.01485245704600051,
          0.014784296042953862,
          0.014716447844874227,
          0.01464891101623479,
          0.014581684128096675,
          0.01451476575807869,
          0.01444815449032726,
          0.01438184891548644,
          0.014315847630668135,
          0.014250149239422354,
          0.014184752351707736,
          0.014119655583862106,
          0.014054857558573192,
          0.013990356904849498,
          0.013926152257991292,
          0.01386224225956173,
          0.013798625557358116,
          0.01373530080538331,
          0.013672266663817186,
          0.013609521798988375,
          0.013547064883345986,
          0.013484894595431533,
          0.013423009619850981,
          0.013361408647246909,
          0.013300090374270806,
          0.0132390535035555,
          0.013178296743687716,
          0.01311781880918071,
          0.013057618420447137,
          0.012997694303771928,
          0.01293804519128536,
          0.012878669820936228,
          0.012819566936465136,
          0.01276073528737793,
          0.012702173628919226,
          0.012643880722046098,
          0.012585855333401806,
          0.012528096235289774,
          0.012470602205647573,
          0.012413372028021065,
          0.012356404491538677,
          0.012299698390885776,
          0.012243252526279167,
          0.01218706570344171,
          0.012131136733577056,
          0.01207546443334446,
          0.01202004762483381,
          0.011964885135540648,
          0.011909975798341388,
          0.01185531845146861,
          0.011800911938486496,
          0.01174675510826634,
          0.011692846814962212,
          0.01163918591798671,
          0.011585771281986802,
          0.01153260177681985,
          0.011479676277529665,
          0.011426993664322718,
          0.011374552822544444,
          0.011322352642655657,
          0.011270392020209076,
          0.011218669855825963,
          0.011167185055172857,
          0.011115936528938398,
          0.011064923192810331,
          0.01101414396745252,
          0.010963597778482128,
          0.010913283556446888,
          0.010863200236802465,
          0.01081334675988994,
          0.010763722070913391,
          0.010714325119917581,
          0.010665154861765707,
          0.010616210256117342,
          0.010567490267406388,
          0.010518993864819175,
          0.010470720022272654,
          0.010422667718392675,
          0.010374835936492396,
          0.010327223664550755,
          0.010279829895191073,
          0.010232653625659708,
          0.010185693857804887,
          0.010138949598055554,
          0.010092419857400356,
          0.010046103651366716,
          0.010000000000000014
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>α</i>=2<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>α</i>=2",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>α</i>=2",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.01,
          0.016634987055048858,
          0.02326997411009772,
          0.029904961165146578,
          0.03653994822019544,
          0.043174935275244304,
          0.04980992233029316,
          0.05644490938534202,
          0.06307989644039087,
          0.06971488349543974,
          0.0763498705504886,
          0.08298485760553745,
          0.08961984466058631,
          0.09625483171563518,
          0.10288981877068402,
          0.10952480582573289,
          0.11615979288078175,
          0.12279477993583061,
          0.1294297669908795,
          0.13606475404592835,
          0.14269974110097722,
          0.14933472815602605,
          0.15596971521107492,
          0.16260470226612378,
          0.16923968932117264,
          0.1758746763762215,
          0.18250966343127037,
          0.18914465048631923,
          0.19577963754136807,
          0.20241462459641693,
          0.2090496116514658,
          0.21568459870651466,
          0.22231958576156352,
          0.22895457281661238,
          0.23558955987166125,
          0.2422245469267101,
          0.24885953398175897,
          0.2554945210368078,
          0.2621295080918567,
          0.26876449514690554,
          0.2753994822019544,
          0.28203446925700326,
          0.2886694563120521,
          0.295304443367101,
          0.3019394304221498,
          0.3085744174771987,
          0.31520940453224755,
          0.32184439158729644,
          0.3284793786423453,
          0.3351143656973941,
          0.341749352752443,
          0.34838433980749184,
          0.35501932686254073,
          0.36165431391758956,
          0.36828930097263846,
          0.3749242880276873,
          0.3815592750827361,
          0.388194262137785,
          0.39482924919283385,
          0.40146423624788274,
          0.4080992233029316,
          0.41473421035798047,
          0.4213691974130293,
          0.4280041844680782,
          0.43463917152312703,
          0.44127415857817587,
          0.44790914563322476,
          0.4545441326882736,
          0.4611791197433225,
          0.4678141067983713,
          0.4744490938534202,
          0.48108408090846905,
          0.48771906796351794,
          0.4943540550185668,
          0.5009890420736156,
          0.5076240291286644,
          0.5142590161837134,
          0.5208940032387622,
          0.5275289902938111,
          0.5341639773488599,
          0.5407989644039088,
          0.5474339514589577,
          0.5540689385140065,
          0.5607039255690554,
          0.5673389126241042,
          0.5739738996791531,
          0.580608886734202,
          0.5872438737892508,
          0.5938788608442996,
          0.6005138478993485,
          0.6071488349543974,
          0.6137838220094463,
          0.6204188090644951,
          0.6270537961195439,
          0.6336887831745929,
          0.6403237702296417,
          0.6469587572846905,
          0.6535937443397394,
          0.6602287313947882,
          0.6668637184498372,
          0.673498705504886,
          0.6801336925599348,
          0.6867686796149837,
          0.6934036666700326,
          0.7000386537250815,
          0.7066736407801303,
          0.7133086278351791,
          0.719943614890228,
          0.7265786019452769,
          0.7332135890003257,
          0.7398485760553746,
          0.7464835631104234,
          0.7531185501654722,
          0.7597535372205212,
          0.76638852427557,
          0.7730235113306189,
          0.7796584983856677,
          0.7862934854407166,
          0.7929284724957655,
          0.7995634595508143,
          0.8061984466058632,
          0.812833433660912,
          0.8194684207159609,
          0.8261034077710098,
          0.8327383948260586,
          0.8393733818811074,
          0.8460083689361564,
          0.8526433559912052,
          0.8592783430462541,
          0.8659133301013029,
          0.8725483171563517,
          0.8791833042114007,
          0.8858182912664495,
          0.8924532783214983,
          0.8990882653765472,
          0.9057232524315961,
          0.912358239486645,
          0.9189932265416938,
          0.9256282135967426,
          0.9322632006517915,
          0.9388981877068404,
          0.9455331747618893,
          0.9521681618169381,
          0.9588031488719869,
          0.9654381359270359,
          0.9720731229820847,
          0.9787081100371335,
          0.9853430970921824,
          0.9919780841472312,
          0.9986130712022802,
          1.0052480582573289,
          1.011883045312378,
          1.0185180323674268,
          1.0251530194224756,
          1.0317880064775244,
          1.0384229935325733,
          1.0450579805876221,
          1.051692967642671,
          1.0583279546977198,
          1.0649629417527686,
          1.0715979288078177,
          1.0782329158628665,
          1.0848679029179153,
          1.0915028899729642,
          1.098137877028013,
          1.1047728640830619,
          1.1114078511381107,
          1.1180428381931595,
          1.1246778252482084,
          1.1313128123032572,
          1.1379477993583063,
          1.144582786413355,
          1.151217773468404,
          1.1578527605234528,
          1.1644877475785016,
          1.1711227346335504,
          1.1777577216885993,
          1.184392708743648,
          1.191027695798697,
          1.197662682853746,
          1.2042976699087948,
          1.2109326569638437,
          1.2175676440188925,
          1.2242026310739413,
          1.2308376181289902,
          1.237472605184039,
          1.2441075922390878,
          1.2507425792941367,
          1.2573775663491857,
          1.2640125534042346,
          1.2706475404592834,
          1.2772825275143322,
          1.283917514569381,
          1.29055250162443,
          1.2971874886794788,
          1.3038224757345276,
          1.3104574627895764,
          1.3170924498446255,
          1.3237274368996743,
          1.3303624239547232,
          1.336997411009772,
          1.3436323980648208,
          1.3502673851198697,
          1.3569023721749185,
          1.3635373592299673,
          1.3701723462850162,
          1.3768073333400652,
          1.383442320395114,
          1.390077307450163,
          1.3967122945052117,
          1.4033472815602606,
          1.4099822686153094,
          1.4166172556703582,
          1.423252242725407,
          1.429887229780456,
          1.436522216835505,
          1.4431572038905538,
          1.4497921909456026,
          1.4564271780006515,
          1.4630621650557003,
          1.4696971521107491,
          1.476332139165798,
          1.4829671262208468,
          1.4896021132758956,
          1.4962371003309445,
          1.5028720873859935,
          1.5095070744410424,
          1.5161420614960912,
          1.52277704855114,
          1.5294120356061889,
          1.5360470226612377,
          1.5426820097162866,
          1.5493169967713354,
          1.5559519838263842,
          1.5625869708814333,
          1.5692219579364821,
          1.575856944991531,
          1.5824919320465798,
          1.5891269191016286,
          1.5957619061566775,
          1.6023968932117263,
          1.6090318802667751,
          1.615666867321824,
          1.622301854376873,
          1.6289368414319219,
          1.6355718284869707,
          1.6422068155420195,
          1.6488418025970684,
          1.6554767896521172,
          1.662111776707166,
          1.6687467637622149,
          1.6753817508172637,
          1.6820167378723128,
          1.6886517249273616,
          1.6952867119824104,
          1.7019216990374593,
          1.708556686092508,
          1.715191673147557,
          1.7218266602026058,
          1.7284616472576546,
          1.7350966343127034,
          1.7417316213677525,
          1.7483666084228013,
          1.7550015954778502,
          1.761636582532899,
          1.7682715695879478,
          1.7749065566429967,
          1.7815415436980455,
          1.7881765307530944,
          1.7948115178081432,
          1.8014465048631922,
          1.808081491918241,
          1.81471647897329,
          1.8213514660283388,
          1.8279864530833876,
          1.8346214401384364,
          1.8412564271934853,
          1.847891414248534,
          1.854526401303583,
          1.861161388358632,
          1.8677963754136808,
          1.8744313624687297,
          1.8810663495237785,
          1.8877013365788273,
          1.8943363236338762,
          1.900971310688925,
          1.9076062977439738,
          1.9142412847990227,
          1.9208762718540717,
          1.9275112589091206,
          1.9341462459641694,
          1.9407812330192182,
          1.947416220074267,
          1.954051207129316,
          1.9606861941843647,
          1.9673211812394136,
          1.9739561682944624,
          1.9805911553495112,
          1.9872261424045603,
          1.9938611294596091,
          2.000496116514658,
          2.007131103569707,
          2.0137660906247556,
          2.0204010776798045,
          2.0270360647348533,
          2.033671051789902,
          2.040306038844951,
          2.0469410259,
          2.0535760129550487,
          2.0602110000100975,
          2.0668459870651463,
          2.073480974120195,
          2.080115961175244,
          2.086750948230293,
          2.0933859352853417,
          2.1000209223403905,
          2.1066559093954393,
          2.113290896450488,
          2.119925883505537,
          2.126560870560586,
          2.133195857615635,
          2.139830844670684,
          2.146465831725733,
          2.1531008187807816,
          2.1597358058358305,
          2.1663707928908793,
          2.173005779945928,
          2.179640767000977,
          2.186275754056026,
          2.1929107411110746,
          2.1995457281661235,
          2.2061807152211723,
          2.212815702276221,
          2.21945068933127,
          2.226085676386319,
          2.2327206634413677,
          2.2393556504964165,
          2.2459906375514653,
          2.252625624606514,
          2.2592606116615634,
          2.2658955987166123,
          2.272530585771661,
          2.27916557282671,
          2.285800559881759,
          2.2924355469368076,
          2.2990705339918565,
          2.3057055210469053,
          2.312340508101954,
          2.318975495157003,
          2.325610482212052,
          2.3322454692671006,
          2.3388804563221495,
          2.3455154433771983,
          2.352150430432247,
          2.358785417487296,
          2.365420404542345,
          2.3720553915973936,
          2.378690378652443,
          2.3853253657074918,
          2.3919603527625406,
          2.3985953398175894,
          2.4052303268726383,
          2.411865313927687,
          2.418500300982736,
          2.4251352880377848,
          2.4317702750928336,
          2.4384052621478824,
          2.4450402492029313,
          2.45167523625798,
          2.458310223313029,
          2.464945210368078,
          2.4715801974231266,
          2.4782151844781755,
          2.4848501715332243,
          2.491485158588273,
          2.4981201456433224,
          2.5047551326983712,
          2.51139011975342,
          2.518025106808469,
          2.5246600938635178,
          2.5312950809185666,
          2.5379300679736154,
          2.5445650550286643,
          2.551200042083713,
          2.557835029138762,
          2.5644700161938108,
          2.5711050032488596,
          2.5777399903039084,
          2.5843749773589573,
          2.591009964414006,
          2.597644951469055,
          2.6042799385241038,
          2.6109149255791526,
          2.6175499126342014,
          2.6241848996892507,
          2.6308198867442996,
          2.6374548737993484,
          2.6440898608543972,
          2.650724847909446,
          2.657359834964495,
          2.6639948220195437,
          2.6706298090745926,
          2.6772647961296414,
          2.6838997831846902,
          2.690534770239739,
          2.697169757294788,
          2.7038047443498368,
          2.7104397314048856,
          2.7170747184599344,
          2.7237097055149833,
          2.730344692570032,
          2.736979679625081,
          2.74361466668013,
          2.750249653735179,
          2.756884640790228,
          2.7635196278452767,
          2.7701546149003256,
          2.7767896019553744,
          2.7834245890104232,
          2.790059576065472,
          2.796694563120521,
          2.8033295501755697,
          2.8099645372306186,
          2.8165995242856674,
          2.8232345113407162,
          2.829869498395765,
          2.836504485450814,
          2.8431394725058627,
          2.8497744595609116,
          2.8564094466159604,
          2.8630444336710097,
          2.8696794207260585,
          2.8763144077811074,
          2.882949394836156,
          2.889584381891205,
          2.896219368946254,
          2.9028543560013027,
          2.9094893430563515,
          2.9161243301114004,
          2.922759317166449,
          2.929394304221498,
          2.936029291276547,
          2.9426642783315957,
          2.9492992653866446,
          2.9559342524416934,
          2.9625692394967422,
          2.969204226551791,
          2.97583921360684,
          2.9824742006618887,
          2.989109187716938,
          2.995744174771987,
          3.0023791618270357,
          3.0090141488820845,
          3.0156491359371334,
          3.022284122992182,
          3.028919110047231,
          3.03555409710228,
          3.0421890841573287,
          3.0488240712123775,
          3.0554590582674264,
          3.062094045322475,
          3.068729032377524,
          3.075364019432573,
          3.0819990064876217,
          3.0886339935426705,
          3.0952689805977194,
          3.101903967652768,
          3.1085389547078175,
          3.1151739417628663,
          3.121808928817915,
          3.128443915872964,
          3.135078902928013,
          3.1417138899830617,
          3.1483488770381105,
          3.1549838640931593,
          3.161618851148208,
          3.168253838203257,
          3.174888825258306,
          3.1815238123133547,
          3.1881587993684035,
          3.1947937864234524,
          3.201428773478501,
          3.20806376053355,
          3.214698747588599,
          3.2213337346436477,
          3.227968721698697,
          3.234603708753746,
          3.2412386958087946,
          3.2478736828638435,
          3.2545086699188923,
          3.261143656973941,
          3.26777864402899,
          3.274413631084039,
          3.2810486181390877,
          3.2876836051941365,
          3.2943185922491853,
          3.300953579304234,
          3.307588566359283,
          3.314223553414332,
          3.3208585404693807,
          3.3274935275244295,
          3.3341285145794783,
          3.340763501634527,
          3.3473984886895765,
          3.3540334757446253,
          3.360668462799674,
          3.367303449854723,
          3.373938436909772,
          3.3805734239648206,
          3.3872084110198695,
          3.3938433980749183,
          3.400478385129967,
          3.407113372185016,
          3.413748359240065,
          3.4203833462951136,
          3.4270183333501625,
          3.4336533204052113,
          3.44028830746026,
          3.446923294515309,
          3.453558281570358,
          3.4601932686254067,
          3.4668282556804555,
          3.4734632427355048,
          3.4800982297905536,
          3.4867332168456024,
          3.4933682039006513,
          3.5000031909557,
          3.506638178010749,
          3.513273165065798,
          3.5199081521208466,
          3.5265431391758955,
          3.5331781262309443,
          3.539813113285993,
          3.546448100341042,
          3.553083087396091,
          3.5597180744511396,
          3.5663530615061885,
          3.5729880485612373,
          3.579623035616286,
          3.586258022671335,
          3.5928930097263843,
          3.599527996781433,
          3.606162983836482,
          3.6127979708915308,
          3.6194329579465796,
          3.6260679450016284,
          3.6327029320566773,
          3.639337919111726,
          3.645972906166775,
          3.6526078932218238,
          3.6592428802768726,
          3.6658778673319214,
          3.6725128543869703,
          3.679147841442019,
          3.685782828497068,
          3.692417815552117,
          3.6990528026071656,
          3.7056877896622145,
          3.7123227767172637,
          3.7189577637723126,
          3.7255927508273614,
          3.7322277378824102,
          3.738862724937459,
          3.745497711992508,
          3.7521326990475568,
          3.7587676861026056,
          3.7654026731576544,
          3.7720376602127033,
          3.778672647267752,
          3.785307634322801,
          3.7919426213778498,
          3.7985776084328986,
          3.8052125954879474,
          3.8118475825429963,
          3.818482569598045,
          3.825117556653094,
          3.831752543708143,
          3.838387530763192,
          3.845022517818241,
          3.8516575048732897,
          3.8582924919283386,
          3.8649274789833874,
          3.8715624660384362,
          3.878197453093485,
          3.884832440148534,
          3.8914674272035827,
          3.8981024142586316,
          3.9047374013136804,
          3.9113723883687292,
          3.918007375423778,
          3.924642362478827,
          3.9312773495338758,
          3.9379123365889246,
          3.9445473236439734,
          3.9511823106990223,
          3.9578172977540715,
          3.9644522848091204,
          3.971087271864169,
          3.977722258919218,
          3.984357245974267,
          3.9909922330293157,
          3.9976272200843646,
          4.004262207139414,
          4.010897194194462,
          4.0175321812495115,
          4.02416716830456,
          4.030802155359609,
          4.037437142414658,
          4.044072129469707,
          4.050707116524755,
          4.0573421035798045,
          4.063977090634853,
          4.070612077689902,
          4.077247064744951,
          4.0838820518,
          4.090517038855048,
          4.0971520259100975,
          4.103787012965146,
          4.110422000020195,
          4.117056987075244,
          4.123691974130293,
          4.130326961185341,
          4.1369619482403905,
          4.14359693529544,
          4.150231922350488,
          4.1568669094055375,
          4.163501896460586,
          4.170136883515635,
          4.1767718705706836,
          4.183406857625733,
          4.190041844680781,
          4.1966768317358305,
          4.203311818790879,
          4.209946805845928,
          4.216581792900977,
          4.223216779956026,
          4.229851767011074,
          4.2364867540661235,
          4.243121741121172,
          4.249756728176221,
          4.2563917152312705,
          4.263026702286319,
          4.269661689341368,
          4.2762966763964165,
          4.282931663451466,
          4.289566650506514,
          4.2962016375615635,
          4.302836624616612,
          4.309471611671661,
          4.3161065987267095,
          4.322741585781759,
          4.329376572836807,
          4.3360115598918565,
          4.342646546946905,
          4.349281534001954,
          4.3559165210570026,
          4.362551508112052,
          4.3691864951671,
          4.3758214822221495,
          4.382456469277199,
          4.389091456332247,
          4.3957264433872965,
          4.402361430442345,
          4.408996417497394,
          4.4156314045524425,
          4.422266391607492,
          4.42890137866254,
          4.4355363657175895,
          4.442171352772638,
          4.448806339827687,
          4.4554413268827355,
          4.462076313937785,
          4.468711300992833,
          4.4753462880478825,
          4.481981275102931,
          4.48861626215798,
          4.4952512492130285,
          4.501886236268078,
          4.508521223323127,
          4.5151562103781755,
          4.521791197433225,
          4.528426184488273,
          4.5350611715433224,
          4.541696158598371,
          4.54833114565342,
          4.5549661327084685,
          4.561601119763518,
          4.568236106818566,
          4.5748710938736155,
          4.581506080928664,
          4.588141067983713,
          4.5947760550387615,
          4.601411042093811,
          4.608046029148859,
          4.6146810162039085,
          4.621316003258958,
          4.627950990314006,
          4.634585977369055,
          4.641220964424104,
          4.647855951479153,
          4.6544909385342015,
          4.661125925589251,
          4.667760912644299,
          4.674395899699348,
          4.681030886754397,
          4.687665873809446,
          4.6943008608644945,
          4.700935847919544,
          4.707570834974592,
          4.7142058220296414,
          4.72084080908469,
          4.727475796139739,
          4.7341107831947875,
          4.740745770249837,
          4.747380757304886,
          4.7540157443599345,
          4.760650731414984,
          4.767285718470032,
          4.773920705525081,
          4.78055569258013,
          4.787190679635179,
          4.7938256666902275,
          4.800460653745277,
          4.807095640800325,
          4.813730627855374,
          4.820365614910423,
          4.827000601965472,
          4.8336355890205205,
          4.84027057607557,
          4.846905563130618,
          4.853540550185667,
          4.860175537240716,
          4.866810524295765,
          4.873445511350814,
          4.880080498405863,
          4.886715485460912,
          4.8933504725159604,
          4.89998545957101,
          4.906620446626058,
          4.913255433681107,
          4.919890420736156,
          4.926525407791205,
          4.9331603948462535,
          4.939795381901303,
          4.946430368956351,
          4.9530653560114,
          4.959700343066449,
          4.966335330121498,
          4.9729703171765465,
          4.979605304231596,
          4.986240291286645,
          4.992875278341693,
          4.999510265396743,
          5.006145252451791,
          5.01278023950684,
          5.019415226561889,
          5.026050213616938,
          5.032685200671986,
          5.039320187727036,
          5.045955174782084,
          5.052590161837133,
          5.059225148892182,
          5.065860135947231,
          5.0724951230022794,
          5.079130110057329,
          5.085765097112377,
          5.092400084167426,
          5.099035071222475,
          5.105670058277524,
          5.112305045332573,
          5.118940032387622,
          5.125575019442671,
          5.132210006497719,
          5.138844993552769,
          5.145479980607817,
          5.152114967662866,
          5.158749954717915,
          5.165384941772964,
          5.172019928828012,
          5.178654915883062,
          5.18528990293811,
          5.191924889993159,
          5.198559877048208,
          5.205194864103257,
          5.211829851158305,
          5.218464838213355,
          5.225099825268403,
          5.231734812323452,
          5.238369799378502,
          5.24500478643355,
          5.251639773488599,
          5.258274760543648,
          5.264909747598697,
          5.271544734653745,
          5.278179721708795,
          5.284814708763843,
          5.291449695818892,
          5.298084682873941,
          5.30471966992899,
          5.311354656984038,
          5.317989644039088,
          5.324624631094136,
          5.331259618149185,
          5.337894605204234,
          5.344529592259283,
          5.351164579314332,
          5.357799566369381,
          5.36443455342443,
          5.371069540479478,
          5.377704527534528,
          5.384339514589576,
          5.390974501644625,
          5.397609488699674,
          5.404244475754723,
          5.410879462809771,
          5.417514449864821,
          5.424149436919869,
          5.430784423974918,
          5.437419411029967,
          5.444054398085016,
          5.450689385140064,
          5.457324372195114,
          5.463959359250162,
          5.470594346305211,
          5.477229333360261,
          5.483864320415309,
          5.490499307470358,
          5.497134294525407,
          5.503769281580456,
          5.510404268635504,
          5.517039255690554,
          5.523674242745602,
          5.530309229800651,
          5.5369442168557,
          5.543579203910749,
          5.550214190965797,
          5.556849178020847,
          5.563484165075895,
          5.570119152130944,
          5.576754139185993,
          5.583389126241042,
          5.59002411329609,
          5.59665910035114,
          5.603294087406189,
          5.609929074461237,
          5.616564061516287,
          5.623199048571335,
          5.629834035626384,
          5.636469022681433,
          5.643104009736482,
          5.64973899679153,
          5.65637398384658,
          5.663008970901628,
          5.669643957956677,
          5.676278945011726,
          5.682913932066775,
          5.689548919121823,
          5.696183906176873,
          5.702818893231921,
          5.70945388028697,
          5.71608886734202,
          5.722723854397068,
          5.729358841452117,
          5.735993828507166,
          5.742628815562215,
          5.749263802617263,
          5.755898789672313,
          5.762533776727361,
          5.76916876378241,
          5.775803750837459,
          5.782438737892508,
          5.789073724947556,
          5.795708712002606,
          5.802343699057654,
          5.808978686112703,
          5.815613673167752,
          5.822248660222801,
          5.828883647277849,
          5.835518634332899,
          5.842153621387948,
          5.848788608442996,
          5.855423595498046,
          5.862058582553094,
          5.868693569608143,
          5.875328556663192,
          5.881963543718241,
          5.888598530773289,
          5.895233517828339,
          5.901868504883387,
          5.908503491938436,
          5.915138478993485,
          5.921773466048534,
          5.928408453103582,
          5.935043440158632,
          5.94167842721368,
          5.948313414268729,
          5.954948401323778,
          5.961583388378827,
          5.968218375433876,
          5.974853362488925,
          5.981488349543974,
          5.988123336599022,
          5.994758323654072,
          6.00139331070912,
          6.008028297764169,
          6.014663284819218,
          6.021298271874267,
          6.027933258929315,
          6.034568245984365,
          6.041203233039413,
          6.047838220094462,
          6.054473207149511,
          6.06110819420456,
          6.067743181259608,
          6.074378168314658,
          6.081013155369707,
          6.087648142424755,
          6.0942831294798046,
          6.100918116534853,
          6.107553103589902,
          6.114188090644951,
          6.1208230777,
          6.127458064755048,
          6.134093051810098,
          6.140728038865146,
          6.147363025920195,
          6.153998012975244,
          6.160633000030293,
          6.167267987085341,
          6.173902974140391,
          6.180537961195439,
          6.187172948250488,
          6.193807935305537,
          6.200442922360586,
          6.207077909415635,
          6.213712896470684,
          6.220347883525733,
          6.226982870580781,
          6.2336178576358305,
          6.240252844690879,
          6.246887831745928,
          6.253522818800977,
          6.260157805856026,
          6.266792792911074,
          6.2734277799661236,
          6.280062767021172,
          6.286697754076221,
          6.29333274113127,
          6.299967728186319,
          6.306602715241367,
          6.313237702296417,
          6.319872689351466,
          6.326507676406514,
          6.3331426634615635,
          6.339777650516612,
          6.346412637571661,
          6.35304762462671,
          6.359682611681759,
          6.366317598736807,
          6.3729525857918565,
          6.379587572846905,
          6.386222559901954,
          6.392857546957003,
          6.399492534012052,
          6.4061275210671,
          6.4127625081221495,
          6.419397495177198,
          6.426032482232247,
          6.432667469287296,
          6.439302456342345,
          6.445937443397394,
          6.4525724304524426,
          6.459207417507492,
          6.46584240456254,
          6.4724773916175895,
          6.479112378672638,
          6.485747365727687,
          6.492382352782736,
          6.499017339837785,
          6.505652326892833,
          6.5122873139478825,
          6.518922301002931,
          6.52555728805798,
          6.532192275113029,
          6.538827262168078,
          6.545462249223126,
          6.5520972362781755,
          6.558732223333224,
          6.565367210388273,
          6.5720021974433225,
          6.578637184498371,
          6.58527217155342,
          6.5919071586084685,
          6.598542145663518,
          6.605177132718566,
          6.6118121197736155,
          6.618447106828664,
          6.625082093883713,
          6.6317170809387616,
          6.638352067993811
         ],
         "xaxis": "x",
         "y": [
          0.009900498337491686,
          0.016360553191094016,
          0.022734734077976233,
          0.029023894259678162,
          0.03522887946790922,
          0.0413505279668234,
          0.04738967061479985,
          0.0533471309257331,
          0.05922372512983621,
          0.06502026223396132,
          0.07073754408144053,
          0.07637636541145155,
          0.08193751391791118,
          0.08742177030790078,
          0.09282990835962689,
          0.09816269497992103,
          0.10342089026128178,
          0.10860524753846307,
          0.11371651344461209,
          0.11875542796696015,
          0.12372272450206981,
          0.1286191299106426,
          0.13344536457188935,
          0.13820214243746776,
          0.14289017108498955,
          0.14751015177110183,
          0.15206277948414412,
          0.15654874299638608,
          0.1609687249158482,
          0.16532340173770926,
          0.16961344389530272,
          0.17383951581070686,
          0.17800227594493032,
          0.18210237684769692,
          0.18614046520683267,
          0.19011718189725837,
          0.19403316202958995,
          0.1978890349983512,
          0.2016854245297999,
          0.20542294872937206,
          0.2091022201287463,
          0.21272384573253159,
          0.21628842706458115,
          0.21979656021393587,
          0.22324883588039918,
          0.22664583941974745,
          0.2299881508885775,
          0.23327634508879524,
          0.2365109916117473,
          0.2396926548819987,
          0.24282189420075992,
          0.24589926378896462,
          0.2489253128300028,
          0.25190058551210975,
          0.25482562107041595,
          0.2577009538286579,
          0.260527113240555,
          0.26330462393085363,
          0.26603400573604086,
          0.2687157737447315,
          0.27135043833773015,
          0.27393850522777113,
          0.27648047549893817,
          0.27897684564576797,
          0.28142810761203746,
          0.28383474882924054,
          0.2861972522547533,
          0.2885160964096929,
          0.29079175541647084,
          0.2930246990360439,
          0.29521539270486447,
          0.29736429757153277,
          0.2994718705331543,
          0.3015385642714029,
          0.30356482728829315,
          0.3055511039416641,
          0.30749783448037665,
          0.309405455079226,
          0.3112743978735728,
          0.31310509099369366,
          0.31489795859885494,
          0.31665342091110993,
          0.31837189424882384,
          0.32005379105992615,
          0.3216995199548958,
          0.32330948573947726,
          0.3248840894471335,
          0.32642372837123473,
          0.3279287960969877,
          0.3293996825331048,
          0.3308367739432181,
          0.332240452977037,
          0.3336110987012548,
          0.3349490866302031,
          0.3362547887562587,
          0.3375285735800026,
          0.33877080614013505,
          0.3399818480431472,
          0.34116205749275136,
          0.34231178931907325,
          0.3434313950076054,
          0.34452122272792657,
          0.34558161736218684,
          0.3466129205333608,
          0.34761547063327175,
          0.34858960285038637,
          0.3495356491973849,
          0.3504539385385048,
          0.3513447966166632,
          0.3522085460803573,
          0.3530455065103465,
          0.3538559944461155,
          0.35464032341212326,
          0.35539880394383644,
          0.3561317436135508,
          0.35683944705600246,
          0.35752221599376877,
          0.3581803492624627,
          0.358814142835721,
          0.35942388984998797,
          0.3600098806290969,
          0.36057240270865026,
          0.3611117408602006,
          0.3616281771152333,
          0.3621219907889535,
          0.3625934585038776,
          0.3630428542132317,
          0.36347044922415916,
          0.36387651222073664,
          0.3642613092868024,
          0.3646251039285969,
          0.36496815709721797,
          0.36529072721089134,
          0.3655930701770589,
          0.365875439414285,
          0.36613808587398344,
          0.36638125806196514,
          0.36660520205980957,
          0.3668101615460598,
          0.3669963778172438,
          0.3671640898087222,
          0.3673135341153651,
          0.3674449450120581,
          0.3675585544740398,
          0.3676545921970719,
          0.3677332856174429,
          0.36779485993180644,
          0.36783953811685727,
          0.3678675409488438,
          0.3678790870229199,
          0.3678743927723376,
          0.3678536724874808,
          0.36781713833474156,
          0.36776500037524096,
          0.367697466583395,
          0.3676147428653272,
          0.3675170330771285,
          0.36740453904296666,
          0.36727746057304533,
          0.3671359954814148,
          0.36698033960363474,
          0.36681068681429163,
          0.36662722904436973,
          0.3664301562984793,
          0.36621965667194073,
          0.3659959163677283,
          0.36575911971327213,
          0.3655094491771213,
          0.36524708538546846,
          0.3649722071385375,
          0.36468499142683425,
          0.36438561344726295,
          0.3640742466191082,
          0.3637510625998841,
          0.3634162313010516,
          0.3630699209036049,
          0.36271229787352816,
          0.36234352697712335,
          0.3619637712962103,
          0.3615731922432004,
          0.36117194957604437,
          0.36076020141305487,
          0.3603381042476067,
          0.3599058129627127,
          0.3594634808454789,
          0.35901125960143926,
          0.35854929936876917,
          0.3580777487323815,
          0.35759675473790425,
          0.3571064629055414,
          0.35660701724381716,
          0.35609856026320613,
          0.3555812329896484,
          0.3550551749779521,
          0.3545205243250832,
          0.35397741768334373,
          0.3534259902734402,
          0.3528663758974412,
          0.3522987069516278,
          0.351723114439234,
          0.35113972798308235,
          0.3505486758381116,
          0.3499500849037998,
          0.3493440807364834,
          0.348730787561571,
          0.34811032828565663,
          0.3474828245085292,
          0.3468483965350815,
          0.3462071633871187,
          0.3455592428150673,
          0.34490475130958564,
          0.34424380411307604,
          0.34357651523109967,
          0.34290299744369557,
          0.3422233623166039,
          0.34153772021239365,
          0.34084618030149755,
          0.34014885057315225,
          0.3394458378462472,
          0.33873724778008063,
          0.3380231848850254,
          0.3373037525331037,
          0.3365790529684727,
          0.3358491873178208,
          0.3351142556006764,
          0.33437435673962823,
          0.3336295885704601,
          0.33288004785219827,
          0.3321258302770746,
          0.33136703048040445,
          0.33060374205038046,
          0.32983605753778383,
          0.32906406846561154,
          0.3282878653386231,
          0.327507537652805,
          0.3267231739047549,
          0.32593486160098595,
          0.3251426872671511,
          0.32434673645718953,
          0.32354709376239454,
          0.322743842820404,
          0.3219370663241145,
          0.3211268460305181,
          0.32031326276946515,
          0.3194963964523508,
          0.3186763260807278,
          0.3178531297548455,
          0.31702688468211565,
          0.31619766718550535,
          0.3153655527118586,
          0.31453061584014635,
          0.31369293028964496,
          0.3128525689280457,
          0.31200960377949355,
          0.31116410603255756,
          0.31031614604813235,
          0.30946579336727176,
          0.3086131167189552,
          0.3077581840277867,
          0.30690106242162823,
          0.3060418182391669,
          0.3051805170374169,
          0.30431722359915697,
          0.30345200194030353,
          0.3025849153172198,
          0.30171602623396265,
          0.30084539644946584,
          0.29997308698466196,
          0.29909915812954235,
          0.29822366945015577,
          0.2973466797955471,
          0.2964682473046351,
          0.29558842941303115,
          0.294707282859799,
          0.29382486369415484,
          0.29294122728211064,
          0.2920564283130588,
          0.29117052080629974,
          0.2902835581175134,
          0.2893955929451731,
          0.28850667733690544,
          0.2876168626957929,
          0.28672619978662306,
          0.2858347387420824,
          0.2849425290688968,
          0.2840496196539178,
          0.28315605877015626,
          0.28226189408276287,
          0.28136717265495687,
          0.280471940953903,
          0.279576244856536,
          0.2786801296553356,
          0.27778364006405015,
          0.27688682022336975,
          0.2759897137065508,
          0.27509236352498995,
          0.2741948121337502,
          0.2732971014370377,
          0.27239927279363074,
          0.2715013670222615,
          0.2706034244069494,
          0.26970548470228856,
          0.26880758713868813,
          0.2679097704275668,
          0.2670120727665012,
          0.26611453184432887,
          0.2652171848462071,
          0.2643200684586257,
          0.26342321887437653,
          0.2625266717974788,
          0.2616304624480607,
          0.2607346255671981,
          0.2598391954217103,
          0.25894420580891286,
          0.2580496900613293,
          0.25715568105136,
          0.25626221119591036,
          0.25536931246097755,
          0.2544770163661966,
          0.2535853539893457,
          0.25269435597081247,
          0.25180405251801957,
          0.25091447340981077,
          0.2500256480007988,
          0.2491376052256735,
          0.2482503736034726,
          0.24736398124181322,
          0.24647845584108644,
          0.24559382469861404,
          0.24471011471276807,
          0.24382735238705364,
          0.24294556383415503,
          0.24206477477994592,
          0.24118501056746308,
          0.24030629616084492,
          0.23942865614923456,
          0.23855211475064758,
          0.23767669581580542,
          0.23680242283193428,
          0.23592931892652916,
          0.2350574068710852,
          0.2341867090847942,
          0.23331724763820855,
          0.2324490442568719,
          0.23158212032491746,
          0.2307164968886324,
          0.22985219465999232,
          0.2289892340201614,
          0.2281276350229626,
          0.2272674173983155,
          0.22640860055564338,
          0.2255512035872492,
          0.22469524527166115,
          0.22384074407694748,
          0.2229877181640018,
          0.22213618538979776,
          0.22128616331061474,
          0.22043766918523366,
          0.21959071997810456,
          0.21874533236248384,
          0.21790152272354416,
          0.2170593071614556,
          0.2162187014944383,
          0.21537972126178745,
          0.21454238172687087,
          0.2137066978800987,
          0.21287268444186586,
          0.21204035586546807,
          0.2112097263399906,
          0.2103808097931707,
          0.20955361989423352,
          0.20872817005670236,
          0.20790447344118265,
          0.2070825429581205,
          0.2062623912705358,
          0.20544403079673,
          0.20462747371296922,
          0.20381273195614205,
          0.20299981722639307,
          0.2021887409897325,
          0.20137951448062047,
          0.20057214870452872,
          0.19976665444047753,
          0.19896304224354963,
          0.19816132244738047,
          0.19736150516662593,
          0.1965636002994059,
          0.19576761752972655,
          0.19497356632987914,
          0.19418145596281636,
          0.1933912954845073,
          0.19260309374626952,
          0.19181685939708004,
          0.19103260088586424,
          0.1902503264637635,
          0.18947004418638191,
          0.18869176191601122,
          0.1879154873238355,
          0.18714122789211485,
          0.18636899091634881,
          0.18559878350741896,
          0.1848306125937119,
          0.18406448492322186,
          0.18330040706563352,
          0.1825383854143853,
          0.18177842618871315,
          0.18102053543567495,
          0.18026471903215557,
          0.17951098268685345,
          0.17875933194224777,
          0.17800977217654734,
          0.1772623086056209,
          0.17651694628490888,
          0.17577369011131744,
          0.1750325448250937,
          0.17429351501168402,
          0.17355660510357385,
          0.17282181938211033,
          0.1720891619793074,
          0.17135863687963368,
          0.1706302479217832,
          0.16990399880042922,
          0.16917989306796094,
          0.16845793413620425,
          0.16773812527812496,
          0.1670204696295165,
          0.16630497019067098,
          0.16559162982803405,
          0.16488045127584408,
          0.16417143713775545,
          0.16346458988844584,
          0.16275991187520858,
          0.16205740531952884,
          0.16135707231864516,
          0.16065891484709552,
          0.1599629347582485,
          0.15926913378581947,
          0.1585775135453721,
          0.15788807553580525,
          0.1572008211408253,
          0.15651575163040415,
          0.15583286816222292,
          0.15515217178310173,
          0.15447366343041508,
          0.15379734393349384,
          0.15312321401501308,
          0.15245127429236655,
          0.15178152527902747,
          0.151113967385896,
          0.15044860092263332,
          0.14978542609898296,
          0.14912444302607844,
          0.14846565171773846,
          0.14780905209174913,
          0.14715464397113343,
          0.14650242708540825,
          0.14585240107182884,
          0.14520456547662075,
          0.1445589197561999,
          0.14391546327837987,
          0.14327419532356805,
          0.1426351150859489,
          0.14199822167465592,
          0.14136351411493192,
          0.1407309913492773,
          0.1401006522385873,
          0.13947249556327723,
          0.138846520024397,
          0.13822272424473406,
          0.1376011067699052,
          0.13698166606943762,
          0.13636440053783874,
          0.13574930849565547,
          0.13513638819052246,
          0.13452563779820023,
          0.13391705542360186,
          0.1333106391018104,
          0.13270638679908495,
          0.13210429641385688,
          0.13150436577771601,
          0.13090659265638654,
          0.1303109747506929,
          0.1297175096975158,
          0.1291261950707389,
          0.1285370283821847,
          0.127950007082542,
          0.12736512856228327,
          0.12678239015257195,
          0.12620178912616173,
          0.12562332269828544,
          0.12504698802753514,
          0.12447278221673301,
          0.12390070231379317,
          0.1233307453125749,
          0.1227629081537262,
          0.12219718772551948,
          0.12163358086467778,
          0.12107208435719269,
          0.12051269493913393,
          0.11995540929744969,
          0.1194002240707595,
          0.11884713585013808,
          0.11829614117989125,
          0.11774723655832345,
          0.11720041843849756,
          0.11665568322898619,
          0.11611302729461509,
          0.1155724469571992,
          0.11503393849627004,
          0.11449749814979636,
          0.1139631221148959,
          0.11343080654854078,
          0.11290054756825435,
          0.11237234125280135,
          0.11184618364287009,
          0.11132207074174752,
          0.11079999851598739,
          0.11027996289607034,
          0.10976195977705787,
          0.10924598501923843,
          0.10873203444876717,
          0.10822010385829794,
          0.10771018900760952,
          0.10720228562422397,
          0.1066963894040189,
          0.10619249601183273,
          0.10569060108206343,
          0.10519070021926102,
          0.10469278899871279,
          0.10419686296702288,
          0.10370291764268498,
          0.10321094851664903,
          0.10272095105288143,
          0.10223292068891894,
          0.10174685283641699,
          0.10126274288169111,
          0.10078058618625302,
          0.10030037808734031,
          0.09982211389844048,
          0.09934578890980869,
          0.09887139838898029,
          0.0983989375812772,
          0.09792840171030856,
          0.09745978597846586,
          0.09699308556741255,
          0.09652829563856798,
          0.09606541133358572,
          0.09560442777482674,
          0.09514534006582695,
          0.09468814329175966,
          0.09423283251989228,
          0.09377940280003841,
          0.09332784916500403,
          0.09287816663102927,
          0.09243035019822465,
          0.09198439485100221,
          0.09154029555850195,
          0.09109804727501303,
          0.09065764494039044,
          0.09021908348046628,
          0.08978235780745658,
          0.08934746282036356,
          0.08891439340537245,
          0.08848314443624451,
          0.08805371077470471,
          0.08762608727082519,
          0.08720026876340417,
          0.08677625008034005,
          0.0863540260390016,
          0.0859335914465932,
          0.08551494110051586,
          0.08509806978872414,
          0.08468297229007865,
          0.08426964337469398,
          0.08385807780428298,
          0.08344827033249652,
          0.0830402157052591,
          0.08263390866110074,
          0.08222934393148407,
          0.08182651624112837,
          0.081425420308329,
          0.08102605084527298,
          0.08062840255835091,
          0.08023247014846467,
          0.07983824831133177,
          0.0794457317377854,
          0.0790549151140712,
          0.07866579312214009,
          0.07827836043993738,
          0.07789261174168825,
          0.07750854169817993,
          0.07712614497703987,
          0.07674541624301062,
          0.07636635015822135,
          0.07598894138245547,
          0.07561318457341527,
          0.07523907438698296,
          0.07486660547747846,
          0.07449577249791348,
          0.07412657010024286,
          0.07375899293561235,
          0.0733930356546031,
          0.07302869290747317,
          0.07266595934439558,
          0.07230482961569352,
          0.07194529837207239,
          0.07158736026484833,
          0.07123100994617466,
          0.07087624206926411,
          0.07052305128860922,
          0.07017143226019874,
          0.0698213796417321,
          0.06947288809283007,
          0.06912595227524324,
          0.06878056685305722,
          0.06843672649289549,
          0.06809442586411876,
          0.0677536596390225,
          0.06741442249303066,
          0.06707670910488803,
          0.0667405141568483,
          0.06640583233486126,
          0.06607265832875567,
          0.06574098683242086,
          0.06541081254398522,
          0.06508213016599174,
          0.06475493440557221,
          0.0644292199746174,
          0.06410498158994625,
          0.06378221397347152,
          0.06346091185236379,
          0.06314106995921233,
          0.06282268303218448,
          0.06250574581518191,
          0.06219025305799509,
          0.06187619951645495,
          0.061563579952583124,
          0.061252389134738794,
          0.060942621837764485,
          0.0606342728431286,
          0.0603273369390668,
          0.06002180892072042,
          0.05971768359027294,
          0.05941495575708482,
          0.059113620237825536,
          0.05881367185660429,
          0.05851510544509782,
          0.05821791584267709,
          0.057922097896531265,
          0.05762764646179021,
          0.057334556401644574,
          0.05704282258746439,
          0.056752439898915374,
          0.05646340322407367,
          0.056175707459538274,
          0.055889347510542156,
          0.05560431829106106,
          0.055320614723920705,
          0.0550382317409022,
          0.054757164282845626,
          0.05447740729975193,
          0.054198955750882724,
          0.05392180460485911,
          0.053645948839757936,
          0.05337138344320695,
          0.05309810341247806,
          0.052826103754579,
          0.052555379486343326,
          0.05228592563451883,
          0.052017737235854275,
          0.05175080933718474,
          0.05148513699551509,
          0.05122071527810231,
          0.0509575392625358,
          0.0506956040368168,
          0.05043490469943548,
          0.05017543635944753,
          0.04991719413654836,
          0.049660173161146494,
          0.04940436857443531,
          0.04914977552846316,
          0.04889638918620253,
          0.04864420472161741,
          0.04839321731972955,
          0.048143422176683125,
          0.0478948144998084,
          0.04764738950768363,
          0.047401142430196115,
          0.047156068508601566,
          0.046912162995582485,
          0.046669421155304876,
          0.04642783826347442,
          0.04618740960739051,
          0.04594813048599983,
          0.045709996209948145,
          0.045473002101631466,
          0.045237143495245456,
          0.04500241573683393,
          0.04476881418433647,
          0.04453633420763423,
          0.044304971188595374,
          0.044074720521118715,
          0.043845577611176814,
          0.043617537876857494,
          0.0433905967484047,
          0.04316474966825793,
          0.042939992091091006,
          0.04271631948384924,
          0.04249372732578634,
          0.04227221110849941,
          0.042051766335963754,
          0.04183238852456607,
          0.041614073203137134,
          0.04139681591298308,
          0.041180612207916106,
          0.040965457654284006,
          0.04075134783099867,
          0.04053827832956411,
          0.04032624475410292,
          0.04011524272138244,
          0.03990526786083957,
          0.039696315814605046,
          0.03948838223752656,
          0.03928146279719124,
          0.03907555317394701,
          0.0388706490609236,
          0.03866674616405201,
          0.03846384020208391,
          0.03826192690660954,
          0.03806100202207541,
          0.037861061305800706,
          0.037662100527993375,
          0.03746411547176489,
          0.037267101933144885,
          0.037071055721094544,
          0.036875972657519344,
          0.03668184857728135,
          0.036488679328210344,
          0.03629646077111469,
          0.03610518877979099,
          0.03591485924103361,
          0.03572546805464296,
          0.03553701113343354,
          0.03534948440324102,
          0.03516288380292885,
          0.03497720528439397,
          0.03479244481257226,
          0.03460859836544285,
          0.03442566193403236,
          0.03424363152241794,
          0.03406250314773024,
          0.03388227284015533,
          0.033702936642936256,
          0.03352449061237403,
          0.033346930817827844,
          0.03317025334171494,
          0.03299445427950971,
          0.032819529739742406,
          0.032645475843997095,
          0.032472288726909354,
          0.03229996453616312,
          0.032128499432487245,
          0.03195788958965135,
          0.03178813119446134,
          0.03161922044675424,
          0.031451153559392625,
          0.03128392675825853,
          0.031117536282246967,
          0.030951978383258628,
          0.03078724932619264,
          0.030623345388938357,
          0.03046026286236697,
          0.030297998050322586,
          0.030136547269612804,
          0.02997590684999903,
          0.029816073134185987,
          0.02965704247781136,
          0.029498811249434338,
          0.029341375830524367,
          0.02918473261544903,
          0.02902887801146181,
          0.02887380843868926,
          0.02871952033011799,
          0.028566010131580923,
          0.028413274301743598,
          0.02826130931208973,
          0.02811011164690666,
          0.0279596778032702,
          0.027810004291029342,
          0.027661087632790477,
          0.027512924363901254,
          0.02736551103243424,
          0.027218844199169978,
          0.02707292043758006,
          0.02692773633380951,
          0.026783288486659153,
          0.026639573507567384,
          0.026496588020591915,
          0.0263543286623909,
          0.02621279208220409,
          0.026071974941833328,
          0.025931873915623144,
          0.025792485690440632,
          0.025653806965655473,
          0.025515834453119293,
          0.02537856487714502,
          0.025241994974485853,
          0.025106121494313956,
          0.02497094119819893,
          0.02483645086008598,
          0.024702647266273914,
          0.024569527215392774,
          0.02443708751838134,
          0.024305324998464276,
          0.024174236491129188,
          0.024043818844103223,
          0.02391406891732977,
          0.023784983582944542,
          0.023656559725251797,
          0.02352879424070007,
          0.023401684037857928,
          0.023275226037389244,
          0.02314941717202859,
          0.023024254386556087,
          0.022899734637772357,
          0.02277585489447311,
          0.02265261213742351,
          0.022530003359332564,
          0.022408025564827065,
          0.022286675770425566,
          0.022165951004512022,
          0.022045848307309428,
          0.021926364730853055,
          0.021807497338963807,
          0.021689243207221136,
          0.021571599422936037,
          0.021454563085123658,
          0.02133813130447601,
          0.021222301203334265,
          0.021107069915661174,
          0.02099243458701306,
          0.02087839237451195,
          0.020764940446817346,
          0.02065207598409799,
          0.0205397961780035,
          0.02042809823163574,
          0.02031697935952028,
          0.020206436787577536,
          0.02009646775309394,
          0.019987069504692864,
          0.019878239302305558,
          0.019769974417141827,
          0.01966227213166086,
          0.019555129739541547,
          0.019448544545653142,
          0.019342513866025465,
          0.01923703502781927,
          0.019132105369296264,
          0.01902772223978934,
          0.01892388299967242,
          0.01882058502033041,
          0.01871782568412897,
          0.018615602384384273,
          0.018513912525332635,
          0.018412753522100023,
          0.01831212280067168,
          0.01821201779786136,
          0.018112435961280902,
          0.01801337474930924,
          0.017914831631061855,
          0.017816804086359803,
          0.01771928960569883,
          0.017622285690218373,
          0.0175257898516706,
          0.017429799612389236,
          0.017334312505258544,
          0.01723932607368197,
          0.0171448378715511,
          0.017050845463214205,
          0.016957346423445045,
          0.016864338337411418,
          0.016771818800643767,
          0.01667978541900376,
          0.016588235808652717,
          0.016497167596020202,
          0.016406578417772384,
          0.016316465920780492,
          0.016226827762089117,
          0.01613766160888471,
          0.01604896513846375,
          0.01596073603820117,
          0.015872972005518526,
          0.0157856707478524,
          0.015698829982622464,
          0.015612447437199842,
          0.015526520848875252,
          0.015441047964827209,
          0.015356026542090156,
          0.015271454347522735,
          0.015187329157775858,
          0.01510364875926084,
          0.015020410948117605,
          0.014937613530182766,
          0.01485525432095781,
          0.01477333114557716,
          0.014691841838776353,
          0.01461078424486011,
          0.014530156217670582,
          0.014449955620555318,
          0.01437018032633553,
          0.014290828217274164,
          0.014211897185044123,
          0.01413338513069632,
          0.014055289964627935,
          0.013977609606550517,
          0.013900341985458278,
          0.013823485039596203,
          0.013747036716428266,
          0.013670994972605752,
          0.01359535777393539,
          0.013520123095347761,
          0.013445288920865434,
          0.0133708532435714,
          0.013296814065577296,
          0.013223169397991895,
          0.013149917260889309,
          0.013077055683277541,
          0.013004582703066835,
          0.01293249636703814,
          0.012860794730811597,
          0.012789475858815078,
          0.012718537824252656,
          0.01264797870907327,
          0.012577796603939232,
          0.012507989608194934,
          0.012438555829835512,
          0.012369493385475503,
          0.012300800400317618,
          0.01223247500812152,
          0.012164515351172654,
          0.012096919580251055,
          0.012029685854600281,
          0.011962812341896303,
          0.011896297218216537,
          0.011830138668008793,
          0.011764334884060394,
          0.011698884067467186,
          0.011633784427602803,
          0.011569034182087747,
          0.011504631556758701,
          0.011440574785637722,
          0.011376862110901675,
          0.011313491782851523,
          0.011250462059881785,
          0.011187771208449998,
          0.011125417503046247,
          0.01106339922616274,
          0.011001714668263407,
          0.01094036212775363,
          0.0108793399109499,
          0.010818646332049663,
          0.01075827971310109,
          0.010698238383973038,
          0.010638520682324945,
          0.010579124953576834,
          0.010520049550879382,
          0.010461292835084046,
          0.010402853174713168,
          0.010344728945930302,
          0.010286918532510405,
          0.010229420325810245,
          0.01017223272473878,
          0.010115354135727605,
          0.010058782972701524,
          0.010002517657049074,
          0.009946556617593241,
          0.009890898290562078,
          0.009835541119559582,
          0.00978048355553643,
          0.009725724056760957,
          0.009671261088790035,
          0.009617093124440175,
          0.009563218643758555,
          0.009509636133994201,
          0.009456344089569222,
          0.009403341012050063,
          0.009350625410118848,
          0.009298195799544851,
          0.009246050703155923,
          0.009194188650810068,
          0.009142608179367082,
          0.009091307832660177,
          0.009040286161467822,
          0.008989541723485471,
          0.008939073083297553,
          0.00888887881234935,
          0.008838957488919084,
          0.008789307698089985,
          0.008739928031722488,
          0.008690817088426459
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>α</i>=3<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>α</i>=3",
         "line": {
          "color": "#00cc96",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>α</i>=3",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.01,
          0.018404351266151614,
          0.026808702532303233,
          0.035213053798454845,
          0.043617405064606464,
          0.05202175633075808,
          0.060426107596909695,
          0.0688304588630613,
          0.07723481012921292,
          0.08563916139536454,
          0.09404351266151616,
          0.10244786392766776,
          0.11085221519381938,
          0.119256566459971,
          0.12766091772612262,
          0.13606526899227425,
          0.14446962025842586,
          0.15287397152457746,
          0.1612783227907291,
          0.1696826740568807,
          0.17808702532303233,
          0.18649137658918394,
          0.19489572785533554,
          0.20330007912148718,
          0.21170443038763878,
          0.2201087816537904,
          0.22851313291994202,
          0.23691748418609362,
          0.24532183545224523,
          0.25372618671839686,
          0.2621305379845485,
          0.2705348892507001,
          0.2789392405168517,
          0.28734359178300334,
          0.2957479430491549,
          0.30415229431530655,
          0.3125566455814582,
          0.32096099684760976,
          0.3293653481137614,
          0.337769699379913,
          0.34617405064606466,
          0.35457840191221623,
          0.36298275317836787,
          0.3713871044445195,
          0.3797914557106711,
          0.3881958069768227,
          0.39660015824297434,
          0.4050045095091259,
          0.41340886077527755,
          0.4218132120414292,
          0.43021756330758076,
          0.4386219145737324,
          0.44702626583988403,
          0.4554306171060356,
          0.46383496837218724,
          0.4722393196383389,
          0.48064367090449045,
          0.4890480221706421,
          0.4974523734367937,
          0.5058567247029453,
          0.514261075969097,
          0.5226654272352486,
          0.5310697785014001,
          0.5394741297675518,
          0.5478784810337034,
          0.556282832299855,
          0.5646871835660067,
          0.5730915348321582,
          0.5814958860983098,
          0.5899002373644615,
          0.5983045886306131,
          0.6067089398967647,
          0.6151132911629164,
          0.6235176424290679,
          0.6319219936952195,
          0.6403263449613712,
          0.6487306962275228,
          0.6571350474936744,
          0.665539398759826,
          0.6739437500259776,
          0.6823481012921293,
          0.6907524525582809,
          0.6991568038244325,
          0.7075611550905841,
          0.7159655063567357,
          0.7243698576228873,
          0.732774208889039,
          0.7411785601551906,
          0.7495829114213421,
          0.7579872626874938,
          0.7663916139536454,
          0.774795965219797,
          0.7832003164859487,
          0.7916046677521003,
          0.8000090190182518,
          0.8084133702844035,
          0.8168177215505551,
          0.8252220728167067,
          0.8336264240828584,
          0.8420307753490099,
          0.8504351266151615,
          0.8588394778813132,
          0.8672438291474648,
          0.8756481804136164,
          0.884052531679768,
          0.8924568829459196,
          0.9008612342120712,
          0.9092655854782229,
          0.9176699367443745,
          0.926074288010526,
          0.9344786392766777,
          0.9428829905428293,
          0.9512873418089809,
          0.9596916930751326,
          0.9680960443412842,
          0.9765003956074358,
          0.9849047468735874,
          0.993309098139739,
          1.0017134494058906,
          1.0101178006720422,
          1.018522151938194,
          1.0269265032043455,
          1.035330854470497,
          1.0437352057366487,
          1.0521395570028003,
          1.0605439082689518,
          1.0689482595351036,
          1.0773526108012552,
          1.0857569620674068,
          1.0941613133335584,
          1.10256566459971,
          1.1109700158658617,
          1.1193743671320133,
          1.127778718398165,
          1.1361830696643165,
          1.144587420930468,
          1.1529917721966196,
          1.1613961234627714,
          1.169800474728923,
          1.1782048259950746,
          1.1866091772612262,
          1.1950135285273777,
          1.2034178797935293,
          1.2118222310596811,
          1.2202265823258327,
          1.2286309335919843,
          1.2370352848581359,
          1.2454396361242874,
          1.253843987390439,
          1.2622483386565908,
          1.2706526899227424,
          1.279057041188894,
          1.2874613924550455,
          1.2958657437211971,
          1.3042700949873487,
          1.3126744462535005,
          1.321078797519652,
          1.3294831487858036,
          1.3378875000519552,
          1.3462918513181068,
          1.3546962025842586,
          1.3631005538504102,
          1.3715049051165618,
          1.3799092563827133,
          1.388313607648865,
          1.3967179589150165,
          1.4051223101811683,
          1.4135266614473199,
          1.4219310127134714,
          1.430335363979623,
          1.4387397152457746,
          1.4471440665119262,
          1.455548417778078,
          1.4639527690442296,
          1.4723571203103811,
          1.4807614715765327,
          1.4891658228426843,
          1.4975701741088359,
          1.5059745253749877,
          1.5143788766411392,
          1.5227832279072908,
          1.5311875791734424,
          1.539591930439594,
          1.5479962817057455,
          1.5564006329718973,
          1.564804984238049,
          1.5732093355042005,
          1.581613686770352,
          1.5900180380365037,
          1.5984223893026552,
          1.606826740568807,
          1.6152310918349586,
          1.6236354431011102,
          1.6320397943672618,
          1.6404441456334133,
          1.6488484968995651,
          1.6572528481657167,
          1.6656571994318683,
          1.6740615506980199,
          1.6824659019641715,
          1.690870253230323,
          1.6992746044964748,
          1.7076789557626264,
          1.716083307028778,
          1.7244876582949296,
          1.7328920095610811,
          1.7412963608272327,
          1.7497007120933845,
          1.758105063359536,
          1.7665094146256877,
          1.7749137658918392,
          1.7833181171579908,
          1.7917224684241424,
          1.8001268196902942,
          1.8085311709564458,
          1.8169355222225974,
          1.825339873488749,
          1.8337442247549005,
          1.842148576021052,
          1.8505529272872039,
          1.8589572785533555,
          1.867361629819507,
          1.8757659810856586,
          1.8841703323518102,
          1.8925746836179618,
          1.9009790348841136,
          1.9093833861502651,
          1.9177877374164167,
          1.9261920886825683,
          1.9345964399487199,
          1.9430007912148717,
          1.9514051424810233,
          1.9598094937471748,
          1.9682138450133264,
          1.976618196279478,
          1.9850225475456296,
          1.9934268988117814,
          2.0018312500779327,
          2.010235601344084,
          2.018639952610236,
          2.0270443038763877,
          2.035448655142539,
          2.043853006408691,
          2.052257357674842,
          2.060661708940994,
          2.069066060207146,
          2.077470411473297,
          2.085874762739449,
          2.0942791140056003,
          2.102683465271752,
          2.1110878165379034,
          2.1194921678040552,
          2.127896519070207,
          2.1363008703363584,
          2.14470522160251,
          2.1531095728686616,
          2.1615139241348134,
          2.169918275400965,
          2.1783226266671165,
          2.1867269779332683,
          2.1951313291994197,
          2.2035356804655715,
          2.2119400317317233,
          2.2203443829978746,
          2.2287487342640264,
          2.2371530855301778,
          2.2455574367963296,
          2.253961788062481,
          2.2623661393286327,
          2.2707704905947845,
          2.279174841860936,
          2.2875791931270877,
          2.295983544393239,
          2.304387895659391,
          2.3127922469255426,
          2.321196598191694,
          2.329600949457846,
          2.338005300723997,
          2.346409651990149,
          2.3548140032563003,
          2.363218354522452,
          2.371622705788604,
          2.3800270570547553,
          2.388431408320907,
          2.3968357595870584,
          2.40524011085321,
          2.413644462119362,
          2.4220488133855134,
          2.430453164651665,
          2.4388575159178165,
          2.4472618671839683,
          2.45566621845012,
          2.4640705697162715,
          2.4724749209824233,
          2.4808792722485746,
          2.4892836235147264,
          2.497687974780878,
          2.5060923260470296,
          2.5144966773131814,
          2.5229010285793327,
          2.5313053798454845,
          2.539709731111636,
          2.5481140823777877,
          2.5565184336439395,
          2.564922784910091,
          2.5733271361762426,
          2.581731487442394,
          2.590135838708546,
          2.598540189974697,
          2.606944541240849,
          2.6153488925070008,
          2.623753243773152,
          2.632157595039304,
          2.6405619463054553,
          2.648966297571607,
          2.657370648837759,
          2.66577500010391,
          2.674179351370062,
          2.6825837026362134,
          2.690988053902365,
          2.699392405168517,
          2.7077967564346683,
          2.71620110770082,
          2.7246054589669715,
          2.7330098102331233,
          2.7414141614992746,
          2.7498185127654264,
          2.7582228640315782,
          2.7666272152977296,
          2.7750315665638814,
          2.7834359178300327,
          2.7918402690961845,
          2.8002446203623363,
          2.8086489716284877,
          2.8170533228946395,
          2.825457674160791,
          2.8338620254269427,
          2.842266376693094,
          2.850670727959246,
          2.8590750792253976,
          2.867479430491549,
          2.8758837817577008,
          2.884288133023852,
          2.892692484290004,
          2.9010968355561557,
          2.909501186822307,
          2.917905538088459,
          2.9263098893546102,
          2.934714240620762,
          2.9431185918869134,
          2.951522943153065,
          2.959927294419217,
          2.9683316456853683,
          2.97673599695152,
          2.9851403482176715,
          2.9935446994838233,
          3.001949050749975,
          3.0103534020161264,
          3.0187577532822782,
          3.0271621045484296,
          3.0355664558145814,
          3.043970807080733,
          3.0523751583468846,
          3.0607795096130364,
          3.0691838608791877,
          3.0775882121453395,
          3.085992563411491,
          3.0943969146776427,
          3.1028012659437945,
          3.111205617209946,
          3.1196099684760976,
          3.128014319742249,
          3.1364186710084008,
          3.1448230222745526,
          3.153227373540704,
          3.1616317248068557,
          3.170036076073007,
          3.178440427339159,
          3.1868447786053102,
          3.195249129871462,
          3.203653481137614,
          3.212057832403765,
          3.220462183669917,
          3.2288665349360683,
          3.23727088620222,
          3.245675237468372,
          3.2540795887345233,
          3.262483940000675,
          3.2708882912668265,
          3.2792926425329783,
          3.28769699379913,
          3.2961013450652814,
          3.304505696331433,
          3.3129100475975846,
          3.3213143988637364,
          3.3297187501298877,
          3.3381231013960395,
          3.3465274526621913,
          3.3549318039283427,
          3.3633361551944945,
          3.371740506460646,
          3.3801448577267976,
          3.3885492089929494,
          3.396953560259101,
          3.4053579115252526,
          3.413762262791404,
          3.4221666140575557,
          3.430570965323707,
          3.438975316589859,
          3.4473796678560107,
          3.455784019122162,
          3.464188370388314,
          3.472592721654465,
          3.480997072920617,
          3.489401424186769,
          3.49780577545292,
          3.506210126719072,
          3.5146144779852233,
          3.523018829251375,
          3.531423180517527,
          3.5398275317836783,
          3.54823188304983,
          3.5566362343159814,
          3.565040585582133,
          3.5734449368482846,
          3.5818492881144364,
          3.590253639380588,
          3.5986579906467395,
          3.6070623419128913,
          3.6154666931790427,
          3.6238710444451945,
          3.6322753957113463,
          3.6406797469774976,
          3.6490840982436494,
          3.657488449509801,
          3.6658928007759526,
          3.674297152042104,
          3.6827015033082557,
          3.6911058545744075,
          3.699510205840559,
          3.7079145571067107,
          3.716318908372862,
          3.724723259639014,
          3.7331276109051656,
          3.741531962171317,
          3.749936313437469,
          3.75834066470362,
          3.766745015969772,
          3.7751493672359233,
          3.783553718502075,
          3.791958069768227,
          3.8003624210343783,
          3.80876677230053,
          3.8171711235666814,
          3.8255754748328332,
          3.833979826098985,
          3.8423841773651364,
          3.850788528631288,
          3.8591928798974395,
          3.8675972311635913,
          3.876001582429743,
          3.8844059336958945,
          3.8928102849620463,
          3.9012146362281976,
          3.9096189874943494,
          3.918023338760501,
          3.9264276900266526,
          3.9348320412928044,
          3.9432363925589557,
          3.9516407438251075,
          3.960045095091259,
          3.9684494463574107,
          3.9768537976235625,
          3.985258148889714,
          3.9936625001558657,
          4.0020668514220175,
          4.010471202688168,
          4.01887555395432,
          4.027279905220472,
          4.035684256486624,
          4.044088607752776,
          4.0524929590189265,
          4.060897310285078,
          4.06930166155123,
          4.077706012817382,
          4.086110364083534,
          4.094514715349685,
          4.102919066615836,
          4.111323417881988,
          4.11972776914814,
          4.128132120414292,
          4.136536471680443,
          4.1449408229465945,
          4.153345174212746,
          4.161749525478898,
          4.17015387674505,
          4.178558228011201,
          4.186962579277353,
          4.195366930543504,
          4.203771281809656,
          4.212175633075807,
          4.220579984341959,
          4.228984335608111,
          4.2373886868742625,
          4.245793038140414,
          4.254197389406565,
          4.262601740672717,
          4.271006091938869,
          4.279410443205021,
          4.287814794471172,
          4.296219145737323,
          4.304623497003475,
          4.313027848269627,
          4.321432199535779,
          4.3298365508019305,
          4.338240902068081,
          4.346645253334233,
          4.355049604600385,
          4.363453955866537,
          4.371858307132689,
          4.3802626583988395,
          4.388667009664991,
          4.397071360931143,
          4.405475712197295,
          4.413880063463447,
          4.422284414729598,
          4.4306887659957495,
          4.439093117261901,
          4.447497468528053,
          4.455901819794204,
          4.464306171060356,
          4.472710522326508,
          4.481114873592659,
          4.489519224858811,
          4.497923576124962,
          4.506327927391114,
          4.514732278657266,
          4.5231366299234175,
          4.531540981189569,
          4.53994533245572,
          4.548349683721872,
          4.556754034988024,
          4.565158386254176,
          4.573562737520327,
          4.581967088786478,
          4.59037144005263,
          4.598775791318782,
          4.607180142584934,
          4.6155844938510855,
          4.623988845117236,
          4.632393196383388,
          4.64079754764954,
          4.649201898915692,
          4.657606250181844,
          4.6660106014479945,
          4.674414952714146,
          4.682819303980298,
          4.69122365524645,
          4.699628006512601,
          4.708032357778753,
          4.716436709044904,
          4.724841060311056,
          4.733245411577208,
          4.741649762843359,
          4.750054114109511,
          4.7584584653756625,
          4.766862816641814,
          4.775267167907966,
          4.783671519174117,
          4.792075870440269,
          4.800480221706421,
          4.808884572972572,
          4.817288924238724,
          4.825693275504875,
          4.834097626771027,
          4.842501978037179,
          4.8509063293033305,
          4.859310680569482,
          4.867715031835633,
          4.876119383101785,
          4.884523734367937,
          4.892928085634089,
          4.9013324369002405,
          4.909736788166391,
          4.918141139432543,
          4.926545490698695,
          4.934949841964847,
          4.943354193230998,
          4.9517585444971495,
          4.960162895763301,
          4.968567247029453,
          4.976971598295605,
          4.985375949561756,
          4.993780300827908,
          5.002184652094059,
          5.010589003360211,
          5.018993354626363,
          5.027397705892514,
          5.035802057158666,
          5.0442064084248175,
          5.052610759690969,
          5.061015110957121,
          5.069419462223272,
          5.077823813489424,
          5.086228164755576,
          5.094632516021727,
          5.103036867287879,
          5.11144121855403,
          5.119845569820182,
          5.128249921086334,
          5.1366542723524855,
          5.145058623618637,
          5.153462974884788,
          5.16186732615094,
          5.170271677417092,
          5.178676028683244,
          5.1870803799493945,
          5.195484731215546,
          5.203889082481698,
          5.21229343374785,
          5.220697785014002,
          5.229102136280153,
          5.237506487546304,
          5.245910838812456,
          5.254315190078608,
          5.26271954134476,
          5.271123892610911,
          5.2795282438770625,
          5.287932595143214,
          5.296336946409366,
          5.304741297675518,
          5.313145648941669,
          5.321550000207821,
          5.3299543514739725,
          5.338358702740124,
          5.346763054006276,
          5.355167405272427,
          5.363571756538579,
          5.371976107804731,
          5.380380459070882,
          5.388784810337034,
          5.397189161603185,
          5.405593512869337,
          5.413997864135489,
          5.4224022154016405,
          5.430806566667791,
          5.439210917933943,
          5.447615269200095,
          5.456019620466247,
          5.464423971732399,
          5.4728283229985495,
          5.481232674264701,
          5.489637025530853,
          5.498041376797005,
          5.506445728063157,
          5.514850079329308,
          5.523254430595459,
          5.531658781861611,
          5.540063133127763,
          5.548467484393915,
          5.556871835660066,
          5.5652761869262175,
          5.573680538192369,
          5.582084889458521,
          5.590489240724673,
          5.598893591990824,
          5.607297943256976,
          5.615702294523127,
          5.624106645789279,
          5.63251099705543,
          5.640915348321582,
          5.649319699587734,
          5.6577240508538855,
          5.666128402120037,
          5.674532753386188,
          5.68293710465234,
          5.691341455918492,
          5.699745807184644,
          5.708150158450795,
          5.716554509716946,
          5.724958860983098,
          5.73336321224925,
          5.741767563515402,
          5.7501719147815535,
          5.7585762660477045,
          5.766980617313856,
          5.775384968580008,
          5.78378931984616,
          5.792193671112312,
          5.800598022378463,
          5.809002373644614,
          5.817406724910766,
          5.825811076176918,
          5.83421542744307,
          5.842619778709221,
          5.8510241299753725,
          5.859428481241524,
          5.867832832507676,
          5.876237183773827,
          5.884641535039979,
          5.893045886306131,
          5.901450237572282,
          5.909854588838434,
          5.918258940104585,
          5.926663291370737,
          5.935067642636889,
          5.9434719939030405,
          5.951876345169192,
          5.960280696435343,
          5.968685047701495,
          5.977089398967647,
          5.985493750233799,
          5.99389810149995,
          6.002302452766101,
          6.010706804032253,
          6.019111155298405,
          6.027515506564557,
          6.0359198578307085,
          6.044324209096859,
          6.052728560363011,
          6.061132911629163,
          6.069537262895315,
          6.077941614161467,
          6.0863459654276175,
          6.094750316693769,
          6.103154667959921,
          6.111559019226073,
          6.119963370492224,
          6.128367721758376,
          6.136772073024527,
          6.145176424290679,
          6.153580775556831,
          6.161985126822982,
          6.170389478089134,
          6.1787938293552855,
          6.187198180621437,
          6.195602531887589,
          6.20400688315374,
          6.212411234419892,
          6.220815585686044,
          6.2292199369521954,
          6.237624288218347,
          6.246028639484498,
          6.25443299075065,
          6.262837342016802,
          6.2712416932829536,
          6.279646044549105,
          6.288050395815256,
          6.296454747081408,
          6.30485909834756,
          6.313263449613712,
          6.3216678008798635,
          6.330072152146014,
          6.338476503412166,
          6.346880854678318,
          6.35528520594447,
          6.363689557210621,
          6.3720939084767725,
          6.380498259742924,
          6.388902611009076,
          6.397306962275228,
          6.405711313541379,
          6.414115664807531,
          6.422520016073682,
          6.430924367339834,
          6.439328718605986,
          6.447733069872137,
          6.456137421138289,
          6.4645417724044405,
          6.472946123670592,
          6.481350474936744,
          6.489754826202895,
          6.498159177469047,
          6.506563528735199,
          6.51496788000135,
          6.523372231267502,
          6.531776582533653,
          6.540180933799805,
          6.548585285065957,
          6.5569896363321085,
          6.56539398759826,
          6.573798338864411,
          6.582202690130563,
          6.590607041396715,
          6.599011392662867,
          6.6074157439290175,
          6.615820095195169,
          6.624224446461321,
          6.632628797727473,
          6.641033148993625,
          6.649437500259776,
          6.6578418515259274,
          6.666246202792079,
          6.674650554058231,
          6.683054905324383,
          6.691459256590534,
          6.6998636078566856,
          6.708267959122837,
          6.716672310388989,
          6.725076661655141,
          6.733481012921292,
          6.741885364187444,
          6.7502897154535955,
          6.758694066719747,
          6.767098417985899,
          6.77550276925205,
          6.783907120518202,
          6.792311471784354,
          6.800715823050505,
          6.809120174316657,
          6.817524525582808,
          6.82592887684896,
          6.834333228115112,
          6.8427375793812635,
          6.851141930647414,
          6.859546281913566,
          6.867950633179718,
          6.87635498444587,
          6.884759335712022,
          6.8931636869781725,
          6.901568038244324,
          6.909972389510476,
          6.918376740776628,
          6.92678109204278,
          6.935185443308931,
          6.943589794575082,
          6.951994145841234,
          6.960398497107386,
          6.968802848373538,
          6.977207199639689,
          6.9856115509058405,
          6.994015902171992,
          7.002420253438144,
          7.010824604704296,
          7.019228955970447,
          7.027633307236599,
          7.03603765850275,
          7.044442009768902,
          7.052846361035054,
          7.061250712301205,
          7.069655063567357,
          7.0780594148335085,
          7.08646376609966,
          7.094868117365811,
          7.103272468631963,
          7.111676819898115,
          7.120081171164267,
          7.128485522430418,
          7.136889873696569,
          7.145294224962721,
          7.153698576228873,
          7.162102927495025,
          7.1705072787611766,
          7.1789116300273275,
          7.187315981293479,
          7.195720332559631,
          7.204124683825783,
          7.212529035091935,
          7.220933386358086,
          7.229337737624237,
          7.237742088890389,
          7.246146440156541,
          7.254550791422693,
          7.262955142688844,
          7.2713594939549955,
          7.279763845221147,
          7.288168196487299,
          7.296572547753451,
          7.304976899019602,
          7.313381250285754,
          7.321785601551905,
          7.330189952818057,
          7.338594304084208,
          7.34699865535036,
          7.355403006616512,
          7.3638073578826635,
          7.372211709148815,
          7.380616060414966,
          7.389020411681118,
          7.39742476294727,
          7.405829114213422,
          7.414233465479573,
          7.422637816745724,
          7.431042168011876,
          7.439446519278028,
          7.44785087054418,
          7.4562552218103315,
          7.464659573076482,
          7.473063924342634,
          7.481468275608786,
          7.489872626874938,
          7.49827697814109,
          7.5066813294072405,
          7.515085680673392,
          7.523490031939544,
          7.531894383205696,
          7.540298734471847,
          7.548703085737999,
          7.55710743700415,
          7.565511788270302,
          7.573916139536454,
          7.582320490802605,
          7.590724842068757,
          7.5991291933349085,
          7.60753354460106,
          7.615937895867212,
          7.624342247133363,
          7.632746598399515,
          7.641150949665667,
          7.6495553009318185,
          7.65795965219797,
          7.666364003464121,
          7.674768354730273,
          7.683172705996425,
          7.691577057262577,
          7.699981408528728,
          7.708385759794879,
          7.716790111061031,
          7.725194462327183,
          7.733598813593335,
          7.7420031648594865,
          7.750407516125637,
          7.758811867391789,
          7.767216218657941,
          7.775620569924093,
          7.784024921190244,
          7.7924292724563955,
          7.800833623722547,
          7.809237974988699,
          7.817642326254851,
          7.826046677521002,
          7.834451028787154,
          7.842855380053305,
          7.851259731319457,
          7.859664082585609,
          7.86806843385176,
          7.876472785117912,
          7.8848771363840635,
          7.893281487650215,
          7.901685838916367,
          7.910090190182518,
          7.91849454144867,
          7.926898892714822,
          7.935303243980973,
          7.943707595247125,
          7.952111946513276,
          7.960516297779428,
          7.96892064904558,
          7.9773250003117315,
          7.985729351577883,
          7.994133702844034,
          8.002538054110186,
          8.010942405376337,
          8.01934675664249,
          8.02775110790864,
          8.036155459174793,
          8.044559810440944,
          8.052964161707095,
          8.061368512973248,
          8.069772864239399,
          8.078177215505551,
          8.086581566771702,
          8.094985918037853,
          8.103390269304006,
          8.111794620570157,
          8.12019897183631,
          8.12860332310246,
          8.137007674368611,
          8.145412025634764,
          8.153816376900915,
          8.162220728167068,
          8.170625079433218,
          8.17902943069937,
          8.187433781965522,
          8.195838133231673,
          8.204242484497826,
          8.212646835763977,
          8.221051187030127,
          8.22945553829628,
          8.237859889562431,
          8.246264240828584,
          8.254668592094735,
          8.263072943360886,
          8.271477294627038,
          8.27988164589319,
          8.288285997159342,
          8.296690348425493,
          8.305094699691644,
          8.313499050957796,
          8.321903402223947,
          8.3303077534901,
          8.338712104756251,
          8.347116456022402,
          8.355520807288555,
          8.363925158554705,
          8.372329509820858,
          8.380733861087009,
          8.38913821235316,
          8.397542563619313,
          8.405946914885464
         ],
         "xaxis": "x",
         "y": [
          0.000049502491687458457,
          0.00016627161817225075,
          0.00034984745941165366,
          0.0005985281070893085,
          0.0009106402770260638,
          0.001284538908957791,
          0.0017186067713446961,
          0.002211254071153087,
          0.0027609180685512643,
          0.0033660626964618313,
          0.00402517818491336,
          0.004736780690135031,
          0.005499411928338435,
          0.006311638814131348,
          0.007172053103509017,
          0.00807927104136893,
          0.00903193301349584,
          0.010028703202964213,
          0.011068269250906032,
          0.012149341921592392,
          0.013270654771777869,
          0.014430963824257292,
          0.015629047245585125,
          0.016863705027908085,
          0.018133758674862294,
          0.019438050891486952,
          0.020775445278106555,
          0.022144826028134976,
          0.023545097629754486,
          0.02497518457142391,
          0.026434031051170273,
          0.027920600689618855,
          0.029433876246717578,
          0.030972859342110918,
          0.032536570179120795,
          0.034124047272290604,
          0.03573434717845044,
          0.037366544231261144,
          0.039019730279195655,
          0.040693014426916765,
          0.04238552278001026,
          0.04409639819303382,
          0.04582480002084135,
          0.04756990387314385,
          0.049330901372268025,
          0.05110699991407401,
          0.05289742243199452,
          0.054701407164157556,
          0.056518207423556135,
          0.05834709137122775,
          0.06018734179240775,
          0.06203825587562068,
          0.06389914499467395,
          0.06576933449351914,
          0.06764816347394628,
          0.06953498458607621,
          0.07142916382161836,
          0.07333008030985945,
          0.07523712611635042,
          0.07714970604425911,
          0.07906723743835607,
          0.08098914999160142,
          0.08291488555430158,
          0.08484389794580462,
          0.08677565276870258,
          0.08870962722551153,
          0.09064530993779817,
          0.0925822007677233,
          0.09451981064197328,
          0.09645766137804983,
          0.09839528551288906,
          0.10033222613378227,
          0.10226803671156937,
          0.10420228093607757,
          0.10613453255377779,
          0.1080643752076315,
          0.10999140227910112,
          0.11191521673229787,
          0.11383543096023975,
          0.11575166663319486,
          0.11766355454908385,
          0.11957073448591586,
          0.12147285505623363,
          0.12336957356354249,
          0.12526055586069818,
          0.12714547621023126,
          0.1290240171465816,
          0.13089586934022113,
          0.13276073146364104,
          0.1346183100591798,
          0.13646831940866977,
          0.1383104814048798,
          0.14014452542473105,
          0.14197018820426388,
          0.14378721371533554,
          0.14559535304402482,
          0.147394364270724,
          0.14918401235189657,
          0.15096406900347978,
          0.15273431258591186,
          0.15449452799076316,
          0.1562445065289511,
          0.1579840458205199,
          0.1597129496859642,
          0.16143102803907836,
          0.1631380967813117,
          0.16483397769761046,
          0.16651849835372887,
          0.1681914919949891,
          0.16985279744647402,
          0.17150225901463273,
          0.17313972639028175,
          0.17476505455298494,
          0.17637810367679346,
          0.1779787390373291,
          0.17956683092019501,
          0.1811422545306944,
          0.1827048899048437,
          0.18425462182166114,
          0.18579133971671632,
          0.18731493759692378,
          0.18882531395656466,
          0.1903223716945217,
          0.1918060180327109,
          0.1932761644356956,
          0.1947327265314667,
          0.19617562403337574,
          0.19760478066320403,
          0.1990201240753553,
          0.20042158578215571,
          0.20180910108024805,
          0.20318260897806617,
          0.2045420521243741,
          0.2058873767378587,
          0.2072185325377602,
          0.20853547267552788,
          0.20983815366748765,
          0.21112653532850903,
          0.212400580706657,
          0.21366025601881786,
          0.21490553058728495,
          0.2161363767772926,
          0.21735276993548588,
          0.21855468832931313,
          0.2197421130873307,
          0.2209150281404067,
          0.2220734201638129,
          0.22321727852019208,
          0.22434659520339104,
          0.22546136478314588,
          0.22656158435061058,
          0.22764725346471554,
          0.2287183740993469,
          0.22977495059133538,
          0.2308169895892431,
          0.2318445000029394,
          0.23285749295395333,
          0.23385598172659486,
          0.23483998171983234,
          0.23580951039991765,
          0.23676458725374872,
          0.2377052337429592,
          0.23863147325872658,
          0.23954333107728804,
          0.24044083431615543,
          0.24132401189101976,
          0.2421928944733359,
          0.24304751444857842,
          0.24388790587515985,
          0.2447141044440022,
          0.24552614743875276,
          0.246324073696636,
          0.24710792356993283,
          0.2478777388880787,
          0.2486335629203719,
          0.24937544033928438,
          0.250103417184367,
          0.2508175408267399,
          0.2515178599341619,
          0.2522044244366696,
          0.25287728549277905,
          0.25353649545624235,
          0.2541821078433518,
          0.2548141773007828,
          0.2554327595739704,
          0.25603791147601007,
          0.2566296908570768,
          0.2572081565743549,
          0.25777336846247134,
          0.25832538730442633,
          0.2588642748030134,
          0.2593900935527233,
          0.25990290701212354,
          0.26040277947670887,
          0.2608897760522144,
          0.2613639626283862,
          0.26182540585320174,
          0.26227417310753576,
          0.26271033248026365,
          0.2631339527437968,
          0.26354510333004383,
          0.2639438543067924,
          0.2643302763545047,
          0.2647044407435211,
          0.26506641931166675,
          0.2654162844422544,
          0.26575410904247987,
          0.26607996652220106,
          0.26639393077309914,
          0.26669607614821395,
          0.2669864774418486,
          0.2672652098698388,
          0.2675323490501811,
          0.2677879709840149,
          0.268032152036954,
          0.26826496892076124,
          0.26848649867536234,
          0.2686968186511943,
          0.2688960064918824,
          0.269084140117242,
          0.26926129770660084,
          0.26942755768243487,
          0.2695829986943163,
          0.2697276996031674,
          0.26986173946581515,
          0.2699851975198446,
          0.27009815316874325,
          0.27020068596733615,
          0.2702928756075036,
          0.27037480190418056,
          0.27044654478163077,
          0.270508184259994,
          0.270559800442101,
          0.27060147350055186,
          0.27063328366505596,
          0.2706553112100261,
          0.27066763644242736,
          0.27067033968987275,
          0.2706635012889651,
          0.2706472015738796,
          0.27062152086518426,
          0.27058653945889416,
          0.27054233761575697,
          0.2704889955507647,
          0.2704265934228901,
          0.270355211325042,
          0.2702749292742392,
          0.2701858272019964,
          0.2700879849449219,
          0.2699814822355212,
          0.2698663986932057,
          0.26974281381550086,
          0.26961080696945394,
          0.2694704573832348,
          0.2693218441379291,
          0.2691650461595201,
          0.2690001422110564,
          0.26882721088500244,
          0.2686463305957686,
          0.2684575795724195,
          0.26826103585155603,
          0.26805677727036853,
          0.26784488145986074,
          0.267625425838238,
          0.2673984876044606,
          0.2671641437319575,
          0.2669224709624989,
          0.2666735458002242,
          0.2664174445058245,
          0.2661542430908751,
          0.2658840173123175,
          0.26560684266708623,
          0.26532279438688117,
          0.2650319474330805,
          0.26473437649179266,
          0.26443015596904557,
          0.2641193599861106,
          0.2638020623749588,
          0.2634783366738476,
          0.26314825612303594,
          0.262811893660624,
          0.2624693219185193,
          0.26212061321852237,
          0.26176583956853344,
          0.26140507265887697,
          0.26103838385874145,
          0.2606658442127337,
          0.2602875244375447,
          0.2599034949187258,
          0.25951382570757303,
          0.2591185865181175,
          0.25871784672422093,
          0.2583116753567732,
          0.25790014110099163,
          0.2574833122938187,
          0.25706125692141785,
          0.256634042616765,
          0.25620173665733365,
          0.25576440596287325,
          0.25532211709327807,
          0.25487493624654484,
          0.2544229292568189,
          0.2539661615925259,
          0.25350469835458805,
          0.2530386042747236,
          0.2525679437138281,
          0.252092780660435,
          0.2516131787292552,
          0.2511292011597945,
          0.2506409108150454,
          0.25014837018025493,
          0.24965164136176404,
          0.2491507860859189,
          0.2486458656980538,
          0.24813694116154122,
          0.2476240730569111,
          0.24710732158103532,
          0.24658674654637855,
          0.24606240738031177,
          0.24553436312448976,
          0.24500267243428903,
          0.2444673935783069,
          0.24392858443791895,
          0.243386302506895,
          0.24284060489107204,
          0.24229154830808233,
          0.24173918908713649,
          0.24118358316886018,
          0.24062478610518312,
          0.2400628530592796,
          0.23949783880555964,
          0.23892979772970838,
          0.2383587838287754,
          0.23778485071131075,
          0.23720805159754624,
          0.23662843931962424,
          0.2360460663218692,
          0.23546098466110327,
          0.23487324600700502,
          0.23428290164250884,
          0.23369000246424618,
          0.23309459898302567,
          0.23249674132435333,
          0.23189647922898998,
          0.2312938620535468,
          0.2306889387711168,
          0.2300817579719427,
          0.22947236786411865,
          0.22886081627432717,
          0.2282471506486087,
          0.22763141805316414,
          0.22701366517518848,
          0.2263939383237366,
          0.22577228343061853,
          0.22514874605132457,
          0.22452337136597894,
          0.22389620418032294,
          0.22326728892672373,
          0.22263666966521137,
          0.22200439008454137,
          0.22137049350328303,
          0.22073502287093255,
          0.22009802076905027,
          0.2194595294124216,
          0.21881959065024092,
          0.2181782459673182,
          0.21753553648530646,
          0.21689150296395174,
          0.21624618580236246,
          0.21559962504029997,
          0.21495186035948735,
          0.21430293108493842,
          0.21365287618630419,
          0.2130017342792377,
          0.2123495436267763,
          0.21169634214074,
          0.21104216738314732,
          0.2103870565676461,
          0.20973104656095973,
          0.20907417388434876,
          0.20841647471508654,
          0.2077579848879487,
          0.20709873989671615,
          0.20643877489569162,
          0.20577812470122794,
          0.20511682379326893,
          0.20445490631690227,
          0.20379240608392288,
          0.20312935657440812,
          0.2024657909383025,
          0.2018017419970137,
          0.20113724224501697,
          0.20047232385146949,
          0.19980701866183384,
          0.1991413581995096,
          0.19847537366747336,
          0.19780909594992677,
          0.1971425556139512,
          0.196475782911171,
          0.1958088077794217,
          0.19514165984442688,
          0.19447436842147872,
          0.19380696251712645,
          0.19313947083086933,
          0.19247192175685457,
          0.1918043433855808,
          0.19113676350560554,
          0.19046920960525773,
          0.18980170887435294,
          0.189134288205914,
          0.18846697419789332,
          0.18779979315489975,
          0.18713277108992768,
          0.18646593372608877,
          0.18579930649834622,
          0.1851329145552511,
          0.18446678276068076,
          0.18380093569557843,
          0.1831353976596943,
          0.18247019267332845,
          0.18180534447907384,
          0.18114087654356031,
          0.18047681205919922,
          0.17981317394592816,
          0.1791499848529558,
          0.17848726716050678,
          0.1778250429815657,
          0.17716333416362123,
          0.176502162290409,
          0.17584154868365362,
          0.17518151440480992,
          0.1745220802568024,
          0.1738632667857635,
          0.17320509428277017,
          0.1725475827855784,
          0.17189075208035612,
          0.17123462170341358,
          0.17057921094293144,
          0.16992453884068676,
          0.1692706241937758,
          0.16861748555633427,
          0.167965141241255,
          0.1673136093219018,
          0.1666629076338207,
          0.16601305377644734,
          0.16536406511481153,
          0.16471595878123751,
          0.16406875167704071,
          0.1634224604742208,
          0.1627771016171505,
          0.16213269132426014,
          0.1614892455897186,
          0.16084678018510906,
          0.16020531066110094,
          0.15956485234911685,
          0.15892542036299528,
          0.15828702960064783,
          0.1576496947457124,
          0.1570134302692007,
          0.1563782504311411,
          0.15574416928221596,
          0.15511120066539427,
          0.15447935821755795,
          0.15384865537112405,
          0.15321910535566005,
          0.1525907211994946,
          0.15196351573132216,
          0.1513375015818017,
          0.15071269118515,
          0.15008909678072857,
          0.14946673041462522,
          0.1488456039412288,
          0.14822572902479847,
          0.1476071171410267,
          0.1469897795785954,
          0.14637372744072683,
          0.14575897164672727,
          0.1451455229335245,
          0.14453339185719918,
          0.14392258879450914,
          0.14331312394440768,
          0.14270500732955463,
          0.14209824879782132,
          0.14149285802378836,
          0.14088884451023714,
          0.1402862175896341,
          0.13968498642560845,
          0.1390851600144226,
          0.1384867471864363,
          0.13788975660756336,
          0.1372941967807216,
          0.13670007604727535,
          0.13610740258847162,
          0.13551618442686852,
          0.13492642942775698,
          0.13433814530057514,
          0.1337513396003157,
          0.1331660197289256,
          0.13258219293669948,
          0.1319998663236647,
          0.13141904684096017,
          0.1308397412922071,
          0.13026195633487275,
          0.12968569848162717,
          0.1291109741016921,
          0.1285377894221826,
          0.12796615052944177,
          0.12739606337036757,
          0.12682753375373249,
          0.1262605673514957,
          0.12569516970010824,
          0.12513134620180974,
          0.12456910212591919,
          0.12400844261011693,
          0.12344937266172004,
          0.12289189715894996,
          0.12233602085219245,
          0.12178174836525082,
          0.12122908419659094,
          0.12067803272057917,
          0.12012859818871297,
          0.1195807847308434,
          0.11903459635639113,
          0.11849003695555421,
          0.11794711030050886,
          0.11740582004660248,
          0.11686616973353939,
          0.11632816278655936,
          0.1157918025176082,
          0.11525709212650145,
          0.11472403470208015,
          0.1141926332233597,
          0.11366289056067115,
          0.11313480947679481,
          0.11260839262808693,
          0.11208364256559858,
          0.11156056173618772,
          0.11103915248362342,
          0.11051941704968297,
          0.11000135757524158,
          0.109484976101355,
          0.10897027457033441,
          0.10845725482681484,
          0.10794591861881513,
          0.10743626759879189,
          0.10692830332468523,
          0.10642202726095815,
          0.10591744077962792,
          0.10541454516129085,
          0.10491334159613969,
          0.10441383118497387,
          0.10391601494020275,
          0.1034198937868416,
          0.10292546856350071,
          0.10243274002336719,
          0.10194170883517974,
          0.10145237558419691,
          0.10096474077315763,
          0.10047880482323525,
          0.09999456807498433,
          0.09951203078928085,
          0.09903119314825523,
          0.0985520552562185,
          0.09807461714058174,
          0.0975988787527684,
          0.09712483996912039,
          0.09665250059179659,
          0.09618186034966525,
          0.09571291889918937,
          0.09524567582530519,
          0.09478013064229457,
          0.09431628279464999,
          0.09385413165793344,
          0.09339367653962866,
          0.0929349166799861,
          0.09247785125286265,
          0.09202247936655349,
          0.09156880006461814,
          0.09111681232670019,
          0.09066651506933979,
          0.09021790714678073,
          0.08977098735177033,
          0.08932575441635338,
          0.0888822070126596,
          0.08844034375368459,
          0.0880001631940652,
          0.08756166383084776,
          0.08712484410425068,
          0.08668970239842055,
          0.0862562370421824,
          0.08582444630978346,
          0.08539432842163097,
          0.0849658815450241,
          0.08453910379487942,
          0.08411399323445073,
          0.0836905478760427,
          0.08326876568171859,
          0.08284864456400212,
          0.08243018238657317,
          0.08201337696495808,
          0.08159822606721379,
          0.08118472741460604,
          0.08077287868228226,
          0.08036267749993808,
          0.07995412145247896,
          0.07954720808067522,
          0.07914193488181204,
          0.07873829931033367,
          0.07833629877848189,
          0.07793593065692911,
          0.07753719227540595,
          0.07714008092332306,
          0.07674459385038776,
          0.07635072826721492,
          0.07595848134593297,
          0.07556785022078379,
          0.07517883198871801,
          0.07479142370998423,
          0.07440562240871378,
          0.0740214250734994,
          0.07363882865796932,
          0.07325783008135592,
          0.07287842622905896,
          0.07250061395320419,
          0.07212439007319657,
          0.07174975137626828,
          0.07137669461802201,
          0.07100521652296893,
          0.07063531378506194,
          0.07026698306822392,
          0.06990022100687081,
          0.06953502420643008,
          0.06917138924385424,
          0.06880931266812954,
          0.06844879100077987,
          0.06808982073636584,
          0.0677323983429792,
          0.06737652026273241,
          0.06702218291224388,
          0.066669382683118,
          0.06631811594242114,
          0.06596837903315271,
          0.06562016827471158,
          0.06527347996335842,
          0.06492831037267302,
          0.06458465575400764,
          0.06424251233693527,
          0.06390187632969431,
          0.06356274391962813,
          0.06322511127362072,
          0.06288897453852786,
          0.0625543298416039,
          0.0622211732909246,
          0.06188950097580541,
          0.06155930896721564,
          0.06123059331818859,
          0.060903350064227306,
          0.0605775752237064,
          0.060253264798269784,
          0.05993041477322407,
          0.0596090211179284,
          0.05928907978617976,
          0.05897058671659476,
          0.058653537832987226,
          0.058337929044741894,
          0.05802375624718427,
          0.05771101532194648,
          0.057399702137329624,
          0.057089812548661974,
          0.0567813423986535,
          0.05647428751774661,
          0.056168643724463334,
          0.05586440682574864,
          0.05556157261731009,
          0.05526013688395395,
          0.054960095399917516,
          0.05466144392919801,
          0.05436417822587793,
          0.054068294034446594,
          0.05377378709011858,
          0.05348065311914827,
          0.053188887839141254,
          0.05289848695936211,
          0.05260944618103892,
          0.05232176119766424,
          0.052035427695292784,
          0.05175044135283597,
          0.05146679784235278,
          0.051184492829337715,
          0.05090352197300524,
          0.050623880926571045,
          0.05034556533753036,
          0.0500685708479327,
          0.049792893094653706,
          0.04951852770966381,
          0.04924547032029369,
          0.048973716549496914,
          0.0487032620161092,
          0.048434102335104895,
          0.048166233117850225,
          0.04789964997235388,
          0.04763434850351433,
          0.047370324313364284,
          0.04710757300131248,
          0.04684609016438205,
          0.04658587139744678,
          0.04632691229346379,
          0.046069208443703887,
          0.04581275543797885,
          0.04555754886486608,
          0.04530358431193054,
          0.045050857365943824,
          0.04479936361310061,
          0.04454909863923244,
          0.044300058030018755,
          0.04405223737119544,
          0.04380563224876067,
          0.043560238249178124,
          0.0433160509595777,
          0.04307306596795354,
          0.04283127886335985,
          0.04259068523610388,
          0.042351280677936504,
          0.04211306078224047,
          0.041876021144216,
          0.04164015736106422,
          0.04140546503216797,
          0.0411719397592703,
          0.0409395771466506,
          0.04070837280129856,
          0.04047832233308548,
          0.040249421354933555,
          0.040021665482982825,
          0.0397950503367557,
          0.039569571539319545,
          0.03934522471744677,
          0.039122005501772826,
          0.03889990952695219,
          0.038678932431811704,
          0.03845906985950243,
          0.038240317457648894,
          0.038022670878496326,
          0.037806125779056024,
          0.03759067782124831,
          0.037376322672043785,
          0.03716305600360236,
          0.03695087349341027,
          0.03673977082441521,
          0.03652974368515929,
          0.03632078776991037,
          0.03611289877879114,
          0.03590607241790641,
          0.03570030439946854,
          0.035495590441920855,
          0.03529192627005935,
          0.035089307615152436,
          0.03488773021505892,
          0.034687189814344044,
          0.034487682164393914,
          0.03428920302352805,
          0.03409174815711011,
          0.03389531333765695,
          0.03369989434494594,
          0.033505486966120615,
          0.033312086995794445,
          0.03311969023615316,
          0.032928292497055256,
          0.032737889596130804,
          0.0325484773588789,
          0.03236005161876314,
          0.03217260821730571,
          0.031986143004179915,
          0.03180065183730083,
          0.03161613058291494,
          0.03143257511568767,
          0.031249981318789744,
          0.031068345083981968,
          0.030887662311698292,
          0.03070792891112781,
          0.030529140800294903,
          0.03035129390613815,
          0.030174384164587686,
          0.02999840752064119,
          0.02982335992843854,
          0.029649237351334887,
          0.029476035761972504,
          0.029303751142351182,
          0.029132379483897335,
          0.028961916787531763,
          0.028792359063735975,
          0.028623702332617393,
          0.028455942623973014,
          0.02828907597735207,
          0.02812309844211717,
          0.02795800607750432,
          0.027793794952681666,
          0.027630461146806895,
          0.027468000749083666,
          0.027306409858816594,
          0.027145684585465138,
          0.026985821048696304,
          0.026826815378436113,
          0.026668663714920077,
          0.026511362208742315,
          0.026354907020903727,
          0.026199294322858883,
          0.026044520296561888,
          0.02589058113451119,
          0.025737473039793214,
          0.025585192226124983,
          0.025433734917895655,
          0.025283097350206913,
          0.02513327576891257,
          0.024984266430656876,
          0.024836065602911996,
          0.02468866956401426,
          0.024542074603199758,
          0.024396277020638606,
          0.024251273127468474,
          0.02410705924582703,
          0.02396363170888343,
          0.023820986860869017,
          0.023679121057106907,
          0.02353803066404071,
          0.023397712059262436,
          0.023258161631539317,
          0.023119375780839974,
          0.022981350918359494,
          0.02284408346654376,
          0.022707569859112892,
          0.02257180654108378,
          0.022436789968791917,
          0.022302516609912264,
          0.022168982943479385,
          0.0220361854599067,
          0.021904120661004965,
          0.021772785060000025,
          0.021642175181549712,
          0.021512287561759956,
          0.021383118748200196,
          0.02125466529991798,
          0.02112692378745287,
          0.020999890792849574,
          0.0208735629096704,
          0.020747936743006835,
          0.020623008909490672,
          0.020498776037304232,
          0.020375234766189937,
          0.020252381747459264,
          0.02013021364400092,
          0.02000872713028845,
          0.019887918892387134,
          0.019767785627960232,
          0.019648324046274583,
          0.019529530868205577,
          0.01941140282624153,
          0.019293936664487397,
          0.019177129138667856,
          0.019060977016129885,
          0.018945477075844586,
          0.018830626108408608,
          0.01871642091604484,
          0.018602858312602593,
          0.018489935123557205,
          0.018377648186009062,
          0.01826599434868217,
          0.018154970471922036,
          0.0180445734276931,
          0.017934800099575685,
          0.0178256473827622,
          0.01771711218405317,
          0.01760919142185249,
          0.017501882026162256,
          0.017395180938577084,
          0.017289085112278047,
          0.017183591512025934,
          0.017078697114154266,
          0.01697439890656162,
          0.016870693888703624,
          0.016767579071584486,
          0.016665051477748057,
          0.016563108141268396,
          0.016461746107740014,
          0.01636096243426753,
          0.0162607541894551,
          0.016161118453395257,
          0.0160620523176574,
          0.01596355288527595,
          0.01586561727073788,
          0.01576824259997018,
          0.01567142601032665,
          0.015575164650574453,
          0.015479455680880234,
          0.015384296272795889,
          0.015289683609243982,
          0.015195614884502787,
          0.015102087304190926,
          0.015009098085251752,
          0.014916644455937296,
          0.014824723655791955,
          0.014733332935635798,
          0.014642469557547505,
          0.014552130794847084,
          0.014462313932078193,
          0.01437301626499015,
          0.01428423510051967,
          0.014195967756772314,
          0.014108211563003525,
          0.014020963859599498,
          0.013934221998057763,
          0.013847983340967311,
          0.013762245261988684,
          0.0136770051458336,
          0.013592260388244388,
          0.013508008395973162,
          0.013424246586760714,
          0.013340972389315114,
          0.01325818324329015,
          0.013175876599263447,
          0.01309404991871433,
          0.013012700674001532,
          0.012931826348340595,
          0.012851424435780986,
          0.012771492441183205,
          0.012692027880195385,
          0.0126130282792299,
          0.012534491175439625,
          0.012456414116694018,
          0.012378794661555096,
          0.012301630379253003,
          0.012224918849661577,
          0.012148657663273617,
          0.012072844421175967,
          0.011997476735024454,
          0.01192255222701862,
          0.01184806852987625,
          0.011774023286807728,
          0.011700414151490287,
          0.011627238788042006,
          0.011554494870995686,
          0.011482180085272554,
          0.011410292126155769,
          0.011338828699263854,
          0.01126778752052394,
          0.011197166316144804,
          0.01112696282258985,
          0.011057174786549877,
          0.010987799964915787,
          0.010918836124751048,
          0.010850281043264149,
          0.010782132507780814,
          0.010714388315716144,
          0.010647046274546667,
          0.010580104201782185,
          0.01051355992493758,
          0.01044741128150445,
          0.0103816561189227,
          0.010316292294551919,
          0.010251317675642772,
          0.010186730139308217,
          0.01012252757249459,
          0.010058707871952753,
          0.009995268944208893,
          0.009932208705535456,
          0.00986952508192192,
          0.009807216009045399,
          0.009745279432241292,
          0.00968371330647376,
          0.009622515596306143,
          0.009561684275871373,
          0.009501217328842147,
          0.009441112748401264,
          0.00938136853721164,
          0.009321982707386432,
          0.0092629532804591,
          0.00920427828735322,
          0.009145955768352518,
          0.009087983773070579,
          0.00903036036042066,
          0.008973083598585476,
          0.00891615156498674,
          0.008859562346254906,
          0.008803314038198664,
          0.008747404745774496,
          0.008691832583056202,
          0.008636595673204276,
          0.008581692148435398,
          0.00852712014999173,
          0.008472877828110304,
          0.008418963341992347,
          0.008365374859772502,
          0.008312110558488149,
          0.008259168624048562,
          0.008206547251204167,
          0.008154244643515695,
          0.008102259013323336,
          0.008050588581715897,
          0.007999231578499912,
          0.007948186242168734,
          0.007897450819871676
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Gammaverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "a,b = 1,1\n",
    "df=[]\n",
    "x = np.linspace(0.01, stats.gamma.ppf(0.99,a), NN)\n",
    "y = stats.gamma.pdf(x, a)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>α</i>={a}\"}))\n",
    "\n",
    "a = 2\n",
    "x = np.linspace(0.01, stats.gamma.ppf(0.99,a), NN)\n",
    "y = stats.gamma.pdf(x, a)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>α</i>={a}\"}))\n",
    "\n",
    "a = 3\n",
    "x = np.linspace(0.01, stats.gamma.ppf(0.99,a), NN)\n",
    "y = stats.gamma.pdf(x, a)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>α</i>={a}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Gammaverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b04d60df-9b60-4ef0-b751-297a604421f0",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Weibul-Verteilung\n",
    "\n",
    "Die Weibull-Verteilung wird häufig verwendet, um die Lebensdauer von Materialien und Bauteilen zu modellieren. Sie findet auch Anwendung in der Meteorologie, der Hydrologie und der Zuverlässigkeitstechnik und Ausfallzeitanalyse. "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1d0c1430-6dfc-49a2-ad02-9f1df5ef889c",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Die Weibull-Verteilung ist eine Verteilung mit Formparameter $k>0$ und Skalierungsparameter $\\lambda>0$. Ein wichtiger Spezialfall ist die Exponentialverteilung, die sich für $k=1$ ergibt. Formal ist sie definiert durch\n",
    "\n",
    "$$\n",
    "f(x) =\n",
    "\\begin{cases}\n",
    "\\frac{k}{\\lambda}\\left(\\frac{x}{\\lambda}\\right)^{k-1}e^{-(x/\\lambda)^{k}}, & x\\geq0 ,\\\\\n",
    "0, & x<0.\n",
    "\\end{cases}\n",
    "$$\n",
    "\n",
    "Für viele Parameterwerte ist die Weibull-Verteilung rechtsschief. Wenn die Lebensdauer von Materialien oder Bauteilen modelliert werden soll, ist die Weibull-Verteilung oft die richtige Wahl."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "id": "d1fae146-f86c-4287-b5ef-c8964f7dc340",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>k</i>=0.5; <i>λ</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>k</i>=0.5; <i>λ</i>=1",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>k</i>=0.5; <i>λ</i>=1",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.004919955502754443,
          0.008839911005508887,
          0.012759866508263329,
          0.016679822011017774,
          0.02059977751377222,
          0.02451973301652666,
          0.028439688519281102,
          0.03235964402203555,
          0.03627959952478999,
          0.04019955502754444,
          0.044119510530298875,
          0.04803946603305332,
          0.051959421535807765,
          0.0558793770385622,
          0.05979933254131665,
          0.06371928804407109,
          0.06763924354682553,
          0.07155919904957998,
          0.07547915455233442,
          0.07939911005508887,
          0.08331906555784331,
          0.08723902106059775,
          0.0911589765633522,
          0.09507893206610664,
          0.09899888756886108,
          0.10291884307161553,
          0.10683879857436997,
          0.1107587540771244,
          0.11467870957987886,
          0.1185986650826333,
          0.12251862058538775,
          0.12643857608814218,
          0.13035853159089664,
          0.13427848709365106,
          0.1381984425964055,
          0.14211839809915996,
          0.1460383536019144,
          0.14995830910466884,
          0.1538782646074233,
          0.15779822011017774,
          0.16171817561293217,
          0.16563813111568662,
          0.16955808661844107,
          0.1734780421211955,
          0.17739799762394995,
          0.1813179531267044,
          0.18523790862945883,
          0.18915786413221328,
          0.19307781963496773,
          0.19699777513772215,
          0.2009177306404766,
          0.20483768614323106,
          0.20875764164598548,
          0.21267759714873993,
          0.21659755265149438,
          0.2205175081542488,
          0.22443746365700326,
          0.2283574191597577,
          0.23227737466251216,
          0.2361973301652666,
          0.24011728566802104,
          0.2440372411707755,
          0.24795719667352992,
          0.25187715217628437,
          0.2557971076790388,
          0.2597170631817933,
          0.2636370186845477,
          0.2675569741873021,
          0.2714769296900566,
          0.275396885192811,
          0.27931684069556545,
          0.28323679619831993,
          0.28715675170107435,
          0.2910767072038288,
          0.29499666270658326,
          0.2989166182093377,
          0.3028365737120921,
          0.3067565292148466,
          0.310676484717601,
          0.3145964402203555,
          0.3185163957231099,
          0.32243635122586434,
          0.3263563067286188,
          0.33027626223137324,
          0.33419621773412767,
          0.33811617323688214,
          0.34203612873963657,
          0.345956084242391,
          0.3498760397451455,
          0.3537959952478999,
          0.3577159507506543,
          0.3616359062534088,
          0.3655558617561632,
          0.36947581725891765,
          0.37339577276167213,
          0.37731572826442655,
          0.381235683767181,
          0.38515563926993546,
          0.3890755947726899,
          0.3929955502754443,
          0.3969155057781988,
          0.4008354612809532,
          0.40475541678370763,
          0.4086753722864621,
          0.41259532778921654,
          0.41651528329197096,
          0.42043523879472544,
          0.42435519429747987,
          0.4282751498002343,
          0.43219510530298877,
          0.4361150608057432,
          0.4400350163084976,
          0.4439549718112521,
          0.4478749273140065,
          0.451794882816761,
          0.4557148383195154,
          0.45963479382226985,
          0.46355474932502433,
          0.46747470482777875,
          0.4713946603305332,
          0.47531461583328766,
          0.4792345713360421,
          0.4831545268387965,
          0.487074482341551,
          0.4909944378443054,
          0.49491439334705983,
          0.4988343488498143,
          0.5027543043525687,
          0.5066742598553232,
          0.5105942153580776,
          0.5145141708608321,
          0.5184341263635865,
          0.5223540818663409,
          0.5262740373690954,
          0.5301939928718499,
          0.5341139483746042,
          0.5380339038773587,
          0.5419538593801132,
          0.5458738148828676,
          0.549793770385622,
          0.5537137258883765,
          0.5576336813911309,
          0.5615536368938854,
          0.5654735923966399,
          0.5693935478993942,
          0.5733135034021487,
          0.5772334589049032,
          0.5811534144076576,
          0.585073369910412,
          0.5889933254131665,
          0.5929132809159209,
          0.5968332364186754,
          0.6007531919214298,
          0.6046731474241842,
          0.6085931029269387,
          0.6125130584296932,
          0.6164330139324475,
          0.620352969435202,
          0.6242729249379565,
          0.628192880440711,
          0.6321128359434653,
          0.6360327914462198,
          0.6399527469489743,
          0.6438727024517287,
          0.6477926579544832,
          0.6517126134572376,
          0.655632568959992,
          0.6595525244627465,
          0.663472479965501,
          0.6673924354682553,
          0.6713123909710098,
          0.6752323464737643,
          0.6791523019765187,
          0.6830722574792731,
          0.6869922129820276,
          0.690912168484782,
          0.6948321239875365,
          0.698752079490291,
          0.7026720349930453,
          0.7065919904957998,
          0.7105119459985543,
          0.7144319015013086,
          0.7183518570040631,
          0.7222718125068176,
          0.726191768009572,
          0.7301117235123264,
          0.7340316790150809,
          0.7379516345178353,
          0.7418715900205898,
          0.7457915455233443,
          0.7497115010260986,
          0.7536314565288531,
          0.7575514120316076,
          0.761471367534362,
          0.7653913230371164,
          0.7693112785398709,
          0.7732312340426253,
          0.7771511895453798,
          0.7810711450481342,
          0.7849911005508886,
          0.7889110560536431,
          0.7928310115563976,
          0.7967509670591519,
          0.8006709225619064,
          0.8045908780646609,
          0.8085108335674153,
          0.8124307890701697,
          0.8163507445729242,
          0.8202707000756786,
          0.8241906555784331,
          0.8281106110811876,
          0.8320305665839419,
          0.8359505220866964,
          0.8398704775894509,
          0.8437904330922052,
          0.8477103885949597,
          0.8516303440977142,
          0.8555502996004686,
          0.8594702551032231,
          0.8633902106059775,
          0.8673101661087319,
          0.8712301216114864,
          0.8751500771142409,
          0.8790700326169952,
          0.8829899881197497,
          0.8869099436225042,
          0.8908298991252587,
          0.894749854628013,
          0.8986698101307675,
          0.902589765633522,
          0.9065097211362764,
          0.9104296766390308,
          0.9143496321417853,
          0.9182695876445397,
          0.9221895431472942,
          0.9261094986500487,
          0.930029454152803,
          0.9339494096555575,
          0.937869365158312,
          0.9417893206610664,
          0.9457092761638208,
          0.9496292316665753,
          0.9535491871693297,
          0.9574691426720842,
          0.9613890981748386,
          0.965309053677593,
          0.9692290091803475,
          0.973148964683102,
          0.9770689201858563,
          0.9809888756886108,
          0.9849088311913653,
          0.9888287866941197,
          0.9927487421968741,
          0.9966686976996286,
          1.0005886532023829,
          1.0045086087051374,
          1.0084285642078918,
          1.0123485197106463,
          1.0162684752134008,
          1.020188430716155,
          1.0241083862189095,
          1.028028341721664,
          1.0319482972244185,
          1.035868252727173,
          1.0397882082299275,
          1.0437081637326817,
          1.0476281192354362,
          1.0515480747381907,
          1.0554680302409452,
          1.0593879857436996,
          1.0633079412464541,
          1.0672278967492084,
          1.0711478522519629,
          1.0750678077547173,
          1.0789877632574718,
          1.0829077187602263,
          1.0868276742629808,
          1.090747629765735,
          1.0946675852684895,
          1.098587540771244,
          1.1025074962739985,
          1.106427451776753,
          1.1103474072795074,
          1.1142673627822617,
          1.1181873182850162,
          1.1221072737877706,
          1.1260272292905251,
          1.1299471847932796,
          1.133867140296034,
          1.1377870957987883,
          1.1417070513015428,
          1.1456270068042973,
          1.1495469623070518,
          1.1534669178098063,
          1.1573868733125607,
          1.161306828815315,
          1.1652267843180695,
          1.169146739820824,
          1.1730666953235784,
          1.176986650826333,
          1.1809066063290874,
          1.1848265618318417,
          1.1887465173345961,
          1.1926664728373506,
          1.196586428340105,
          1.2005063838428596,
          1.204426339345614,
          1.2083462948483683,
          1.2122662503511228,
          1.2161862058538773,
          1.2201061613566317,
          1.2240261168593862,
          1.2279460723621407,
          1.231866027864895,
          1.2357859833676494,
          1.239705938870404,
          1.2436258943731584,
          1.2475458498759129,
          1.2514658053786674,
          1.2553857608814218,
          1.259305716384176,
          1.2632256718869306,
          1.267145627389685,
          1.2710655828924395,
          1.274985538395194,
          1.2789054938979485,
          1.2828254494007028,
          1.2867454049034572,
          1.2906653604062117,
          1.2945853159089662,
          1.2985052714117207,
          1.3024252269144752,
          1.3063451824172294,
          1.310265137919984,
          1.3141850934227384,
          1.3181050489254929,
          1.3220250044282473,
          1.3259449599310018,
          1.329864915433756,
          1.3337848709365105,
          1.337704826439265,
          1.3416247819420195,
          1.345544737444774,
          1.3494646929475285,
          1.3533846484502827,
          1.3573046039530372,
          1.3612245594557917,
          1.3651445149585462,
          1.3690644704613006,
          1.3729844259640551,
          1.3769043814668094,
          1.3808243369695639,
          1.3847442924723183,
          1.3886642479750728,
          1.3925842034778273,
          1.3965041589805818,
          1.400424114483336,
          1.4043440699860905,
          1.408264025488845,
          1.4121839809915995,
          1.416103936494354,
          1.4200238919971084,
          1.4239438474998627,
          1.4278638030026172,
          1.4317837585053717,
          1.4357037140081261,
          1.4396236695108806,
          1.443543625013635,
          1.4474635805163893,
          1.4513835360191438,
          1.4553034915218983,
          1.4592234470246528,
          1.4631434025274073,
          1.4670633580301617,
          1.470983313532916,
          1.4749032690356705,
          1.478823224538425,
          1.4827431800411794,
          1.486663135543934,
          1.4905830910466884,
          1.4945030465494427,
          1.4984230020521971,
          1.5023429575549516,
          1.506262913057706,
          1.5101828685604606,
          1.514102824063215,
          1.5180227795659695,
          1.5219427350687238,
          1.5258626905714783,
          1.5297826460742328,
          1.5337026015769872,
          1.5376225570797417,
          1.5415425125824962,
          1.5454624680852505,
          1.549382423588005,
          1.5533023790907594,
          1.557222334593514,
          1.5611422900962684,
          1.5650622455990228,
          1.568982201101777,
          1.5729021566045316,
          1.576822112107286,
          1.5807420676100405,
          1.584662023112795,
          1.5885819786155495,
          1.5925019341183038,
          1.5964218896210582,
          1.6003418451238127,
          1.6042618006265672,
          1.6081817561293217,
          1.6121017116320762,
          1.6160216671348304,
          1.619941622637585,
          1.6238615781403394,
          1.6277815336430939,
          1.6317014891458483,
          1.6356214446486028,
          1.639541400151357,
          1.6434613556541116,
          1.647381311156866,
          1.6513012666596205,
          1.655221222162375,
          1.6591411776651295,
          1.6630611331678837,
          1.6669810886706382,
          1.6709010441733927,
          1.6748209996761472,
          1.6787409551789017,
          1.6826609106816561,
          1.6865808661844104,
          1.6905008216871649,
          1.6944207771899193,
          1.6983407326926738,
          1.7022606881954283,
          1.7061806436981828,
          1.710100599200937,
          1.7140205547036915,
          1.717940510206446,
          1.7218604657092005,
          1.725780421211955,
          1.7297003767147094,
          1.7336203322174637,
          1.7375402877202182,
          1.7414602432229727,
          1.7453801987257271,
          1.7493001542284816,
          1.753220109731236,
          1.7571400652339904,
          1.7610600207367448,
          1.7649799762394993,
          1.7688999317422538,
          1.7728198872450083,
          1.7767398427477628,
          1.7806597982505172,
          1.7845797537532715,
          1.788499709256026,
          1.7924196647587805,
          1.796339620261535,
          1.8002595757642894,
          1.804179531267044,
          1.8080994867697981,
          1.8120194422725526,
          1.815939397775307,
          1.8198593532780616,
          1.823779308780816,
          1.8276992642835705,
          1.8316192197863248,
          1.8355391752890793,
          1.8394591307918338,
          1.8433790862945882,
          1.8472990417973427,
          1.8512189973000972,
          1.8551389528028515,
          1.859058908305606,
          1.8629788638083604,
          1.866898819311115,
          1.8708187748138694,
          1.8747387303166239,
          1.8786586858193781,
          1.8825786413221326,
          1.886498596824887,
          1.8904185523276416,
          1.894338507830396,
          1.8982584633331505,
          1.9021784188359048,
          1.9060983743386593,
          1.9100183298414137,
          1.9139382853441682,
          1.9178582408469227,
          1.9217781963496772,
          1.9256981518524314,
          1.929618107355186,
          1.9335380628579404,
          1.9374580183606949,
          1.9413779738634493,
          1.9452979293662038,
          1.949217884868958,
          1.9531378403717126,
          1.957057795874467,
          1.9609777513772215,
          1.964897706879976,
          1.9688176623827305,
          1.9727376178854847,
          1.9766575733882392,
          1.9805775288909937,
          1.9844974843937482,
          1.9884174398965027,
          1.9923373953992571,
          1.9962573509020114,
          2.000177306404766,
          2.0040972619075204,
          2.008017217410275,
          2.0119371729130293,
          2.015857128415784,
          2.0197770839185383,
          2.0236970394212928,
          2.0276169949240472,
          2.0315369504268017,
          2.0354569059295557,
          2.0393768614323102,
          2.0432968169350647,
          2.047216772437819,
          2.0511367279405737,
          2.055056683443328,
          2.0589766389460826,
          2.062896594448837,
          2.0668165499515916,
          2.070736505454346,
          2.0746564609571005,
          2.078576416459855,
          2.082496371962609,
          2.0864163274653635,
          2.090336282968118,
          2.0942562384708725,
          2.098176193973627,
          2.1020961494763815,
          2.106016104979136,
          2.1099360604818904,
          2.113856015984645,
          2.1177759714873994,
          2.121695926990154,
          2.1256158824929083,
          2.1295358379956624,
          2.133455793498417,
          2.1373757490011713,
          2.141295704503926,
          2.1452156600066803,
          2.1491356155094348,
          2.1530555710121893,
          2.1569755265149437,
          2.160895482017698,
          2.1648154375204527,
          2.168735393023207,
          2.1726553485259616,
          2.1765753040287157,
          2.18049525953147,
          2.1844152150342246,
          2.188335170536979,
          2.1922551260397336,
          2.196175081542488,
          2.2000950370452426,
          2.204014992547997,
          2.2079349480507515,
          2.211854903553506,
          2.2157748590562605,
          2.219694814559015,
          2.223614770061769,
          2.2275347255645235,
          2.231454681067278,
          2.2353746365700324,
          2.239294592072787,
          2.2432145475755414,
          2.247134503078296,
          2.2510544585810504,
          2.254974414083805,
          2.2588943695865593,
          2.262814325089314,
          2.2667342805920683,
          2.2706542360948228,
          2.274574191597577,
          2.2784941471003313,
          2.2824141026030857,
          2.2863340581058402,
          2.2902540136085947,
          2.294173969111349,
          2.2980939246141037,
          2.302013880116858,
          2.3059338356196126,
          2.309853791122367,
          2.3137737466251216,
          2.317693702127876,
          2.32161365763063,
          2.3255336131333846,
          2.329453568636139,
          2.3333735241388935,
          2.337293479641648,
          2.3412134351444025,
          2.345133390647157,
          2.3490533461499115,
          2.352973301652666,
          2.3568932571554204,
          2.360813212658175,
          2.3647331681609294,
          2.3686531236636834,
          2.372573079166438,
          2.3764930346691924,
          2.380412990171947,
          2.3843329456747013,
          2.388252901177456,
          2.3921728566802103,
          2.3960928121829648,
          2.4000127676857193,
          2.4039327231884737,
          2.407852678691228,
          2.4117726341939827,
          2.4156925896967367,
          2.419612545199491,
          2.4235325007022457,
          2.427452456205,
          2.4313724117077546,
          2.435292367210509,
          2.4392123227132636,
          2.443132278216018,
          2.4470522337187726,
          2.450972189221527,
          2.4548921447242815,
          2.458812100227036,
          2.46273205572979,
          2.4666520112325445,
          2.470571966735299,
          2.4744919222380535,
          2.478411877740808,
          2.4823318332435624,
          2.486251788746317,
          2.4901717442490714,
          2.494091699751826,
          2.4980116552545804,
          2.501931610757335,
          2.5058515662600893,
          2.509771521762844,
          2.513691477265598,
          2.5176114327683523,
          2.521531388271107,
          2.5254513437738613,
          2.5293712992766157,
          2.5332912547793702,
          2.5372112102821247,
          2.541131165784879,
          2.5450511212876337,
          2.548971076790388,
          2.5528910322931426,
          2.556810987795897,
          2.560730943298651,
          2.5646508988014056,
          2.56857085430416,
          2.5724908098069146,
          2.576410765309669,
          2.5803307208124235,
          2.584250676315178,
          2.5881706318179325,
          2.592090587320687,
          2.5960105428234415,
          2.599930498326196,
          2.6038504538289504,
          2.6077704093317045,
          2.611690364834459,
          2.6156103203372134,
          2.619530275839968,
          2.6234502313427224,
          2.627370186845477,
          2.6312901423482313,
          2.635210097850986,
          2.6391300533537403,
          2.6430500088564948,
          2.6469699643592492,
          2.6508899198620037,
          2.6548098753647578,
          2.6587298308675122,
          2.6626497863702667,
          2.666569741873021,
          2.6704896973757757,
          2.67440965287853,
          2.6783296083812846,
          2.682249563884039,
          2.6861695193867936,
          2.690089474889548,
          2.6940094303923026,
          2.697929385895057,
          2.701849341397811,
          2.7057692969005656,
          2.70968925240332,
          2.7136092079060745,
          2.717529163408829,
          2.7214491189115835,
          2.725369074414338,
          2.7292890299170924,
          2.733208985419847,
          2.7371289409226014,
          2.741048896425356,
          2.7449688519281104,
          2.7488888074308644,
          2.752808762933619,
          2.7567287184363733,
          2.760648673939128,
          2.7645686294418823,
          2.768488584944637,
          2.7724085404473913,
          2.7763284959501457,
          2.7802484514529002,
          2.7841684069556547,
          2.788088362458409,
          2.7920083179611637,
          2.795928273463918,
          2.799848228966672,
          2.8037681844694267,
          2.807688139972181,
          2.8116080954749356,
          2.81552805097769,
          2.8194480064804446,
          2.823367961983199,
          2.8272879174859535,
          2.831207872988708,
          2.8351278284914625,
          2.839047783994217,
          2.8429677394969715,
          2.8468876949997255,
          2.85080765050248,
          2.8547276060052345,
          2.858647561507989,
          2.8625675170107434,
          2.866487472513498,
          2.8704074280162524,
          2.874327383519007,
          2.8782473390217613,
          2.882167294524516,
          2.8860872500272703,
          2.8900072055300248,
          2.893927161032779,
          2.8978471165355333,
          2.9017670720382878,
          2.9056870275410422,
          2.9096069830437967,
          2.913526938546551,
          2.9174468940493057,
          2.92136684955206,
          2.9252868050548146,
          2.929206760557569,
          2.9331267160603236,
          2.937046671563078,
          2.940966627065832,
          2.9448865825685866,
          2.948806538071341,
          2.9527264935740956,
          2.95664644907685,
          2.9605664045796045,
          2.964486360082359,
          2.9684063155851135,
          2.972326271087868,
          2.9762462265906224,
          2.980166182093377,
          2.9840861375961314,
          2.9880060930988854,
          2.99192604860164,
          2.9958460041043944,
          2.999765959607149,
          3.0036859151099033,
          3.007605870612658,
          3.0115258261154123,
          3.015445781618167,
          3.0193657371209213,
          3.0232856926236757,
          3.0272056481264302,
          3.0311256036291847,
          3.035045559131939,
          3.038965514634693,
          3.0428854701374477,
          3.046805425640202,
          3.0507253811429567,
          3.054645336645711,
          3.0585652921484656,
          3.06248524765122,
          3.0664052031539746,
          3.070325158656729,
          3.0742451141594835,
          3.078165069662238,
          3.0820850251649925,
          3.0860049806677465,
          3.089924936170501,
          3.0938448916732555,
          3.09776484717601,
          3.1016848026787645,
          3.105604758181519,
          3.1095247136842734,
          3.113444669187028,
          3.1173646246897824,
          3.121284580192537,
          3.1252045356952913,
          3.129124491198046,
          3.1330444467008,
          3.1369644022035543,
          3.140884357706309,
          3.1448043132090633,
          3.1487242687118178,
          3.1526442242145722,
          3.1565641797173267,
          3.160484135220081,
          3.1644040907228357,
          3.16832404622559,
          3.1722440017283446,
          3.176163957231099,
          3.180083912733853,
          3.1840038682366076,
          3.187923823739362,
          3.1918437792421166,
          3.195763734744871,
          3.1996836902476256,
          3.20360364575038,
          3.2075236012531345,
          3.211443556755889,
          3.2153635122586435,
          3.219283467761398,
          3.2232034232641524,
          3.2271233787669065,
          3.231043334269661,
          3.2349632897724154,
          3.23888324527517,
          3.2428032007779244,
          3.246723156280679,
          3.2506431117834333,
          3.254563067286188,
          3.2584830227889423,
          3.262402978291697,
          3.2663229337944513,
          3.2702428892972057,
          3.2741628447999602,
          3.2780828003027143,
          3.2820027558054687,
          3.285922711308223,
          3.2898426668109777,
          3.293762622313732,
          3.2976825778164867,
          3.301602533319241,
          3.3055224888219956,
          3.30944244432475,
          3.3133623998275046,
          3.317282355330259,
          3.3212023108330135,
          3.3251222663357676,
          3.329042221838522,
          3.3329621773412765,
          3.336882132844031,
          3.3408020883467855,
          3.34472204384954,
          3.3486419993522945,
          3.352561954855049,
          3.3564819103578034,
          3.360401865860558,
          3.3643218213633124,
          3.368241776866067,
          3.372161732368821,
          3.3760816878715754,
          3.38000164337433,
          3.3839215988770843,
          3.387841554379839,
          3.3917615098825933,
          3.3956814653853478,
          3.3996014208881022,
          3.4035213763908567,
          3.407441331893611,
          3.4113612873963657,
          3.41528124289912,
          3.419201198401874,
          3.4231211539046287,
          3.427041109407383,
          3.4309610649101376,
          3.434881020412892,
          3.4388009759156466,
          3.442720931418401,
          3.4466408869211556,
          3.45056084242391,
          3.4544807979266645,
          3.458400753429419,
          3.4623207089321735,
          3.4662406644349275,
          3.470160619937682,
          3.4740805754404365,
          3.478000530943191,
          3.4819204864459454,
          3.4858404419487,
          3.4897603974514544,
          3.493680352954209,
          3.4976003084569633,
          3.501520263959718,
          3.5054402194624723,
          3.509360174965227,
          3.513280130467981,
          3.5172000859707353,
          3.52112004147349,
          3.5250399969762443,
          3.5289599524789987,
          3.532879907981753,
          3.5367998634845077,
          3.540719818987262,
          3.5446397744900167,
          3.548559729992771,
          3.5524796854955256,
          3.55639964099828,
          3.5603195965010346,
          3.5642395520037886,
          3.568159507506543,
          3.5720794630092976,
          3.575999418512052,
          3.5799193740148065,
          3.583839329517561,
          3.5877592850203155,
          3.59167924052307,
          3.5955991960258245,
          3.599519151528579,
          3.6034391070313334,
          3.607359062534088,
          3.611279018036842,
          3.6151989735395964,
          3.619118929042351,
          3.6230388845451054,
          3.62695884004786,
          3.6308787955506143,
          3.634798751053369,
          3.6387187065561233,
          3.6426386620588778,
          3.6465586175616322,
          3.6504785730643867,
          3.654398528567141,
          3.6583184840698952,
          3.6622384395726497,
          3.666158395075404,
          3.6700783505781587,
          3.673998306080913,
          3.6779182615836676,
          3.681838217086422,
          3.6857581725891766,
          3.689678128091931,
          3.6935980835946856,
          3.69751803909744,
          3.7014379946001945,
          3.7053579501029485,
          3.709277905605703,
          3.7131978611084575,
          3.717117816611212,
          3.7210377721139665,
          3.724957727616721,
          3.7288776831194754,
          3.73279763862223,
          3.7367175941249844,
          3.740637549627739,
          3.7445575051304933,
          3.748477460633248,
          3.752397416136002,
          3.7563173716387563,
          3.760237327141511,
          3.7641572826442653,
          3.76807723814702,
          3.7719971936497743,
          3.7759171491525287,
          3.779837104655283,
          3.7837570601580377,
          3.787677015660792,
          3.7915969711635467,
          3.795516926666301,
          3.7994368821690556,
          3.8033568376718097,
          3.807276793174564,
          3.8111967486773186,
          3.815116704180073,
          3.8190366596828276,
          3.822956615185582,
          3.8268765706883365,
          3.830796526191091,
          3.8347164816938455,
          3.8386364371966,
          3.8425563926993545,
          3.846476348202109,
          3.850396303704863,
          3.8543162592076174,
          3.858236214710372,
          3.8621561702131264,
          3.866076125715881,
          3.8699960812186354,
          3.87391603672139,
          3.8778359922241443,
          3.881755947726899,
          3.8856759032296533,
          3.8895958587324078,
          3.8935158142351622,
          3.8974357697379163,
          3.9013557252406708,
          3.9052756807434252,
          3.9091956362461797,
          3.913115591748934,
          3.9170355472516887
         ],
         "xaxis": "x",
         "y": [
          15.79953387630074,
          7.102098081701483,
          5.28282236116563,
          4.384189434027344,
          3.823303858418815,
          3.4302448637124763,
          3.134874127510971,
          2.902263692132247,
          2.712804212805312,
          2.5545230810514017,
          2.4196409540363617,
          2.3028540013016783,
          2.200404793129217,
          2.1095467609232044,
          2.0282192323011095,
          1.954841689432035,
          1.8881787751295676,
          1.827248979298559,
          1.771261225500238,
          1.7195698103244652,
          1.6716417301764357,
          1.627032561293886,
          1.5853683662009432,
          1.5463319238505882,
          1.509652112825169,
          1.4750956281292769,
          1.4424604484587573,
          1.4115706327707378,
          1.3822721377619152,
          1.3544294275911664,
          1.3279227043251203,
          1.302645629063099,
          1.2785034341609836,
          1.2554113495925558,
          1.2332932834531498,
          1.2120807094579615,
          1.1917117241028037,
          1.1721302437166892,
          1.1532853175067002,
          1.1351305372878024,
          1.1176235282071683,
          1.1007255076401374,
          1.0844009017225205,
          1.0686170108196622,
          1.0533437167140185,
          1.0385532254947403,
          1.0242198411126153,
          1.0103197653665075,
          0.9968309207481885,
          0.9837327931186889,
          0.9710062916427494,
          0.9586336237859076,
          0.946598183494985,
          0.9348844509483077,
          0.9234779024857905,
          0.9123649295182801,
          0.9015327653761016,
          0.8909694191934014,
          0.8806636160415162,
          0.8706047426244534,
          0.8607827979352929,
          0.851188348346121,
          0.8418124866677874,
          0.8326467947708946,
          0.8236833094072191,
          0.8149144909123284,
          0.8063331945063599,
          0.79793264394156,
          0.789706407272853,
          0.7816483745519807,
          0.7737527372670897,
          0.7660139693684089,
          0.758426809737241,
          0.7509862459701184,
          0.7436874993629412,
          0.736526010991407,
          0.729497428794255,
          0.7225975955749263,
          0.7158225378453461,
          0.7091684554427585,
          0.7026317118570001,
          0.6962088252113905,
          0.6898964598455967,
          0.6836914184534871,
          0.6775906347331757,
          0.6715911665102184,
          0.6656901892983311,
          0.6598849902650508,
          0.6541729625725375,
          0.6485516000662186,
          0.643018492286245,
          0.6375713197787855,
          0.6322078496860569,
          0.6269259315956808,
          0.6217234936315023,
          0.6165985387694178,
          0.6115491413630336,
          0.606573443865151,
          0.6016696537321427,
          0.5968360404992614,
          0.5920709330158146,
          0.5873727168299611,
          0.5827398317136347,
          0.5781707693187899,
          0.5736640709567961,
          0.5692183254933919,
          0.5648321673521438,
          0.5605042746198458,
          0.5562333672477554,
          0.5520182053429731,
          0.5478575875446667,
          0.5437503494801936,
          0.5396953622965037,
          0.5356915312625186,
          0.5317377944384537,
          0.5278331214083217,
          0.523976512072093,
          0.5201669954942137,
          0.5164036288053966,
          0.5126854961547838,
          0.5090117077097723,
          0.5053813987009508,
          0.5017937285097588,
          0.49824787979662216,
          0.4947430576674538,
          0.49127848887653547,
          0.4878534210639139,
          0.484467122025554,
          0.48111887901459593,
          0.4778079980721561,
          0.47453380338620355,
          0.4712956366771263,
          0.46809285660868205,
          0.4649248382230985,
          0.4617909723991573,
          0.45869066533216546,
          0.4556233380347701,
          0.4525884258576354,
          0.44958537802905224,
          0.446613657212599,
          0.4436727390820214,
          0.44076211191254316,
          0.43788127618785827,
          0.4350297442220972,
          0.4322070397960969,
          0.42941269780733476,
          0.42664626393292376,
          0.4239072943050951,
          0.4211953551986225,
          0.41851002272967064,
          0.4158508825655775,
          0.4132175296451007,
          0.4106095679086851,
          0.40802661003832796,
          0.4054682772066401,
          0.4029341988347187,
          0.40042401235846836,
          0.39793736300302257,
          0.3954739035649346,
          0.39303329420182265,
          0.39061520222916835,
          0.38821930192398196,
          0.3858452743350603,
          0.3834928070995781,
          0.38116159426576113,
          0.37885133612140415,
          0.37656173902800827,
          0.37429251526031826,
          0.37204338285105276,
          0.3698140654406311,
          0.36760429213170503,
          0.36541379734831436,
          0.36324232069949475,
          0.36108960684717006,
          0.3589554053781702,
          0.3568394706802247,
          0.3547415618217829,
          0.35266144243552516,
          0.35059888060542804,
          0.34855364875725764,
          0.34652552355236727,
          0.3445142857846822,
          0.342519720280758,
          0.34054161580280506,
          0.33857976495457487,
          0.3366339640900084,
          0.33470401322455057,
          0.3327897159490399,
          0.33089087934608374,
          0.3290073139088353,
          0.327138833462091,
          0.32528525508562933,
          0.3234463990397155,
          0.32162208869270237,
          0.31981215045065353,
          0.31801641368892586,
          0.3162347106856455,
          0.3144668765570142,
          0.3127127491943887,
          0.31097216920307413,
          0.3092449798427777,
          0.307531026969667,
          0.30583015897998467,
          0.30414222675516894,
          0.30246708360843044,
          0.30080458523274395,
          0.2991545896502065,
          0.29751695716272186,
          0.2958915503039696,
          0.2942782337926193,
          0.29267687448675134,
          0.2910873413394486,
          0.2895095053555215,
          0.2879432395493343,
          0.2863884189036988,
          0.28484492032980224,
          0.28331262262814016,
          0.2817914064504247,
          0.2802811542624375,
          0.2787817503078013,
          0.27729308057264296,
          0.27581503275112157,
          0.27434749621179666,
          0.27289036196481276,
          0.27144352262987603,
          0.2700068724050015,
          0.2685803070360076,
          0.2671637237867381,
          0.26575702140998997,
          0.26436010011912786,
          0.26297286156036603,
          0.2615952087856987,
          0.2602270462264615,
          0.2588682796675059,
          0.25751881622197065,
          0.2561785643066326,
          0.2548474336178229,
          0.25352533510789177,
          0.2522121809622068,
          0.250907884576673,
          0.24961236053575692,
          0.24832552459100407,
          0.24704729364003628,
          0.24577758570601463,
          0.24451631991755754,
          0.24326341648910174,
          0.24201879670169296,
          0.240782382884198,
          0.23955409839492417,
          0.23833386760363842,
          0.23712161587397323,
          0.2359172695462122,
          0.23472075592044286,
          0.2335320032400693,
          0.2323509406756752,
          0.23117749830922737,
          0.23001160711861257,
          0.228853198962499,
          0.22770220656551357,
          0.22655856350372802,
          0.22542220419044579,
          0.22429306386228254,
          0.22317107856553323,
          0.22205618514281777,
          0.2209483212200003,
          0.21984742519337322,
          0.21875343621710183,
          0.21766629419092146,
          0.21658593974808255,
          0.2155123142435363,
          0.21444535974235665,
          0.21338501900839185,
          0.21233123549314087,
          0.21128395332484856,
          0.2102431172978162,
          0.20920867286192008,
          0.20818056611233496,
          0.20715874377945726,
          0.20614315321902277,
          0.20513374240241541,
          0.20413045990716186,
          0.2031332549076084,
          0.20214207716577498,
          0.20115687702238383,
          0.20017760538805723,
          0.19920421373468153,
          0.19823665408693386,
          0.19727487901396693,
          0.19631884162124913,
          0.1953684955425568,
          0.19442379493211429,
          0.19348469445687927,
          0.1925511492889702,
          0.19162311509823243,
          0.19070054804493994,
          0.18978340477263014,
          0.18887164240106882,
          0.1879652185193415,
          0.1870640911790702,
          0.18616821888775134,
          0.18527756060221298,
          0.18439207572218874,
          0.1835117240840057,
          0.1826364659543844,
          0.18176626202434784,
          0.18090107340323808,
          0.180040861612837,
          0.17918558858159056,
          0.17833521663893284,
          0.1774897085097091,
          0.17664902730869503,
          0.1758131365352105,
          0.17498200006782585,
          0.17415558215915874,
          0.17333384743075972,
          0.17251676086808496,
          0.17170428781555414,
          0.17089639397169168,
          0.17009304538435005,
          0.16929420844601287,
          0.16849984988917713,
          0.16770993678181195,
          0.16692443652289285,
          0.1661433168380104,
          0.16536654577505114,
          0.16459409169994943,
          0.1638259232925093,
          0.16306200954229463,
          0.16230231974458592,
          0.16154682349640367,
          0.16079549069259502,
          0.16004829152198474,
          0.1593051964635873,
          0.15856617628288047,
          0.15783120202813772,
          0.15710024502682,
          0.15637327688202438,
          0.15565026946898905,
          0.15493119493165355,
          0.15421602567927348,
          0.15350473438308773,
          0.15279729397303873,
          0.15209367763454334,
          0.15139385880531403,
          0.15069781117222963,
          0.15000550866825427,
          0.14931692546940395,
          0.14863203599175967,
          0.14795081488852652,
          0.14727323704713738,
          0.14659927758640123,
          0.1459289118536943,
          0.145262115422194,
          0.14459886408815478,
          0.14393913386822477,
          0.14328290099680263,
          0.14263014192343446,
          0.14198083331024874,
          0.14133495202943036,
          0.14069247516073147,
          0.14005337998901948,
          0.13941764400186102,
          0.13878524488714167,
          0.1381561605307204,
          0.13753036901411844,
          0.1369078486122418,
          0.13628857779113696,
          0.13567253520577896,
          0.1350596996978916,
          0.1344500502937993,
          0.1338435662023089,
          0.13324022681262335,
          0.13264001169228373,
          0.13204290058514145,
          0.13144887340935935,
          0.13085791025544036,
          0.13026999138428477,
          0.12968509722527474,
          0.12910320837438544,
          0.12852430559232297,
          0.12794836980268814,
          0.1273753820901659,
          0.12680532369873992,
          0.12623817602993204,
          0.12567392064106583,
          0.12511253924355423,
          0.12455401370121096,
          0.12399832602858436,
          0.12344545838931517,
          0.12289539309451523,
          0.12234811260116986,
          0.12180359951056052,
          0.12126183656670955,
          0.12072280665484574,
          0.12018649279989055,
          0.1196528781649646,
          0.11912194604991398,
          0.11859367988985674,
          0.11806806325374815,
          0.11754507984296542,
          0.11702471348991088,
          0.11650694815663382,
          0.11599176793347026,
          0.11547915703770097,
          0.1149690998122266,
          0.11446158072426042,
          0.11395658436403804,
          0.113454095443544,
          0.11295409879525453,
          0.112456579370897,
          0.11196152224022517,
          0.11146891258981009,
          0.11097873572184684,
          0.11049097705297602,
          0.11000562211312097,
          0.10952265654433921,
          0.10904206609968876,
          0.1085638366421087,
          0.10808795414331408,
          0.10761440468270445,
          0.10714317444628642,
          0.1066742497256095,
          0.10620761691671533,
          0.10574326251910025,
          0.10528117313469026,
          0.10482133546682927,
          0.10436373631927945,
          0.10390836259523434,
          0.1034552012963437,
          0.10300423952175064,
          0.10255546446714037,
          0.10210886342380078,
          0.10166442377769443,
          0.10122213300854155,
          0.10078197868891471,
          0.100343948483344,
          0.09990803014743309,
          0.09947421152698631,
          0.09904248055714568,
          0.09861282526153874,
          0.09818523375143628,
          0.09775969422492044,
          0.09733619496606222,
          0.09691472434410936,
          0.09649527081268335,
          0.09607782290898623,
          0.09566236925301663,
          0.09524889854679508,
          0.09483739957359826,
          0.09442786119720242,
          0.09402027236113565,
          0.09361462208793861,
          0.09321089947843417,
          0.09280909371100521,
          0.09240919404088098,
          0.09201118979943192,
          0.09161507039347179,
          0.09122082530456897,
          0.09082844408836459,
          0.09043791637389918,
          0.09004923186294665,
          0.08966238032935593,
          0.08927735161840009,
          0.08889413564613297,
          0.0885127223987528,
          0.08813310193197327,
          0.08775526437040147,
          0.087379199906923,
          0.08700489880209372,
          0.08663235138353874,
          0.08626154804535748,
          0.0858924792475359,
          0.0855251355153651,
          0.08515950743886595,
          0.08479558567222091,
          0.08443336093321131,
          0.08407282400266117,
          0.08371396572388722,
          0.08335677700215477,
          0.08300124880413946,
          0.08264737215739514,
          0.08229513814982722,
          0.08194453792917217,
          0.08159556270248204,
          0.08124820373561509,
          0.08090245235273177,
          0.08055829993579587,
          0.08021573792408139,
          0.07987475781368437,
          0.07953535115704027,
          0.07919750956244608,
          0.07886122469358792,
          0.07852648826907334,
          0.07819329206196882,
          0.07786162789934196,
          0.07753148766180869,
          0.0772028632830849,
          0.07687574674954337,
          0.07655013009977453,
          0.07622600542415267,
          0.07590336486440612,
          0.0755822006131919,
          0.07526250491367521,
          0.07494427005911274,
          0.07462748839244072,
          0.07431215230586703,
          0.0739982542404675,
          0.07368578668578643,
          0.07337474217944102,
          0.07306511330673028,
          0.07275689270024724,
          0.072450073039496,
          0.07214464705051177,
          0.07184060750548538,
          0.07153794722239139,
          0.07123665906461987,
          0.07093673594061209,
          0.07063817080349973,
          0.07034095665074758,
          0.07004508652380036,
          0.0697505535077322,
          0.06945735073090059,
          0.06916547136460305,
          0.06887490862273736,
          0.0685856557614655,
          0.06829770607888053,
          0.06801105291467686,
          0.06772568964982395,
          0.06744160970624291,
          0.06715880654648658,
          0.06687727367342239,
          0.06659700462991885,
          0.06631799299853443,
          0.06604023240121001,
          0.0657637164989641,
          0.065488438991591,
          0.0652143936173619,
          0.06494157415272887,
          0.06466997441203172,
          0.06439958824720772,
          0.06413040954750392,
          0.06386243223919245,
          0.06359565028528845,
          0.06333005768527063,
          0.06306564847480449,
          0.06280241672546844,
          0.062540356544482,
          0.0622794620744371,
          0.06201972749303157,
          0.061761147012805266,
          0.06150371488087869,
          0.06124742537869409,
          0.06099227282175877,
          0.06073825155939114,
          0.060485355974468843,
          0.06023358048317944,
          0.05998291953477317,
          0.059733367611318255,
          0.05948491922745842,
          0.059237568930172464,
          0.05899131129853616,
          0.05874614094348655,
          0.05850205250758803,
          0.05825904066480083,
          0.058017100120251644,
          0.057776225610006025,
          0.057536411900843416,
          0.05729765379003362,
          0.05705994610511564,
          0.05682328370367859,
          0.05658766147314437,
          0.056353074330552345,
          0.05611951722234616,
          0.055886985124162125,
          0.05565547304061982,
          0.05542497600511445,
          0.05519548907961105,
          0.05496700735444049,
          0.054739525948097424,
          0.05451304000703984,
          0.05428754470549062,
          0.05406303524524063,
          0.05383950685545373,
          0.05361695479247348,
          0.053395374339631346,
          0.05317476080705687,
          0.052955109531489346,
          0.052736415876091236,
          0.052518675230263046,
          0.05230188300946001,
          0.05208603465501033,
          0.051871125633934825,
          0.05165715143876849,
          0.05144410758738315,
          0.051231989622812016,
          0.05102079311307569,
          0.05081051365100943,
          0.05060114685409225,
          0.050392688364277134,
          0.05018513384782307,
          0.04997847899512814,
          0.04977271952056435,
          0.0495678511623137,
          0.049363869682205755,
          0.049160770865556334,
          0.04895855052100797,
          0.048757204480371415,
          0.0485567285984686,
          0.04835711875297685,
          0.048158370844274524,
          0.047960480795287766,
          0.04776344455133883,
          0.047567258079995345,
          0.047371917370921016,
          0.04717741843572761,
          0.046983757307828056,
          0.04679093004229087,
          0.0465989327156956,
          0.04640776142598979,
          0.04621741229234682,
          0.04602788145502504,
          0.045839165075228096,
          0.04565125933496638,
          0.045464160436919504,
          0.04527786460430015,
          0.04509236808071872,
          0.044907667130049435,
          0.044723758036297155,
          0.04454063710346562,
          0.044358300655426494,
          0.044176745035789666,
          0.043995966607774536,
          0.04381596175408222,
          0.043636726876769,
          0.0434582583971206,
          0.043280552755527654,
          0.04310360641136191,
          0.04292741584285381,
          0.042751977546970577,
          0.042577288039295745,
          0.04240334385390928,
          0.04223014154326894,
          0.0420576776780922,
          0.04188594884723965,
          0.0417149516575988,
          0.04154468273396907,
          0.0413751387189477,
          0.041206316272816436,
          0.04103821207342916,
          0.04087082281610042,
          0.04070414521349479,
          0.04053817599551722,
          0.04037291190920398,
          0.0402083497186148,
          0.040044486204725456,
          0.03988131816532163,
          0.03971884241489321,
          0.0395570557845296,
          0.0393959551218158,
          0.039235537290729296,
          0.03907579917153774,
          0.03891673766069737,
          0.03875834967075233,
          0.03860063213023459,
          0.038443581983564803,
          0.038287196190953804,
          0.03813147172830486,
          0.037976405587116756,
          0.03782199477438763,
          0.037668236312519254,
          0.037515127239222484,
          0.03736266460742307,
          0.03721084548516832,
          0.03705966695553449,
          0.03690912611653478,
          0.03675922008102816,
          0.03660994597662865,
          0.0364613009456156,
          0.03631328214484427,
          0.036165886745657454,
          0.03601911193379744,
          0.035872954909318876,
          0.03572741288650207,
          0.03558248309376714,
          0.035438162773588563,
          0.035294449182410634,
          0.03515133959056329,
          0.03500883128217872,
          0.0348669215551085,
          0.03472560772084147,
          0.034584887104421945,
          0.03444475704436887,
          0.034305214892595255,
          0.034166258014328446,
          0.03402788378803079,
          0.03389008960532098,
          0.03375287287089597,
          0.03361623100245336,
          0.033480161430614476,
          0.033344661598847955,
          0.03320972896339383,
          0.03307536099318823,
          0.032941555169788535,
          0.032808308987299244,
          0.0326756199522982,
          0.03254348558376335,
          0.03241190341300019,
          0.03228087098356955,
          0.032150385851216,
          0.03202044558379669,
          0.03189104776121079,
          0.031762189975329355,
          0.03163386982992571,
          0.03150608494060632,
          0.0313788329347422,
          0.0312521114514007,
          0.03112591814127788,
          0.031000250666631333,
          0.030875106701213427,
          0.030750483930205057,
          0.030626380050149893,
          0.030502792768889047,
          0.03037971980549611,
          0.03025715889021287,
          0.030135107764385285,
          0.030013564180399896,
          0.029892525901620833,
          0.029771990702327097,
          0.029651956367650424,
          0.029532420693513417,
          0.02941338148656826,
          0.029294836564135698,
          0.029176783754144616,
          0.029059220895071885,
          0.028942145835882675,
          0.028825556435971168,
          0.028709450565101737,
          0.028593826103350407,
          0.02847868094104686,
          0.028364012978716647,
          0.028249820127023983,
          0.028136100306714887,
          0.028022851448560558,
          0.027910071493301335,
          0.02779775839159092,
          0.027685910103941013,
          0.0275745246006663,
          0.027463599861829863,
          0.027353133877188844,
          0.027243124646140614,
          0.027133570177669254,
          0.02702446849029227,
          0.026915817612007897,
          0.02680761558024257,
          0.026699860441798784,
          0.02659255025280339,
          0.026485683078656078,
          0.026379256993978372,
          0.026273270082562826,
          0.026167720437322635,
          0.02606260616024158,
          0.025957925362324198,
          0.025853676163546453,
          0.025749856692806588,
          0.025646465087876363,
          0.0255434994953526,
          0.025440958070609084,
          0.02533883897774868,
          0.025237140389555855,
          0.025135860487449493,
          0.02503499746143599,
          0.024934549510062673,
          0.024834514840371507,
          0.02473489166785315,
          0.0246356782164012,
          0.024536872718266906,
          0.02443847341401397,
          0.0243404785524738,
          0.02424288639070102,
          0.02414569519392919,
          0.02404890323552686,
          0.023952508796953972,
          0.02385651016771842,
          0.02376090564533295,
          0.023665693535272384,
          0.023570872150930993,
          0.023476439813580274,
          0.023382394852326936,
          0.02328873560407105,
          0.023195460413464732,
          0.023102567632870812,
          0.023010055622321914,
          0.02291792274947975,
          0.02282616738959467,
          0.02273478792546553,
          0.022643782747399685,
          0.022553150253173358,
          0.022462888847992194,
          0.02237299694445208,
          0.02228347296250022,
          0.02219431532939639,
          0.022105522479674563,
          0.022017092855104642,
          0.0219290249046545,
          0.021841317084452253,
          0.02175396785774875,
          0.021666975694880325,
          0.021580339073231713,
          0.021494056477199267,
          0.021408126398154405,
          0.02132254733440723,
          0.02123731779117038,
          0.02115243628052315,
          0.02106790132137582,
          0.020983711439434137,
          0.020899865167164137,
          0.02081636104375704,
          0.02073319761509448,
          0.020650373433713887,
          0.020567887058774104,
          0.020485737056021188,
          0.020403921997754437,
          0.020322440462792624,
          0.020241291036440484,
          0.020160472310455226,
          0.020079982883013544,
          0.01999982135867855,
          0.019919986348367027,
          0.01984047646931692,
          0.019761290345054944,
          0.019682426605364418,
          0.019603883886253292,
          0.019525660829922378,
          0.01944775608473376,
          0.019370168305179365,
          0.019292896151849804,
          0.019215938291403317,
          0.01913929339653491,
          0.01906296014594575,
          0.01898693722431267,
          0.018911223322257868,
          0.018835817136318808,
          0.01876071736891829,
          0.0186859227283347,
          0.018611431928672414,
          0.018537243689832422,
          0.018463356737483064,
          0.018389769803031027,
          0.018316481623592413,
          0.01824349094196401,
          0.01817079650659486,
          0.018098397071557706,
          0.01802629139652095,
          0.0179544782467205,
          0.017882956392931935,
          0.01781172461144276,
          0.01774078168402489,
          0.01767012639790722,
          0.017599757545748405,
          0.01752967392560977,
          0.017459874340928428,
          0.01739035760049045,
          0.017321122518404352,
          0.017252167914074544,
          0.01718349261217511,
          0.01711509544262361,
          0.017046975240555113,
          0.016979130846296344,
          0.016911561105339937,
          0.016844264868319015,
          0.01677724099098163,
          0.0167104883341656,
          0.016644005763773406,
          0.01657779215074717,
          0.016511846371043856,
          0.016446167305610618,
          0.016380753840360213,
          0.016315604866146603,
          0.016250719278740722,
          0.01618609597880636,
          0.016121733871876105,
          0.01605763186832758,
          0.015993788883359696,
          0.015930203836969,
          0.01586687565392639,
          0.01580380326375362,
          0.015740985600700252,
          0.015678421603720533,
          0.015616110216450476,
          0.015554050387185124,
          0.015492241068855836,
          0.015430681219007725,
          0.015369369799777328,
          0.015308305777870254,
          0.015247488124539054,
          0.015186915815561182,
          0.015126587831217059,
          0.015066503156268311,
          0.0150066607799361,
          0.014947059695879566,
          0.014887698902174396,
          0.0148285774012915,
          0.014769694200075872,
          0.014711048309725468,
          0.014652638745770271,
          0.014594464528051456,
          0.014536524680700626,
          0.014478818232119243,
          0.01442134421495816,
          0.014364101666097159,
          0.014307089626624704,
          0.01425030714181784,
          0.014193753261122086,
          0.014137427038131482,
          0.014081327530568835,
          0.014025453800265927,
          0.01396980491314392,
          0.01391437993919389,
          0.013859177952457374,
          0.013804198031007098,
          0.0137494392569278,
          0.013694900716297158,
          0.013640581499166754,
          0.01358648069954325,
          0.013532597415369624,
          0.013478930748506457,
          0.01342547980471337,
          0.013372243693630586,
          0.013319221528760528,
          0.013266412427449538,
          0.01321381551086979,
          0.013161429904001072,
          0.013109254735612965,
          0.01305728913824683,
          0.013005532248198115,
          0.01295398320549862,
          0.012902641153898916,
          0.012851505240850882,
          0.01280057461749022,
          0.012749848438619217,
          0.012699325862689495,
          0.01264900605178488,
          0.012598888171604383,
          0.012548971391445247,
          0.012499254884186062,
          0.012449737826270074,
          0.01240041939768843,
          0.012351298781963619,
          0.012302375166133,
          0.012253647740732362,
          0.012205115699779586,
          0.01215677824075846,
          0.012108634564602434,
          0.01206068387567868,
          0.012012925381771974,
          0.0119653582940689,
          0.011917981827141986,
          0.011870795198933986,
          0.011823797630742205,
          0.011776988347203008,
          0.011730366576276225,
          0.011683931549229842,
          0.011637682500624625,
          0.011591618668298904,
          0.011545739293353386,
          0.011500043620136098,
          0.011454530896227347,
          0.011409200372424837,
          0.011364051302728785,
          0.011319082944327156,
          0.011274294557580966,
          0.011229685406009693,
          0.011185254756276672,
          0.011141001878174706,
          0.011096926044611604,
          0.01105302653159591,
          0.01100930261822262,
          0.01096575358665903,
          0.010922378722130687,
          0.010879177312907247,
          0.010836148650288658,
          0.010793292028591167,
          0.010750606745133598,
          0.010708092100223537,
          0.010665747397143738,
          0.010623571942138456,
          0.010581565044399974,
          0.010539726016055139,
          0.010498054172151926,
          0.010456548830646164,
          0.010415209312388271,
          0.010374034941110062,
          0.010333025043411628,
          0.010292178948748313,
          0.010251495989417686,
          0.010210975500546646,
          0.010170616820078571,
          0.010130419288760548,
          0.0100903822501306,
          0.010050505050505072
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>k</i>=1; <i>λ</i>=0.8<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>k</i>=1; <i>λ</i>=0.8",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>k</i>=1; <i>λ</i>=0.8",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.007751919192521674,
          0.01450383838504335,
          0.021255757577565024,
          0.028007676770086698,
          0.03475959596260837,
          0.041511515155130047,
          0.04826343434765172,
          0.055015353540173395,
          0.06176727273269507,
          0.06851919192521674,
          0.07527111111773842,
          0.08202303031026009,
          0.08877494950278177,
          0.09552686869530344,
          0.10227878788782511,
          0.10903070708034679,
          0.11578262627286846,
          0.12253454546539014,
          0.12928646465791183,
          0.1360383838504335,
          0.14279030304295515,
          0.14954222223547683,
          0.15629414142799852,
          0.16304606062052018,
          0.16979797981304184,
          0.17654989900556353,
          0.18330181819808522,
          0.19005373739060688,
          0.19680565658312854,
          0.20355757577565023,
          0.21030949496817192,
          0.21706141416069358,
          0.22381333335321524,
          0.23056525254573693,
          0.23731717173825861,
          0.24406909093078027,
          0.25082101012330194,
          0.25757292931582365,
          0.2643248485083453,
          0.27107676770086697,
          0.27782868689338863,
          0.2845806060859103,
          0.291332525278432,
          0.29808444447095367,
          0.30483636366347533,
          0.31158828285599705,
          0.3183402020485187,
          0.32509212124104037,
          0.331844040433562,
          0.3385959596260837,
          0.3453478788186054,
          0.35209979801112706,
          0.3588517172036487,
          0.36560363639617044,
          0.3723555555886921,
          0.37910747478121376,
          0.3858593939737354,
          0.3926113131662571,
          0.3993632323587788,
          0.40611515155130046,
          0.4128670707438221,
          0.41961898993634383,
          0.4263709091288655,
          0.43312282832138715,
          0.4398747475139088,
          0.4466266667064305,
          0.4533785858989522,
          0.46013050509147385,
          0.4668824242839955,
          0.47363434347651723,
          0.4803862626690389,
          0.48713818186156055,
          0.4938901010540822,
          0.5006420202466039,
          0.5073939394391256,
          0.5141458586316473,
          0.5208977778241689,
          0.5276496970166906,
          0.5344016162092122,
          0.5411535354017339,
          0.5479054545942557,
          0.5546573737867773,
          0.561409292979299,
          0.5681612121718206,
          0.5749131313643423,
          0.581665050556864,
          0.5884169697493856,
          0.5951688889419073,
          0.601920808134429,
          0.6086727273269507,
          0.6154246465194724,
          0.6221765657119941,
          0.6289284849045157,
          0.6356804040970374,
          0.642432323289559,
          0.6491842424820807,
          0.6559361616746024,
          0.662688080867124,
          0.6694400000596458,
          0.6761919192521674,
          0.6829438384446891,
          0.6896957576372108,
          0.6964476768297324,
          0.7031995960222541,
          0.7099515152147758,
          0.7167034344072974,
          0.7234553535998192,
          0.7302072727923409,
          0.7369591919848625,
          0.7437111111773842,
          0.7504630303699058,
          0.7572149495624275,
          0.7639668687549492,
          0.7707187879474708,
          0.7774707071399926,
          0.7842226263325142,
          0.7909745455250359,
          0.7977264647175576,
          0.8044783839100792,
          0.8112303031026009,
          0.8179822222951226,
          0.8247341414876442,
          0.831486060680166,
          0.8382379798726877,
          0.8449898990652093,
          0.851741818257731,
          0.8584937374502526,
          0.8652456566427743,
          0.871997575835296,
          0.8787494950278176,
          0.8855014142203393,
          0.892253333412861,
          0.8990052526053827,
          0.9057571717979044,
          0.912509090990426,
          0.9192610101829477,
          0.9260129293754694,
          0.932764848567991,
          0.9395167677605127,
          0.9462686869530345,
          0.9530206061455561,
          0.9597725253380778,
          0.9665244445305994,
          0.9732763637231211,
          0.9800282829156428,
          0.9867802021081644,
          0.9935321213006861,
          1.0002840404932076,
          1.0070359596857295,
          1.013787878878251,
          1.0205397980707727,
          1.0272917172632945,
          1.034043636455816,
          1.0407955556483377,
          1.0475474748408593,
          1.0542993940333811,
          1.0610513132259027,
          1.0678032324184243,
          1.0745551516109462,
          1.0813070708034678,
          1.0880589899959894,
          1.0948109091885112,
          1.1015628283810328,
          1.1083147475735544,
          1.1150666667660762,
          1.1218185859585978,
          1.1285705051511195,
          1.135322424343641,
          1.1420743435361629,
          1.1488262627286845,
          1.155578181921206,
          1.162330101113728,
          1.1690820203062495,
          1.1758339394987711,
          1.182585858691293,
          1.1893377778838146,
          1.1960896970763362,
          1.202841616268858,
          1.2095935354613796,
          1.2163454546539012,
          1.223097373846423,
          1.2298492930389446,
          1.2366012122314662,
          1.243353131423988,
          1.2501050506165097,
          1.2568569698090313,
          1.2636088890015529,
          1.2703608081940747,
          1.2771127273865963,
          1.283864646579118,
          1.2906165657716397,
          1.2973684849641614,
          1.304120404156683,
          1.3108723233492048,
          1.3176242425417264,
          1.324376161734248,
          1.3311280809267698,
          1.3378800001192914,
          1.344631919311813,
          1.3513838385043346,
          1.3581357576968565,
          1.364887676889378,
          1.3716395960818997,
          1.3783915152744215,
          1.385143434466943,
          1.3918953536594647,
          1.3986472728519865,
          1.4053991920445081,
          1.4121511112370297,
          1.4189030304295516,
          1.4256549496220732,
          1.4324068688145948,
          1.4391587880071166,
          1.4459107071996382,
          1.4526626263921598,
          1.4594145455846816,
          1.4661664647772032,
          1.4729183839697249,
          1.4796703031622465,
          1.4864222223547683,
          1.49317414154729,
          1.4999260607398115,
          1.5066779799323333,
          1.513429899124855,
          1.5201818183173765,
          1.5269337375098984,
          1.53368565670242,
          1.5404375758949416,
          1.5471894950874634,
          1.553941414279985,
          1.5606933334725066,
          1.5674452526650282,
          1.57419717185755,
          1.5809490910500716,
          1.5877010102425932,
          1.594452929435115,
          1.6012048486276367,
          1.6079567678201583,
          1.61470868701268,
          1.6214606062052017,
          1.6282125253977233,
          1.6349644445902451,
          1.6417163637827668,
          1.6484682829752884,
          1.6552202021678102,
          1.6619721213603318,
          1.6687240405528534,
          1.6754759597453752,
          1.6822278789378968,
          1.6889797981304184,
          1.69573171732294,
          1.7024836365154619,
          1.7092355557079835,
          1.715987474900505,
          1.722739394093027,
          1.7294913132855485,
          1.73624323247807,
          1.742995151670592,
          1.7497470708631135,
          1.7564989900556351,
          1.763250909248157,
          1.7700028284406786,
          1.7767547476332002,
          1.7835066668257218,
          1.7902585860182436,
          1.7970105052107652,
          1.8037624244032868,
          1.8105143435958087,
          1.8172662627883303,
          1.8240181819808519,
          1.8307701011733737,
          1.8375220203658953,
          1.844273939558417,
          1.8510258587509387,
          1.8577777779434603,
          1.864529697135982,
          1.8712816163285038,
          1.8780335355210254,
          1.884785454713547,
          1.8915373739060688,
          1.8982892930985904,
          1.905041212291112,
          1.9117931314836336,
          1.9185450506761554,
          1.925296969868677,
          1.9320488890611986,
          1.9388008082537205,
          1.945552727446242,
          1.9523046466387637,
          1.9590565658312855,
          1.9658084850238071,
          1.9725604042163287,
          1.9793123234088505,
          1.9860642426013722,
          1.9928161617938938,
          1.9995680809864154,
          2.006320000178937,
          2.013071919371459,
          2.0198238385639806,
          2.0265757577565022,
          2.033327676949024,
          2.0400795961415454,
          2.046831515334067,
          2.053583434526589,
          2.0603353537191107,
          2.0670872729116323,
          2.073839192104154,
          2.0805911112966755,
          2.087343030489197,
          2.0940949496817187,
          2.1008468688742408,
          2.1075987880667624,
          2.114350707259284,
          2.1211026264518056,
          2.127854545644327,
          2.134606464836849,
          2.141358384029371,
          2.1481103032218924,
          2.154862222414414,
          2.1616141416069357,
          2.1683660607994573,
          2.175117979991979,
          2.1818698991845005,
          2.1886218183770225,
          2.195373737569544,
          2.2021256567620657,
          2.2088775759545873,
          2.215629495147109,
          2.2223814143396305,
          2.2291333335321526,
          2.235885252724674,
          2.242637171917196,
          2.2493890911097174,
          2.256141010302239,
          2.2628929294947606,
          2.2696448486872822,
          2.2763967678798043,
          2.283148687072326,
          2.2899006062648475,
          2.296652525457369,
          2.3034044446498907,
          2.3101563638424123,
          2.3169082830349343,
          2.323660202227456,
          2.3304121214199776,
          2.337164040612499,
          2.3439159598050208,
          2.3506678789975424,
          2.3574197981900644,
          2.364171717382586,
          2.3709236365751076,
          2.3776755557676292,
          2.384427474960151,
          2.3911793941526724,
          2.397931313345194,
          2.404683232537716,
          2.4114351517302377,
          2.4181870709227593,
          2.424938990115281,
          2.4316909093078025,
          2.438442828500324,
          2.445194747692846,
          2.4519466668853678,
          2.4586985860778894,
          2.465450505270411,
          2.4722024244629326,
          2.478954343655454,
          2.4857062628479762,
          2.492458182040498,
          2.4992101012330195,
          2.505962020425541,
          2.5127139396180627,
          2.5194658588105843,
          2.526217778003106,
          2.532969697195628,
          2.5397216163881495,
          2.546473535580671,
          2.5532254547731927,
          2.5599773739657143,
          2.566729293158236,
          2.573481212350758,
          2.5802331315432796,
          2.586985050735801,
          2.593736969928323,
          2.6004888891208444,
          2.607240808313366,
          2.6139927275058876,
          2.6207446466984097,
          2.6274965658909313,
          2.634248485083453,
          2.6410004042759745,
          2.647752323468496,
          2.6545042426610177,
          2.6612561618535397,
          2.6680080810460614,
          2.674760000238583,
          2.6815119194311046,
          2.688263838623626,
          2.6950157578161478,
          2.7017676770086694,
          2.7085195962011914,
          2.715271515393713,
          2.7220234345862346,
          2.7287753537787562,
          2.735527272971278,
          2.7422791921637995,
          2.7490311113563215,
          2.755783030548843,
          2.7625349497413647,
          2.7692868689338863,
          2.776038788126408,
          2.7827907073189295,
          2.7895426265114516,
          2.796294545703973,
          2.803046464896495,
          2.8097983840890164,
          2.816550303281538,
          2.8233022224740596,
          2.830054141666581,
          2.8368060608591033,
          2.843557980051625,
          2.8503098992441465,
          2.857061818436668,
          2.8638137376291897,
          2.8705656568217113,
          2.8773175760142333,
          2.884069495206755,
          2.8908214143992765,
          2.897573333591798,
          2.9043252527843197,
          2.9110771719768413,
          2.9178290911693634,
          2.924581010361885,
          2.9313329295544066,
          2.938084848746928,
          2.94483676793945,
          2.9515886871319714,
          2.958340606324493,
          2.965092525517015,
          2.9718444447095367,
          2.9785963639020583,
          2.98534828309458,
          2.9921002022871015,
          2.998852121479623,
          3.005604040672145,
          3.0123559598646668,
          3.0191078790571884,
          3.02585979824971,
          3.0326117174422316,
          3.039363636634753,
          3.046115555827275,
          3.052867475019797,
          3.0596193942123184,
          3.06637131340484,
          3.0731232325973616,
          3.0798751517898832,
          3.086627070982405,
          3.093378990174927,
          3.1001309093674485,
          3.10688282855997,
          3.1136347477524917,
          3.1203866669450133,
          3.127138586137535,
          3.1338905053300565,
          3.1406424245225786,
          3.1473943437151,
          3.154146262907622,
          3.1608981821001434,
          3.167650101292665,
          3.1744020204851866,
          3.1811539396777087,
          3.1879058588702303,
          3.194657778062752,
          3.2014096972552735,
          3.208161616447795,
          3.2149135356403167,
          3.2216654548328387,
          3.2284173740253603,
          3.235169293217882,
          3.2419212124104035,
          3.248673131602925,
          3.2554250507954468,
          3.2621769699879684,
          3.2689288891804904,
          3.275680808373012,
          3.2824327275655336,
          3.289184646758055,
          3.295936565950577,
          3.3026884851430984,
          3.3094404043356205,
          3.316192323528142,
          3.3229442427206637,
          3.3296961619131853,
          3.336448081105707,
          3.3432000002982285,
          3.3499519194907506,
          3.356703838683272,
          3.3634557578757938,
          3.3702076770683154,
          3.376959596260837,
          3.3837115154533586,
          3.39046343464588,
          3.3972153538384022,
          3.403967273030924,
          3.4107191922234454,
          3.417471111415967,
          3.4242230306084886,
          3.4309749498010103,
          3.4377268689935323,
          3.444478788186054,
          3.4512307073785755,
          3.457982626571097,
          3.4647345457636187,
          3.4714864649561403,
          3.478238384148662,
          3.484990303341184,
          3.4917422225337056,
          3.498494141726227,
          3.505246060918749,
          3.5119979801112704,
          3.518749899303792,
          3.525501818496314,
          3.5322537376888357,
          3.5390056568813573,
          3.545757576073879,
          3.5525094952664005,
          3.559261414458922,
          3.5660133336514437,
          3.5727652528439657,
          3.5795171720364873,
          3.586269091229009,
          3.5930210104215305,
          3.599772929614052,
          3.6065248488065738,
          3.613276767999096,
          3.6200286871916174,
          3.626780606384139,
          3.6335325255766606,
          3.6402844447691822,
          3.647036363961704,
          3.653788283154226,
          3.6605402023467475,
          3.667292121539269,
          3.6740440407317907,
          3.6807959599243123,
          3.687547879116834,
          3.6942997983093555,
          3.7010517175018776,
          3.707803636694399,
          3.7145555558869208,
          3.7213074750794424,
          3.728059394271964,
          3.7348113134644856,
          3.7415632326570076,
          3.7483151518495292,
          3.755067071042051,
          3.7618189902345724,
          3.768570909427094,
          3.7753228286196157,
          3.7820747478121377,
          3.7888266670046593,
          3.795578586197181,
          3.8023305053897025,
          3.809082424582224,
          3.8158343437747457,
          3.8225862629672673,
          3.8293381821597894,
          3.836090101352311,
          3.8428420205448326,
          3.849593939737354,
          3.856345858929876,
          3.8630977781223974,
          3.8698496973149195,
          3.876601616507441,
          3.8833535356999627,
          3.8901054548924843,
          3.896857374085006,
          3.9036092932775275,
          3.910361212470049,
          3.917113131662571,
          3.9238650508550927,
          3.9306169700476143,
          3.937368889240136,
          3.9441208084326576,
          3.950872727625179,
          3.957624646817701,
          3.964376566010223,
          3.9711284852027444,
          3.977880404395266,
          3.9846323235877876,
          3.9913842427803092,
          3.998136161972831,
          4.004888081165353,
          4.0116400003578745,
          4.018391919550396,
          4.025143838742919,
          4.03189575793544,
          4.038647677127962,
          4.045399596320483,
          4.052151515513005,
          4.058903434705527,
          4.065655353898048,
          4.07240727309057,
          4.079159192283091,
          4.085911111475613,
          4.092663030668135,
          4.099414949860656,
          4.106166869053179,
          4.1129187882457,
          4.119670707438222,
          4.1264226266307436,
          4.133174545823265,
          4.139926465015787,
          4.146678384208308,
          4.15343030340083,
          4.160182222593352,
          4.166934141785873,
          4.173686060978395,
          4.180437980170916,
          4.187189899363438,
          4.1939418185559605,
          4.200693737748482,
          4.207445656941004,
          4.214197576133525,
          4.220949495326047,
          4.2277014145185685,
          4.23445333371109,
          4.241205252903612,
          4.247957172096133,
          4.254709091288655,
          4.2614610104811765,
          4.268212929673698,
          4.27496484886622,
          4.281716768058742,
          4.288468687251264,
          4.2952206064437854,
          4.301972525636307,
          4.308724444828829,
          4.31547636402135,
          4.322228283213872,
          4.3289802024063935,
          4.335732121598915,
          4.342484040791437,
          4.349235959983958,
          4.35598787917648,
          4.3627397983690015,
          4.369491717561524,
          4.376243636754046,
          4.382995555946567,
          4.389747475139089,
          4.39649939433161,
          4.403251313524132,
          4.410003232716654,
          4.416755151909175,
          4.423507071101697,
          4.430258990294218,
          4.43701090948674,
          4.443762828679262,
          4.450514747871783,
          4.457266667064306,
          4.464018586256827,
          4.470770505449349,
          4.477522424641871,
          4.484274343834392,
          4.491026263026914,
          4.497778182219435,
          4.504530101411957,
          4.511282020604479,
          4.518033939797,
          4.524785858989522,
          4.531537778182043,
          4.538289697374565,
          4.5450416165670875,
          4.551793535759609,
          4.558545454952131,
          4.565297374144652,
          4.572049293337174,
          4.5788012125296955,
          4.585553131722217,
          4.592305050914739,
          4.59905697010726,
          4.605808889299782,
          4.6125608084923035,
          4.619312727684825,
          4.626064646877348,
          4.632816566069869,
          4.639568485262391,
          4.6463204044549125,
          4.653072323647434,
          4.659824242839956,
          4.666576162032477,
          4.673328081224999,
          4.6800800004175205,
          4.686831919610042,
          4.693583838802564,
          4.700335757995085,
          4.707087677187607,
          4.713839596380129,
          4.720591515572651,
          4.727343434765173,
          4.734095353957694,
          4.740847273150216,
          4.747599192342737,
          4.754351111535259,
          4.761103030727781,
          4.767854949920302,
          4.774606869112824,
          4.781358788305345,
          4.788110707497867,
          4.794862626690389,
          4.801614545882911,
          4.808366465075433,
          4.815118384267954,
          4.821870303460476,
          4.828622222652998,
          4.835374141845519,
          4.842126061038041,
          4.848877980230562,
          4.855629899423084,
          4.862381818615606,
          4.869133737808127,
          4.875885657000649,
          4.88263757619317,
          4.889389495385693,
          4.8961414145782145,
          4.902893333770736,
          4.909645252963258,
          4.916397172155779,
          4.923149091348301,
          4.9299010105408225,
          4.936652929733344,
          4.943404848925866,
          4.950156768118387,
          4.956908687310909,
          4.9636606065034306,
          4.970412525695953,
          4.977164444888475,
          4.983916364080996,
          4.990668283273518,
          4.9974202024660395,
          5.004172121658561,
          5.010924040851083,
          5.017675960043604,
          5.024427879236126,
          5.0311797984286475,
          5.037931717621169,
          5.044683636813691,
          5.051435556006212,
          5.058187475198735,
          5.064939394391256,
          5.071691313583778,
          5.0784432327763,
          5.085195151968821,
          5.091947071161343,
          5.098698990353864,
          5.105450909546386,
          5.112202828738908,
          5.118954747931429,
          5.125706667123951,
          5.1324585863164724,
          5.139210505508994,
          5.1459624247015165,
          5.152714343894038,
          5.15946626308656,
          5.166218182279081,
          5.172970101471603,
          5.179722020664125,
          5.186473939856646,
          5.193225859049168,
          5.199977778241689,
          5.206729697434211,
          5.213481616626733,
          5.220233535819254,
          5.226985455011776,
          5.233737374204298,
          5.24048929339682,
          5.2472412125893415,
          5.253993131781863,
          5.260745050974385,
          5.267496970166906,
          5.274248889359428,
          5.2810008085519495,
          5.287752727744471,
          5.294504646936993,
          5.301256566129514,
          5.308008485322036,
          5.314760404514558,
          5.32151232370708,
          5.328264242899602,
          5.335016162092123,
          5.341768081284645,
          5.3485200004771665,
          5.355271919669688,
          5.36202383886221,
          5.368775758054731,
          5.375527677247253,
          5.3822795964397745,
          5.389031515632296,
          5.395783434824818,
          5.402535354017339,
          5.409287273209862,
          5.416039192402383,
          5.422791111594905,
          5.429543030787427,
          5.436294949979948,
          5.44304686917247,
          5.449798788364991,
          5.456550707557513,
          5.463302626750035,
          5.470054545942556,
          5.476806465135078,
          5.4835583843275995,
          5.490310303520122,
          5.4970622227126436,
          5.503814141905165,
          5.510566061097687,
          5.517317980290208,
          5.52406989948273,
          5.530821818675252,
          5.537573737867773,
          5.544325657060295,
          5.551077576252816,
          5.557829495445338,
          5.56458141463786,
          5.571333333830381,
          5.578085253022904,
          5.584837172215425,
          5.591589091407947,
          5.5983410106004685,
          5.60509292979299,
          5.611844848985512,
          5.618596768178033,
          5.625348687370555,
          5.6321006065630765,
          5.638852525755598,
          5.64560444494812,
          5.652356364140641,
          5.659108283333163,
          5.6658602025256855,
          5.672612121718207,
          5.679364040910729,
          5.68611596010325,
          5.692867879295772,
          5.6996197984882935,
          5.706371717680815,
          5.713123636873337,
          5.719875556065858,
          5.72662747525838,
          5.7333793944509015,
          5.740131313643423,
          5.746883232835945,
          5.753635152028467,
          5.760387071220989,
          5.76713899041351,
          5.773890909606032,
          5.780642828798554,
          5.787394747991075,
          5.794146667183597,
          5.800898586376118,
          5.80765050556864,
          5.814402424761162,
          5.821154343953683,
          5.827906263146205,
          5.834658182338727,
          5.841410101531249,
          5.848162020723771,
          5.854913939916292,
          5.861665859108814,
          5.868417778301335,
          5.875169697493857,
          5.881921616686379,
          5.8886735358789,
          5.895425455071422,
          5.902177374263943,
          5.908929293456465,
          5.915681212648987,
          5.922433131841509,
          5.929185051034031,
          5.935936970226552,
          5.942688889419074,
          5.9494408086115955,
          5.956192727804117,
          5.962944646996639,
          5.96969656618916,
          5.976448485381682,
          5.9832004045742035,
          5.989952323766725,
          5.996704242959247,
          6.003456162151768,
          6.010208081344291,
          6.0169600005368125,
          6.023711919729334,
          6.030463838921856,
          6.037215758114377,
          6.043967677306899,
          6.0507195964994205,
          6.057471515691942,
          6.064223434884464,
          6.070975354076985,
          6.077727273269507,
          6.0844791924620285,
          6.09123111165455,
          6.097983030847073,
          6.104734950039594,
          6.111486869232116,
          6.118238788424637,
          6.124990707617159,
          6.131742626809681,
          6.138494546002202,
          6.145246465194724,
          6.1519983843872454,
          6.158750303579767,
          6.165502222772289,
          6.17225414196481,
          6.179006061157332,
          6.185757980349854,
          6.192509899542376,
          6.199261818734898,
          6.206013737927419,
          6.212765657119941,
          6.219517576312462,
          6.226269495504984,
          6.233021414697506,
          6.239773333890027,
          6.246525253082549,
          6.25327717227507,
          6.260029091467592,
          6.266781010660114,
          6.273532929852636,
          6.280284849045158,
          6.287036768237679,
          6.293788687430201,
          6.3005406066227225,
          6.307292525815244,
          6.314044445007766,
          6.320796364200287,
          6.327548283392809,
          6.3343002025853306,
          6.341052121777852,
          6.347804040970374,
          6.354555960162896,
          6.361307879355418,
          6.3680597985479395,
          6.374811717740461,
          6.381563636932983,
          6.388315556125504,
          6.395067475318026,
          6.4018193945105475,
          6.408571313703069,
          6.415323232895591,
          6.422075152088112,
          6.428827071280634,
          6.4355789904731555,
          6.442330909665678,
          6.4490828288582,
          6.455834748050721,
          6.462586667243243,
          6.469338586435764,
          6.476090505628286,
          6.482842424820808,
          6.489594344013329,
          6.496346263205851,
          6.5030981823983725,
          6.509850101590894,
          6.516602020783416,
          6.523353939975937,
          6.53010585916846,
          6.536857778360981,
          6.543609697553503,
          6.550361616746025,
          6.557113535938546,
          6.563865455131068,
          6.570617374323589,
          6.577369293516111,
          6.584121212708633,
          6.590873131901154,
          6.597625051093676,
          6.604376970286197,
          6.611128889478719,
          6.6178808086712415,
          6.624632727863763,
          6.631384647056285,
          6.638136566248806,
          6.644888485441328,
          6.6516404046338495,
          6.658392323826371,
          6.665144243018893,
          6.671896162211414,
          6.678648081403936,
          6.685400000596458,
          6.692151919788979,
          6.698903838981502,
          6.705655758174023,
          6.712407677366545,
          6.7191595965590665,
          6.725911515751588,
          6.73266343494411,
          6.739415354136631,
          6.746167273329153
         ],
         "xaxis": "x",
         "y": [
          3.1722034237235555,
          2.071618325810873,
          1.8034542339933184,
          1.6506417023008615,
          1.5444312016688104,
          1.4632520794277064,
          1.397624238594401,
          1.3425658309201631,
          1.2951450526516042,
          1.2534951340254066,
          1.216356213457561,
          1.1828390235527702,
          1.152293090952976,
          1.1242285849944633,
          1.0982676309494335,
          1.0741127176839655,
          1.051525484114018,
          1.0303120533175236,
          1.0103126350284104,
          0.9913939907663383,
          0.9734438670662201,
          0.95636681175316,
          0.9400809812279798,
          0.9245156703312224,
          0.9096093773909201,
          0.8953082713262643,
          0.8815649647208058,
          0.8683375225055727,
          0.8555886540460789,
          0.8432850494242273,
          0.8313968301363648,
          0.8198970913558513,
          0.8087615180552714,
          0.7979680611480912,
          0.7874966627402913,
          0.7773290218255214,
          0.767448393488834,
          0.7578394160315528,
          0.7484879614864541,
          0.7393810058269072,
          0.7305065158371012,
          0.7218533501413764,
          0.713411172318032,
          0.7051703743689672,
          0.69712200909814,
          0.6892577301822331,
          0.6815697389063733,
          0.6740507366942241,
          0.6666938826916115,
          0.6594927557710194,
          0.6524413204148023,
          0.6455338960109639,
          0.6387651291594384,
          0.6321299686410061,
          0.6256236427470013,
          0.619241638707152,
          0.6129796839863784,
          0.6068337292500675,
          0.6007999328220017,
          0.5948746464803714,
          0.5890544024556709,
          0.5833359015101919,
          0.5777160019926496,
          0.5721917097735197,
          0.5667601689771659,
          0.5614186534360333,
          0.5561645588002401,
          0.5509953952429771,
          0.5459087807083634,
          0.5409024346538995,
          0.5359741722445265,
          0.5311218989595957,
          0.526343605577879,
          0.5216373635091384,
          0.5170013204437983,
          0.512433696294954,
          0.5079327794093604,
          0.5034969230261933,
          0.4991245419643081,
          0.4948141095204492,
          0.4905641545624182,
          0.4863732588026117,
          0.48224005423859423,
          0.4781632207485186,
          0.4741414838302254,
          0.47017361247378964,
          0.4662584171581218,
          0.46239474796299646,
          0.45858149278857396,
          0.45481757567511255,
          0.45110195521614144,
          0.4474336230588885,
          0.44381160248623386,
          0.4402349470748941,
          0.4367027394249425,
          0.4332140899561324,
          0.4297681357668262,
          0.42636403955163527,
          0.4230009885741612,
          0.41967819369147996,
          0.4163948884272549,
          0.4131503280905736,
          0.40994378893781325,
          0.4067745673750164,
          0.40364197919843325,
          0.40054535887104536,
          0.39748405883302546,
          0.39445744884422934,
          0.3914649153569349,
          0.38850586091716177,
          0.38557970359300947,
          0.38268587642855273,
          0.3798238269219241,
          0.376993016526298,
          0.3741929201725718,
          0.37142302581261055,
          0.36868283398199475,
          0.3659718573812676,
          0.36328962047474683,
          0.36063565910601286,
          0.3580095201292422,
          0.3554107610556025,
          0.3528389497139681,
          0.35029366392526173,
          0.3477744911897625,
          0.3452810283867613,
          0.34281288148597633,
          0.34036966527017626,
          0.33795100306848624,
          0.3355565264998837,
          0.333185875226414,
          0.330838696715684,
          0.32851464601221286,
          0.3262133855172436,
          0.32393458477663817,
          0.3216779202764985,
          0.3194430752461752,
          0.31722973946834254,
          0.3150376090958333,
          0.31286638647494536,
          0.31071577997494354,
          0.3085855038234956,
          0.30647527794779217,
          0.30438482782111626,
          0.30231388431463563,
          0.30026218355420314,
          0.29822946678196366,
          0.29621548022256927,
          0.29421997495382146,
          0.2922427067815611,
          0.2902834361186392,
          0.2883419278678075,
          0.2864179513083753,
          0.28451127998648773,
          0.28262169160888473,
          0.2807489679400071,
          0.2788928947023237,
          0.2770532614797578,
          0.2752298616240946,
          0.2734224921642608,
          0.2716309537183698,
          0.26985505040842855,
          0.26809458977761114,
          0.26634938271000513,
          0.2646192433527403,
          0.26290398904041595,
          0.26120344022174413,
          0.25951742038832937,
          0.25784575600551163,
          0.2561882764451985,
          0.25454481392061884,
          0.2529152034229298,
          0.2512992826596153,
          0.24969689199461448,
          0.2481078743901193,
          0.24653207534998842,
          0.24496934286472052,
          0.2434195273579356,
          0.24188248163431517,
          0.24035806082895272,
          0.23884612235806738,
          0.2373465258710381,
          0.23585913320371393,
          0.23438380833296074,
          0.23292041733240326,
          0.23146882832932605,
          0.2300289114626952,
          0.22860053884226625,
          0.2271835845087445,
          0.2257779243949645,
          0.22438343628805682,
          0.22299999979257293,
          0.2216274962945376,
          0.22026580892640113,
          0.21891482253286393,
          0.21757442363754761,
          0.21624450041048668,
          0.21492494263641615,
          0.21361564168383307,
          0.21231649047480627,
          0.21102738345551555,
          0.20974821656749654,
          0.20847888721957222,
          0.2072192942604502,
          0.2059693379519676,
          0.20472891994296455,
          0.20349794324376785,
          0.20227631220126877,
          0.20106393247457707,
          0.19986071101123576,
          0.19866655602398076,
          0.1974813769680305,
          0.19630508451889003,
          0.195137590550657,
          0.19397880811481444,
          0.19282865141949745,
          0.19168703580922145,
          0.1905538777450589,
          0.18942909478525294,
          0.1883126055662558,
          0.18720432978418133,
          0.18610418817666008,
          0.18501210250508673,
          0.18392799553724937,
          0.18285179103033097,
          0.18178341371427284,
          0.1807227892754913,
          0.17966984434093822,
          0.1786245064624966,
          0.1775867041017027,
          0.17655636661478655,
          0.1755334242380223,
          0.1745178080733815,
          0.17350945007448113,
          0.17250828303281887,
          0.17151424056428896,
          0.1705272570959715,
          0.16954726785318858,
          0.16857420884682048,
          0.1676080168608756,
          0.16664862944030862,
          0.16569598487907997,
          0.16475002220845103,
          0.16381068118551023,
          0.16287790228192345,
          0.1619516266729037,
          0.1610317962263958,
          0.16011835349246936,
          0.15921124169291662,
          0.15831040471104973,
          0.15741578708169277,
          0.15652733398136418,
          0.15564499121864547,
          0.15476870522473113,
          0.1538984230441565,
          0.1530340923256991,
          0.15217566131344942,
          0.1513230788380474,
          0.15047629430808124,
          0.14963525770164438,
          0.1487999195580473,
          0.14797023096968073,
          0.14714614357402725,
          0.1463276095458172,
          0.1455145815893266,
          0.14470701293081328,
          0.1439048573110888,
          0.14310806897822276,
          0.14231660268037674,
          0.14153041365876545,
          0.14074945764074154,
          0.13997369083300246,
          0.13920306991491607,
          0.13843755203196234,
          0.13767709478928966,
          0.13692165624538202,
          0.13617119490583587,
          0.1354256697172437,
          0.13468504006118254,
          0.13394926574830465,
          0.13321830701252887,
          0.13249212450533038,
          0.1317706792901266,
          0.13105393283675762,
          0.13034184701605891,
          0.12963438409452485,
          0.1289315067290607,
          0.12823317796182176,
          0.1275393612151378,
          0.12685002028652037,
          0.1261651193437531,
          0.12548462292006116,
          0.12480849590935966,
          0.12413670356157959,
          0.1234692114780688,
          0.12280598560706713,
          0.12214699223925446,
          0.12149219800336973,
          0.12084156986189995,
          0.120195075106838,
          0.11955268135550663,
          0.11891435654644973,
          0.11828006893538723,
          0.11764978709123378,
          0.11702347989217958,
          0.11640111652183259,
          0.11578266646541995,
          0.11516809950604859,
          0.11455738572102381,
          0.11395049547822352,
          0.113347399432529,
          0.11274806852230962,
          0.11215247396596133,
          0.11156058725849727,
          0.11097238016819036,
          0.11038782473326642,
          0.10980689325864683,
          0.10922955831273978,
          0.10865579272428033,
          0.1080855695792163,
          0.10751886221764116,
          0.106955644230772,
          0.10639588945797218,
          0.10583957198381762,
          0.10528666613520618,
          0.1047371464785093,
          0.10419098781676481,
          0.10364816518691089,
          0.10310865385705995,
          0.10257242932381151,
          0.10203946730960432,
          0.10150974376010613,
          0.10098323484164068,
          0.10045991693865146,
          0.09993976665120163,
          0.09942276079250947,
          0.09890887638651817,
          0.09839809066550034,
          0.09789038106769601,
          0.09738572523498361,
          0.09688410101058341,
          0.09638548643679351,
          0.09588985975275627,
          0.09539719939225656,
          0.0949074839815501,
          0.09442069233722115,
          0.0939368034640708,
          0.09345579655303263,
          0.09297765097911838,
          0.09250234629939015,
          0.0920298622509614,
          0.0915601787490236,
          0.09109327588490101,
          0.09062913392413048,
          0.09016773330456732,
          0.08970905463451696,
          0.08925307869089079,
          0.08879978641738731,
          0.08834915892269676,
          0.08790117747872968,
          0.08745582351886934,
          0.08701307863624634,
          0.08657292458203644,
          0.0861353432637807,
          0.08570031674372698,
          0.08526782723719363,
          0.08483785711095419,
          0.08441038888164296,
          0.08398540521418112,
          0.08356288892022344,
          0.08314282295662453,
          0.08272519042392497,
          0.08230997456485674,
          0.08189715876286768,
          0.08148672654066477,
          0.0810786615587758,
          0.08067294761412924,
          0.08026956863865202,
          0.07986850869788507,
          0.07946975198961605,
          0.07907328284252924,
          0.0786790857148724,
          0.07828714519314015,
          0.07789744599077371,
          0.07750997294687664,
          0.0771247110249466,
          0.07674164531162281,
          0.07636076101544866,
          0.07598204346564967,
          0.07560547811092656,
          0.0752310505182625,
          0.07485874637174549,
          0.07448855147140478,
          0.0741204517320614,
          0.07375443318219242,
          0.0733904819628094,
          0.07302858432634964,
          0.07266872663558123,
          0.07231089536252125,
          0.07195507708736634,
          0.07160125849743672,
          0.07124942638613208,
          0.07089956765190057,
          0.0705516692972192,
          0.07020571842758681,
          0.06986170225052889,
          0.06951960807461369,
          0.06917942330848031,
          0.06884113545987781,
          0.06850473213471579,
          0.06817020103612569,
          0.06783752996353334,
          0.06750670681174215,
          0.06717771957002659,
          0.06685055632123665,
          0.06652520524091213,
          0.06620165459640724,
          0.06587989274602549,
          0.065559908138164,
          0.06524168931046781,
          0.06492522488899398,
          0.06461050358738478,
          0.0642975142060506,
          0.06398624563136174,
          0.06367668683484962,
          0.0633688268724169,
          0.06306265488355635,
          0.0627581600905785,
          0.06245533179784795,
          0.06215415939102829,
          0.06185463233633516,
          0.06155674017979787,
          0.06126047254652905,
          0.060965819140002396,
          0.06067276974133846,
          0.060381314208598,
          0.06009144247608359,
          0.05980314455364838,
          0.05951641052601286,
          0.05923123055208852,
          0.05894759486430961,
          0.05866549376797138,
          0.05838491764057611,
          0.05810585693118592,
          0.05782830215978245,
          0.05755224391663377,
          0.05727767286166803,
          0.0570045797238534,
          0.056732955300585225,
          0.05646279045707941,
          0.05619407612577232,
          0.055926803305727024,
          0.055660963062046084,
          0.055396546525290184,
          0.05513354489090317,
          0.05487194941864314,
          0.054611751432019365,
          0.054352942317735416,
          0.05409551352513768,
          0.05383945656567028,
          0.05358476301233499,
          0.0533314244991573,
          0.05307943272065787,
          0.05282877943132938,
          0.05257945644511899,
          0.052331455634915855,
          0.052084768932044403,
          0.051839388325762285,
          0.05159530586276394,
          0.051352513646688996,
          0.051111003837635734,
          0.05087076865167972,
          0.05063180036039704,
          0.05039409129039266,
          0.050157633822833454,
          0.04992242039298595,
          0.04968844348975879,
          0.04945569565524996,
          0.04922416948429825,
          0.0489938576240395,
          0.048764752773467326,
          0.04853684768299801,
          0.04831013515403998,
          0.048084608038567525,
          0.04786025923869867,
          0.047637081706277375,
          0.04741506844245987,
          0.04719421249730497,
          0.04697450696936862,
          0.04675594500530232,
          0.046538519799455565,
          0.04632222459348219,
          0.04610705267595066,
          0.0458929973819579,
          0.04568005209274739,
          0.04546821023533048,
          0.04525746528211174,
          0.045047810750517926,
          0.04483924020263036,
          0.04463174724482102,
          0.04442532552739221,
          0.044219968744219566,
          0.04401567063239865,
          0.04381242497189481,
          0.043610225585196574,
          0.04340906633697217,
          0.043208941133729535,
          0.04300984392347941,
          0.04281176869540187,
          0.04261470947951574,
          0.042418660346351396,
          0.04222361540662661,
          0.04202956881092543,
          0.04183651474938007,
          0.04164444745135598,
          0.041453361185139675,
          0.041263250257629634,
          0.04107410901403011,
          0.04088593183754764,
          0.040698713149090786,
          0.040512447406972185,
          0.04032712910661378,
          0.04014275278025458,
          0.039959312996661306,
          0.039776804360841536,
          0.03959522151375973,
          0.03941455913205561,
          0.039234811927765435,
          0.039055974648045694,
          0.03887804207489931,
          0.038701009024904504,
          0.03852487034894599,
          0.03834962093194878,
          0.038175255692614374,
          0.03800176958315925,
          0.03782915758905591,
          0.037657414728776296,
          0.03748653605353734,
          0.03731651664704892,
          0.03714735162526431,
          0.03697903613613255,
          0.03681156535935326,
          0.03664493450613367,
          0.0364791388189477,
          0.036314173571297396,
          0.036150034067476335,
          0.03598671564233527,
          0.035824213661049834,
          0.0356625235188903,
          0.035501640640993454,
          0.03534156048213643,
          0.03518227852651256,
          0.035023790287509377,
          0.03486609130748829,
          0.03470917715756652,
          0.03455304343740074,
          0.03439768577497276,
          0.034243099826376994,
          0.03408928127560993,
          0.03393622583436129,
          0.03378392924180722,
          0.03363238726440509,
          0.0334815956956902,
          0.033331550356074297,
          0.03318224709264571,
          0.03303368177897141,
          0.03288585031490059,
          0.0327387486263702,
          0.032592372665211845,
          0.03244671840896072,
          0.03230178186066584,
          0.032157559048702225,
          0.03201404602658445,
          0.03187123887278201,
          0.0317291336905361,
          0.03158772660767805,
          0.03144701377644931,
          0.03130699137332303,
          0.031167655598827018,
          0.031029002677368325,
          0.030891028857059334,
          0.030753730409545297,
          0.03061710362983326,
          0.030481144836122544,
          0.030345850369636718,
          0.030211216594456757,
          0.030077239897355876,
          0.029943916687635585,
          0.029811243396963234,
          0.029679216479210763,
          0.02954783241029502,
          0.02941708768801933,
          0.029286978831916218,
          0.029157502383091814,
          0.029028654904071194,
          0.028900432978645228,
          0.02877283321171861,
          0.02864585222915928,
          0.028519486677648843,
          0.028393733224534493,
          0.028268588557682085,
          0.028144049385330282,
          0.028020112435946123,
          0.027896774458081638,
          0.02777403222023171,
          0.02765188251069301,
          0.0275303221374243,
          0.02740934792790758,
          0.027288956729010726,
          0.0271691454068509,
          0.027049910846659336,
          0.02693124995264711,
          0.026813159647872023,
          0.02669563687410662,
          0.026578678591707174,
          0.026462281779483808,
          0.02634644343457175,
          0.026231160572303385,
          0.026116430226081642,
          0.026002249447254173,
          0.025888615304988653,
          0.025775524886149044,
          0.02566297529517298,
          0.02555096365394985,
          0.025439487101700197,
          0.025328542794855833,
          0.025218127906941112,
          0.02510823962845487,
          0.024998875166753698,
          0.02489003174593576,
          0.024781706606725816,
          0.02467389700636101,
          0.024566600218477577,
          0.02445981353299856,
          0.024353534256022245,
          0.02424775970971166,
          0.024142487232184765,
          0.024037714177405665,
          0.023933437915076596,
          0.023829655830530764,
          0.023726365324626072,
          0.023623563813639628,
          0.02352124872916313,
          0.023419417517999017,
          0.023318067642057485,
          0.02321719657825427,
          0.023116801818409267,
          0.023016880869145835,
          0.02291743125179113,
          0.02281845050227685,
          0.02271993617104108,
          0.022621885822930753,
          0.02252429703710482,
          0.022427167406938318,
          0.022330494539927005,
          0.02223427605759289,
          0.022138509595390373,
          0.022043192802613187,
          0.02194832334230199,
          0.021853898891152735,
          0.021759917139425686,
          0.021666375790855175,
          0.021573272562559986,
          0.021480605184954517,
          0.021388371401660538,
          0.021296568969419675,
          0.021205195658006517,
          0.021114249250142422,
          0.02102372754140997,
          0.020933628340168056,
          0.0208439494674676,
          0.020754688756967975,
          0.020665844054853978,
          0.020577413219753482,
          0.020489394122655716,
          0.02040178464683011,
          0.0203145826877458,
          0.0202277861529917,
          0.020141392962197212,
          0.02005540104695353,
          0.019969808350735477,
          0.019884612828824026,
          0.019799812448229252,
          0.019715405187614072,
          0.019631389037218335,
          0.01954776199878358,
          0.019464522085478456,
          0.01938166732182445,
          0.019299195743622377,
          0.019217105397879373,
          0.019135394342736332,
          0.019054060647395992,
          0.01897310239205154,
          0.01889251766781564,
          0.01881230457665013,
          0.018732461231296117,
          0.018652985755204684,
          0.018573876282468014,
          0.0184951309577511,
          0.018416747936223932,
          0.018338725383494108,
          0.018261061475540078,
          0.018183754398644753,
          0.018106802349329647,
          0.018030203534289566,
          0.01795395617032759,
          0.01787805848429076,
          0.01780250871300602,
          0.017727305103216833,
          0.01765244591152002,
          0.017577929404303284,
          0.01750375385768302,
          0.017429917557442748,
          0.017356418798971724,
          0.017283255887204294,
          0.017210427136559476,
          0.01713793087088106,
          0.01706576542337814,
          0.016993929136566093,
          0.016922420362207834,
          0.016851237461255754,
          0.01678037880379383,
          0.016709842768980333,
          0.01663962774499074,
          0.016569732128961276,
          0.01650015432693274,
          0.01643089275379476,
          0.016361945833230338,
          0.01629331199766104,
          0.016224989688192335,
          0.01615697735455938,
          0.016089273455073317,
          0.016021876456567764,
          0.015954784834345828,
          0.015887997072127402,
          0.01582151166199693,
          0.015755327104351402,
          0.015689441907848874,
          0.015623854589357234,
          0.015558563673903332,
          0.01549356769462259,
          0.015428865192708814,
          0.015364454717364476,
          0.015300334825751195,
          0.015236504082940775,
          0.015172961061866429,
          0.01510970434327437,
          0.015046732515675747,
          0.014984044175298994,
          0.01492163792604239,
          0.01485951237942699,
          0.014797666154549959,
          0.014736097878038104,
          0.014674806184001826,
          0.014613789713989349,
          0.01455304711694131,
          0.014492577049145557,
          0.014432378174192377,
          0.014372449162929988,
          0.014312788693420363,
          0.014253395450895238,
          0.014194268127712635,
          0.014135405423313485,
          0.014076806044178667,
          0.014018468703786327,
          0.013960392122569401,
          0.013902575027873572,
          0.013845016153915398,
          0.013787714241740785,
          0.01373066803918372,
          0.01367387630082529,
          0.013617337787953031,
          0.01356105126852043,
          0.013505015517106844,
          0.013449229314877603,
          0.013393691449544406,
          0.013338400715326005,
          0.01328335591290915,
          0.013228555849409728,
          0.013173999338334312,
          0.01311968519954183,
          0.013065612259205559,
          0.01301177934977538,
          0.01295818530994025,
          0.012904828984590947,
          0.012851709224783112,
          0.012798824887700452,
          0.012746174836618234,
          0.012693757940867042,
          0.012641573075796799,
          0.012589619122740892,
          0.012537894968980725,
          0.012486399507710364,
          0.012435131638001539,
          0.012384090264768756,
          0.01233327429873473,
          0.012282682656395998,
          0.012232314259988808,
          0.012182168037455216,
          0.012132242922409405,
          0.012082537854104144,
          0.012033051777397719,
          0.011983783642720723,
          0.011934732406043412,
          0.011885897028843054,
          0.011837276478071562,
          0.011788869726123368,
          0.011740675750803472,
          0.011692693535295735,
          0.011644922068131329,
          0.011597360343157418,
          0.011550007359506129,
          0.011502862121563567,
          0.011455923638939129,
          0.011409190926435078,
          0.011362663004016189,
          0.011316338896779639,
          0.011270217634925143,
          0.01122429825372525,
          0.011178579793495827,
          0.01113306129956671,
          0.01108774182225261,
          0.011042620416824203,
          0.010997696143479323,
          0.010952968067314444,
          0.010908435258296276,
          0.010864096791233612,
          0.010819951745749285,
          0.010775999206252355,
          0.010732238261910488,
          0.01068866800662246,
          0.010645287538990859,
          0.01060209596229499,
          0.01055909238446399,
          0.010516275918049947,
          0.010473645680201427,
          0.01043120079263698,
          0.01038894038161893,
          0.010346863577927278,
          0.010304969516833795,
          0.010263257338076285,
          0.010221726185832973,
          0.010180375208697141,
          0.010139203559651807,
          0.010098210396044706,
          0.0100573948795633,
          0.01001675617621003,
          0.009976293456277726,
          0.009936005894325084,
          0.009895892669152447,
          0.009855952963777588,
          0.009816185965411763,
          0.00977659086543585,
          0.009737166859376674,
          0.009697913146883464,
          0.009658828931704461,
          0.009619913421663663,
          0.009581165828637763,
          0.00954258536853321,
          0.009504171261263353,
          0.009465922730725834,
          0.009427839004780043,
          0.009389919315224775,
          0.009352162897775986,
          0.009314568992044685,
          0.009277136841515002,
          0.009239865693522384,
          0.009202754799231862,
          0.009165803413616601,
          0.009129010795436421,
          0.009092376207216544,
          0.009055898915226466,
          0.00901957818945897,
          0.008983413303609192,
          0.008947403535053942,
          0.008911548164831059,
          0.008875846477618916,
          0.00884029776171609,
          0.008804901309021125,
          0.008769656415012407,
          0.008734562378728196,
          0.008699618502746781,
          0.008664824093166726,
          0.008630178459587292,
          0.008595680915088928,
          0.008561330776213896,
          0.008527127362947041,
          0.00849306999869666,
          0.008459158010275511,
          0.008425390727881845,
          0.008391767485080746,
          0.008358287618785388,
          0.008324950469238505,
          0.00829175537999399,
          0.008258701697898548,
          0.008225788773073499,
          0.00819301595889671,
          0.008160382611984573,
          0.008127888092174167,
          0.0080955317625055,
          0.008063312989203816,
          0.008031231141662107,
          0.007999285592423624,
          0.007967475717164598,
          0.007935800894676985,
          0.007904260506851338,
          0.007872853938659826,
          0.0078415805781393,
          0.007810439816374502,
          0.0077794310474813355,
          0.007748553668590288,
          0.007717807079829931,
          0.007687190684310479,
          0.007656703888107534,
          0.007626346100245862,
          0.00759611673268329,
          0.007566015200294683,
          0.007536040920856074,
          0.007506193315028803,
          0.007476471806343825,
          0.007446875821186095,
          0.0074174047887790055,
          0.007388058141168989,
          0.007358835313210138,
          0.007329735742548993,
          0.007300758869609364,
          0.007271904137577245,
          0.0072431709923858915,
          0.007214558882700875,
          0.007186067259905325,
          0.007157695578085208,
          0.007129443294014698,
          0.007101309867141671,
          0.007073294759573232,
          0.007045397436061366,
          0.007017617363988667,
          0.006989954013354171,
          0.006962406856759181,
          0.006934975369393357,
          0.006907659029020684,
          0.0068804573159656724,
          0.006853369713099579,
          0.006826395705826709,
          0.006799534782070817,
          0.0067727864322615645,
          0.0067461501493211295,
          0.006719625428650758,
          0.006693211768117548,
          0.006666908668041217,
          0.006640715631180963,
          0.0066146321627224185,
          0.00658865777026469,
          0.006562791963807457,
          0.006537034255738132,
          0.006511384160819122,
          0.006485841196175182,
          0.006460404881280792,
          0.006435074737947638,
          0.006409850290312183,
          0.006384731064823277,
          0.00635971659022985,
          0.006334806397568693,
          0.006310000020152313,
          0.0062852969935567994,
          0.006260696855609883,
          0.006236199146378913,
          0.0062118034081590405,
          0.00618750918546137,
          0.006163316025001263,
          0.00613922347568664,
          0.0061152310886063935,
          0.0060913384170188396,
          0.006067545016340285,
          0.006043850444133606,
          0.006020254260096911,
          0.005996756026052296,
          0.005973355305934629,
          0.00595005166578042,
          0.005926844673716754,
          0.005903733899950272,
          0.005880718916756247,
          0.005857799298467707,
          0.005834974621464581,
          0.0058122444641629965,
          0.005789608407004557,
          0.005767066032445732,
          0.005744616924947266,
          0.005722260670963701,
          0.005699996858932909,
          0.0056778250792657095,
          0.0056557449243355516,
          0.005633755988468248,
          0.005611857867931767,
          0.005590050160926077,
          0.005568332467573057,
          0.005546704389906474,
          0.005525165531862016,
          0.005503715499267339,
          0.005482353899832257,
          0.005461080343138891
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>k</i>=1; <i>λ</i>=1.5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>k</i>=1; <i>λ</i>=1.5",
         "line": {
          "color": "#00cc96",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>k</i>=1; <i>λ</i>=1.5",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.0037697551201426676,
          0.006539510240285335,
          0.009309265360428004,
          0.01207902048057067,
          0.014848775600713338,
          0.017618530720856007,
          0.020388285840998673,
          0.02315804096114134,
          0.02592779608128401,
          0.028697551201426676,
          0.03146730632156934,
          0.03423706144171201,
          0.03700681656185468,
          0.039776571681997344,
          0.042546326802140016,
          0.04531608192228268,
          0.04808583704242535,
          0.05085559216256802,
          0.053625347282710685,
          0.05639510240285335,
          0.05916485752299602,
          0.06193461264313869,
          0.06470436776328135,
          0.06747412288342403,
          0.07024387800356668,
          0.07301363312370936,
          0.07578338824385203,
          0.07855314336399469,
          0.08132289848413736,
          0.08409265360428003,
          0.08686240872442269,
          0.08963216384456536,
          0.09240191896470804,
          0.0951716740848507,
          0.09794142920499337,
          0.10071118432513604,
          0.1034809394452787,
          0.10625069456542137,
          0.10902044968556404,
          0.1117902048057067,
          0.11455995992584937,
          0.11732971504599204,
          0.1200994701661347,
          0.12286922528627738,
          0.12563898040642005,
          0.1284087355265627,
          0.13117849064670536,
          0.13394824576684805,
          0.1367180008869907,
          0.13948775600713337,
          0.14225751112727605,
          0.1450272662474187,
          0.14779702136756137,
          0.15056677648770406,
          0.15333653160784672,
          0.15610628672798937,
          0.15887604184813206,
          0.16164579696827472,
          0.16441555208841738,
          0.16718530720856006,
          0.16995506232870272,
          0.17272481744884538,
          0.17549457256898807,
          0.17826432768913072,
          0.18103408280927338,
          0.18380383792941607,
          0.18657359304955873,
          0.1893433481697014,
          0.19211310328984407,
          0.19488285840998673,
          0.1976526135301294,
          0.20042236865027208,
          0.20319212377041473,
          0.2059618788905574,
          0.20873163401070008,
          0.21150138913084274,
          0.2142711442509854,
          0.21704089937112808,
          0.21981065449127074,
          0.2225804096114134,
          0.22535016473155609,
          0.22811991985169874,
          0.2308896749718414,
          0.2336594300919841,
          0.23642918521212675,
          0.2391989403322694,
          0.2419686954524121,
          0.24473845057255475,
          0.2475082056926974,
          0.2502779608128401,
          0.25304771593298275,
          0.2558174710531254,
          0.25858722617326807,
          0.26135698129341073,
          0.26412673641355344,
          0.2668964915336961,
          0.26966624665383876,
          0.2724360017739814,
          0.2752057568941241,
          0.27797551201426673,
          0.28074526713440945,
          0.2835150222545521,
          0.28628477737469477,
          0.2890545324948374,
          0.2918242876149801,
          0.29459404273512274,
          0.29736379785526545,
          0.3001335529754081,
          0.30290330809555077,
          0.30567306321569343,
          0.3084428183358361,
          0.31121257345597875,
          0.31398232857612146,
          0.3167520836962641,
          0.3195218388164068,
          0.32229159393654944,
          0.3250613490566921,
          0.32783110417683475,
          0.33060085929697747,
          0.3333706144171201,
          0.3361403695372628,
          0.33891012465740544,
          0.3416798797775481,
          0.34444963489769076,
          0.3472193900178335,
          0.34998914513797613,
          0.3527589002581188,
          0.35552865537826145,
          0.3582984104984041,
          0.36106816561854677,
          0.3638379207386894,
          0.36660767585883214,
          0.3693774309789748,
          0.37214718609911746,
          0.3749169412192601,
          0.37768669633940277,
          0.38045645145954543,
          0.38322620657968814,
          0.3859959616998308,
          0.38876571681997346,
          0.3915354719401161,
          0.3943052270602588,
          0.39707498218040144,
          0.39984473730054415,
          0.4026144924206868,
          0.40538424754082947,
          0.4081540026609721,
          0.4109237577811148,
          0.41369351290125744,
          0.41646326802140016,
          0.4192330231415428,
          0.4220027782616855,
          0.42477253338182813,
          0.4275422885019708,
          0.43031204362211345,
          0.43308179874225616,
          0.4358515538623988,
          0.4386213089825415,
          0.44139106410268414,
          0.4441608192228268,
          0.44693057434296946,
          0.44970032946311217,
          0.45247008458325483,
          0.4552398397033975,
          0.45800959482354014,
          0.4607793499436828,
          0.46354910506382546,
          0.4663188601839682,
          0.46908861530411083,
          0.4718583704242535,
          0.47462812554439615,
          0.4773978806645388,
          0.48016763578468147,
          0.4829373909048242,
          0.48570714602496684,
          0.4884769011451095,
          0.49124665626525216,
          0.4940164113853948,
          0.4967861665055375,
          0.4995559216256802,
          0.5023256767458228,
          0.5050954318659655,
          0.5078651869861082,
          0.5106349421062508,
          0.5134046972263935,
          0.5161744523465361,
          0.5189442074666788,
          0.5217139625868215,
          0.5244837177069642,
          0.5272534728271069,
          0.5300232279472495,
          0.5327929830673922,
          0.5355627381875349,
          0.5383324933076775,
          0.5411022484278202,
          0.5438720035479628,
          0.5466417586681055,
          0.5494115137882482,
          0.5521812689083908,
          0.5549510240285335,
          0.5577207791486761,
          0.5604905342688189,
          0.5632602893889616,
          0.5660300445091042,
          0.5687997996292469,
          0.5715695547493895,
          0.5743393098695322,
          0.5771090649896748,
          0.5798788201098175,
          0.5826485752299602,
          0.5854183303501028,
          0.5881880854702455,
          0.5909578405903881,
          0.5937275957105309,
          0.5964973508306736,
          0.5992671059508162,
          0.6020368610709589,
          0.6048066161911015,
          0.6075763713112442,
          0.6103461264313869,
          0.6131158815515295,
          0.6158856366716722,
          0.6186553917918148,
          0.6214251469119575,
          0.6241949020321002,
          0.6269646571522429,
          0.6297344122723856,
          0.6325041673925282,
          0.6352739225126709,
          0.6380436776328136,
          0.6408134327529562,
          0.6435831878730989,
          0.6463529429932415,
          0.6491226981133842,
          0.6518924532335268,
          0.6546622083536695,
          0.6574319634738122,
          0.6602017185939549,
          0.6629714737140976,
          0.6657412288342403,
          0.6685109839543829,
          0.6712807390745256,
          0.6740504941946682,
          0.6768202493148109,
          0.6795900044349535,
          0.6823597595550962,
          0.6851295146752389,
          0.6878992697953815,
          0.6906690249155242,
          0.693438780035667,
          0.6962085351558096,
          0.6989782902759523,
          0.7017480453960949,
          0.7045178005162376,
          0.7072875556363802,
          0.7100573107565229,
          0.7128270658766656,
          0.7155968209968082,
          0.7183665761169509,
          0.7211363312370935,
          0.7239060863572362,
          0.7266758414773788,
          0.7294455965975216,
          0.7322153517176643,
          0.7349851068378069,
          0.7377548619579496,
          0.7405246170780923,
          0.7432943721982349,
          0.7460641273183776,
          0.7488338824385202,
          0.7516036375586629,
          0.7543733926788055,
          0.7571431477989482,
          0.7599129029190909,
          0.7626826580392336,
          0.7654524131593763,
          0.768222168279519,
          0.7709919233996616,
          0.7737616785198043,
          0.7765314336399469,
          0.7793011887600896,
          0.7820709438802322,
          0.7848406990003749,
          0.7876104541205176,
          0.7903802092406602,
          0.7931499643608029,
          0.7959197194809456,
          0.7986894746010883,
          0.801459229721231,
          0.8042289848413736,
          0.8069987399615163,
          0.8097684950816589,
          0.8125382502018016,
          0.8153080053219443,
          0.8180777604420869,
          0.8208475155622296,
          0.8236172706823722,
          0.8263870258025149,
          0.8291567809226577,
          0.8319265360428003,
          0.834696291162943,
          0.8374660462830856,
          0.8402358014032283,
          0.843005556523371,
          0.8457753116435136,
          0.8485450667636563,
          0.8513148218837989,
          0.8540845770039416,
          0.8568543321240842,
          0.8596240872442269,
          0.8623938423643697,
          0.8651635974845123,
          0.867933352604655,
          0.8707031077247976,
          0.8734728628449403,
          0.876242617965083,
          0.8790123730852256,
          0.8817821282053683,
          0.8845518833255109,
          0.8873216384456536,
          0.8900913935657963,
          0.8928611486859389,
          0.8956309038060816,
          0.8984006589262243,
          0.901170414046367,
          0.9039401691665097,
          0.9067099242866523,
          0.909479679406795,
          0.9122494345269376,
          0.9150191896470803,
          0.917788944767223,
          0.9205586998873656,
          0.9233284550075083,
          0.9260982101276509,
          0.9288679652477936,
          0.9316377203679364,
          0.934407475488079,
          0.9371772306082217,
          0.9399469857283643,
          0.942716740848507,
          0.9454864959686496,
          0.9482562510887923,
          0.951026006208935,
          0.9537957613290776,
          0.9565655164492203,
          0.9593352715693629,
          0.9621050266895056,
          0.9648747818096484,
          0.967644536929791,
          0.9704142920499337,
          0.9731840471700763,
          0.975953802290219,
          0.9787235574103617,
          0.9814933125305043,
          0.984263067650647,
          0.9870328227707896,
          0.9898025778909323,
          0.992572333011075,
          0.9953420881312176,
          0.9981118432513604,
          1.000881598371503,
          1.0036513534916456,
          1.0064211086117882,
          1.009190863731931,
          1.0119606188520736,
          1.0147303739722162,
          1.0175001290923589,
          1.0202698842125015,
          1.0230396393326442,
          1.0258093944527868,
          1.0285791495729295,
          1.0313489046930722,
          1.0341186598132148,
          1.0368884149333575,
          1.0396581700535001,
          1.0424279251736428,
          1.0451976802937855,
          1.0479674354139283,
          1.050737190534071,
          1.0535069456542137,
          1.0562767007743563,
          1.059046455894499,
          1.0618162110146416,
          1.0645859661347843,
          1.067355721254927,
          1.0701254763750696,
          1.0728952314952123,
          1.075664986615355,
          1.0784347417354976,
          1.0812044968556402,
          1.083974251975783,
          1.0867440070959256,
          1.0895137622160682,
          1.0922835173362109,
          1.0950532724563535,
          1.0978230275764962,
          1.1005927826966388,
          1.1033625378167815,
          1.1061322929369242,
          1.1089020480570668,
          1.1116718031772095,
          1.1144415582973521,
          1.117211313417495,
          1.1199810685376377,
          1.1227508236577803,
          1.125520578777923,
          1.1282903338980657,
          1.1310600890182083,
          1.133829844138351,
          1.1365995992584936,
          1.1393693543786363,
          1.142139109498779,
          1.1449088646189216,
          1.1476786197390643,
          1.150448374859207,
          1.1532181299793496,
          1.1559878850994922,
          1.158757640219635,
          1.1615273953397776,
          1.1642971504599202,
          1.1670669055800629,
          1.1698366607002055,
          1.1726064158203482,
          1.1753761709404908,
          1.1781459260606335,
          1.1809156811807762,
          1.183685436300919,
          1.1864551914210617,
          1.1892249465412044,
          1.191994701661347,
          1.1947644567814897,
          1.1975342119016323,
          1.200303967021775,
          1.2030737221419177,
          1.2058434772620603,
          1.208613232382203,
          1.2113829875023456,
          1.2141527426224883,
          1.216922497742631,
          1.2196922528627736,
          1.2224620079829163,
          1.225231763103059,
          1.2280015182232016,
          1.2307712733433442,
          1.233541028463487,
          1.2363107835836296,
          1.2390805387037722,
          1.2418502938239149,
          1.2446200489440575,
          1.2473898040642002,
          1.2501595591843429,
          1.2529293143044857,
          1.2556990694246284,
          1.258468824544771,
          1.2612385796649137,
          1.2640083347850564,
          1.266778089905199,
          1.2695478450253417,
          1.2723176001454843,
          1.275087355265627,
          1.2778571103857697,
          1.2806268655059123,
          1.283396620626055,
          1.2861663757461976,
          1.2889361308663403,
          1.291705885986483,
          1.2944756411066256,
          1.2972453962267683,
          1.300015151346911,
          1.3027849064670536,
          1.3055546615871962,
          1.308324416707339,
          1.3110941718274816,
          1.3138639269476242,
          1.3166336820677669,
          1.3194034371879098,
          1.3221731923080524,
          1.324942947428195,
          1.3277127025483377,
          1.3304824576684804,
          1.333252212788623,
          1.3360219679087657,
          1.3387917230289084,
          1.341561478149051,
          1.3443312332691937,
          1.3471009883893363,
          1.349870743509479,
          1.3526404986296217,
          1.3554102537497643,
          1.358180008869907,
          1.3609497639900496,
          1.3637195191101923,
          1.366489274230335,
          1.3692590293504776,
          1.3720287844706203,
          1.374798539590763,
          1.3775682947109056,
          1.3803380498310482,
          1.383107804951191,
          1.3858775600713338,
          1.3886473151914764,
          1.391417070311619,
          1.3941868254317618,
          1.3969565805519044,
          1.399726335672047,
          1.4024960907921897,
          1.4052658459123324,
          1.408035601032475,
          1.4108053561526177,
          1.4135751112727604,
          1.416344866392903,
          1.4191146215130457,
          1.4218843766331883,
          1.424654131753331,
          1.4274238868734737,
          1.4301936419936163,
          1.432963397113759,
          1.4357331522339016,
          1.4385029073540443,
          1.441272662474187,
          1.4440424175943296,
          1.4468121727144723,
          1.449581927834615,
          1.4523516829547576,
          1.4551214380749005,
          1.4578911931950431,
          1.4606609483151858,
          1.4634307034353284,
          1.466200458555471,
          1.4689702136756138,
          1.4717399687957564,
          1.474509723915899,
          1.4772794790360417,
          1.4800492341561844,
          1.482818989276327,
          1.4855887443964697,
          1.4883584995166124,
          1.491128254636755,
          1.4938980097568977,
          1.4966677648770403,
          1.499437519997183,
          1.5022072751173257,
          1.5049770302374683,
          1.507746785357611,
          1.5105165404777536,
          1.5132862955978963,
          1.516056050718039,
          1.5188258058381816,
          1.5215955609583245,
          1.5243653160784671,
          1.5271350711986098,
          1.5299048263187525,
          1.5326745814388951,
          1.5354443365590378,
          1.5382140916791804,
          1.540983846799323,
          1.5437536019194658,
          1.5465233570396084,
          1.549293112159751,
          1.5520628672798937,
          1.5548326224000364,
          1.557602377520179,
          1.5603721326403217,
          1.5631418877604644,
          1.565911642880607,
          1.5686813980007497,
          1.5714511531208923,
          1.574220908241035,
          1.5769906633611777,
          1.5797604184813203,
          1.582530173601463,
          1.5852999287216056,
          1.5880696838417485,
          1.5908394389618912,
          1.5936091940820338,
          1.5963789492021765,
          1.5991487043223191,
          1.6019184594424618,
          1.6046882145626045,
          1.6074579696827471,
          1.6102277248028898,
          1.6129974799230324,
          1.615767235043175,
          1.6185369901633178,
          1.6213067452834604,
          1.624076500403603,
          1.6268462555237457,
          1.6296160106438884,
          1.632385765764031,
          1.6351555208841737,
          1.6379252760043164,
          1.640695031124459,
          1.6434647862446017,
          1.6462345413647443,
          1.649004296484887,
          1.6517740516050297,
          1.6545438067251723,
          1.6573135618453152,
          1.6600833169654579,
          1.6628530720856005,
          1.6656228272057432,
          1.6683925823258858,
          1.6711623374460285,
          1.6739320925661711,
          1.6767018476863138,
          1.6794716028064565,
          1.6822413579265991,
          1.6850111130467418,
          1.6877808681668844,
          1.690550623287027,
          1.6933203784071698,
          1.6960901335273124,
          1.698859888647455,
          1.7016296437675977,
          1.7043993988877404,
          1.707169154007883,
          1.7099389091280257,
          1.7127086642481684,
          1.715478419368311,
          1.7182481744884537,
          1.7210179296085963,
          1.7237876847287392,
          1.7265574398488819,
          1.7293271949690245,
          1.7320969500891672,
          1.7348667052093099,
          1.7376364603294525,
          1.7404062154495952,
          1.7431759705697378,
          1.7459457256898805,
          1.7487154808100231,
          1.7514852359301658,
          1.7542549910503085,
          1.7570247461704511,
          1.7597945012905938,
          1.7625642564107364,
          1.765334011530879,
          1.7681037666510218,
          1.7708735217711644,
          1.773643276891307,
          1.7764130320114497,
          1.7791827871315924,
          1.781952542251735,
          1.7847222973718777,
          1.7874920524920204,
          1.790261807612163,
          1.793031562732306,
          1.7958013178524486,
          1.7985710729725912,
          1.8013408280927339,
          1.8041105832128765,
          1.8068803383330192,
          1.8096500934531619,
          1.8124198485733045,
          1.8151896036934472,
          1.8179593588135898,
          1.8207291139337325,
          1.8234988690538751,
          1.8262686241740178,
          1.8290383792941605,
          1.8318081344143031,
          1.8345778895344458,
          1.8373476446545884,
          1.840117399774731,
          1.8428871548948738,
          1.8456569100150164,
          1.848426665135159,
          1.8511964202553017,
          1.8539661753754444,
          1.856735930495587,
          1.85950568561573,
          1.8622754407358726,
          1.8650451958560152,
          1.867814950976158,
          1.8705847060963006,
          1.8733544612164432,
          1.8761242163365859,
          1.8788939714567285,
          1.8816637265768712,
          1.8844334816970139,
          1.8872032368171565,
          1.8899729919372992,
          1.8927427470574418,
          1.8955125021775845,
          1.8982822572977271,
          1.9010520124178698,
          1.9038217675380125,
          1.9065915226581551,
          1.9093612777782978,
          1.9121310328984404,
          1.914900788018583,
          1.9176705431387258,
          1.9204402982588684,
          1.923210053379011,
          1.925979808499154,
          1.9287495636192966,
          1.9315193187394393,
          1.934289073859582,
          1.9370588289797246,
          1.9398285840998672,
          1.94259833922001,
          1.9453680943401526,
          1.9481378494602952,
          1.9509076045804379,
          1.9536773597005805,
          1.9564471148207232,
          1.9592168699408659,
          1.9619866250610085,
          1.9647563801811512,
          1.9675261353012938,
          1.9702958904214365,
          1.9730656455415791,
          1.9758354006617218,
          1.9786051557818645,
          1.9813749109020071,
          1.9841446660221498,
          1.9869144211422924,
          1.989684176262435,
          1.9924539313825778,
          1.9952236865027206,
          1.9979934416228633,
          2.000763196743006,
          2.0035329518631486,
          2.0063027069832913,
          2.009072462103434,
          2.0118422172235766,
          2.0146119723437192,
          2.017381727463862,
          2.0201514825840046,
          2.0229212377041472,
          2.02569099282429,
          2.0284607479444325,
          2.031230503064575,
          2.034000258184718,
          2.0367700133048605,
          2.039539768425003,
          2.042309523545146,
          2.0450792786652885,
          2.047849033785431,
          2.050618788905574,
          2.0533885440257165,
          2.056158299145859,
          2.058928054266002,
          2.0616978093861444,
          2.064467564506287,
          2.0672373196264298,
          2.0700070747465724,
          2.072776829866715,
          2.0755465849868577,
          2.0783163401070004,
          2.081086095227143,
          2.0838558503472857,
          2.0866256054674284,
          2.089395360587571,
          2.0921651157077137,
          2.094934870827857,
          2.0977046259479994,
          2.100474381068142,
          2.1032441361882848,
          2.1060138913084274,
          2.10878364642857,
          2.1115534015487127,
          2.1143231566688554,
          2.117092911788998,
          2.1198626669091407,
          2.1226324220292834,
          2.125402177149426,
          2.1281719322695687,
          2.1309416873897113,
          2.133711442509854,
          2.1364811976299967,
          2.1392509527501393,
          2.142020707870282,
          2.1447904629904246,
          2.1475602181105673,
          2.15032997323071,
          2.1530997283508526,
          2.1558694834709953,
          2.158639238591138,
          2.1614089937112806,
          2.1641787488314232,
          2.166948503951566,
          2.1697182590717086,
          2.1724880141918512,
          2.175257769311994,
          2.1780275244321365,
          2.180797279552279,
          2.183567034672422,
          2.1863367897925645,
          2.189106544912707,
          2.19187630003285,
          2.1946460551529925,
          2.197415810273135,
          2.200185565393278,
          2.2029553205134205,
          2.205725075633563,
          2.208494830753706,
          2.2112645858738484,
          2.214034340993991,
          2.2168040961141338,
          2.2195738512342764,
          2.222343606354419,
          2.2251133614745617,
          2.2278831165947044,
          2.2306528717148475,
          2.23342262683499,
          2.236192381955133,
          2.2389621370752755,
          2.241731892195418,
          2.244501647315561,
          2.2472714024357034,
          2.250041157555846,
          2.2528109126759888,
          2.2555806677961314,
          2.258350422916274,
          2.2611201780364167,
          2.2638899331565594,
          2.266659688276702,
          2.2694294433968447,
          2.2721991985169874,
          2.27496895363713,
          2.2777387087572727,
          2.2805084638774153,
          2.283278218997558,
          2.2860479741177007,
          2.2888177292378433,
          2.291587484357986,
          2.2943572394781286,
          2.2971269945982713,
          2.299896749718414,
          2.3026665048385566,
          2.3054362599586993,
          2.308206015078842,
          2.3109757701989846,
          2.3137455253191272,
          2.31651528043927,
          2.3192850355594126,
          2.3220547906795552,
          2.324824545799698,
          2.3275943009198405,
          2.330364056039983,
          2.333133811160126,
          2.3359035662802685,
          2.338673321400411,
          2.341443076520554,
          2.3442128316406965,
          2.346982586760839,
          2.349752341880982,
          2.3525220970011245,
          2.355291852121267,
          2.35806160724141,
          2.3608313623615524,
          2.363601117481695,
          2.366370872601838,
          2.369140627721981,
          2.3719103828421235,
          2.374680137962266,
          2.377449893082409,
          2.3802196482025515,
          2.382989403322694,
          2.385759158442837,
          2.3885289135629795,
          2.391298668683122,
          2.394068423803265,
          2.3968381789234074,
          2.39960793404355,
          2.4023776891636928,
          2.4051474442838354,
          2.407917199403978,
          2.4106869545241207,
          2.4134567096442634,
          2.416226464764406,
          2.4189962198845487,
          2.4217659750046914,
          2.424535730124834,
          2.4273054852449767,
          2.4300752403651193,
          2.432844995485262,
          2.4356147506054047,
          2.4383845057255473,
          2.44115426084569,
          2.4439240159658326,
          2.4466937710859753,
          2.449463526206118,
          2.4522332813262606,
          2.4550030364464033,
          2.457772791566546,
          2.4605425466866886,
          2.4633123018068313,
          2.466082056926974,
          2.4688518120471166,
          2.4716215671672592,
          2.474391322287402,
          2.4771610774075445,
          2.479930832527687,
          2.48270058764783,
          2.4854703427679725,
          2.488240097888115,
          2.491009853008258,
          2.4937796081284005,
          2.496549363248543,
          2.499319118368686,
          2.502088873488829,
          2.5048586286089716,
          2.5076283837291142,
          2.510398138849257,
          2.5131678939693995,
          2.515937649089542,
          2.518707404209685,
          2.5214771593298275,
          2.52424691444997,
          2.527016669570113,
          2.5297864246902555,
          2.532556179810398,
          2.535325934930541,
          2.5380956900506835,
          2.540865445170826,
          2.543635200290969,
          2.5464049554111114,
          2.549174710531254,
          2.5519444656513968,
          2.5547142207715394,
          2.557483975891682,
          2.5602537310118247,
          2.5630234861319674,
          2.56579324125211,
          2.5685629963722527,
          2.5713327514923954,
          2.574102506612538,
          2.5768722617326807,
          2.5796420168528233,
          2.582411771972966,
          2.5851815270931087,
          2.5879512822132513,
          2.590721037333394,
          2.5934907924535366,
          2.5962605475736793,
          2.599030302693822,
          2.6018000578139646,
          2.6045698129341073,
          2.60733956805425,
          2.6101093231743926,
          2.6128790782945353,
          2.615648833414678,
          2.6184185885348206,
          2.6211883436549632,
          2.623958098775106,
          2.6267278538952485,
          2.629497609015391,
          2.632267364135534,
          2.635037119255677,
          2.6378068743758196,
          2.6405766294959623,
          2.643346384616105,
          2.6461161397362476,
          2.6488858948563903,
          2.651655649976533,
          2.6544254050966756,
          2.6571951602168182,
          2.659964915336961,
          2.6627346704571035,
          2.665504425577246,
          2.668274180697389,
          2.6710439358175315,
          2.673813690937674,
          2.676583446057817,
          2.6793532011779595,
          2.682122956298102,
          2.684892711418245,
          2.6876624665383875,
          2.69043222165853,
          2.693201976778673,
          2.6959717318988154,
          2.698741487018958,
          2.7015112421391008,
          2.7042809972592434,
          2.707050752379386,
          2.7098205074995287,
          2.7125902626196714,
          2.715360017739814,
          2.7181297728599567,
          2.7208995279800994,
          2.723669283100242,
          2.7264390382203847,
          2.7292087933405274,
          2.73197854846067,
          2.7347483035808127,
          2.7375180587009553,
          2.740287813821098,
          2.7430575689412406,
          2.7458273240613833,
          2.748597079181526,
          2.7513668343016686,
          2.7541365894218113,
          2.756906344541954,
          2.7596760996620966,
          2.7624458547822393,
          2.765215609902382,
          2.7679853650225246
         ],
         "xaxis": "x",
         "y": [
          0.04743266492624253,
          0.09207618324812065,
          0.12123672671033911,
          0.14459686619076473,
          0.16463818686589435,
          0.18245289811830326,
          0.19863714536891197,
          0.21355871580416816,
          0.2274634672629225,
          0.2405253827937637,
          0.2528729475753196,
          0.2646042490442475,
          0.2757961864019841,
          0.2865103760724185,
          0.2967970958245064,
          0.3066980094263567,
          0.31624810325116204,
          0.3254770967033374,
          0.33441049131347295,
          0.34307036558334286,
          0.35147598706474115,
          0.35964429055227054,
          0.36759025653310384,
          0.3753272142002767,
          0.3828670866313522,
          0.3902205910770776,
          0.39739740401389284,
          0.4044062982524951,
          0.41125525767555343,
          0.4179515739098824,
          0.42450192829215705,
          0.4309124617731684,
          0.4371888348611574,
          0.4433362792856733,
          0.4493596427379197,
          0.45526342778867557,
          0.46105182588373045,
          0.46672874715686735,
          0.47229784667243924,
          0.4777625476064729,
          0.48312606179166473,
          0.48839140798350633,
          0.49356142814893755,
          0.49863880203292416,
          0.5036260602202672,
          0.5085255958782695,
          0.5133396753394239,
          0.5180704476610712,
          0.5227199532802768,
          0.5272901318663533,
          0.53178282946003,
          0.5361998049768336,
          0.5405427361424732,
          0.5448132249196429,
          0.5490128024784465,
          0.5531429337564364,
          0.5572050216488759,
          0.5612004108651761,
          0.5651303914833931,
          0.5689962022311393,
          0.5727990335181684,
          0.576540030243181,
          0.5802202943950227,
          0.5838408874663467,
          0.5874028326959695,
          0.5909071171545132,
          0.594354693686481,
          0.5977464827206307,
          0.6010833739593691,
          0.6043662279568728,
          0.6075958775947374,
          0.6107731294631428,
          0.6138987651547996,
          0.6169735424782894,
          0.6199981965968296,
          0.6229734410979647,
          0.625899968999216,
          0.6287784536942922,
          0.63160954984408,
          0.6343938942162811,
          0.6371321064772515,
          0.6398247899393064,
          0.642472532266499,
          0.6450759061416408,
          0.647635469897118,
          0.6501517681118615,
          0.6526253321766503,
          0.6550566808297601,
          0.6574463206648254,
          0.6597947466126433,
          0.662102442398519,
          0.6643698809766465,
          0.6665975249429,
          0.6687858269273276,
          0.6709352299675381,
          0.6730461678640992,
          0.6751190655189807,
          0.6771543392580139,
          0.6791523971382696,
          0.6811136392411982,
          0.6830384579523219,
          0.6849272382282162,
          0.6867803578514707,
          0.6885981876742773,
          0.6903810918512511,
          0.6921294280620525,
          0.6938435477243452,
          0.6955237961975885,
          0.6971705129781384,
          0.6987840318860948,
          0.700364681244317,
          0.7019127840499937,
          0.7034286581391396,
          0.704912616344366,
          0.7063649666462508,
          0.7077860123186207,
          0.7091760520680325,
          0.7105353801677337,
          0.7118642865863587,
          0.7131630571116091,
          0.714431973469149,
          0.7156713134369354,
          0.7168813509551929,
          0.7180623562322289,
          0.7192145958462761,
          0.7203383328435394,
          0.7214338268326149,
          0.722501334075441,
          0.723541107574931,
          0.7245533971594318,
          0.7255384495641455,
          0.7264965085096409,
          0.7274278147775809,
          0.7283326062837803,
          0.7292111181487066,
          0.7300635827655297,
          0.7308902298658201,
          0.7316912865829934,
          0.7324669775135905,
          0.7332175247764825,
          0.7339431480700823,
          0.7346440647276418,
          0.7353204897707118,
          0.7359726359608356,
          0.7366007138495438,
          0.73720493182672,
          0.7377854961673954,
          0.7383426110770369,
          0.7388764787353816,
          0.7393872993388759,
          0.7398752711417709,
          0.7403405904959224,
          0.7407834518893467,
          0.7412040479835749,
          0.7416025696498523,
          0.7419792060042231,
          0.7423341444415427,
          0.742667570668454,
          0.7429796687353676,
          0.743270621067478,
          0.7435406084948538,
          0.7437898102816312,
          0.7440184041543443,
          0.7442265663294217,
          0.7444144715398782,
          0.744582293061229,
          0.7447302027366548,
          0.7448583710014414,
          0.7449669669067187,
          0.7450561581425251,
          0.7451261110602164,
          0.7451769906942446,
          0.7452089607833248,
          0.7452221837910127,
          0.7452168209257106,
          0.7451930321601219,
          0.7451509762501708,
          0.7450908107534059,
          0.7450126920469039,
          0.7449167753446896,
          0.7448032147146867,
          0.744672163095217,
          0.7445237723110595,
          0.7443581930890855,
          0.7441755750734813,
          0.7439760668405733,
          0.7437598159132666,
          0.7435269687751097,
          0.7432776708839971,
          0.7430120666855203,
          0.7427302996259785,
          0.7424325121650601,
          0.742118845788204,
          0.7417894410186504,
          0.7414444374291919,
          0.7410839736536324,
          0.7407081873979642,
          0.7403172154512692,
          0.7399111936963558,
          0.739490257120137,
          0.7390545398237582,
          0.7386041750324818,
          0.7381392951053358,
          0.7376600315445351,
          0.737166515004678,
          0.7366588753017298,
          0.7361372414217949,
          0.7356017415296869,
          0.735052502977301,
          0.734489652311794,
          0.7339133152835798,
          0.7333236168541424,
          0.7327206812036741,
          0.7321046317385429,
          0.7314755910985947,
          0.7308336811642934,
          0.7301790230637051,
          0.7295117371793308,
          0.7288319431547905,
          0.7281397599013635,
          0.7274353056043906,
          0.7267186977295389,
          0.7259900530289355,
          0.7252494875471733,
          0.7244971166271915,
          0.7237330549160351,
          0.7229574163704967,
          0.7221703142626441,
          0.7213718611852353,
          0.7205621690570262,
          0.7197413491279725,
          0.7189095119843294,
          0.7180667675536506,
          0.7172132251096919,
          0.7163489932772187,
          0.7154741800367233,
          0.7145888927290519,
          0.7136932380599448,
          0.7127873221044925,
          0.7118712503115092,
          0.7109451275078265,
          0.7100090579025086,
          0.7090631450909929,
          0.7081074920591555,
          0.7071422011873056,
          0.7061673742541108,
          0.7051831124404521,
          0.704189516333215,
          0.7031866859290156,
          0.702174720637863,
          0.7011537192867618,
          0.7001237801232548,
          0.6990850008189075,
          0.698037478472736,
          0.6969813096145823,
          0.6959165902084326,
          0.6948434156556867,
          0.6937618807983754,
          0.6926720799223285,
          0.6915741067602954,
          0.6904680544950188,
          0.6893540157622626,
          0.6882320826537961,
          0.6871023467203339,
          0.6859648989744359,
          0.6848198298933637,
          0.683667229421899,
          0.6825071869751231,
          0.6813397914411579,
          0.6801651311838699,
          0.6789832940455399,
          0.6777943673494958,
          0.676598437902713,
          0.6753955919983804,
          0.6741859154184355,
          0.6729694934360666,
          0.6717464108181859,
          0.670516751827871,
          0.6692806002267794,
          0.6680380392775334,
          0.6667891517460774,
          0.6655340199040094,
          0.6642727255308848,
          0.6630053499164964,
          0.6617319738631284,
          0.6604526776877868,
          0.6591675412244062,
          0.6578766438260331,
          0.656580064366988,
          0.6552778812450049,
          0.653970172383349,
          0.6526570152329157,
          0.6513384867743078,
          0.6500146635198932,
          0.6486856215158445,
          0.6473514363441589,
          0.646012183124661,
          0.644667936516987,
          0.643318770722552,
          0.641964759486501,
          0.6406059760996432,
          0.6392424934003698,
          0.6378743837765575,
          0.6365017191674561,
          0.6351245710655612,
          0.6337430105184736,
          0.6323571081307431,
          0.6309669340657001,
          0.6295725580472739,
          0.6281740493617964,
          0.6267714768597954,
          0.6253649089577739,
          0.623954413639979,
          0.6225400584601571,
          0.6211219105432999,
          0.6197000365873774,
          0.6182745028650617,
          0.6168453752254394,
          0.6154127190957135,
          0.6139765994828963,
          0.6125370809754913,
          0.6110942277451669,
          0.6096481035484191,
          0.608198771728228,
          0.6067462952157014,
          0.6052907365317145,
          0.6038321577885367,
          0.6023706206914538,
          0.6009061865403799,
          0.5994389162314635,
          0.5979688702586834,
          0.5964961087154402,
          0.5950206912961383,
          0.5935426772977619,
          0.5920621256214436,
          0.5905790947740271,
          0.589093642869623,
          0.5876058276311571,
          0.5861157063919146,
          0.5846233360970762,
          0.5831287733052496,
          0.5816320741899949,
          0.580133294541343,
          0.5786324897673116,
          0.5771297148954119,
          0.575625024574153,
          0.57411847307454,
          0.5726101142915666,
          0.5711000017457041,
          0.5695881885843841,
          0.5680747275834775,
          0.5665596711487686,
          0.5650430713174246,
          0.5635249797594606,
          0.5620054477792008,
          0.560484526316735,
          0.5589622659493706,
          0.557438716893082,
          0.555913929003954,
          0.5543879517796234,
          0.5528608343607148,
          0.5513326255322748,
          0.5498033737252,
          0.5482731270176641,
          0.5467419331365394,
          0.5452098394588162,
          0.5436768930130176,
          0.5421431404806122,
          0.5406086281974227,
          0.5390734021550316,
          0.5375375080021837,
          0.5360009910461854,
          0.5344638962543014,
          0.5329262682551479,
          0.5313881513400823,
          0.5298495894645923,
          0.5283106262496786,
          0.5267713049832385,
          0.5252316686214438,
          0.5236917597901174,
          0.5221516207861074,
          0.5206112935786574,
          0.5190708198107752,
          0.5175302408005982,
          0.5159895975427572,
          0.5144489307097366,
          0.5129082806532326,
          0.511367687405509,
          0.5098271906807501,
          0.5082868298764124,
          0.5067466440745718,
          0.5052066720432705,
          0.5036669522378608,
          0.5021275228023455,
          0.500588421570718,
          0.4990496860682989,
          0.4975113535130698,
          0.4959734608170062,
          0.49443604458740753,
          0.49289914112822447,
          0.4913627864413848,
          0.48982701622811703,
          0.48829186589027085,
          0.4867573705316369,
          0.4852235649592634,
          0.4836904836847703,
          0.4821581609256626,
          0.4806266306066401,
          0.4790959263609062,
          0.47756608153147373,
          0.476037129172469,
          0.4745091020504337,
          0.4729820326456248,
          0.47145595315331235,
          0.4699308954850745,
          0.4684068912700917,
          0.4668839718564378,
          0.4653621683123692,
          0.46384151142761204,
          0.4623220317146478,
          0.4608037594099956,
          0.4592867244754935,
          0.45777095659957745,
          0.4562564851985577,
          0.4547433394178933,
          0.4532315481334651,
          0.45172113995284563,
          0.45021214321656783,
          0.44870458599939106,
          0.4471984961115648,
          0.445693901100091,
          0.44419082824998385,
          0.44268930458552735,
          0.44118935687153066,
          0.43969101161458185,
          0.43819429506429863,
          0.4366992332145782,
          0.43520585180484334,
          0.43371417632128734,
          0.43222423199811705,
          0.4307360438187926,
          0.4292496365172658,
          0.42776503457921644,
          0.4262822622432853,
          0.4248013435023064,
          0.42332230210453575,
          0.4218451615548789,
          0.42036994511611525,
          0.41889667581012097,
          0.4174253764190889,
          0.41595606948674696,
          0.4144887773195736,
          0.4130235219880113,
          0.41156032532767767,
          0.410099208940574,
          0.40864019419629205,
          0.407183302233218,
          0.4057285539597342,
          0.40427597005541843,
          0.40282557097224125,
          0.40137737693576025,
          0.3999314079463126,
          0.3984876837802047,
          0.3970462239908996,
          0.3956070479102018,
          0.39417017464944026,
          0.39273562310064813,
          0.3913034119377404,
          0.3898735596176889,
          0.38844608438169514,
          0.3870210042563607,
          0.385598337054854,
          0.38417810037807654,
          0.3827603116158245,
          0.3813449879479492,
          0.3799321463455146,
          0.37852180357195186,
          0.37711397618421216,
          0.37570868053391593,
          0.3743059327684998,
          0.3729057488323618,
          0.3715081444680025,
          0.3701131352171645,
          0.3687207364219688,
          0.367330963226049,
          0.3659438305756821,
          0.36455935322091715,
          0.3631775457167009,
          0.36179842242400134,
          0.3604219975109273,
          0.3590482849538467,
          0.3576772985385011,
          0.3563090518611178,
          0.354943558329519,
          0.35358083116422884,
          0.35222088339957663,
          0.3508637278847979,
          0.3495093772851326,
          0.34815784408292016,
          0.34680914057869233,
          0.34546327889226214,
          0.3441202709638114,
          0.3427801285549736,
          0.3414428632499155,
          0.3401084864564153,
          0.3387770094069371,
          0.3374484431597036,
          0.3361227985997654,
          0.3348000864400673,
          0.3334803172225114,
          0.3321635013190182,
          0.3308496489325833,
          0.3295387700983325,
          0.32823087468457285,
          0.32692597239384147,
          0.3256240727639512,
          0.32432518516903225,
          0.32302931882057273,
          0.32173648276845407,
          0.32044668590198516,
          0.319159936950932,
          0.3178762444865454,
          0.316595616922585,
          0.3153180625163401,
          0.314043589369648,
          0.31277220542990847,
          0.31150391849109627,
          0.31023873619476855,
          0.3089766660310714,
          0.3077177153397419,
          0.30646189131110735,
          0.30520920098708126,
          0.30395965126215635,
          0.3027132488843942,
          0.3014700004564122,
          0.30022991243636643,
          0.298992991138932,
          0.2977592427362803,
          0.29652867325905274,
          0.29530128859733074,
          0.2940770945016042,
          0.2928560965837346,
          0.2916383003179163,
          0.2904237110416345,
          0.2892123339566192,
          0.28800417412979645,
          0.28679923649423644,
          0.28559752585009823,
          0.28439904686557066,
          0.28320380407781076,
          0.2820118018938789,
          0.28082304459166957,
          0.27963753632084004,
          0.27845528110373535,
          0.2772762828363099,
          0.27610054528904554,
          0.27492807210786685,
          0.27375886681505274,
          0.2725929328101449,
          0.27143027337085257,
          0.2702708916539546,
          0.2691147906961976,
          0.2679619734151909,
          0.2668124426102986,
          0.2656662009635275,
          0.26452325104041235,
          0.26338359529089744,
          0.2622472360502146,
          0.2611141755397587,
          0.25998441586795834,
          0.2588579590311451,
          0.2577348069144173,
          0.2566149612925021,
          0.25549842383061316,
          0.25438519608530574,
          0.25327527950532747,
          0.2521686754324669,
          0.251065385102397,
          0.2499654096455174,
          0.2488687500877915,
          0.2477754073515809,
          0.2466853822564765,
          0.24559867552012574,
          0.24451528775905693,
          0.2434352194895002,
          0.24235847112820452,
          0.24128504299325174,
          0.2402149353048672,
          0.23914814818622696,
          0.23808468166426106,
          0.2370245356704544,
          0.23596771004164346,
          0.23491420452080974,
          0.23386401875787,
          0.23281715231046252,
          0.2317736046447312,
          0.23073337513610462,
          0.22969646307007316,
          0.2286628676429615,
          0.22763258796269875,
          0.2266056230495846,
          0.22558197183705173,
          0.22456163317242592,
          0.2235446058176817,
          0.222530888450195,
          0.2215204796634926,
          0.22051337796799744,
          0.219509581791772,
          0.21850908948125614,
          0.21751189930200396,
          0.21651800943941493,
          0.21552741799946368,
          0.21454012300942465,
          0.21355612241859478,
          0.21257541409901196,
          0.21159799584617023,
          0.21062386537973182,
          0.2096530203442357,
          0.20868545830980242,
          0.20772117677283655,
          0.2067601731567243,
          0.20580244481252924,
          0.20484798901968343,
          0.203896802986676,
          0.2029488838517383,
          0.20200422868352458,
          0.20106283448179169,
          0.20012469817807227,
          0.1991898166363478,
          0.1982581866537156,
          0.19732980496105454,
          0.19640466822368588,
          0.19548277304203185,
          0.19456411595227027,
          0.1936486934269863,
          0.1927365018758202,
          0.19182753764611274,
          0.1909217970235463,
          0.19001927623278334,
          0.1891199714381014,
          0.1882238787440244,
          0.18733099419595153,
          0.18644131378078166,
          0.18555483342753587,
          0.18467154900797514,
          0.18379145633721602,
          0.1829145511743426,
          0.1820408292230151,
          0.18117028613207506,
          0.18030291749614782,
          0.17943871885624116,
          0.1785776857003415,
          0.17771981346400542,
          0.17686509753094928,
          0.17601353323363603,
          0.1751651158538564,
          0.17431984062330935,
          0.17347770272417845,
          0.17263869728970455,
          0.17180281940475586,
          0.17097006410639481,
          0.17014042638444138,
          0.16931390118203363,
          0.16849048339618472,
          0.16767016787833686,
          0.1668529494349125,
          0.16603882282786137,
          0.16522778277520608,
          0.16441982395158228,
          0.1636149409887777,
          0.16281312847626736,
          0.1620143809617448,
          0.16121869295165236,
          0.1604260589117055,
          0.15963647326741637,
          0.15884993040461312,
          0.15806642466995646,
          0.1572859503714532,
          0.1565085017789668,
          0.15573407312472395,
          0.15496265860381983,
          0.15419425237471848,
          0.15342884855975114,
          0.15266644124561188,
          0.15190702448384907,
          0.15115059229135488,
          0.15039713865085108,
          0.1496466575113723,
          0.1488991427887459,
          0.14815458836606946,
          0.1474129880941842,
          0.14667433579214706,
          0.14593862524769768,
          0.14520585021772495,
          0.14447600442872827,
          0.1437490815772771,
          0.14302507533046782,
          0.14230397932637676,
          0.14158578717451062,
          0.14087049245625463,
          0.1401580887253172,
          0.13944856950817136,
          0.1387419283044943,
          0.138038158587603,
          0.13733725380488793,
          0.1366392073782432,
          0.13594401270449424,
          0.1352516631558222,
          0.13456215208018654,
          0.1338754728017432,
          0.1331916186212616,
          0.13251058281653766,
          0.13183235864280465,
          0.1311569393331413,
          0.1304843180988761,
          0.1298144881299907,
          0.12914744259551866,
          0.1284831746439427,
          0.12782167740358863,
          0.12716294398301697,
          0.1265069674714109,
          0.12585374093896337,
          0.12520325743725905,
          0.1245555099996557,
          0.12391049164166164,
          0.12326819536131114,
          0.1226286141395367,
          0.12199174094053924,
          0.12135756871215499,
          0.12072609038621997,
          0.12009729887893238,
          0.1194711870912116,
          0.1188477479090547,
          0.11822697420389106,
          0.11760885883293357,
          0.11699339463952749,
          0.11638057445349718,
          0.11577039109148932,
          0.11516283735731483,
          0.11455790604228705,
          0.11395558992555826,
          0.1133558817744529,
          0.11275877434479928,
          0.11216426038125771,
          0.11157233261764715,
          0.11098298377726824,
          0.11039620657322467,
          0.10981199370874267,
          0.10923033787748573,
          0.10865123176386997,
          0.10807466804337458,
          0.10750063938285073,
          0.10692913844082899,
          0.10636015786782234,
          0.10579369030662868,
          0.10522972839262947,
          0.10466826475408751,
          0.10410929201244101,
          0.103552802782596,
          0.10299878967321596,
          0.10244724528700955,
          0.10189816222101619,
          0.10135153306688807,
          0.10080735041117173,
          0.10026560683558568,
          0.0997262949172966,
          0.09918940722919321,
          0.09865493634015747,
          0.09812287481533395,
          0.09759321521639687,
          0.09706595010181442,
          0.09654107202711174,
          0.09601857354513077,
          0.09549844720628849,
          0.09498068555883288,
          0.09446528114909608,
          0.09395222652174669,
          0.09344151422003837,
          0.09293313678605712,
          0.09242708676096666,
          0.09192335668525091,
          0.09142193909895481,
          0.0909228265419231,
          0.09042601155403648,
          0.0899314866754464,
          0.08943924444680694,
          0.0889492774095056,
          0.08846157810589085,
          0.08797613907949858,
          0.08749295287527614,
          0.08701201203980415,
          0.08653330912151679,
          0.08605683667091939,
          0.08558258724080453,
          0.08511055338646611,
          0.08464072766591106,
          0.08417310264006951,
          0.08370767087300256,
          0.08324442493210855,
          0.0827833573883269,
          0.08232446081634054,
          0.0818677277947758,
          0.08141315090640085,
          0.08096072273832204,
          0.08051043588217838,
          0.08006228293433411,
          0.0796162564960694,
          0.07917234917376906,
          0.07873055357910952,
          0.07829086232924397,
          0.07785326804698575,
          0.07741776336098923,
          0.0769843409059302,
          0.07655299332268288,
          0.07612371325849639,
          0.07569649336716855,
          0.07527132630921855,
          0.07484820475205749,
          0.07442712137015702,
          0.07400806884521659,
          0.07359103986632873,
          0.07317602713014278,
          0.07276302334102645,
          0.07235202121122618,
          0.07194301346102541,
          0.07153599281890154,
          0.0711309520216808,
          0.07072788381469144,
          0.07032678095191577,
          0.06992763619614004,
          0.06953044231910253,
          0.06913519210164065,
          0.06874187833383588,
          0.06835049381515701,
          0.06796103135460245,
          0.06757348377083998,
          0.0671878438923456,
          0.06680410455754068,
          0.06642225861492718,
          0.06604229892322178,
          0.06566421835148797,
          0.06528800977926706,
          0.06491366609670737,
          0.06454118020469175,
          0.06417054501496408,
          0.06380175345025356,
          0.06343479844439821,
          0.06306967294246643,
          0.0627063699008769,
          0.06234488228751778,
          0.06198520308186357,
          0.061627325275090926,
          0.06127124187019315,
          0.060916945882092725,
          0.06056443033775313,
          0.060213688276288646,
          0.05986471274907298,
          0.05951749681984637,
          0.059172033564821605,
          0.05882831607278808,
          0.05848633744521513,
          0.05814609079635359,
          0.05780756925333589,
          0.05747076595627523,
          0.05713567405836297,
          0.056802286725964976,
          0.05647059713871654,
          0.056140598489615896,
          0.055812283985116534,
          0.055485646845218235,
          0.05516068030355652,
          0.05483737760749139,
          0.05451573201819421,
          0.05419573681073357,
          0.05387738527416004,
          0.05356067071158909,
          0.05324558644028381,
          0.05293212579173514,
          0.05262028211174192,
          0.05231004876048902,
          0.0520014191126247,
          0.051694386557336595,
          0.051388944498426355,
          0.05108508635438352,
          0.050782805558457635,
          0.05048209555872972,
          0.05018294981818235,
          0.0498853618147685,
          0.04958932504147949,
          0.04929483300641148,
          0.04900187923283108,
          0.048710457259239746,
          0.04842056063943719,
          0.048132182942583326,
          0.04784531775325952,
          0.047559958671528575,
          0.04727609931299357,
          0.04699373330885585,
          0.04671285430597167,
          0.04643345596690777,
          0.046155531969996465,
          0.04587907600938883,
          0.04560408179510744,
          0.04533054305309798,
          0.045058453525279804,
          0.04478780696959523,
          0.0445185971600582,
          0.04425081788680186,
          0.04398446295612491,
          0.04371952619053729,
          0.043456001428804604,
          0.04319388252599186,
          0.042933163353505895,
          0.04267383779913736,
          0.04241589976710111,
          0.04215934317807612,
          0.04190416196924451,
          0.0416503500943291,
          0.041397901523630876,
          0.0411468102440647,
          0.040897070259194646,
          0.04064867558926841,
          0.040401620271250584,
          0.040155898358855156,
          0.03991150392257727,
          0.03966843104972402,
          0.03942667384444417,
          0.03918622642775749,
          0.03894708293758273,
          0.03870923752876521,
          0.0384726843731031,
          0.03823741765937345,
          0.03800343159335685,
          0.037770720397861536,
          0.03753927831274674,
          0.0373090995949451,
          0.03708017851848443,
          0.03685250937450838,
          0.03662608647129683,
          0.03640090413428503,
          0.03617695670608224,
          0.03595423854648946,
          0.0357327440325166,
          0.035512467558398673,
          0.035293403535611376,
          0.03507554639288594,
          0.034858890576223205,
          0.034643430548907006,
          0.03442916079151682,
          0.03421607580193957,
          0.034004170095381155,
          0.03379343820437669,
          0.03358387467880057,
          0.033375474085875524,
          0.033168231010181064,
          0.032962140053661396,
          0.03275719583563242,
          0.0325533929927884,
          0.03235072617920762,
          0.032149190066357566,
          0.03194877934309958,
          0.031749488715692664,
          0.03155131290779664,
          0.03135424666047501,
          0.03115828473219674,
          0.030963421898837815,
          0.030769652953681947,
          0.030576972707420772,
          0.030385375988153426,
          0.030194857641385613,
          0.030005412530027857,
          0.02981703553439346,
          0.029629721552195776,
          0.029443465498544732,
          0.029258262305943143,
          0.029074106924282094,
          0.02889099432083608,
          0.02870891948025736,
          0.028527877404569947,
          0.028347863113162976,
          0.028168871642783495,
          0.02799089804752883,
          0.027813937398838407,
          0.027637984785484935,
          0.02746303531356532,
          0.027289084106490783,
          0.027116126304976746,
          0.02694415706703208,
          0.02677317156794777,
          0.02660316500028537,
          0.026434132573864694,
          0.026266069515751254,
          0.02609897107024303,
          0.025932832498856973,
          0.02576764908031484,
          0.02560341611052883,
          0.025440128902586453,
          0.02527778278673524,
          0.02511637311036683,
          0.024955895238000757
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>k</i>=5; <i>λ</i>=5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>k</i>=5; <i>λ</i>=5",
         "line": {
          "color": "#ab63fa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>k</i>=5; <i>λ</i>=5",
         "showlegend": true,
         "type": "scattergl",
         "x": [
          0.001,
          0.0024413172920545144,
          0.0038826345841090283,
          0.005323951876163542,
          0.006765269168218057,
          0.008206586460272572,
          0.009647903752327085,
          0.011089221044381599,
          0.012530538336436112,
          0.013971855628490626,
          0.015413172920545143,
          0.016854490212599656,
          0.01829580750465417,
          0.019737124796708683,
          0.0211784420887632,
          0.022619759380817714,
          0.024061076672872227,
          0.02550239396492674,
          0.026943711256981254,
          0.02838502854903577,
          0.029826345841090285,
          0.031267663133144795,
          0.03270898042519931,
          0.03415029771725383,
          0.03559161500930834,
          0.037032932301362856,
          0.038474249593417366,
          0.03991556688547188,
          0.0413568841775264,
          0.04279820146958091,
          0.04423951876163543,
          0.04568083605368994,
          0.047122153345744454,
          0.04856347063779897,
          0.05000478792985348,
          0.051446105221908,
          0.05288742251396251,
          0.054328739806017025,
          0.05577005709807154,
          0.05721137439012605,
          0.05865269168218057,
          0.06009400897423508,
          0.061535326266289596,
          0.0629766435583441,
          0.06441796085039862,
          0.06585927814245314,
          0.06730059543450766,
          0.06874191272656216,
          0.07018323001861668,
          0.0716245473106712,
          0.07306586460272571,
          0.07450718189478023,
          0.07594849918683473,
          0.07738981647888925,
          0.07883113377094376,
          0.08027245106299828,
          0.0817137683550528,
          0.0831550856471073,
          0.08459640293916182,
          0.08603772023121634,
          0.08747903752327085,
          0.08892035481532537,
          0.09036167210737987,
          0.09180298939943439,
          0.0932443066914889,
          0.09468562398354342,
          0.09612694127559794,
          0.09756825856765244,
          0.09900957585970696,
          0.10045089315176148,
          0.101892210443816,
          0.10333352773587051,
          0.10477484502792501,
          0.10621616231997953,
          0.10765747961203405,
          0.10909879690408857,
          0.11054011419614308,
          0.11198143148819759,
          0.1134227487802521,
          0.11486406607230662,
          0.11630538336436114,
          0.11774670065641565,
          0.11918801794847016,
          0.12062933524052467,
          0.12207065253257919,
          0.12351196982463371,
          0.12495328711668822,
          0.12639460440874273,
          0.12783592170079724,
          0.12927723899285176,
          0.13071855628490628,
          0.1321598735769608,
          0.1336011908690153,
          0.13504250816106983,
          0.13648382545312432,
          0.13792514274517884,
          0.13936646003723335,
          0.14080777732928787,
          0.1422490946213424,
          0.1436904119133969,
          0.14513172920545142,
          0.14657304649750594,
          0.14801436378956045,
          0.14945568108161497,
          0.15089699837366946,
          0.15233831566572398,
          0.1537796329577785,
          0.155220950249833,
          0.15666226754188753,
          0.15810358483394205,
          0.15954490212599656,
          0.16098621941805108,
          0.1624275367101056,
          0.1638688540021601,
          0.1653101712942146,
          0.16675148858626912,
          0.16819280587832364,
          0.16963412317037815,
          0.17107544046243267,
          0.1725167577544872,
          0.1739580750465417,
          0.17539939233859622,
          0.17684070963065074,
          0.17828202692270526,
          0.17972334421475974,
          0.18116466150681426,
          0.18260597879886878,
          0.1840472960909233,
          0.1854886133829778,
          0.18692993067503233,
          0.18837124796708685,
          0.18981256525914136,
          0.19125388255119588,
          0.19269519984325037,
          0.1941365171353049,
          0.1955778344273594,
          0.19701915171941392,
          0.19846046901146844,
          0.19990178630352295,
          0.20134310359557747,
          0.202784420887632,
          0.2042257381796865,
          0.20566705547174102,
          0.2071083727637955,
          0.20854969005585003,
          0.20999100734790455,
          0.21143232463995906,
          0.21287364193201358,
          0.2143149592240681,
          0.2157562765161226,
          0.21719759380817713,
          0.21863891110023165,
          0.22008022839228616,
          0.22152154568434065,
          0.22296286297639517,
          0.2244041802684497,
          0.2258454975605042,
          0.22728681485255872,
          0.22872813214461324,
          0.23016944943666776,
          0.23161076672872227,
          0.2330520840207768,
          0.2344934013128313,
          0.2359347186048858,
          0.2373760358969403,
          0.23881735318899483,
          0.24025867048104935,
          0.24169998777310386,
          0.24314130506515838,
          0.2445826223572129,
          0.24602393964926741,
          0.24746525694132193,
          0.24890657423337645,
          0.2503478915254309,
          0.25178920881748545,
          0.25323052610954,
          0.2546718434015945,
          0.25611316069364903,
          0.2575544779857035,
          0.258995795277758,
          0.26043711256981256,
          0.26187842986186705,
          0.2633197471539216,
          0.2647610644459761,
          0.2662023817380306,
          0.2676436990300851,
          0.26908501632213966,
          0.27052633361419415,
          0.27196765090624864,
          0.2734089681983032,
          0.27485028549035767,
          0.2762916027824122,
          0.2777329200744667,
          0.27917423736652125,
          0.28061555465857574,
          0.2820568719506303,
          0.2834981892426848,
          0.28493950653473926,
          0.2863808238267938,
          0.2878221411188483,
          0.28926345841090284,
          0.29070477570295733,
          0.2921460929950119,
          0.29358741028706636,
          0.2950287275791209,
          0.2964700448711754,
          0.29791136216322994,
          0.29935267945528443,
          0.3007939967473389,
          0.30223531403939347,
          0.30367663133144795,
          0.3051179486235025,
          0.306559265915557,
          0.30800058320761153,
          0.309441900499666,
          0.31088321779172057,
          0.31232453508377506,
          0.31376585237582955,
          0.3152071696678841,
          0.3166484869599386,
          0.3180898042519931,
          0.3195311215440476,
          0.32097243883610216,
          0.32241375612815665,
          0.3238550734202112,
          0.3252963907122657,
          0.3267377080043202,
          0.3281790252963747,
          0.3296203425884292,
          0.33106165988048375,
          0.33250297717253824,
          0.3339442944645928,
          0.3353856117566473,
          0.3368269290487018,
          0.3382682463407563,
          0.33970956363281085,
          0.34115088092486534,
          0.34259219821691983,
          0.3440335155089744,
          0.34547483280102886,
          0.3469161500930834,
          0.3483574673851379,
          0.34979878467719244,
          0.35124010196924693,
          0.3526814192613015,
          0.35412273655335597,
          0.3555640538454105,
          0.357005371137465,
          0.3584466884295195,
          0.35988800572157403,
          0.3613293230136285,
          0.36277064030568307,
          0.36421195759773756,
          0.3656532748897921,
          0.3670945921818466,
          0.36853590947390114,
          0.3699772267659556,
          0.3714185440580101,
          0.37285986135006466,
          0.37430117864211915,
          0.3757424959341737,
          0.3771838132262282,
          0.3786251305182827,
          0.3800664478103372,
          0.38150776510239176,
          0.38294908239444625,
          0.38439039968650074,
          0.3858317169785553,
          0.3872730342706098,
          0.3887143515626643,
          0.3901556688547188,
          0.39159698614677335,
          0.39303830343882784,
          0.3944796207308824,
          0.3959209380229369,
          0.3973622553149914,
          0.3988035726070459,
          0.4002448898991004,
          0.40168620719115494,
          0.40312752448320943,
          0.404568841775264,
          0.40601015906731847,
          0.407451476359373,
          0.4088927936514275,
          0.41033411094348204,
          0.41177542823553653,
          0.413216745527591,
          0.41465806281964557,
          0.41609938011170006,
          0.4175406974037546,
          0.4189820146958091,
          0.42042333198786364,
          0.4218646492799181,
          0.42330596657197267,
          0.42474728386402716,
          0.4261886011560817,
          0.4276299184481362,
          0.4290712357401907,
          0.4305125530322452,
          0.4319538703242997,
          0.43339518761635426,
          0.43483650490840875,
          0.4362778222004633,
          0.4377191394925178,
          0.43916045678457233,
          0.4406017740766268,
          0.4420430913686813,
          0.44348440866073585,
          0.44492572595279034,
          0.4463670432448449,
          0.4478083605368994,
          0.4492496778289539,
          0.4506909951210084,
          0.45213231241306295,
          0.45357362970511744,
          0.455014946997172,
          0.4564562642892265,
          0.45789758158128097,
          0.4593388988733355,
          0.46078021616539,
          0.46222153345744454,
          0.46366285074949903,
          0.4651041680415536,
          0.46654548533360807,
          0.4679868026256626,
          0.4694281199177171,
          0.4708694372097716,
          0.47231075450182614,
          0.4737520717938806,
          0.47519338908593517,
          0.47663470637798966,
          0.4780760236700442,
          0.4795173409620987,
          0.48095865825415324,
          0.4823999755462077,
          0.4838412928382622,
          0.48528261013031676,
          0.48672392742237125,
          0.4881652447144258,
          0.4896065620064803,
          0.49104787929853483,
          0.4924891965905893,
          0.49393051388264386,
          0.49537183117469835,
          0.4968131484667529,
          0.4982544657588074,
          0.4996957830508619,
          0.5011371003429164,
          0.5025784176349709,
          0.5040197349270255,
          0.50546105221908,
          0.5069023695111344,
          0.508343686803189,
          0.5097850040952435,
          0.5112263213872981,
          0.5126676386793525,
          0.514108955971407,
          0.5155502732634616,
          0.516991590555516,
          0.5184329078475706,
          0.5198742251396251,
          0.5213155424316797,
          0.5227568597237341,
          0.5241981770157886,
          0.5256394943078432,
          0.5270808115998976,
          0.5285221288919522,
          0.5299634461840067,
          0.5314047634760612,
          0.5328460807681157,
          0.5342873980601702,
          0.5357287153522248,
          0.5371700326442793,
          0.5386113499363337,
          0.5400526672283883,
          0.5414939845204428,
          0.5429353018124973,
          0.5443766191045518,
          0.5458179363966064,
          0.5472592536886609,
          0.5487005709807153,
          0.5501418882727699,
          0.5515832055648244,
          0.553024522856879,
          0.5544658401489334,
          0.555907157440988,
          0.5573484747330425,
          0.5587897920250969,
          0.5602311093171515,
          0.561672426609206,
          0.5631137439012606,
          0.564555061193315,
          0.5659963784853695,
          0.5674376957774241,
          0.5688790130694785,
          0.5703203303615331,
          0.5717616476535876,
          0.5732029649456422,
          0.5746442822376966,
          0.5760855995297511,
          0.5775269168218057,
          0.5789682341138602,
          0.5804095514059147,
          0.5818508686979692,
          0.5832921859900237,
          0.5847335032820782,
          0.5861748205741327,
          0.5876161378661873,
          0.5890574551582418,
          0.5904987724502962,
          0.5919400897423508,
          0.5933814070344053,
          0.5948227243264599,
          0.5962640416185143,
          0.5977053589105689,
          0.5991466762026234,
          0.6005879934946778,
          0.6020293107867324,
          0.6034706280787869,
          0.6049119453708415,
          0.6063532626628959,
          0.6077945799549505,
          0.609235897247005,
          0.6106772145390595,
          0.612118531831114,
          0.6135598491231685,
          0.6150011664152231,
          0.6164424837072775,
          0.617883800999332,
          0.6193251182913866,
          0.6207664355834411,
          0.6222077528754956,
          0.6236490701675501,
          0.6250903874596047,
          0.6265317047516591,
          0.6279730220437136,
          0.6294143393357682,
          0.6308556566278227,
          0.6322969739198772,
          0.6337382912119317,
          0.6351796085039862,
          0.6366209257960408,
          0.6380622430880952,
          0.6395035603801498,
          0.6409448776722043,
          0.6423861949642587,
          0.6438275122563133,
          0.6452688295483678,
          0.6467101468404224,
          0.6481514641324768,
          0.6495927814245314,
          0.6510340987165859,
          0.6524754160086405,
          0.6539167333006949,
          0.6553580505927494,
          0.656799367884804,
          0.6582406851768584,
          0.659682002468913,
          0.6611233197609675,
          0.662564637053022,
          0.6640059543450765,
          0.665447271637131,
          0.6668885889291856,
          0.66832990622124,
          0.6697712235132945,
          0.6712125408053491,
          0.6726538580974036,
          0.6740951753894581,
          0.6755364926815126,
          0.6769778099735672,
          0.6784191272656217,
          0.6798604445576761,
          0.6813017618497307,
          0.6827430791417852,
          0.6841843964338397,
          0.6856257137258942,
          0.6870670310179487,
          0.6885083483100033,
          0.6899496656020577,
          0.6913909828941123,
          0.6928323001861668,
          0.6942736174782214,
          0.6957149347702758,
          0.6971562520623303,
          0.6985975693543849,
          0.7000388866464393,
          0.7014802039384939,
          0.7029215212305484,
          0.704362838522603,
          0.7058041558146574,
          0.7072454731067119,
          0.7086867903987665,
          0.710128107690821,
          0.7115694249828755,
          0.71301074227493,
          0.7144520595669845,
          0.715893376859039,
          0.7173346941510935,
          0.7187760114431481,
          0.7202173287352026,
          0.721658646027257,
          0.7230999633193116,
          0.7245412806113661,
          0.7259825979034206,
          0.7274239151954751,
          0.7288652324875297,
          0.7303065497795842,
          0.7317478670716386,
          0.7331891843636932,
          0.7346305016557477,
          0.7360718189478023,
          0.7375131362398567,
          0.7389544535319112,
          0.7403957708239658,
          0.7418370881160202,
          0.7432784054080748,
          0.7447197227001293,
          0.7461610399921839,
          0.7476023572842383,
          0.7490436745762928,
          0.7504849918683474,
          0.7519263091604019,
          0.7533676264524564,
          0.7548089437445109,
          0.7562502610365655,
          0.7576915783286199,
          0.7591328956206744,
          0.760574212912729,
          0.7620155302047835,
          0.763456847496838,
          0.7648981647888925,
          0.766339482080947,
          0.7677807993730015,
          0.769222116665056,
          0.7706634339571106,
          0.7721047512491651,
          0.7735460685412195,
          0.7749873858332741,
          0.7764287031253286,
          0.7778700204173832,
          0.7793113377094376,
          0.7807526550014922,
          0.7821939722935467,
          0.7836352895856011,
          0.7850766068776557,
          0.7865179241697102,
          0.7879592414617648,
          0.7894005587538192,
          0.7908418760458737,
          0.7922831933379283,
          0.7937245106299828,
          0.7951658279220373,
          0.7966071452140918,
          0.7980484625061464,
          0.7994897797982008,
          0.8009310970902553,
          0.8023724143823099,
          0.8038137316743644,
          0.8052550489664189,
          0.8066963662584734,
          0.808137683550528,
          0.8095790008425825,
          0.8110203181346369,
          0.8124616354266915,
          0.813902952718746,
          0.8153442700108005,
          0.816785587302855,
          0.8182269045949095,
          0.8196682218869641,
          0.8211095391790185,
          0.8225508564710731,
          0.8239921737631276,
          0.825433491055182,
          0.8268748083472366,
          0.8283161256392911,
          0.8297574429313457,
          0.8311987602234001,
          0.8326400775154547,
          0.8340813948075092,
          0.8355227120995637,
          0.8369640293916182,
          0.8384053466836727,
          0.8398466639757273,
          0.8412879812677817,
          0.8427292985598362,
          0.8441706158518908,
          0.8456119331439453,
          0.8470532504359998,
          0.8484945677280543,
          0.8499358850201089,
          0.8513772023121634,
          0.8528185196042178,
          0.8542598368962724,
          0.8557011541883269,
          0.8571424714803814,
          0.8585837887724359,
          0.8600251060644905,
          0.861466423356545,
          0.8629077406485994,
          0.864349057940654,
          0.8657903752327085,
          0.867231692524763,
          0.8686730098168175,
          0.870114327108872,
          0.8715556444009266,
          0.872996961692981,
          0.8744382789850356,
          0.8758795962770901,
          0.8773209135691447,
          0.8787622308611991,
          0.8802035481532536,
          0.8816448654453082,
          0.8830861827373626,
          0.8845275000294172,
          0.8859688173214717,
          0.8874101346135262,
          0.8888514519055807,
          0.8902927691976352,
          0.8917340864896898,
          0.8931754037817443,
          0.8946167210737987,
          0.8960580383658533,
          0.8974993556579078,
          0.8989406729499623,
          0.9003819902420168,
          0.9018233075340714,
          0.9032646248261259,
          0.9047059421181803,
          0.9061472594102349,
          0.9075885767022894,
          0.909029893994344,
          0.9104712112863984,
          0.911912528578453,
          0.9133538458705075,
          0.9147951631625619,
          0.9162364804546165,
          0.917677797746671,
          0.9191191150387256,
          0.92056043233078,
          0.9220017496228345,
          0.9234430669148891,
          0.9248843842069435,
          0.9263257014989981,
          0.9277670187910526,
          0.9292083360831072,
          0.9306496533751616,
          0.9320909706672161,
          0.9335322879592707,
          0.9349736052513252,
          0.9364149225433797,
          0.9378562398354342,
          0.9392975571274887,
          0.9407388744195432,
          0.9421801917115977,
          0.9436215090036523,
          0.9450628262957068,
          0.9465041435877612,
          0.9479454608798158,
          0.9493867781718703,
          0.9508280954639249,
          0.9522694127559793,
          0.9537107300480339,
          0.9551520473400884,
          0.9565933646321428,
          0.9580346819241974,
          0.9594759992162519,
          0.9609173165083065,
          0.9623586338003609,
          0.9637999510924155,
          0.96524126838447,
          0.9666825856765244,
          0.968123902968579,
          0.9695652202606335,
          0.9710065375526881,
          0.9724478548447425,
          0.973889172136797,
          0.9753304894288516,
          0.9767718067209061,
          0.9782131240129606,
          0.9796544413050151,
          0.9810957585970697,
          0.9825370758891241,
          0.9839783931811786,
          0.9854197104732332,
          0.9868610277652877,
          0.9883023450573422,
          0.9897436623493967,
          0.9911849796414512,
          0.9926262969335058,
          0.9940676142255602,
          0.9955089315176148,
          0.9969502488096693,
          0.9983915661017237,
          0.9998328833937783,
          1.0012742006858326,
          1.0027155179778873,
          1.0041568352699417,
          1.0055981525619964,
          1.0070394698540508,
          1.0084807871461052,
          1.0099221044381599,
          1.0113634217302143,
          1.0128047390222688,
          1.0142460563143234,
          1.0156873736063778,
          1.0171286908984323,
          1.018570008190487,
          1.0200113254825414,
          1.021452642774596,
          1.0228939600666505,
          1.0243352773587049,
          1.0257765946507595,
          1.027217911942814,
          1.0286592292348684,
          1.030100546526923,
          1.0315418638189775,
          1.032983181111032,
          1.0344244984030866,
          1.035865815695141,
          1.0373071329871955,
          1.0387484502792501,
          1.0401897675713045,
          1.0416310848633592,
          1.0430724021554136,
          1.044513719447468,
          1.0459550367395227,
          1.0473963540315772,
          1.0488376713236316,
          1.0502789886156862,
          1.0517203059077407,
          1.0531616231997951,
          1.0546029404918498,
          1.0560442577839042,
          1.0574855750759589,
          1.0589268923680133,
          1.0603682096600677,
          1.0618095269521224,
          1.0632508442441768,
          1.0646921615362313,
          1.066133478828286,
          1.0675747961203403,
          1.0690161134123948,
          1.0704574307044494,
          1.0718987479965039,
          1.0733400652885585,
          1.074781382580613,
          1.0762226998726674,
          1.077664017164722,
          1.0791053344567765,
          1.080546651748831,
          1.0819879690408856,
          1.08342928633294,
          1.0848706036249944,
          1.086311920917049,
          1.0877532382091035,
          1.0891945555011582,
          1.0906358727932126,
          1.092077190085267,
          1.0935185073773217,
          1.0949598246693761,
          1.0964011419614306,
          1.0978424592534852,
          1.0992837765455397,
          1.100725093837594,
          1.1021664111296487,
          1.1036077284217032,
          1.1050490457137578,
          1.1064903630058123,
          1.1079316802978667,
          1.1093729975899214,
          1.1108143148819758,
          1.1122556321740302,
          1.1136969494660849,
          1.1151382667581393,
          1.1165795840501938,
          1.1180209013422484,
          1.1194622186343028,
          1.1209035359263575,
          1.122344853218412,
          1.1237861705104664,
          1.125227487802521,
          1.1266688050945755,
          1.1281101223866299,
          1.1295514396786845,
          1.130992756970739,
          1.1324340742627934,
          1.133875391554848,
          1.1353167088469025,
          1.136758026138957,
          1.1381993434310116,
          1.139640660723066,
          1.1410819780151207,
          1.1425232953071751,
          1.1439646125992295,
          1.1454059298912842,
          1.1468472471833386,
          1.148288564475393,
          1.1497298817674477,
          1.1511711990595022,
          1.1526125163515566,
          1.1540538336436112,
          1.1554951509356657,
          1.1569364682277203,
          1.1583777855197748,
          1.1598191028118292,
          1.1612604201038839,
          1.1627017373959383,
          1.1641430546879927,
          1.1655843719800474,
          1.1670256892721018,
          1.1684670065641563,
          1.169908323856211,
          1.1713496411482653,
          1.17279095844032,
          1.1742322757323744,
          1.1756735930244289,
          1.1771149103164835,
          1.178556227608538,
          1.1799975449005924,
          1.181438862192647,
          1.1828801794847015,
          1.184321496776756,
          1.1857628140688106,
          1.187204131360865,
          1.1886454486529197,
          1.190086765944974,
          1.1915280832370285,
          1.1929694005290832,
          1.1944107178211376,
          1.195852035113192,
          1.1972933524052467,
          1.1987346696973011,
          1.2001759869893556,
          1.2016173042814102,
          1.2030586215734647,
          1.2044999388655193,
          1.2059412561575737,
          1.2073825734496282,
          1.2088238907416828,
          1.2102652080337373,
          1.2117065253257917,
          1.2131478426178464,
          1.2145891599099008,
          1.2160304772019552,
          1.2174717944940099,
          1.2189131117860643,
          1.220354429078119,
          1.2217957463701734,
          1.2232370636622278,
          1.2246783809542825,
          1.226119698246337,
          1.2275610155383914,
          1.229002332830446,
          1.2304436501225005,
          1.2318849674145549,
          1.2333262847066095,
          1.234767601998664,
          1.2362089192907184,
          1.237650236582773,
          1.2390915538748275,
          1.2405328711668822,
          1.2419741884589366,
          1.243415505750991,
          1.2448568230430457,
          1.2462981403351001,
          1.2477394576271545,
          1.2491807749192092,
          1.2506220922112636,
          1.252063409503318,
          1.2535047267953727,
          1.2549460440874272,
          1.2563873613794818,
          1.2578286786715362,
          1.2592699959635907,
          1.2607113132556453,
          1.2621526305476998,
          1.2635939478397542,
          1.2650352651318089,
          1.2664765824238633,
          1.2679178997159177,
          1.2693592170079724,
          1.2708005343000268,
          1.2722418515920815,
          1.273683168884136,
          1.2751244861761903,
          1.276565803468245,
          1.2780071207602994,
          1.2794484380523539,
          1.2808897553444085,
          1.282331072636463,
          1.2837723899285174,
          1.285213707220572,
          1.2866550245126265,
          1.2880963418046811,
          1.2895376590967356,
          1.29097897638879,
          1.2924202936808447,
          1.293861610972899,
          1.2953029282649535,
          1.2967442455570082,
          1.2981855628490626,
          1.299626880141117,
          1.3010681974331717,
          1.3025095147252261,
          1.3039508320172808,
          1.3053921493093352,
          1.3068334666013897,
          1.3082747838934443,
          1.3097161011854987,
          1.3111574184775532,
          1.3125987357696078,
          1.3140400530616623,
          1.3154813703537167,
          1.3169226876457714,
          1.3183640049378258,
          1.3198053222298805,
          1.3212466395219349,
          1.3226879568139893,
          1.324129274106044,
          1.3255705913980984,
          1.3270119086901528,
          1.3284532259822075,
          1.329894543274262,
          1.3313358605663164,
          1.332777177858371,
          1.3342184951504255,
          1.3356598124424799,
          1.3371011297345345,
          1.338542447026589,
          1.3399837643186436,
          1.341425081610698,
          1.3428663989027525,
          1.3443077161948072,
          1.3457490334868616,
          1.347190350778916,
          1.3486316680709707,
          1.3500729853630251,
          1.3515143026550795,
          1.3529556199471342,
          1.3543969372391886,
          1.3558382545312433,
          1.3572795718232977,
          1.3587208891153522,
          1.3601622064074068,
          1.3616035236994612,
          1.3630448409915157,
          1.3644861582835703,
          1.3659274755756248,
          1.3673687928676792,
          1.3688101101597339,
          1.3702514274517883,
          1.371692744743843,
          1.3731340620358974,
          1.3745753793279518,
          1.3760166966200065,
          1.377458013912061,
          1.3788993312041153,
          1.38034064849617,
          1.3817819657882244,
          1.3832232830802789,
          1.3846646003723335,
          1.386105917664388,
          1.3875472349564426,
          1.388988552248497,
          1.3904298695405515,
          1.3918711868326061,
          1.3933125041246606,
          1.394753821416715,
          1.3961951387087697,
          1.397636456000824,
          1.3990777732928785,
          1.4005190905849332,
          1.4019604078769876,
          1.4034017251690423,
          1.4048430424610967,
          1.4062843597531511,
          1.4077256770452058,
          1.4091669943372602,
          1.4106083116293147,
          1.4120496289213693,
          1.4134909462134237,
          1.4149322635054782,
          1.4163735807975328,
          1.4178148980895873,
          1.419256215381642,
          1.4206975326736964,
          1.4221388499657508,
          1.4235801672578055,
          1.4250214845498599,
          1.4264628018419143,
          1.427904119133969,
          1.4293454364260234,
          1.4307867537180778,
          1.4322280710101325,
          1.433669388302187,
          1.4351107055942414,
          1.436552022886296,
          1.4379933401783505,
          1.439434657470405,
          1.4408759747624595
         ],
         "xaxis": "x",
         "y": [
          2.500000000000028e-71,
          5.022517554999069e-62,
          3.4433126356171127e-57,
          6.722935072136433e-54,
          2.1124281174073004e-51,
          2.1769136028733923e-49,
          1.0576235276532439e-47,
          2.989268871601673e-46,
          5.613238782244418e-45,
          7.656638695363674e-44,
          8.0788440819777e-43,
          6.904224683201573e-42,
          4.947410892694692e-41,
          3.053186238533091e-40,
          1.65728132540561e-39,
          8.04732497196042e-39,
          3.544062456902532e-38,
          1.4318014795998353e-37,
          5.356954619638945e-37,
          1.871044141411015e-36,
          6.142443356289635e-36,
          1.9064707859764838e-35,
          5.622741600959767e-35,
          1.582733547523751e-34,
          4.268591698384822e-34,
          1.1067622759806102e-33,
          2.7670925946105478e-33,
          6.68890632468828e-33,
          1.5670661518176043e-32,
          3.565761350145458e-32,
          7.895674665396492e-32,
          1.7043422127469415e-31,
          3.5920533931220766e-31,
          7.402405163433681e-31,
          1.4935430867090495e-30,
          2.95392577786918e-30,
          5.7332003506471045e-30,
          1.0930764687390073e-29,
          2.0491108118071926e-29,
          3.78021371170871e-29,
          6.868309296639303e-29,
          1.2299494079613465e-28,
          2.172336212039036e-28,
          3.786578545475128e-28,
          6.517873362842625e-28,
          1.1085252370858955e-27,
          1.863768505009822e-27,
          3.099250637900622e-27,
          5.09962488248529e-27,
          8.306592686095406e-27,
          1.339941880757777e-26,
          2.1413729465305518e-26,
          3.391543764909425e-26,
          5.325348016845498e-26,
          8.292444781669891e-26,
          1.2809501932520343e-25,
          1.96345521961351e-25,
          2.9872143941338963e-25,
          4.512112242072046e-25,
          6.768108738646594e-25,
          1.008391650444507e-24,
          1.4926612319181928e-24,
          2.195605803124922e-24,
          3.209927888223476e-24,
          4.665160658626344e-24,
          6.74135481809136e-24,
          9.68751253439025e-24,
          1.3846301232742768e-23,
          1.9687039565612007e-23,
          2.784953484721871e-23,
          3.920209829680499e-23,
          5.491801183832494e-23,
          7.657591752398564e-23,
          1.0629110871918474e-22,
          1.4688659544794562e-22,
          2.0211518558194261e-22,
          2.769467793837165e-22,
          3.779387514015413e-22,
          5.137118531794177e-22,
          6.95559708642148e-22,
          9.382269273039313e-22,
          1.2608994120806711e-21,
          1.6884609281534837e-21,
          2.253082833189189e-21,
          2.996229531799997e-21,
          3.971181285178549e-21,
          5.24619916544937e-21,
          6.908485005467846e-21,
          9.069123119136931e-21,
          1.1869231488790553e-20,
          1.5487599370956018e-20,
          2.0150147431177085e-20,
          2.6141617427052404e-20,
          3.381998327742055e-20,
          4.3634176612519505e-20,
          5.614584054646065e-20,
          7.205596888978806e-20,
          9.223745832972785e-20,
          1.177748029001247e-19,
          1.500123987371984e-19,
          1.9061320891943235e-19,
          2.4162987034556667e-19,
          3.0559071545659715e-19,
          3.856036407746219e-19,
          4.854812927877438e-19,
          6.098916723875124e-19,
          7.6453899648094965e-19,
          9.563805163123852e-19,
          1.1938859956308099e-18,
          1.487347720069836e-18,
          1.849250267032175e-18,
          2.2947108415734606e-18,
          2.842002810829214e-18,
          3.513177184477865e-18,
          4.3347992336984384e-18,
          5.338820263868114e-18,
          6.5636078110650316e-18,
          8.055161280686887e-18,
          9.868544357634323e-18,
          1.2069570470033423e-17,
          1.4736783271016252e-17,
          1.796378061557166e-17,
          2.1861937964531697e-17,
          2.6563595672069007e-17,
          3.22257843491386e-17,
          3.903457360311017e-17,
          4.7210142112979675e-17,
          5.701268141133367e-17,
          6.874926213412076e-17,
          8.278181011954911e-17,
          9.953636087018121e-17,
          1.1951378485249107e-16,
          1.4330220324747345e-16,
          1.71591344476372e-16,
          2.051891265438417e-16,
          2.450407894533427e-16,
          2.922509461966538e-16,
          3.481089707023684e-16,
          4.141181973141217e-16,
          4.920294695986168e-16,
          5.838796473771671e-16,
          6.920357607415452e-16,
          8.192455894627481e-16,
          9.686955467423223e-16,
          1.1440768589223253e-15,
          1.3496611589201562e-15,
          1.5903867522899346e-15,
          1.8719569725871623e-15,
          2.2009522189531406e-15,
          2.584957465548913e-15,
          3.032707251867144e-15,
          3.554250407467245e-15,
          4.161137036988787e-15,
          4.866630594337803e-15,
          5.685948211935144e-15,
          6.636532825405384e-15,
          7.738361049944641e-15,
          9.014291226092387e-15,
          1.0490456564394474e-14,
          1.2196708885581641e-14,
          1.416711908096945e-14,
          1.6440541112902998e-14,
          1.9061247143876102e-14,
          2.20796422327161e-14,
          2.5553067974870993e-14,
          2.954670550000408e-14,
          3.4134589383229394e-14,
          3.940074528666187e-14,
          4.544046553669175e-14,
          5.236173837169886e-14,
          6.02868482780014e-14,
          6.935416668310141e-14,
          7.972015431034212e-14,
          9.156159873491155e-14,
          1.050781131361308e-13,
          1.2049492493512402e-13,
          1.3806598596195783e-13,
          1.580774390356143e-13,
          1.8085147938917275e-13,
          2.0675065325886717e-13,
          2.3618264020901365e-13,
          2.6960557041742155e-13,
          3.075339332326982e-13,
          3.5054513887336334e-13,
          3.992868012097722e-13,
          4.5448481619715584e-13,
          5.169523177593875e-13,
          5.87599600808987e-13,
          6.674451096851239e-13,
          7.576275996566865e-13,
          8.594195893365402e-13,
          9.742422329542667e-13,
          1.1036817535123082e-12,
          1.249507590984586e-12,
          1.4136924339927174e-12,
          1.5984343189054013e-12,
          1.8061809971506876e-12,
          2.0396567898147187e-12,
          2.3018921684389274e-12,
          2.5962563224429807e-12,
          2.92649299692498e-12,
          3.296759909863872e-12,
          3.7116720851246455e-12,
          4.176349467304715e-12,
          4.696469216535698e-12,
          5.278323116052921e-12,
          5.928880562866095e-12,
          6.655857652418717e-12,
          7.467792911944963e-12,
          8.374130284554122e-12,
          9.385310017167513e-12,
          1.051286816056727e-11,
          1.1769545449294847e-11,
          1.3169406393274876e-11,
          1.4727969482171884e-11,
          1.6462349477983702e-11,
          1.8391412851604595e-11,
          2.0535947505485814e-11,
          2.2918848017496447e-11,
          2.5565317741123672e-11,
          2.8503089204744063e-11,
          3.176266436836059e-11,
          3.537757642051857e-11,
          3.9384674931663515e-11,
          4.382443632363726e-11,
          4.874130176899076e-11,
          5.4184044799049953e-11,
          6.020617107695841e-11,
          6.686635298206758e-11,
          7.422890185587603e-11,
          8.236428097820127e-11,
          9.134966257631988e-11,
          1.0126953242047592e-10,
          1.1221634582757764e-10,
          1.242912391821198e-10,
          1.3760480139074887e-10,
          1.5227791001560077e-10,
          1.6844263718306673e-10,
          1.862432307403459e-10,
          2.0583717653363219e-10,
          2.273963481106941e-10,
          2.511082506085123e-10,
          2.7717736607569443e-10,
          3.058266080010484e-10,
          3.3729889337650787e-10,
          3.718588412162664e-10,
          4.097946070871503e-10,
          4.5141986387994373e-10,
          4.970759397705853e-10,
          5.471341250860161e-10,
          6.019981606052982e-10,
          6.621069206950866e-10,
          7.279373056027544e-10,
          8.000073582141159e-10,
          8.788796216286995e-10,
          9.651647550180143e-10,
          1.0595254264147875e-9,
          1.1626805023380888e-9,
          1.2754095554944814e-9,
          1.3985577132137254e-9,
          1.5330408707836983e-9,
          1.679851295447809e-9,
          1.8400636485252994e-9,
          2.0148414549144476e-9,
          2.2054440511487047e-9,
          2.413234045200028e-9,
          2.6396853233702166e-9,
          2.8863916418857607e-9,
          3.1550758432215677e-9,
          3.447599739731841e-9,
          3.765974709869587e-9,
          4.1123730551376615e-9,
          4.489140168943121e-9,
          4.898807571731536e-9,
          5.344106870166848e-9,
          5.82798470170823e-9,
          6.353618729724048e-9,
          6.9244347582902e-9,
          7.544125040051097e-9,
          8.216667854994972e-9,
          8.946348442715853e-9,
          9.737781375721922e-9,
          1.0595934466612934e-8,
          1.1526154307502642e-8,
          1.2534193545924625e-8,
          1.3626240007637209e-8,
          1.480894778326487e-8,
          1.608947040258042e-8,
          1.7475496227476914e-8,
          1.8975286202307875e-8,
          2.0597714108311236e-8,
          2.2352309477298926e-8,
          2.4249303328706572e-8,
          2.6299676903479223e-8,
          2.851521357814159e-8,
          3.090855415279072e-8,
          3.349325571767006e-8,
          3.628385431447924e-8,
          3.929593162064508e-8,
          4.254618589747892e-8,
          4.6052507456485425e-8,
          4.983405891209357e-8,
          5.391136050380999e-8,
          5.830638078623633e-8,
          6.3042633001623e-8,
          6.814527746665037e-8,
          7.364123032299491e-8,
          7.955927901997101e-8,
          8.593020491719238e-8,
          9.278691341579787e-8,
          1.0016457204837708e-7,
          1.0810075698036349e-7,
          1.1663560839937185e-7,
          1.2581199529378795e-7,
          1.3567569014791315e-7,
          1.4627555410821391e-7,
          1.576637332036735e-7,
          1.698958662331217e-7,
          1.8303130496353638e-7,
          1.9713334731598544e-7,
          2.122694842499668e-7,
          2.2851166109254353e-7,
          2.459365540959688e-7,
          2.6462586304638917e-7,
          2.8466662078692674e-7,
          3.061515205608689e-7,
          3.291792621250951e-7,
          3.5385491763007923e-7,
          3.8029031831120394e-7,
          4.0860446308643514e-7,
          4.389239502080078e-7,
          4.7138343317060063e-7,
          5.061261021355642e-7,
          5.43304192190389e-7,
          5.830795198245989e-7,
          6.256240490679494e-7,
          6.711204888041043e-7,
          7.197629228430699e-7,
          7.7175747440867e-7,
          8.273230067732241e-7,
          8.866918618506704e-7,
          9.501106386414873e-7,
          0.0000010178410135082806,
          0.0000010901606043496903,
          0.0000011673638808326902,
          0.0000012497631229391638,
          0.0000013376894301824787,
          0.0000014314937839531526,
          0.000001531548165560185,
          0.0000016382467326462867,
          0.0000017520070567708723,
          0.0000018732714250747908,
          0.0000020025082090654476,
          0.00000214021330368979,
          0.000002286911639997004,
          0.000002443158774830922,
          0.0000026095425611363874,
          0.0000027866849026122397,
          0.0000029752435965980574,
          0.0000031759142692412637,
          0.000003389432407156113,
          0.000003616575489957209,
          0.000003858165228226892,
          0.000004115069911658139,
          0.000004388206872303927,
          0.00000467854506805893,
          0.0000049871077917013366,
          0.000005314975511029933,
          0.000005663288845848007,
          0.000006033251687766172,
          0.000006426134469026079,
          0.000006843277586782287,
          0.000007286094989524644,
          0.00000775607793257258,
          0.000008254798909833448,
          0.000008783915769281874,
          0.00000934517601989335,
          0.000009940421338046534,
          0.00001057159228170032,
          0.000011240733220951444,
          0.000011949997493885109,
          0.000012701652796949372,
          0.000013498086819407532,
          0.000014341813131758504,
          0.000015235477338358492,
          0.00001618186350482858,
          0.00001718390087119587,
          0.000018244670862087243,
          0.00001936741440567477,
          0.000020555539573462247,
          0.00002181262955340351,
          0.000023142450969251325,
          0.000024548962559457565,
          0.000026036324229371568,
          0.000027608906490927264,
          0.000029271300304456684,
          0.00003102832733772554,
          0.00003288505065776156,
          0.000034846785871518866,
          0.000036919112731918415,
          0.00003910788722629679,
          0.000041419254164813705,
          0.000043859660286880295,
          0.000046435867904206726,
          0.00004915496909959853,
          0.00005202440050119085,
          0.00005505195865236013,
          0.00005824581599811959,
          0.00006161453750939173,
          0.0000651670979671273,
          0.00006891289992883983,
          0.00007286179240072526,
          0.00007702409023915771,
          0.00008141059430595533,
          0.00008603261240246013,
          0.0000909019810080849,
          0.00009603108784965186,
          0.00010143289532847083,
          0.00010712096483277482,
          0.00011310948196378718,
          0.00011941328270436312,
          0.00012604788055981575,
          0.0001330294947012121,
          0.00014037507914210995,
          0.00014810235298037754,
          0.00015622983173743413,
          0.00016477685982791427,
          0.00017376364419347605,
          0.0001832112891351324,
          0.00019314183237917107,
          0.00020357828241243723,
          0.00021454465712340032,
          0.0002260660237861274,
          0.00023816854042494202,
          0.0002508794985982211,
          0.00026422736764044875,
          0.0002782418404022641,
          0.0002929538805289247,
          0.0003083957713182156,
          0.00032460116619943707,
          0.0003416051408757269,
          0.00035944424717258356,
          0.00037815656863596,
          0.0003977817779239455,
          0.00041836119603649033,
          0.0004399378534282171,
          0.0004625565530498299,
          0.000486263935364048,
          0.0005111085453825155,
          0.0005371409017704647,
          0.0005644135680663498,
          0.000592981226063942,
          0.0006229007514047767,
          0.0006542312914290096,
          0.0006870343453330716,
          0.0007213738466825985,
          0.0007573162483293467,
          0.0007949306097808405,
          0.000834288687071566,
          0.0008754650251845124,
          0.0009185370530718217,
          0.0009635851813231711,
          0.0010106929025302885,
          0.001059946894395877,
          0.0011114371256348062,
          0.0011652569647150513,
          0.0012215032914855263,
          0.0012802766117372688,
          0.0013416811747439786,
          0.0014058250938270857,
          0.0014728204699899188,
          0.0015427835186644866,
          0.001615834699613652,
          0.0016920988500302148,
          0.001771705320873446,
          0.0018547881164823424,
          0.001941486037503361,
          0.0020319428271692126,
          0.0021263073209634525,
          0.0022247335997041366,
          0.0023273811460778225,
          0.002434415004653403,
          0.002546005945403218,
          0.00266233063075653,
          0.002783571786208343,
          0.002909918374504008,
          0.0030415657734174893,
          0.0031787159571382514,
          0.0033215776812793208,
          0.0034703666715153706,
          0.0036253058158572144,
          0.003786625360565047,
          0.003954563109699979,
          0.004129364628309101,
          0.0043112834492360285,
          0.004500581283544394,
          0.004697528234538087,
          0.004902403015357345,
          0.005115493170125238,
          0.005337095298614852,
          0.005567515284402064,
          0.005807068526464168,
          0.006056080174178775,
          0.006314885365673046,
          0.006583829469466466,
          0.006863268329345246,
          0.007153568512400584,
          0.007455107560156251,
          0.007768274242705208,
          0.008093468815767533,
          0.00843110328057643,
          0.008781601646490809,
          0.009145400196226712,
          0.009522947753591806,
          0.009914705953600497,
          0.010321149514838314,
          0.01074276651393753,
          0.011180058662016889,
          0.011633541582930495,
          0.012103745093162711,
          0.012591213483196112,
          0.013096505800172355,
          0.01362019613165551,
          0.014162873890298768,
          0.014725144099205962,
          0.015307627677769966,
          0.015910961727760676,
          0.016535799819424216,
          0.017182812277347158,
          0.017852686465827407,
          0.018546127073484988,
          0.01926385639683356,
          0.020006614622525867,
          0.02077516010797331,
          0.021570269660030093,
          0.022392738811422345,
          0.023243382094591373,
          0.024123033312608573,
          0.025032545806810268,
          0.025972792720788486,
          0.026944667260363774,
          0.02794908294915457,
          0.02898697387934643,
          0.03005929495725505,
          0.031167022143264538,
          0.03231115268571202,
          0.03349270534827959,
          0.034712720630443145,
          0.03597226098051852,
          0.03727241100083147,
          0.03861427764453292,
          0.03999899040356655,
          0.04142770148728811,
          0.04290158599122358,
          0.04442184205544863,
          0.045989691012057174,
          0.04760637752118057,
          0.04927316969501071,
          0.050991359209270413,
          0.0527622614015681,
          0.054587215356062285,
          0.05646758397386147,
          0.05840475402856899,
          0.06040013620638422,
          0.06245516513015789,
          0.0645712993668016,
          0.0667500214174404,
          0.06899283768969428,
          0.0713012784514741,
          0.07367689776566848,
          0.07612127340510066,
          0.07863600674712791,
          0.08122272264725766,
          0.08388306929115542,
          0.08661871802441075,
          0.08943136315944242,
          0.09232272175891182,
          0.09529453339502623,
          0.09834855988410725,
          0.101486584995817,
          0.10471041413642292,
          0.10802187400550478,
          0.11142281222549869,
          0.11491509694349486,
          0.11850061640470438,
          0.12218127849702351,
          0.12595901026613635,
          0.12983575740060718,
          0.1338134836864257,
          0.13789417043048258,
          0.1420798158524718,
          0.14637243444472578,
          0.15077405629951401,
          0.15528672640334495,
          0.15991250389784367,
          0.16465346130678818,
          0.16951168372890799,
          0.17448926799608702,
          0.1795883217966176,
          0.18481096276319414,
          0.19015931752534973,
          0.19563552072607968,
          0.20124171400241558,
          0.20698004492974353,
          0.2128526659297065,
          0.21886173314154378,
          0.2250094052567718,
          0.23129784231713582,
          0.23772920447580206,
          0.24430565072180452,
          0.25102933756778806,
          0.257902417701136,
          0.264927038598616,
          0.2721053411047162,
          0.2794394579738827,
          0.2869315123769263,
          0.2945836163719049,
          0.3023978693398314,
          0.31037635638561517,
          0.31852114670468673,
          0.3268342919158064,
          0.3353178243606107,
          0.34397375537049846,
          0.3528040735015149,
          0.36181074273794483,
          0.3709957006653681,
          0.38036085661401264,
          0.3899080897732595,
          0.39963924727824246,
          0.40955614226951276,
          0.4196605519268215,
          0.4299542154781089,
          0.4404388321848601,
          0.4511160593050267,
          0.4619875100347943,
          0.4730547514305215,
          0.4843193023122121,
          0.49578263114998344,
          0.507446153935016,
          0.5193112320365307,
          0.531379170046403,
          0.5436512136130867,
          0.5561285472665513,
          0.5688122922360048,
          0.5817035042622362,
          0.5948031714064463,
          0.608112211857496,
          0.6216314717395458,
          0.6353617229221227,
          0.6493036608346813,
          0.6634579022877887,
          0.6778249833030784,
          0.6924053569542108,
          0.7071993912210721,
          0.7222073668595004,
          0.737429475288877,
          0.7528658164999401,
          0.7685163969852252,
          0.7843811276945387,
          0.8004598220179544,
          0.8167521937987983,
          0.8332578553791274,
          0.8499763156802382,
          0.866906978320759,
          0.8840491397748887,
          0.9014019875733392,
          0.9189645985496079,
          0.9367359371341399,
          0.9547148536990095,
          0.9729000829556853,
          0.9912902424085135,
          1.0098838308664928,
          1.0286792270159135,
          1.0476746880564578,
          1.0668683484032835,
          1.086258218457656,
          1.1058421834486014,
          1.1256180023481062,
          1.1455833068622707,
          1.1657356005008772,
          1.186072257727703,
          1.2065905231939584,
          1.2272875110571166,
          1.2481602043873627,
          1.2692054546638842,
          1.2904199813630879,
          1.311800371640845,
          1.333343080110735,
          1.3550444287202421,
          1.3769006067267457,
          1.3989076707751062,
          1.4210615450785047,
          1.4433580217042128,
          1.4657927609657704,
          1.4883612919230198,
          1.5110590129913775,
          1.533881192661495,
          1.556822970330579,
          1.5798793572462781,
          1.6030452375641715,
          1.6263153695196053,
          1.649684386714598,
          1.673146799520455,
          1.6966969965964753,
          1.720329246525139,
          1.7440376995640385,
          1.7678163895145578,
          1.7916592357073309,
          1.8155600451043221,
          1.8395125145171707,
          1.8635102329414381,
          1.8875466840061477,
          1.9116152485379145,
          1.9357092072388662,
          1.9598217434773237,
          1.983945946190135,
          2.008074812895444,
          2.0322012528144433,
          2.0563180901005698,
          2.0804180671745303,
          2.104493848163257,
          2.1285380224408583,
          2.1525431082695192,
          2.1765015565380015,
          2.2004057545955202,
          2.2242480301783383,
          2.248020655426531,
          2.2717158509881488,
          2.295325790207813,
          2.3188426033967526,
          2.3422583821811642,
          2.3655651839255327,
          2.3887550362275674,
          2.41181994148128,
          2.4347518815044515,
          2.457542822226924,
          2.480184718435718,
          2.5026695185731254,
          2.5249891695837303,
          2.547135621806181,
          2.5691008339055323,
          2.590876777841851,
          2.612455443870673,
          2.633828845570867,
          2.654989024895402,
          2.675928057240382,
          2.6966380565277417,
          2.7171111802968677,
          2.7373396348004175,
          2.7573156800995506,
          2.7770316351537345,
          2.796479882900264,
          2.815652875318659,
          2.8345431384750155,
          2.8531432775413763,
          2.871445981785336,
          2.889444029524801,
          2.907130293043187,
          2.9244977434600568,
          2.941539455552352,
          2.9582486125214937,
          2.9746185107014176,
          2.9906425642028753,
          3.0063143094893148,
          3.0216274098796143,
          3.0365756599731504,
          3.051152989992667,
          3.0653534700404506,
          3.0791713142635175,
          3.092600884923469,
          3.1056366963668487,
          3.1182734188919214,
          3.130505882507854,
          3.1423290805824218,
          3.1537381733745065,
          3.1647284914476908,
          3.1752955389614375,
          3.1854349968364923,
          3.1951427257911966,
          3.2044147692456253,
          3.2132473560905574,
          3.2216369033184407,
          3.2295800185136847,
          3.237073502199746,
          3.2441143500406344,
          3.2506997548946392,
          3.2568271087182343,
          3.2624940043182815,
          3.267698236950831,
          3.2724378057649997,
          3.276710915090523,
          3.280515975567861,
          3.2838516051197892,
          3.2867166297637223,
          3.289110084264014,
          3.2910312126238925,
          3.2924794684166323,
          3.293454514955924,
          3.2939562253054935,
          3.293984682128211,
          3.29354017737515,
          3.292623211815165,
          3.2912344944058254,
          3.289374941506632,
          3.2870456759356443,
          3.2842480258708804,
          3.2809835235978975,
          3.277253904105237,
          3.2730611035295416,
          3.2684072574523038,
          3.263294699050354,
          3.2577259571024237,
          3.2517037538541453,
          3.2452310027441174,
          3.2383108059937453,
          3.2309464520636992,
          3.223141412980002,
          3.2148993415328597,
          3.2062240683514895,
          3.1971195988582957,
          3.1875901101058997,
          3.1776399475005888,
          3.167273621415889,
          3.1564958037000697,
          3.145311324081423,
          3.133725166475346,
          3.121742465197213,
          3.109368501085239,
          3.096608697537475,
          3.0834686164672136,
          3.0699539541811336,
          3.0560705371845507,
          3.0418243179181683,
          3.0272213704308037,
          3.0122678859925944,
          2.9969701686531325,
          2.981334630749137,
          2.96536778836617,
          2.949076256758962,
          2.9324667457349234,
          2.9155460550053593,
          2.898321069509,
          2.8807987547123246,
          2.8629861518912,
          2.8448903733983637,
          2.826518597921156,
          2.807878065733942,
          2.7889760739496223,
          2.769819971774502,
          2.750417155770871,
          2.730775065131469,
          2.710901176969981,
          2.6908030016317155,
          2.6704880780284332,
          2.64996396900128,
          2.629238256715727,
          2.6083185380922793,
          2.587212420276615,
          2.5659275161528488,
          2.5444714399033717,
          2.5228518026186686,
          2.5010762079605326,
          2.4791522478817494,
          2.4570874984054933,
          2.4348895154673755,
          2.412565830823028,
          2.390123948024053,
          2.3675713384649857,
          2.344915437503794,
          2.322163640658416,
          2.2993232998816224,
          2.2764017199163784,
          2.253406154733874,
          2.2303438040560737,
          2.2072218099647194,
          2.184047253598495,
          2.1608271519398796,
          2.137568454693274,
          2.1142780412557083,
          2.090962717781336,
          2.067629214340916,
          2.0442841821772273,
          2.020934191057297,
          1.9975857267222612,
          1.9742451884354288,
          1.9509188866291634,
          1.9276130406509773,
          1.9043337766091153,
          1.881087125317889,
          1.857879020342846,
          1.8347152961457058,
          1.8116016863290327,
          1.788543821980399,
          1.7655472301156712,
          1.7426173322211271,
          1.7197594428937604,
          1.6969787685793032,
          1.6742804064072043,
          1.651669343121802,
          1.6291504541088748,
          1.6067285025166078,
          1.5844081384699389,
          1.5621938983772503,
          1.540090204328225,
          1.5181013635815979,
          1.4962315681415892,
          1.474484894421578,
          1.4528653029936593,
          1.4313766384226005,
          1.410022629182618,
          1.3888068876554769,
          1.367732910208238,
          1.3468040773489651,
          1.3260236539587296,
          1.3053947895981421,
          1.2849205188865838,
          1.2646037619524033,
          1.2444473249521273,
          1.2244539006568986,
          1.2046260691042083,
          1.1849662983129556,
          1.1654769450599842,
          1.146160255716078,
          1.1270183671394463,
          1.108053307624759,
          1.0892669979057317,
          1.0706612522092207,
          1.052237779358915,
          1.0339981839265788,
          1.0159439674288355,
          0.9980765295675735,
          0.9803971695118996,
          0.9629070872197452,
          0.9456073847971203,
          0.9284990678930474,
          0.9115830471282887,
          0.8948601395559044,
          0.8783310701517317,
          0.8619964733329346,
          0.8458568945027392,
          0.829912791619495,
          0.8141645367882864,
          0.7986124178732613,
          0.7832566401289272,
          0.7680973278486984,
          0.7531345260289247,
          0.7383682020467885,
          0.7237982473503924,
          0.7094244791593948,
          0.6952466421746615,
          0.6812644102953515,
          0.6674773883419081,
          0.6538851137835197,
          0.6404870584685458,
          0.6272826303565495,
          0.6142711752505432,
          0.6014519785280876,
          0.5888242668699909,
          0.5763872099853188,
          0.5641399223314754,
          0.5520814648282107,
          0.5402108465643831,
          0.5285270264963449,
          0.5170289151369346,
          0.5057153762339811,
          0.49458522843737024,
          0.48363724695369686,
          0.4728701651875682,
          0.46228267636871007,
          0.4518734351640043,
          0.441641059273649,
          0.43158413101068593,
          0.4217011988631557,
          0.411990779038156,
          0.4024513569871862,
          0.39308138891210115,
          0.38387930325111436,
          0.37484350214427786,
          0.36597236287790585,
          0.3572642393074616,
          0.3487174632584467,
          0.34033034590484657,
          0.33210117912475823,
          0.3240282368328243,
          0.31610977628912473,
          0.3083440393842492,
          0.30072925390023747,
          0.29326363474716655,
          0.2859453851751523,
          0.2787726979615614,
          0.2717437565732828,
          0.2648567363039074,
          0.25810980538568806,
          0.2515011260762049,
          0.24502885571965424,
          0.23869114778271042,
          0.23248615286494334,
          0.2264120196837898,
          0.22046689603407638,
          0.21464892972216074
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Weibull-Verteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          2
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "range": [
          0,
          5
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "a, c = 0.5, 1\n",
    "x = np.linspace(0.001, stats.exponweib.ppf(0.99,a, c), NN)\n",
    "y = stats.exponweib.pdf(x,a, c)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>k</i>={a}; <i>λ</i>={c}\"}))\n",
    "\n",
    "a, c = 1, 0.8\n",
    "x = np.linspace(0.001, stats.exponweib.ppf(0.99,a, c), NN)\n",
    "y = stats.exponweib.pdf(x,a, c)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>k</i>={a}; <i>λ</i>={c}\"}))\n",
    "\n",
    "a, c = 1, 1.5\n",
    "x = np.linspace(0.001, stats.exponweib.ppf(0.99,a, c), NN)\n",
    "y = stats.exponweib.pdf(x,a, c)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>k</i>={a}; <i>λ</i>={c}\"}))\n",
    "\n",
    "a, c = 5, 5\n",
    "x = np.linspace(0.001, stats.exponweib.ppf(0.99,a, c), NN)\n",
    "y = stats.exponweib.pdf(x,a, c)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>k</i>={a}; <i>λ</i>={c}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", range_y=[0,5], range_x=[0,2], labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Weibull-Verteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "65c015c3-8629-44b6-a2d1-f229e2fede55",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Betaverteilung\n",
    "\n",
    "Die Betaverteilung ist eine Familie von kontinuierlichen Wahrscheinlichkeitsverteilungen auf dem Intervall $[0, 1]$, die durch zwei positive Parameter kontrolliert wird. Sie wird oft in der Bayes-Statistik verwendet."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "id": "154438fc-fc3e-45d0-8596-1b959a1c38e8",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>a</i>=1; <i>b</i>=0.8<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=1; <i>b</i>=0.8",
         "line": {
          "color": "#636efa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=1; <i>b</i>=0.8",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0.012484335765655705,
          0.02242729926640496,
          0.03237026276715421,
          0.04231322626790346,
          0.05225618976865271,
          0.062199153269401966,
          0.07214211677015121,
          0.08208508027090047,
          0.09202804377164972,
          0.10197100727239897,
          0.11191397077314823,
          0.12185693427389747,
          0.13179989777464673,
          0.14174286127539598,
          0.15168582477614523,
          0.16162878827689448,
          0.17157175177764372,
          0.18151471527839297,
          0.19145767877914222,
          0.20140064227989152,
          0.21134360578064076,
          0.22128656928139,
          0.23122953278213926,
          0.2411724962828885,
          0.25111545978363775,
          0.261058423284387,
          0.27100138678513624,
          0.28094435028588555,
          0.2908873137866348,
          0.30083027728738404,
          0.3107732407881333,
          0.32071620428888253,
          0.3306591677896318,
          0.340602131290381,
          0.3505450947911303,
          0.3604880582918795,
          0.37043102179262877,
          0.380373985293378,
          0.3903169487941273,
          0.40025991229487656,
          0.4102028757956258,
          0.42014583929637506,
          0.4300888027971243,
          0.44003176629787355,
          0.4499747297986228,
          0.45991769329937204,
          0.4698606568001213,
          0.47980362030087054,
          0.4897465838016198,
          0.4996895473023691,
          0.5096325108031183,
          0.5195754743038675,
          0.5295184378046167,
          0.539461401305366,
          0.5494043648061153,
          0.5593473283068645,
          0.5692902918076138,
          0.579233255308363,
          0.5891762188091123,
          0.5991191823098615,
          0.6090621458106108,
          0.61900510931136,
          0.6289480728121093,
          0.6388910363128585,
          0.6488339998136078,
          0.6587769633143571,
          0.6687199268151063,
          0.6786628903158556,
          0.6886058538166048,
          0.6985488173173541,
          0.7084917808181033,
          0.7184347443188526,
          0.7283777078196018,
          0.7383206713203511,
          0.7482636348211003,
          0.7582065983218496,
          0.7681495618225989,
          0.778092525323348,
          0.7880354888240974,
          0.7979784523248465,
          0.8079214158255958,
          0.817864379326345,
          0.8278073428270943,
          0.8377503063278435,
          0.8476932698285928,
          0.857636233329342,
          0.8675791968300913,
          0.8775221603308406,
          0.8874651238315898,
          0.8974080873323391,
          0.9073510508330883,
          0.9172940143338376,
          0.9272369778345868,
          0.9371799413353361,
          0.9471229048360853,
          0.9570658683368346,
          0.9670088318375838,
          0.9769517953383331,
          0.9868947588390824,
          0.9968377223398316
         ],
         "xaxis": "x",
         "y": [
          0.8020125945182508,
          0.8036374629970776,
          0.8052822855387054,
          0.8069475160390911,
          0.8086336235690824,
          0.8103410930473276,
          0.8120704259505295,
          0.8138221410635298,
          0.8155967752719259,
          0.817394884400121,
          0.8192170440979495,
          0.8210638507792725,
          0.8229359226162193,
          0.8248339005930481,
          0.8267584496239415,
          0.8287102597394207,
          0.8306900473464492,
          0.8326985565677625,
          0.8347365606664275,
          0.8368048635621755,
          0.8389043014466596,
          0.8410357445054142,
          0.8432000987550394,
          0.8453983080049172,
          0.8476313559536613,
          0.8499002684314796,
          0.8522061158007203,
          0.8545500155280955,
          0.8569331349434172,
          0.8593566942012069,
          0.8618219694632158,
          0.8643302963217933,
          0.8668830734861546,
          0.8694817667559799,
          0.8721279133094615,
          0.8748231263359174,
          0.8775691000465079,
          0.8803676151004424,
          0.8832205444884029,
          0.8861298599199012,
          0.8890976387668724,
          0.8921260716222607,
          0.8952174705396623,
          0.8983742780284834,
          0.9015990768886963,
          0.9048946009803442,
          0.9082637470356932,
          0.9117095876366762,
          0.9152353854973494,
          0.9188446092109176,
          0.9225409506440033,
          0.9263283441878233,
          0.9302109881075997,
          0.9341933682687115,
          0.9382802845619842,
          0.9424768804024184,
          0.9467886757373375,
          0.951221604073422,
          0.9557820541200602,
          0.9604769167521182,
          0.9653136381227221,
          0.9703002799111672,
          0.9754455878791639,
          0.9807590701387914,
          0.9862510868185179,
          0.9919329531635084,
          0.9978170585414569,
          1.0039170043692418,
          1.0102477646605053,
          1.0168258737620037,
          1.0236696469538404,
          1.0307994410123835,
          1.0382379636798071,
          1.0460106433960579,
          1.054146073830499,
          1.0626765519883508,
          1.071638734371331,
          1.081074443437303,
          1.0910316673043061,
          1.1015658105851662,
          1.1127412754013253,
          1.1246334820711976,
          1.137331483528667,
          1.1509413939829771,
          1.1655909535258648,
          1.1814357080930715,
          1.1986675363966675,
          1.21752667074429,
          1.2383190655657181,
          1.2614422173541946,
          1.2874248492554718,
          1.3169903677942414,
          1.351163302172084,
          1.391458696587344,
          1.44024530848788,
          1.501514222496571,
          1.5827431707636825,
          1.7004449106580963,
          1.9037108431064549,
          2.5298221281346986
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>a</i>=0.8; <i>b</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=0.8; <i>b</i>=1",
         "line": {
          "color": "#EF553B",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=0.8; <i>b</i>=1",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0.0031622776601683794,
          0.013105241160917632,
          0.023048204661666884,
          0.03299116816241613,
          0.042934131663165384,
          0.05287709516391464,
          0.06282005866466389,
          0.07276302216541315,
          0.0827059856661624,
          0.09264894916691165,
          0.1025919126676609,
          0.11253487616841015,
          0.1224778396691594,
          0.13242080316990865,
          0.14236376667065792,
          0.15230673017140717,
          0.16224969367215641,
          0.17219265717290566,
          0.1821356206736549,
          0.19207858417440418,
          0.20202154767515343,
          0.21196451117590268,
          0.22190747467665192,
          0.23185043817740117,
          0.24179340167815042,
          0.2517363651788997,
          0.2616793286796489,
          0.2716222921803982,
          0.28156525568114743,
          0.2915082191818967,
          0.3014511826826459,
          0.31139414618339517,
          0.3213371096841444,
          0.33128007318489366,
          0.3412230366856429,
          0.35116600018639216,
          0.3611089636871414,
          0.37105192718789065,
          0.38099489068863995,
          0.3909378541893892,
          0.40088081769013845,
          0.4108237811908877,
          0.42076674469163694,
          0.4307097081923862,
          0.44065267169313543,
          0.4505956351938847,
          0.4605385986946339,
          0.4704815621953832,
          0.4804245256961324,
          0.4903674891968817,
          0.500310452697631,
          0.5102534161983803,
          0.5201963796991295,
          0.5301393431998788,
          0.5400823067006281,
          0.5500252702013773,
          0.5599682337021266,
          0.5699111972028758,
          0.579854160703625,
          0.5897971242043742,
          0.5997400877051235,
          0.6096830512058727,
          0.619626014706622,
          0.6295689782073712,
          0.6395119417081205,
          0.6494549052088698,
          0.659397868709619,
          0.6693408322103683,
          0.6792837957111175,
          0.6892267592118668,
          0.699169722712616,
          0.7091126862133653,
          0.7190556497141145,
          0.7289986132148638,
          0.738941576715613,
          0.7488845402163623,
          0.7588275037171116,
          0.7687704672178608,
          0.7787134307186101,
          0.7886563942193593,
          0.7985993577201086,
          0.8085423212208578,
          0.8184852847216071,
          0.8284282482223563,
          0.8383712117231056,
          0.8483141752238548,
          0.8582571387246041,
          0.8682001022253534,
          0.8781430657261026,
          0.8880860292268519,
          0.8980289927276011,
          0.9079719562283504,
          0.9179149197290996,
          0.9278578832298489,
          0.937800846730598,
          0.9477438102313474,
          0.9576867737320965,
          0.9676297372328458,
          0.9775727007335951,
          0.9875156642343443
         ],
         "xaxis": "x",
         "y": [
          2.529822128134703,
          1.9037108431064536,
          1.700444910658096,
          1.582743170763683,
          1.501514222496571,
          1.4402453084878803,
          1.3914586965873432,
          1.3511633021720835,
          1.3169903677942414,
          1.287424849255472,
          1.2614422173541944,
          1.2383190655657181,
          1.2175266707442896,
          1.1986675363966672,
          1.1814357080930713,
          1.165590953525865,
          1.1509413939829767,
          1.1373314835286668,
          1.1246334820711976,
          1.1127412754013253,
          1.1015658105851664,
          1.091031667304306,
          1.081074443437303,
          1.0716387343713305,
          1.0626765519883505,
          1.0541460738304989,
          1.0460106433960579,
          1.0382379636798071,
          1.0307994410123835,
          1.0236696469538404,
          1.0168258737620035,
          1.010247764660505,
          1.0039170043692416,
          0.9978170585414569,
          0.9919329531635083,
          0.986251086818518,
          0.9807590701387915,
          0.9754455878791636,
          0.9703002799111671,
          0.9653136381227221,
          0.960476916752118,
          0.95578205412006,
          0.9512216040734219,
          0.9467886757373375,
          0.942476880402418,
          0.9382802845619841,
          0.9341933682687112,
          0.9302109881075995,
          0.9263283441878235,
          0.9225409506440033,
          0.9188446092109178,
          0.9152353854973493,
          0.9117095876366761,
          0.9082637470356931,
          0.9048946009803441,
          0.9015990768886962,
          0.898374278028483,
          0.8952174705396623,
          0.8921260716222607,
          0.8890976387668722,
          0.8861298599199009,
          0.8832205444884028,
          0.880367615100442,
          0.8775691000465078,
          0.8748231263359169,
          0.8721279133094615,
          0.8694817667559799,
          0.8668830734861542,
          0.8643302963217931,
          0.8618219694632155,
          0.8593566942012067,
          0.8569331349434169,
          0.8545500155280953,
          0.8522061158007203,
          0.8499002684314795,
          0.8476313559536611,
          0.845398308004917,
          0.8432000987550392,
          0.8410357445054142,
          0.8389043014466594,
          0.8368048635621753,
          0.8347365606664274,
          0.8326985565677625,
          0.8306900473464491,
          0.8287102597394204,
          0.8267584496239413,
          0.8248339005930477,
          0.8229359226162192,
          0.8210638507792724,
          0.8192170440979488,
          0.817394884400121,
          0.8155967752719258,
          0.8138221410635295,
          0.812070425950529,
          0.8103410930473275,
          0.8086336235690824,
          0.806947516039091,
          0.8052822855387052,
          0.8036374629970773,
          0.8020125945182507
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>a</i>=0.8; <i>b</i>=0.8<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=0.8; <i>b</i>=0.8",
         "line": {
          "color": "#00cc96",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=0.8; <i>b</i>=0.8",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0.004026123681602006,
          0.014045797950660549,
          0.024065472219719095,
          0.03408514648877763,
          0.04410482075783618,
          0.054124495026894724,
          0.06414416929595326,
          0.07416384356501181,
          0.08418351783407035,
          0.0942031921031289,
          0.10422286637218744,
          0.11424254064124599,
          0.12426221491030452,
          0.1342818891793631,
          0.14430156344842163,
          0.1543212377174802,
          0.16434091198653872,
          0.17436058625559725,
          0.1843802605246558,
          0.19439993479371434,
          0.2044196090627729,
          0.21443928333183143,
          0.22445895760089,
          0.23447863186994852,
          0.24449830613900705,
          0.25451798040806556,
          0.26453765467712415,
          0.2745573289461827,
          0.2845770032152412,
          0.29459667748429974,
          0.3046163517533583,
          0.31463602602241686,
          0.3246557002914754,
          0.3346753745605339,
          0.34469504882959245,
          0.35471472309865104,
          0.3647343973677096,
          0.3747540716367681,
          0.38477374590582664,
          0.3947934201748852,
          0.40481309444394376,
          0.4148327687130023,
          0.4248524429820608,
          0.43487211725111935,
          0.44489179152017794,
          0.45491146578923647,
          0.464931140058295,
          0.47495081432735353,
          0.48497048859641206,
          0.49499016286547065,
          0.5050098371345292,
          0.5150295114035878,
          0.5250491856726464,
          0.5350688599417048,
          0.5450885342107634,
          0.555108208479822,
          0.5651278827488805,
          0.5751475570179391,
          0.5851672312869975,
          0.5951869055560561,
          0.6052065798251147,
          0.6152262540941732,
          0.6252459283632318,
          0.6352656026322903,
          0.6452852769013488,
          0.6553049511704074,
          0.6653246254394659,
          0.6753442997085245,
          0.685363973977583,
          0.6953836482466416,
          0.7054033225157001,
          0.7154229967847586,
          0.7254426710538172,
          0.7354623453228757,
          0.7454820195919343,
          0.7555016938609929,
          0.7655213681300513,
          0.7755410423991099,
          0.7855607166681685,
          0.795580390937227,
          0.8056000652062856,
          0.815619739475344,
          0.8256394137444026,
          0.8356590880134612,
          0.8456787622825197,
          0.8556984365515783,
          0.8657181108206368,
          0.8757377850896954,
          0.8857574593587539,
          0.8957771336278124,
          0.905796807896871,
          0.9158164821659295,
          0.9258361564349881,
          0.9358558307040467,
          0.9458755049731051,
          0.9558951792421637,
          0.9659148535112222,
          0.9759345277802808,
          0.9859542020493394,
          0.995973876318398
         ],
         "xaxis": "x",
         "y": [
          1.987914250743291,
          1.551472303753699,
          1.395923584094211,
          1.304739639871048,
          1.2417820916664035,
          1.1944805754756331,
          1.1570481487766244,
          1.1263656190472502,
          1.100569704805084,
          1.0784633179804028,
          1.0592343641914865,
          1.042308128635163,
          1.0272638922644324,
          1.013785020363081,
          1.0016276481294322,
          0.99060025294251,
          0.9805498832015651,
          0.9713526100543756,
          0.9629067441772484,
          0.9551279134423902,
          0.9479454234763004,
          0.9412995216633696,
          0.9351393095562742,
          0.9294211286312355,
          0.9241072969328719,
          0.9191651094786236,
          0.9145660394607605,
          0.910285094102076,
          0.9063002909078094,
          0.9025922285777859,
          0.8991437330324739,
          0.8959395635575566,
          0.892966167455473,
          0.8902114741350328,
          0.887664721499561,
          0.8853163089716439,
          0.8831576726340267,
          0.8811811788554017,
          0.8793800334679973,
          0.8777482041162715,
          0.8762803538364236,
          0.8749717842801842,
          0.8738183872826865,
          0.8728166037078776,
          0.8719633886972336,
          0.8712561826073293,
          0.8706928870560375,
          0.8702718456112791,
          0.8699918287547902,
          0.8698520228398992,
          0.8698520228398992,
          0.8699918287547905,
          0.8702718456112792,
          0.8706928870560374,
          0.8712561826073293,
          0.8719633886972337,
          0.872816603707878,
          0.8738183872826868,
          0.8749717842801842,
          0.8762803538364236,
          0.8777482041162715,
          0.8793800334679975,
          0.8811811788554016,
          0.8831576726340268,
          0.8853163089716439,
          0.8876647214995608,
          0.8902114741350325,
          0.8929661674554731,
          0.8959395635575567,
          0.8991437330324736,
          0.9025922285777859,
          0.9063002909078092,
          0.910285094102076,
          0.9145660394607604,
          0.9191651094786234,
          0.9241072969328717,
          0.9294211286312357,
          0.9351393095562743,
          0.9412995216633693,
          0.9479454234763006,
          0.9551279134423901,
          0.9629067441772483,
          0.9713526100543756,
          0.9805498832015654,
          0.9906002529425102,
          1.0016276481294322,
          1.013785020363081,
          1.027263892264432,
          1.0423081286351628,
          1.0592343641914859,
          1.078463317980402,
          1.1005697048050835,
          1.1263656190472495,
          1.1570481487766244,
          1.1944805754756325,
          1.2417820916664035,
          1.3047396398710474,
          1.3959235840942097,
          1.551472303753697,
          1.9879142507432872
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>a</i>=1; <i>b</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>a</i>=1; <i>b</i>=1",
         "line": {
          "color": "#ab63fa",
          "dash": "solid"
         },
         "marker": {
          "symbol": "circle"
         },
         "mode": "lines",
         "name": "<i>a</i>=1; <i>b</i>=1",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0.01,
          0.0198989898989899,
          0.029797979797979796,
          0.039696969696969696,
          0.049595959595959596,
          0.059494949494949496,
          0.06939393939393938,
          0.07929292929292929,
          0.08919191919191918,
          0.09909090909090908,
          0.10898989898989898,
          0.11888888888888888,
          0.12878787878787878,
          0.1386868686868687,
          0.1485858585858586,
          0.15848484848484848,
          0.16838383838383839,
          0.1782828282828283,
          0.18818181818181817,
          0.19808080808080808,
          0.207979797979798,
          0.21787878787878787,
          0.22777777777777777,
          0.23767676767676768,
          0.24757575757575756,
          0.25747474747474747,
          0.2673737373737374,
          0.2772727272727273,
          0.2871717171717172,
          0.29707070707070704,
          0.30696969696969695,
          0.31686868686868686,
          0.32676767676767676,
          0.33666666666666667,
          0.3465656565656566,
          0.3564646464646465,
          0.36636363636363634,
          0.37626262626262624,
          0.38616161616161615,
          0.39606060606060606,
          0.40595959595959596,
          0.41585858585858587,
          0.4257575757575757,
          0.43565656565656563,
          0.44555555555555554,
          0.45545454545454545,
          0.46535353535353535,
          0.47525252525252526,
          0.4851515151515151,
          0.495050505050505,
          0.5049494949494949,
          0.5148484848484849,
          0.5247474747474747,
          0.5346464646464646,
          0.5445454545454546,
          0.5544444444444444,
          0.5643434343434344,
          0.5742424242424242,
          0.5841414141414141,
          0.594040404040404,
          0.6039393939393939,
          0.6138383838383838,
          0.6237373737373737,
          0.6336363636363637,
          0.6435353535353535,
          0.6534343434343434,
          0.6633333333333333,
          0.6732323232323232,
          0.6831313131313131,
          0.693030303030303,
          0.702929292929293,
          0.7128282828282828,
          0.7227272727272727,
          0.7326262626262626,
          0.7425252525252525,
          0.7524242424242424,
          0.7623232323232323,
          0.7722222222222221,
          0.7821212121212121,
          0.792020202020202,
          0.8019191919191919,
          0.8118181818181818,
          0.8217171717171717,
          0.8316161616161616,
          0.8415151515151514,
          0.8514141414141414,
          0.8613131313131313,
          0.8712121212121212,
          0.8811111111111111,
          0.891010101010101,
          0.9009090909090909,
          0.9108080808080807,
          0.9207070707070707,
          0.9306060606060605,
          0.9405050505050505,
          0.9504040404040404,
          0.9603030303030302,
          0.9702020202020202,
          0.98010101010101,
          0.99
         ],
         "xaxis": "x",
         "y": [
          0.9999999999999992,
          0.9999999999999994,
          0.9999999999999997,
          0.9999999999999997,
          1.0000000000000002,
          0.9999999999999996,
          0.9999999999999997,
          0.9999999999999994,
          0.9999999999999994,
          1.0000000000000002,
          0.9999999999999999,
          0.9999999999999996,
          1,
          1,
          0.9999999999999998,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999994,
          0.9999999999999998,
          0.9999999999999996,
          0.9999999999999994,
          0.9999999999999996,
          0.9999999999999994,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999994,
          0.9999999999999994,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999994,
          0.9999999999999998,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999999,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999994,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999999,
          0.9999999999999994,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999994,
          0.9999999999999994,
          0.9999999999999998,
          0.9999999999999993,
          0.9999999999999998,
          0.9999999999999998,
          0.9999999999999994,
          0.9999999999999993,
          0.9999999999999996,
          0.9999999999999997,
          0.9999999999999994,
          0.9999999999999999,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999997,
          0.9999999999999994,
          0.9999999999999999,
          0.9999999999999996,
          0.9999999999999999,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999994,
          0.9999999999999994,
          0.9999999999999996,
          0.9999999999999997,
          0.9999999999999997,
          0.9999999999999993,
          0.9999999999999996,
          0.9999999999999993,
          0.9999999999999996,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999994,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999999,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999998,
          1,
          0.9999999999999998,
          1.0000000000000002,
          1,
          1,
          0.9999999999999997,
          0.9999999999999998,
          0.9999999999999997,
          0.9999999999999996,
          0.9999999999999998,
          0.9999999999999998,
          0.9999999999999994,
          0.999999999999999
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Betaverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "\n",
    "a, b = 1, 0.8\n",
    "x = np.linspace(stats.beta.ppf(0.01,a, b), stats.beta.ppf(0.99,a, b), 100)\n",
    "y = stats.beta.pdf(x,a, b)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "a, b = 0.8, 1\n",
    "x = np.linspace(stats.beta.ppf(0.01,a, b), stats.beta.ppf(0.99,a, b), 100)\n",
    "y = stats.beta.pdf(x,a, b)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "a, b = .8, .8\n",
    "x = np.linspace(stats.beta.ppf(0.01,a, b), stats.beta.ppf(0.99,a, b), 100)\n",
    "y = stats.beta.pdf(x,a, b)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "a, b = 1, 1\n",
    "x = np.linspace(stats.beta.ppf(0.01,a, b), stats.beta.ppf(0.99,a, b), 100)\n",
    "y = stats.beta.pdf(x,a, b)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>a</i>={a}; <i>b</i>={b}\"}))\n",
    "\n",
    "fig = px.line(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Betaverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "94eade0f-7417-4c80-af57-b179c4c6d510",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "### Diskrete Verteilungen\n",
    "#### Binomialverteilung\n",
    "\n",
    "Die Binomialverteilung beschreibt die Wahrscheinlichkeit einer bestimmten Anzahl von Erfolgen in einer Reihe von unabhängigen Versuchen mit fester Erfolgswahrscheinlichkeit. Sie wird z.B. verwendet, um die Anzahl der \"Köpfe\" beim Münzwurf zu modellieren."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "bb9c4acb-c59e-48f2-bac9-f39f3708d325",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "Sie ist definiert mit der Anzahl der Versuche $n>0$ und der Erfolgs- oder Trefferwahrscheinlichkeit  $p \\in [0,1]$ als Parameter zu\n",
    "\n",
    "$$\n",
    "P(k)=\\begin{cases}\n",
    "  \\binom nk p^k (1-p)^{n-k} &\\text{falls} \\quad k\\in\\left\\{0,1,\\dots,n\\right\\},\\\\\n",
    "  0            & \\text{sonst.}\\end{cases}\n",
    "$$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "9efb2215-f467-4c8e-9399-701a3da458c3",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>n</i>=20; <i>p</i>=0.5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>n</i>=20; <i>p</i>=0.5",
         "marker": {
          "color": "#636efa",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>n</i>=20; <i>p</i>=0.5",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          5,
          6,
          7,
          8,
          9,
          10,
          11,
          12,
          13,
          14
         ],
         "xaxis": "x",
         "y": [
          0.014785766601562559,
          0.03696441650390626,
          0.07392883300781239,
          0.12013435363769544,
          0.16017913818359386,
          0.1761970520019531,
          0.16017913818359392,
          0.12013435363769544,
          0.07392883300781238,
          0.03696441650390626
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>n</i>=20; <i>p</i>=0.7<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>n</i>=20; <i>p</i>=0.7",
         "marker": {
          "color": "#EF553B",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>n</i>=20; <i>p</i>=0.7",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          9,
          10,
          11,
          12,
          13,
          14,
          15,
          16,
          17
         ],
         "xaxis": "x",
         "y": [
          0.012006654896137014,
          0.03081708090008503,
          0.06536956554563474,
          0.11439673970486113,
          0.16426198521723653,
          0.1916389827534426,
          0.17886305056987975,
          0.13042097437387049,
          0.07160367220526213
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>n</i>=40; <i>p</i>=0.5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>n</i>=40; <i>p</i>=0.5",
         "marker": {
          "color": "#00cc96",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>n</i>=40; <i>p</i>=0.5",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          13,
          14,
          15,
          16,
          17,
          18,
          19,
          20,
          21,
          22,
          23,
          24,
          25,
          26
         ],
         "xaxis": "x",
         "y": [
          0.010944152454612797,
          0.021106579733896097,
          0.036584738205419874,
          0.057163653445968486,
          0.08070162839430836,
          0.10311874739272753,
          0.11940065487578964,
          0.12537068761957912,
          0.11940065487578962,
          0.10311874739272756,
          0.08070162839430838,
          0.057163653445968486,
          0.036584738205419874,
          0.021106579733896094
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Binomialverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "n, p = 20, 0.5\n",
    "x = np.arange(stats.binom.ppf(0.01, n, p), stats.binom.ppf(0.99, n, p))\n",
    "y = stats.binom.pmf(x, n, p)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>n</i>={n}; <i>p</i>={p}\"}))\n",
    "\n",
    "n, p = 20, 0.7\n",
    "x = np.arange(stats.binom.ppf(0.01, n, p), stats.binom.ppf(0.99, n, p))\n",
    "y = stats.binom.pmf(x, n, p)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>n</i>={n}; <i>p</i>={p}\"}))\n",
    "\n",
    "n, p = 40, 0.5\n",
    "x = np.arange(stats.binom.ppf(0.01, n, p), stats.binom.ppf(0.99, n, p))\n",
    "y = stats.binom.pmf(x, n, p)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>n</i>={n}; <i>p</i>={p}\"}))\n",
    "\n",
    "fig = px.scatter(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Binomialverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "264e972f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": []
   },
   "source": [
    "#### Poisson-Verteilung\n",
    "\n",
    "Die Poisson-Verteilung beschreibt die Wahrscheinlichkeit einer bestimmten Anzahl von Ereignissen in einem bestimmten Zeitintervall oder einer bestimmten Fläche. Sie wird z.B. verwendet, um die Anzahl der Anrufe in einem Callcenter pro Stunde zu modellieren.\n",
    "\n",
    "Die Poisson-Verteilung ist beschrieben durch die Ereignishäufigkeit $\\lambda$ zu\n",
    "\n",
    "$$\n",
    "P (k) = \\frac{\\lambda^k}{k!}\\, \\mathrm{e}^{-\\lambda}.\n",
    "$$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "id": "ddf0782a-eaec-4c53-9f15-55c5fa4165db",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "subslide"
    },
    "tags": [
     "remove-input"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "hovertemplate": "parameter=<i>λ</i>=1<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=1",
         "marker": {
          "color": "#636efa",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>λ</i>=1",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0,
          1,
          2,
          3
         ],
         "xaxis": "x",
         "y": [
          0.36787944117144233,
          0.36787944117144233,
          0.18393972058572114,
          0.06131324019524039
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>λ</i>=2<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=2",
         "marker": {
          "color": "#EF553B",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>λ</i>=2",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          0,
          1,
          2,
          3,
          4,
          5
         ],
         "xaxis": "x",
         "y": [
          0.1353352832366127,
          0.2706705664732254,
          0.2706705664732254,
          0.18044704431548356,
          0.09022352215774178,
          0.03608940886309672
         ],
         "yaxis": "y"
        },
        {
         "hovertemplate": "parameter=<i>λ</i>=5<br>Value=%{x}<br>Probability=%{y}<extra></extra>",
         "legendgroup": "<i>λ</i>=5",
         "marker": {
          "color": "#00cc96",
          "symbol": "circle"
         },
         "mode": "markers",
         "name": "<i>λ</i>=5",
         "orientation": "v",
         "showlegend": true,
         "type": "scatter",
         "x": [
          1,
          2,
          3,
          4,
          5,
          6,
          7,
          8,
          9,
          10
         ],
         "xaxis": "x",
         "y": [
          0.03368973499542734,
          0.08422433748856832,
          0.1403738958142805,
          0.17546736976785063,
          0.17546736976785068,
          0.1462228081398754,
          0.10444486295705395,
          0.06527803934815865,
          0.036265577415643714,
          0.018132788707821854
         ],
         "yaxis": "y"
        }
       ],
       "layout": {
        "legend": {
         "title": {
          "text": "parameter"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             },
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "pattern": {
              "fillmode": "overlay",
              "size": 10,
              "solidity": 0.2
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "fillpattern": {
             "fillmode": "overlay",
             "size": 10,
             "solidity": 0.2
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Poissonverteilung"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Value"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Probability"
         }
        }
       }
      }
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "df = []\n",
    "\n",
    "mu = 1\n",
    "x = np.arange(stats.poisson.ppf(0.01, mu), stats.poisson.ppf(0.99, mu))\n",
    "y = stats.poisson.pmf(x, mu)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={mu}\"}))\n",
    "\n",
    "mu = 2\n",
    "x = np.arange(stats.poisson.ppf(0.01, mu), stats.poisson.ppf(0.99, mu))\n",
    "y = stats.poisson.pmf(x, mu)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={mu}\"}))\n",
    "\n",
    "mu = 5\n",
    "x = np.arange(stats.poisson.ppf(0.01, mu), stats.poisson.ppf(0.99, mu))\n",
    "y = stats.poisson.pmf(x, mu)\n",
    "df.append(pd.DataFrame({\"x\": x, \"y\": y, \"parameter\":f\"<i>λ</i>={mu}\"}))\n",
    "\n",
    "fig = px.scatter(pd.concat(df), x=\"x\", y=\"y\", color=\"parameter\", labels={\"x\": \"Value\", \"y\": \"Probability\"}, title=\"Poissonverteilung\")\n",
    "fig.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a212aae8-b30c-42bf-ad61-57344b253a2f",
   "metadata": {
    "editable": true,
    "slideshow": {
     "slide_type": "slide"
    },
    "tags": [
     "remove-cell"
    ]
   },
   "source": [
    "<div id=\"tsparticles_question\" style=\"width: 100%; height:5em; background-color: white;\">\n",
    "    <div class=\"questions\" style=\"letter-spacing: 0.03em; font-family: Protomolecule; font-size: 2.3em; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: black; z-index: 5;\">f&nbsp;&nbsp;r&nbsp;&nbsp;a&nbsp;&nbsp;g&nbsp;&nbsp;e&nbsp;&nbsp;n&nbsp;&nbsp;?</div>\n",
    "</div>"
   ]
  }
 ],
 "metadata": {
  "jupytext": {
   "cell_metadata_filter": "-all",
   "main_language": "python",
   "notebook_metadata_filter": "-all"
  },
  "kernelspec": {
   "display_name": "lehre4",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.8"
  },
  "rise": {
   "auto_select": "none",
   "center": false,
   "enable_chalkboard": true,
   "header": "<object data=\"images/IntroML_c.svg\" type=\"image/svg+xml\" class=\"header_title_logo\"></object><object data=\"images/ai4sc_logo2.svg\" type=\"image/svg+xml\" class=\"header_ai4sc_logo\"></object><object data=\"images/uni_logo2.svg\" type=\"image/svg+xml\" class=\"header_uni_logo\"></object>",
   "scroll": true,
   "show_buttons_on_startup": false,
   "slideNumber": true,
   "theme": "white"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
