diff --git a/cours.md b/cours.md index 78f47b455051b6bd11101407f90f206166c97817..07122eb92189e7aa616432f5d65722ddff6185de 100644 --- a/cours.md +++ b/cours.md @@ -1114,22 +1114,348 @@ $f(x)=ax^3+bx^2+cx+d$. # Optimisation -## Généralités +## La régression linéaire -## Position du problème +Lors d'une régression linéaire, le but est de trouver la droite, $y(x)=a\cdot x + b$, qui passe au mieux au travers d'un nuage de $N$ points $(x_i, y_i)$, +$i=1,...,N$ (voir @fig:reg). -Un problème d'optimisation se représente mathématiquement de la façon suivante +{#fig:reg width=70%} +Pour déterminer l'équation de cette droite, nous devons donc trouver les coefficients $a$ et $b$ tels que la droite +passe au plus proche des points. Nous devons d'abord définir ce que signifie mathématiquement "passe au mieux par au travaers du nuage de points". +Une façon de mesurer la "qualité" d'une droite est de mesurer la somme des distances au carré entre les points $(x_i,y_i)$ et +la droite $y(x)=a\cdot x + b$ pour des valeurs de $a$ et $b$ données, soit +$$ +E(a,b)=\sum_{i=1}^N (y(x_i)-y_i)^2. +$$ +Nous cherchons par conséquent à minimiser $E(a,b)$ sous la contrainte que $y(x)$ est une droite. Pour simplifier encore plus le problème mathématique, +nous pouvons rajouter comme contrainte que la droite $y(x)$ passe par le point $(0,0)$, on a donc que $y(x)=a\cdot x$ (l'ordonnée à l'origine est nulle, $b=0$) et que +$$ +E(a)=\sum_{i=1}^N (y(x_i)-y_i)^2, +$$ +est indépendant de $b$. En résumé nous cherchons à résoudre le problème mathématique \begin{align} -&\mbox{minimisation de }f(\ux),\\ -&\mbox{où }\ux\in\mathcal{X}\subseteq \real^n. +&\min_{a\in\real} E(a) = \min_{a \in\real} \sum_{i=1}^N (y(x_i)-y_i)^2,\\ +&\mbox{où }y(x)=a\cdot x, \quad \mbox{(contrainte)}. \end{align} -Ici $\ux$ est un vecteur à $n$ dimensions, -\begin{equation} -\ux=(x_0,...,x_{n-1}), -\end{equation} -qui représente les variables de notre problème d'optimisation et qui satisfont les *contraintes*, représentées par $\mathcal{X}$. -La fonction $f$, appelée fonction objectif, fonction de coût, ... est la fonction que nous cherchons à *minimiser* en ajustant $\ux$. +On peut réécrire la fonction $E(a)$ comme +\begin{align} +E(a)&=\sum_{i=1}^N \left(y^2(x_i)-2\cdot y_i\cdot y(x_i)+y_i^2\right)=\sum_{i=1}^N \left(a^2\cdot x_i^2-2\cdot a\cdot x_i\cdot y_i+y_i^2\right),\nonumber\\ + &=a^2\sum_{i=1}^Nx_i^2 + 2a\sum_{i=1}^Nx_iy_i+\sum_{i=1}^Ny_i^2. +\end{align} +Les $x_i$ et $y_i$ étant connus, nous cherchons $a$, tel que $E(a)$ soit minimal. $E(a)$ est en fait l'équation d'une parabole: elle a la forme +$$ +E(a)=B\cdot a^2-2C\cdot a + D, +$$ +avec $B=\sum_{i=1}^Nx_i^2$, $C=\sum_{i=1}^Nx_iy_i$, et $D=\sum_{i=1}^N y_i^2$. $B$ étant forcément positif cette parabole sera **convexe** et donc +nous sommes assurés qu'il existe un minimum pour $E(a)$. Une façon de déterminer $a$, tel que $E(a)$ est minimal est d'utiliser la dérivée. +On a l'équation $E'(a)=0$ à résoudre: +\begin{align} +E'(a)&=0,\nonumber\\ +2\cdot B\cdot a-2\cdot C&=0,\nonumber\\ +a &= \frac{C}{B}=\frac{\sum_{i=1}^Nx_iy_i}{\sum_{i=1}^Nx_i^2}. +\end{align} + +--- + +Exemple +.# + +Soient les 4 points $(0, 0.1)$, $(1, 0.3)$, $(2, 0.3)$ et $(3, 0.4)$. La fonction d'erreur $E(a)$ s'écrit +$$ +E(a)=14\cdot a^2-4.2\cdot a + 0.35. +$$ +On peut la représenter comme sur la @fig:e_a et on constate qu'elle possède un minimum proche de $a=0$. + +![La fonction $E(a)=14a^2-4.2a+0.35$ pour $a\in[-1,1]$. On voit bien qu'elle possède un minimum proche de $a=0$.](figs/e_a.svg){#fig:e_a width=70%} + +En résolvant $E'(a)=0$, on obtient $a=4.2/24=0.15$. On a que l'équation de la droite passant par $(0,0)$ et au plus proche de nos 4 points est +$$ +y(x)=0.15\cdot x. +$$ +On peut observer le résultat de la régression sur la @fig:regression_ex, où on voit les 4 points (en noir), ainsi que la droite obtenue (en trait bleu). + +{#fig:regression_ex width=70%} + +--- + +La régression linéaire est un problème **d'optimisation continu**. On voit que contrairement au problème du voyageur du commerce, +l'ensemble des solutions est $a\in\real$ et non une suite discrète de villes. Ce genre de problème, bien que possédant un espace de recherche infini, +est bien souvent plus simple à résoudre, car il possède un cadre théorique mieux défini. + +Pour le résoudre, nous avons commencé, comme pour le problème du voyageur du commerce par faire un modèle mathématique. +Nous avons construit une fonction à minimiser, $E(a)$, et ajouté une contraite, la forme de $y(x)$. Puis, il a suffit de trouver le minimum de $E(a)$ +sous la contrainte et le tour était joué. + +## L'optimisation mathématique + +Suite à ces deux exemples, nous allons essayer de définir de façon assez théorique comment formuler mathématiquement un problème d'optimisation. +Il existe deux types disctincts de problèmes d'optimisation: + +1. L'optimisation continue. +2. L'optimisation discrète (souvent appelée optimisation combinatoire). + +Dans ce chapitre nous ne parlerons que del'optimisation continue. + +### L'optimisation continue + +L'optimisation continue ou *programme mathématique continu* est un programme d'optimisation soumis à certaines contraintes. +On peut l'exprimer de la façon suivante. + +Soit $f:\real^n\rightarrow\real$ une fonction objectif (ou fontion de coût), on cherche $\vec x_0\in\real^n$, tel que $f(\vec x_0)\leq f(\vec x)$ pour $\vec x$ certaines conditions: **les contraintes**. Celles-ci sont en général des égalités strictes ou des inégalités qui peuvent s'exprimer de la façon suivante. +Soient $m$ fonctions $g_i:\real^n\rightarrow\real$ +\begin{align} +&g_i(\vec x)\leq 0,\quad i=1,...,m. +\end{align} +Si $m=0$ on a à faire à un problème d'optimisation sans contraintes. On peut résumer tout cela comme +\begin{align*} +&\min_{\vec x\in\real^n}f(\vec x),\\ +&g_i(\vec x)\leq 0,\quad i=1,...,m,\\ +&\mbox{pour }m\geq 0. +\end{align*} +Les contraintes limitent l'espace des solutions et forment un sous-ensemble, noté $A$, de $\real^n$ ($A\subseteq\real^n$). + +Une des difficultés pour déterminer le minimum d'une fonction coût est l'existence de plusieurs minima locaux. +Un **minimum local**, $\vec x^\ast\in A$, est tel que pour une région proche de $\vec x^\ast$, on a que $f(\vec x)\geq f(\vec x^\ast)$. +Un exemple d'une telle fonction, est une fonction de Ackley. En une dimension, elle est de la forme (voir la @fig:ackley) +$$ +f(x)=-20e^{-0.2*\sqrt{0.5x^2}}-e^{0.5(\cos(2\pi x))}+e+20. +$$ + +{#fig:ackley width=70%} + +On constate la présence d'un grand nombre de minima locaux qui rendent la recherche du minimum global (se trouvant en $x=0$) particulièrement compliqué à déterminer. + +L'optimisation continue est très communément utilisée en apprentissage automatique (machine learning), en particulier pour +optimiser les poids des réseaux de neurones. + +## Optimisation continue + +Dans cette section, nous allons considérer des problèmes purement continus. +Nous allons dans un premier temps considérer une fonction opbjectif, $f$, +$$ +f:D\rightarrow\real,\quad D\subseteq \real, +$$ +dont nous allons chercher le minimum (pour autant qu'il existe). Nous allons supposer que +$f$ est une fonction continue et dérivable. + +### Minimum local/global + +Comme vous le savez, le minimum (ou le maximum) d'une fonction, se situe à un endroit où sa dérivée est nulle. +On recherche donc, $x$, tel que +$$ +f'(x)=0. +$$ +Mais cette contrainte sur $f'(x)$ n'est pas suffisante pour garantir de trouver un minimum. +En effet, si $f'(x)=0$, peut également vouloir dire qu'on se trouve sur un point d'inflexion +ou sur un maximum. +On peut assez facilement, discriminer ces deux cas, en considérant la deuxième dérivée de $f$. +En effet, nous avons à faire à un minimum seulement si +$$ +f''(x)>0. +$$ +Les cas où $f''(x)=0$ est un point d'inflexion et $f''(x)<0$ est un maximum. + +Un autre problème beaucoup plus compliqué à résoudre est de déterminer un minimum **global**. +En effet, comme pour la fonction de Ackley (voir la @fig:ackley), une fonction peut posséder un grand nombre de minimam **locaux** (où +$f'(x)=0$ et $f''(x)>0$) mais qui n'est pas un mimumum global. + +Mathématiquement un *minimum local* se définit comme $x^\ast$ tel qu'il existe $\delta>0$ et que $f(x^\ast)\leq f(x)$, pour +$x\in[x^\ast-\delta,x^\ast+delta]$. Un *minimum global* est un $x^\ast$ tel que $\forall x\in D$, $f(x^\ast)\leq f(x)$. + +En fait, il n'existe pas de méthode pour déterminer un minimum global, pour n'importe quelle fonction. +Nous somme assurés de le trouver, uniquement si $f$ est une fonction convexe partout ($f''(x)>0 \ \forall x$). + +## Algorithme de recherche d'un zéro d'une fonction + +Comme nous venons de le voir, lors de la recherche d'un minimum, il est nécessaire de trouver le point $x^\ast$ +où $f'(x^\ast)=0$. Le problème est donc de déterminer les zéros de la fonction $f'(x)$. Pour avoir un maximum de généralité, +nous allons considérer une fonction $g(x)$ et chercher ses zéros, soit +$$ +\{x\in\real|g(x)=0\}. +$$ +Dans des cas simples (des fonctions polynomiales de degré 2 ou 3, ou des fonctions inversibles) on peut trouver +analytiquement les zéros. En revanche, pour des fonctions plus complexes, ou "implicites" (on ne peut pas mettre +l'équation $g(x)=0$ sous la forme $x=...$) la détermination des zéros est beaucoup plus difficile et nécessite l'utilisation +de **méthodes itératives**. Nous allons en voir quelques unes. + +### Méthode de la bissection + +{#fig:bissection_method width=50%} + +Afin de déterminer le zéro d'une fonction, une des méthodes les plus simple est la méthode de la bissection. +Il s'agit de choisir deux points, $a_1$ et $b_1$, $b_1>a_1$, tels que le signe de $g(a_1)$ et $g(b_1)$ est différent. +Si cela est le cas, nous aommes assurés de l'existence d'au moins un zéro si la fonction $g(x)$ est continue +(en vertu du théorème de la valeur intermédiaire). Ensuite, nous allons calculer la valeur se situant "au milieu" +entre $a_1$ et $b_1$ +$$ +c_1=\frac{b_1+a_1}{2}. +$$ +Puis, nous évaluons $g(c_1)$ et si ce n'est pas un zéro, étudions son signe. Si le signe $g(c_1)$ est différent de celui de $g(a_1)$, nous remplaçons +$b_1$ par $c_1$ et recommençons. Si le signe de $g(c_1)$ est différent de celui de $g(b_1)$, nous remplaçons $a_1$ par $c_1$. +Nous itérons cette méthode jusqu'à ce que nous ayons atteint une valeur "siffisamment proche" (nous vons une précision acceptable pour nous) +de zéro. Une façon d'exprimer "proche" est de considérer la taille de l'intervalle $b_1-a_1$ et de le comparer avec une précision $\varepsilon>0$ que nous +aurons choisie +$$ +b_1-a_1<\varepsilon. +$$ + +Au pire des cas, cette méthode nous rapproche de $(b_1+a_1)/2$ du zéro à chaque itération. Après $n$ itération, nous somme donc à une +distance maximale du zéro de $(b_1+a_1)/2^n$. On dit que cette méthode est d'ordre $1$ (on divise l'intervalle de recherche par 2 et la précision par 2 +à chaque itération). + +--- + +Exercice (Racice de polynôme) +.# + +Déterminer la racine du polynôme $x^4+x^3+x^2-1$ avec $a_1=0.5$ et $b_1=1$ (faire au maximum 6 itérations). + +--- + +### Méthode de la fausse position (*regula falsi*) + +{#fig:false_position_method width=50%} + +Une méthode un peu plus avancée est la méthode de la fausse position (voir la @fig:false_position_method). Dans cette méthode qui est relativement similaire à celle de la bissection, +mais au lieu de diviser l'intervalle en deux parts égales à chaque itération on va choisir les point $c$, comme étant le point +où la droite reliant $g(a_1)$ et $g(b_1)$ coupe l'axe horizontal (le zéro de la droite entre $g(a_1)$ et $g(b_1)$). Le reste de l'algorithme reste exactement le même. +On choisit deux points, $a_1$ et $b_1$, où le signe de $f$ est différent, puis ont construit la droite passant par $g(a_1)$ et $g(b_1)$ +$$ +y=\frac{g(b_1)-g(a_1)}{b_1-a_1}(x-a_1) + g(a_1). +$$ +On cherche le point, $c$, où $y(c)=0$ +$$ +\frac{g(b_1)-g(a_1)}{b_1-a_1}(c-a_1) + g(a_1)=0. +$$ +Cette équation s'inverse aisément et on obtient +$$ +c_1=a_1-\frac{b_1-a_1}{g(b_1)-g(a_1)}g(a_1). +$$ +Puis, comme pour la méthode de la bissection, on compare les signes de $g(c_1)$ avec $g(a_1)$ et $g(b_1)$ et on remplace $a_1$ ou $b_1$ par $c_1$ +si $g(c_1)$ a un signe différent de $g(b_1)$ ou $g(a_1)$ respectivement. + +Il est important de noter que si la fonction est continue, et que $a_1$ et $b_1$ sont choisis tels que $g(a_1)$ et $g(b_1)$ sont de signes opposés, +alors cette méthode convergera **toujours**. + +La méthode de la fausse position est plus efficace que la méthode de la bissection, elle est superlinéaire (d'ordre plus grand que un). + +--- + +Exercice +.# + +Déterminer le zéro positif de la fonction +$$ +x^2-25=0, +$$ +à l'aide de la méthode de la fausse position. + +--- + +### Méthode de la sécante + +{#fig:secant_method width=50%} + +La méthode de la sécante (voir la @fig:secant_method) est très similaire à la méthode de la fausse position. La seule différence se situe dans la dernière étape de l'algorithme. +Plutôt que choisir de remplacer $a_1$ ou $b_1$ par $c_1$, on remplace toujours la dernière valeur calculée. +Ainsi après avoir choisi $a < b$, avec $g(a)$ et $g(b)$ avec des signes différents, on calcule +une suite de $x_i$, avec $x_0=a$, $x_1=b$, tels que +$$ +x_{i+1}=x_{i-1}-\frac{x_i-x_{i-1}}{g(x_i)-g(x_{i-1})}g(x_{i-1}), \quad i\geq 2. +$$ + +La méthode de la sécante ne garantit pas la convergence, contrairement à la méthode de la bissection et de la fausse position. +En revanche elle est plus efficace, lorsque qu'elle converge, que ces deux méthodes. + +--- + +Exercice +.# + +Déterminer le zéro positif de la fonction +$$ +x^2-25=0, +$$ +à l'aide de la méthode de la sécante. + +--- + +### Méthode de Newton (ou *Newton-Raphson") + +La méthode de Newton est également une méthode itérative, qui nécessite que la fonction $g(x)$ soit non seulement continue mais également dérivable. +Revenons sur la méthode de la sécante. Il s'agissait de choisir deux points, $a < b$, et de déterminer la droite, $y(x)$, passant par $g(a)$ et $g(b)$, +\begin{equation*} +y=\frac{g(b)-g(a)}{b-a}(x-a) + g(a). +\end{equation*} +Il se trouve que $g(b)-g(a)/(b-a)$ n'est autre qu'une approximation avec une formule de différences finies +de la dérivée de $g$ et $a$, $g'(a)$. Si la fonction $f$ est dérivable, on peut simplement remplacer ce terme par $g'(a)$ +et on obtient +$$ +y=g'(a)(x-a) + g(a). +$$ +Puis on détermine $c$, tel que $y(c)=0$ +$$ +0=g'(a)(c-a) + g(a), +$$ +et on obtient +$$ +c=a - \frac{g(a)}{g'(a)}. +$$ + +On peut donc généraliser l'algorithme. En partant d'un point $x_0=a$, on construit la suite +$$ +x_{i+1}=x_n-\frac{g(x_i)}{g'(x_i)}, \ i\geq 0. +$$ +On s'arrête lorsque le zéro est déterminé avec une précision suffisante, ou que la variation entre deux itérations successives est assez petite. Ce qui revient à choisir un $\varepsilon>0$, tel que +$$ +|g(x_n)| < \varepsilon,\quad |x_n-x_{n-1}| < \varepsilon. +$$ + +Lorsque qu'elle converge la mtéhode de Newton est la plus efficace de toutes celles que nous avons vues. On dit qu'elle est d'ordre $2$. +En revanche les contraintes pour sa convergence sont plus strictes que pour les méthodes vues précédemment. + +--- + +Remarques (non-convergence ou convergence lente) +.# + +Il y a un certain nombre de cas où la méthode de Newton ne converge pas. + +1. S'il existe un $n$ tel que $g'(x_n)=0$ alors la suite diverge. +2. La suite peut entrer dans un cycle. +3. La dérivée est mal définie proche du zéro (ou sur le zéro). +4. Elle peut converger très lentement si la dérivée de la fonction est nulle sur le zéro. +5. A chaque point de départ ne correspond qu'un zéro. Si la fonction possède plusieurs zéros, il n'y a pas moyen de le savoir avec un seul point de départ. Il faut alors en essayer plusieurs. + +--- + +--- + +Exercice +.# + +Déterminer le zéro de la fonction +$$ +x^2-25=0, +$$ +à l'aide de la méthode de Newton. + +--- + +### Résumé + +A l'aide des méthodes vues ci-dessus, on peut déterminer un zéro d'une fonction (s'il existe). +Ces méthodes sont également utilisables pour calculer le minimum d'une fonction comme nous l'avons discuté plus haut. +Il suffit de remplacer $g(x)$ par $f'(x)$ et le tour est joué. + +--- + +Exercice +.# + +Écrire l'algorithme de Newton pour le cas de la minimisation d'une fonction $f(x)$ quelconque, mais continuement dérivable 2 fois. + +--- Équations différentielles ordinaires diff --git a/figs/Bisection_method.svg b/figs/Bisection_method.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb3f3458f62e5147d4dbb9111a8aaa03ee524d9d --- /dev/null +++ b/figs/Bisection_method.svg @@ -0,0 +1,794 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:ns1="http://www.iki.fi/pav/software/textext/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="838" + height="977" + id="svg2" + version="1.1" + inkscape:version="0.92.2 2405546, 2018-03-11" + sodipodi:docname="Bisection_method.svg"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.70710678" + inkscape:cx="104.61162" + inkscape:cy="688.47444" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1920" + inkscape:window-height="1016" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + showguides="false" + inkscape:guide-bbox="true"> + <sodipodi:guide + inkscape:locked="false" + id="guide4102" + position="344.28571,378.57143" + orientation="1,0" /> + <sodipodi:guide + inkscape:locked="false" + id="guide4104" + position="421.42857,311.42857" + orientation="1,0" /> + <sodipodi:guide + inkscape:locked="false" + id="guide4106" + position="267.14286,277.14286" + orientation="1,0" /> + <sodipodi:guide + inkscape:locked="false" + id="guide4108" + position="721,701" + orientation="1,0" /> + <sodipodi:guide + inkscape:locked="false" + id="guide4110" + position="114.28571,254.28571" + orientation="1,0" /> + </sodipodi:namedview> + <defs + id="defs4"> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mstart" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="Arrow1Mstart"> + <path + transform="scale(0.4) translate(10,0)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + id="path6746" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible;" + id="Arrow1Mend" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="scale(0.4) rotate(180) translate(10,0)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + id="path6749" /> + </marker> + <inkscape:perspective + id="perspective10" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 526.18109 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective2944" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3744" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3744-9" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3775" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3797" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3833" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3833-8" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3833-0" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3880" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3929" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3954" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective3979" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective4004" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective4029" /> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(30.428574,-41.005039)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1"> + <path + transform="translate(-30.428574,41.005039)" + id="path3811" + d="m 114.65231,469.90342 c 1.26269,-3.03046 0,-207.90342 0,-207.90342" + style="fill:#8ae8f4;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4,12;stroke-dashoffset:0" /> + <path + transform="translate(-30.428574,41.005039)" + id="path3813" + d="m 721.78572,657 0,-186.42857" + style="fill:#8ae8f4;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 12;stroke-dashoffset:0" /> + <path + transform="translate(-30.428574,41.005039)" + id="path2950" + d="m 72.589286,63.339283 0,912.656257" + style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-start:url(#Arrow1Mstart)" /> + <path + transform="translate(-30.428574,41.005039)" + id="path3724" + d="m 6.2276786,470.52678 785.7366114,0.0223" + style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-end:url(#Arrow1Mend)" /> + <path + transform="translate(-30.428574,41.005039)" + id="path3726" + d="m 2.4553572,234.36607 c 20.0892858,3.125 51.8303568,6.20536 101.4732128,24.0625 49.64286,17.85714 74.86843,22.57633 122.3456,52.8809 47.47717,30.30458 73.74114,45.45687 110.10663,87.88327 36.36549,42.42641 54.54824,86.87312 62.62946,111.11678 8.08122,24.24367 24.24366,93.94419 68.69037,124.24877 44.44671,30.30457 100.0051,48.48732 161.62441,40.4061 61.6193,-8.08122 125.25891,-23.23351 156.57364,-40.4061" + style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + transform="translate(-30.428574,41.005039)" + d="m 349.51277,134.53278 a 46.972092,35.355339 0 0 1 -46.97209,35.35533 46.972092,35.355339 0 0 1 -46.97209,-35.35533 46.972092,35.355339 0 0 1 46.97209,-35.355343 46.972092,35.355339 0 0 1 46.97209,35.355343 z" + sodipodi:ry="35.355339" + sodipodi:rx="46.972092" + sodipodi:cy="134.53278" + sodipodi:cx="302.54068" + id="path3728" + style="stroke-width:0;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;fill:none;stroke:#000000;stroke-opacity:1" + sodipodi:type="arc" /> + <path + transform="translate(-30.428574,41.005039)" + d="m 127.27922,262.31708 a 12.121831,12.121831 0 0 1 -12.12183,12.12183 12.121831,12.121831 0 0 1 -12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,12.12183 z" + sodipodi:ry="12.121831" + sodipodi:rx="12.121831" + sodipodi:cy="262.31708" + sodipodi:cx="115.15739" + id="path3734" + style="fill:#f4f48a;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" + sodipodi:type="arc" /> + <path + d="m 127.27922,262.31708 a 12.121831,12.121831 0 0 1 -12.12183,12.12183 12.121831,12.121831 0 0 1 -12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,12.12183 z" + sodipodi:ry="12.121831" + sodipodi:rx="12.121831" + sodipodi:cy="262.31708" + sodipodi:cx="115.15739" + id="path3734-7" + style="fill:#8af48e;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" + transform="translate(122.73581,116.89274)" /> + <path + d="m 127.27922,262.31708 a 12.121831,12.121831 0 0 1 -12.12183,12.12183 12.121831,12.121831 0 0 1 -12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,12.12183 z" + sodipodi:ry="12.121831" + sodipodi:rx="12.121831" + sodipodi:cy="262.31708" + sodipodi:cx="115.15739" + id="path3734-3" + style="fill:#8ae8f4;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" + transform="translate(201.40144,191.01269)" /> + <path + d="m 127.27922,262.31708 a 12.121831,12.121831 0 0 1 -12.12183,12.12183 12.121831,12.121831 0 0 1 -12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,12.12183 z" + sodipodi:ry="12.121831" + sodipodi:rx="12.121831" + sodipodi:cy="262.31708" + sodipodi:cx="115.15739" + id="path3734-7-8" + style="fill:#8af48e;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" + transform="translate(277.66796,354.6574)" /> + <path + d="m 127.27922,262.31708 a 12.121831,12.121831 0 0 1 -12.12183,12.12183 12.121831,12.121831 0 0 1 -12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,-12.12183 12.121831,12.121831 0 0 1 12.12183,12.12183 z" + sodipodi:ry="12.121831" + sodipodi:rx="12.121831" + sodipodi:cy="262.31708" + sodipodi:cx="115.15739" + id="path3734-0" + style="fill:#f4f48a;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:type="arc" + transform="translate(576.16803,435.4696)" /> + <path + transform="translate(-30.428574,41.005039)" + d="M 411.7857,470.39285 A 29.107143,29.107143 0 0 1 382.67856,499.5 a 29.107143,29.107143 0 0 1 -29.10715,-29.10715 29.107143,29.107143 0 0 1 29.10715,-29.10714 29.107143,29.107143 0 0 1 29.10714,29.10714 z" + sodipodi:ry="29.107143" + sodipodi:rx="29.107143" + sodipodi:cy="470.39285" + sodipodi:cx="382.67856" + id="path3815" + style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;opacity:1" + sodipodi:type="arc" /> + <g + transform="translate(0,-54)" + id="g4158"> + <path + inkscape:tile-y0="934.67857" + inkscape:tile-x0="344.28571" + id="use4134" + style="fill:none;stroke:#a7d0d0;stroke-width:7.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="m 83.857162,795.68362 c 0.694818,10.2678 5.310216,16.0873 146.309348,16.385 140.34934,0.2964 154.34977,8.46138 154.34977,18.97288 0,-10.5113 16.08529,-18.57218 157.06984,-18.86238 141.00006,-0.2902 145.8619,-6.2277 146.55672,-16.4955" + sodipodi:nodetypes="cscsc" /> + <path + inkscape:tile-y0="934.67857" + inkscape:tile-x0="344.28571" + id="use4136" + style="fill:none;stroke:#a7d0d0;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="m 83.857165,866.3994 c 0.353158,10.2678 2.699046,16.0873 74.365275,16.385 71.33596,0.2964 78.45202,8.4614 78.45202,18.9729 0,-10.5113 8.17574,-18.5722 79.83456,-18.8624 71.6667,-0.2902 74.13785,-6.2277 74.49101,-16.4955" + sodipodi:nodetypes="cscsc" /> + <path + inkscape:tile-y0="934.67857" + inkscape:tile-x0="344.28571" + id="use4138" + style="fill:none;stroke:#a7d0d0;stroke-width:7.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="m 236.71428,937.1152 c 0.1774,10.2678 1.3558,16.0873 37.35558,16.385 35.83387,0.2964 39.40845,8.4614 39.40845,18.9729 0,-10.5113 4.10688,-18.5722 40.10294,-18.8624 36.00002,-0.2902 37.24134,-6.2277 37.41874,-16.4955" + sodipodi:nodetypes="cscsc" /> + <path + inkscape:tile-y0="934.67857" + inkscape:tile-x0="344.28571" + id="use4140" + style="fill:none;stroke:#a7d0d0;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="m 313.85714,1007.831 c 0.0887,10.2678 0.6779,16.0873 18.67779,16.385 17.91694,0.2964 19.70423,8.4614 19.70423,18.9729 0,-10.5113 2.05344,-18.5722 20.05147,-18.8624 18.00001,-0.2902 18.62067,-6.2277 18.70937,-16.4955" + sodipodi:nodetypes="cscsc" /> + </g> + <g + id="g4691" + ns1:scale="1.0" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:text="$g(b_1)$" + ns1:converter="pdf2svg" + ns1:textextver="0.8" + transform="matrix(4.0062598,0,0,4.0062598,129.14856,196.49337)"> + <g + id="surface1"> + <g + id="g4672" + style="fill:#000000;fill-opacity:1"> + <path + id="path4670" + transform="translate(148.712,134.765)" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g4676" + style="fill:#000000;fill-opacity:1"> + <path + id="path4674" + transform="translate(153.822,134.765)" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g4680" + style="fill:#000000;fill-opacity:1"> + <path + id="path4678" + transform="translate(157.696,134.765)" + d="m 2.375,-6.8125 c 0,0 0,-0.109375 -0.125,-0.109375 -0.21875,0 -0.953125,0.078125 -1.21875,0.109375 -0.078125,0 -0.1875,0.015625 -0.1875,0.1875 0,0.125 0.09375,0.125 0.25,0.125 0.46875,0 0.484375,0.0625 0.484375,0.171875 0,0.0625 -0.078125,0.40625 -0.125,0.609375 l -0.828125,3.25 c -0.109375,0.5 -0.15625,0.671875 -0.15625,1.015625 0,0.9375 0.53125,1.5625 1.265625,1.5625 1.171875,0 2.40625,-1.484375 2.40625,-2.921875 0,-0.90625 -0.53125,-1.59375 -1.328125,-1.59375 -0.453125,0 -0.875,0.296875 -1.171875,0.59375 z M 1.453125,-3.046875 C 1.5,-3.265625 1.5,-3.28125 1.59375,-3.390625 2.078125,-4.03125 2.53125,-4.1875 2.796875,-4.1875 c 0.359375,0 0.625,0.296875 0.625,0.9375 0,0.59375 -0.328125,1.734375 -0.515625,2.109375 -0.328125,0.671875 -0.78125,1.03125 -1.171875,1.03125 -0.34375,0 -0.671875,-0.265625 -0.671875,-1 0,-0.203125 0,-0.390625 0.15625,-1.015625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g4684" + style="fill:#000000;fill-opacity:1"> + <path + id="path4682" + transform="translate(161.972,136.259)" + d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g4688" + style="fill:#000000;fill-opacity:1"> + <path + id="path4686" + transform="translate(166.441,134.765)" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + transform="matrix(4.0062598,0,0,4.0062598,-188.62875,50.572941)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$g(b_2)$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g4942"> + <g + id="g4940"> + <g + style="fill:#000000;fill-opacity:1" + id="g4922"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + transform="translate(148.712,134.765)" + id="path4920" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g4926"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + transform="translate(153.822,134.765)" + id="path4924" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g4930"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.375,-6.8125 c 0,0 0,-0.109375 -0.125,-0.109375 -0.21875,0 -0.953125,0.078125 -1.21875,0.109375 -0.078125,0 -0.1875,0.015625 -0.1875,0.1875 0,0.125 0.09375,0.125 0.25,0.125 0.46875,0 0.484375,0.0625 0.484375,0.171875 0,0.0625 -0.078125,0.40625 -0.125,0.609375 l -0.828125,3.25 c -0.109375,0.5 -0.15625,0.671875 -0.15625,1.015625 0,0.9375 0.53125,1.5625 1.265625,1.5625 1.171875,0 2.40625,-1.484375 2.40625,-2.921875 0,-0.90625 -0.53125,-1.59375 -1.328125,-1.59375 -0.453125,0 -0.875,0.296875 -1.171875,0.59375 z M 1.453125,-3.046875 C 1.5,-3.265625 1.5,-3.28125 1.59375,-3.390625 2.078125,-4.03125 2.53125,-4.1875 2.796875,-4.1875 c 0.359375,0 0.625,0.296875 0.625,0.9375 0,0.59375 -0.328125,1.734375 -0.515625,2.109375 -0.328125,0.671875 -0.78125,1.03125 -1.171875,1.03125 -0.34375,0 -0.671875,-0.265625 -0.671875,-1 0,-0.203125 0,-0.390625 0.15625,-1.015625 z m 0,0" + transform="translate(157.696,134.765)" + id="path4928" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g4934"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0" + transform="translate(161.972,136.259)" + id="path4932" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g4938"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + transform="translate(166.441,134.765)" + id="path4936" /> + </g> + </g> + </g> + <g + id="g5164" + ns1:scale="1.0" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:text="$g(a_3)$" + ns1:converter="pdf2svg" + ns1:textextver="0.8" + transform="matrix(4.0062598,0,0,4.0062598,-253.12425,-110.42706)"> + <g + id="g5162"> + <g + id="g5144" + style="fill:#000000;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path5142" + transform="translate(148.712,134.765)" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + style="stroke:none" /> + </g> + <g + id="g5148" + style="fill:#000000;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path5146" + transform="translate(153.822,134.765)" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + style="stroke:none" /> + </g> + <g + id="g5152" + style="fill:#000000;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path5150" + transform="translate(157.696,134.765)" + d="M 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.21875 0.015625,-0.3125 0.125,-0.75 C 3.890625,-1.71875 3.90625,-1.828125 4,-2.203125 L 4.359375,-3.59375 c 0.0625,-0.28125 0.0625,-0.296875 0.0625,-0.34375 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.25,0 -0.390625,0.21875 -0.421875,0.4375 z M 3.078125,-1.1875 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0" + style="stroke:none" /> + </g> + <g + id="g5156" + style="fill:#000000;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path5154" + transform="translate(162.962,136.259)" + d="m 1.90625,-2.328125 c 0.546875,0 0.9375,0.375 0.9375,1.125 0,0.859375 -0.515625,1.125 -0.90625,1.125 -0.28125,0 -0.90625,-0.078125 -1.1875,-0.5 0.328125,0 0.40625,-0.234375 0.40625,-0.390625 0,-0.21875 -0.171875,-0.375 -0.390625,-0.375 -0.1875,0 -0.390625,0.125 -0.390625,0.40625 0,0.65625 0.71875,1.078125 1.5625,1.078125 0.96875,0 1.640625,-0.65625 1.640625,-1.34375 0,-0.546875 -0.4375,-1.09375 -1.203125,-1.25 0.71875,-0.265625 0.984375,-0.78125 0.984375,-1.21875 0,-0.546875 -0.625,-0.953125 -1.40625,-0.953125 -0.765625,0 -1.359375,0.375 -1.359375,0.9375 0,0.234375 0.15625,0.359375 0.359375,0.359375 0.21875,0 0.359375,-0.15625 0.359375,-0.34375 0,-0.203125 -0.140625,-0.359375 -0.359375,-0.375 0.25,-0.296875 0.71875,-0.375 0.984375,-0.375 0.3125,0 0.75,0.15625 0.75,0.75 0,0.296875 -0.09375,0.625 -0.28125,0.828125 -0.21875,0.265625 -0.421875,0.28125 -0.765625,0.3125 -0.171875,0.015625 -0.1875,0.015625 -0.21875,0.015625 -0.015625,0 -0.078125,0.015625 -0.078125,0.09375 0,0.09375 0.0625,0.09375 0.1875,0.09375 z m 0,0" + style="stroke:none" /> + </g> + <g + id="g5160" + style="fill:#000000;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path5158" + transform="translate(167.432,134.765)" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + style="stroke:none" /> + </g> + </g> + </g> + <g + transform="matrix(4.0062598,0,0,4.0062598,-340.12425,-184.42706)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$g(a_2)$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g5410"> + <g + id="g5408"> + <g + style="fill:#000000;fill-opacity:1" + id="g5390"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + transform="translate(148.712,134.765)" + id="path5388" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5394"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + transform="translate(153.822,134.765)" + id="path5392" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5398"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.21875 0.015625,-0.3125 0.125,-0.75 C 3.890625,-1.71875 3.90625,-1.828125 4,-2.203125 L 4.359375,-3.59375 c 0.0625,-0.28125 0.0625,-0.296875 0.0625,-0.34375 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.25,0 -0.390625,0.21875 -0.421875,0.4375 z M 3.078125,-1.1875 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0" + transform="translate(157.696,134.765)" + id="path5396" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5402"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0" + transform="translate(162.962,136.259)" + id="path5400" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5406"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + transform="translate(167.432,134.765)" + id="path5404" /> + </g> + </g> + </g> + <g + id="g5680" + ns1:scale="1.0" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:text="$g(a_1)$" + ns1:converter="pdf2svg" + ns1:textextver="0.8" + transform="matrix(4.0062598,0,0,4.0062598,-489.12935,-257.42706)"> + <g + id="g5678"> + <g + id="g5660" + style="fill:#000000;fill-opacity:1"> + <path + id="path5658" + transform="translate(148.712,134.765)" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5664" + style="fill:#000000;fill-opacity:1"> + <path + id="path5662" + transform="translate(153.822,134.765)" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5668" + style="fill:#000000;fill-opacity:1"> + <path + id="path5666" + transform="translate(157.696,134.765)" + d="M 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.21875 0.015625,-0.3125 0.125,-0.75 C 3.890625,-1.71875 3.90625,-1.828125 4,-2.203125 L 4.359375,-3.59375 c 0.0625,-0.28125 0.0625,-0.296875 0.0625,-0.34375 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.25,0 -0.390625,0.21875 -0.421875,0.4375 z M 3.078125,-1.1875 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5672" + style="fill:#000000;fill-opacity:1"> + <path + id="path5670" + transform="translate(162.962,136.259)" + d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g5676" + style="fill:#000000;fill-opacity:1"> + <path + id="path5674" + transform="translate(167.432,134.765)" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + transform="matrix(4.0062598,0,0,4.0062598,-589.09212,-455.42706)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$g(x)$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g5970"> + <g + id="g5968"> + <g + style="fill:#000000;fill-opacity:1" + id="g5954"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + transform="translate(148.712,134.765)" + id="path5952" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5958"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + transform="translate(153.822,134.765)" + id="path5956" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5962"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.328125,-3.015625 C 3.390625,-3.265625 3.625,-4.1875 4.3125,-4.1875 c 0.046875,0 0.296875,0 0.5,0.125 C 4.53125,-4 4.34375,-3.765625 4.34375,-3.515625 c 0,0.15625 0.109375,0.34375 0.375,0.34375 0.21875,0 0.53125,-0.171875 0.53125,-0.578125 0,-0.515625 -0.578125,-0.65625 -0.921875,-0.65625 -0.578125,0 -0.921875,0.53125 -1.046875,0.75 -0.25,-0.65625 -0.78125,-0.75 -1.078125,-0.75 -1.03125,0 -1.609375,1.28125 -1.609375,1.53125 0,0.109375 0.109375,0.109375 0.125,0.109375 0.078125,0 0.109375,-0.03125 0.125,-0.109375 0.34375,-1.0625 1,-1.3125 1.34375,-1.3125 0.1875,0 0.53125,0.09375 0.53125,0.671875 0,0.3125 -0.171875,0.96875 -0.53125,2.375 -0.15625,0.609375 -0.515625,1.03125 -0.953125,1.03125 -0.0625,0 -0.28125,0 -0.5,-0.125 0.25,-0.0625 0.46875,-0.265625 0.46875,-0.546875 0,-0.265625 -0.21875,-0.34375 -0.359375,-0.34375 -0.3125,0 -0.546875,0.25 -0.546875,0.578125 0,0.453125 0.484375,0.65625 0.921875,0.65625 0.671875,0 1.03125,-0.703125 1.046875,-0.75 0.125,0.359375 0.484375,0.75 1.078125,0.75 1.03125,0 1.59375,-1.28125 1.59375,-1.53125 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.109375 -0.328125,1.078125 -1,1.3125 -1.3125,1.3125 -0.390625,0 -0.546875,-0.3125 -0.546875,-0.65625 0,-0.21875 0.046875,-0.4375 0.15625,-0.875 z m 0,0" + transform="translate(157.696,134.765)" + id="path5960" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5966"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + transform="translate(163.39,134.765)" + id="path5964" /> + </g> + </g> + </g> + <g + id="g6272" + ns1:scale="1.0" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:text="$a_1$" + ns1:converter="pdf2svg" + ns1:textextver="0.8" + transform="matrix(3.3896869,0,0,3.3896869,-434.78959,91.574786)"> + <g + id="g6270"> + <g + id="g6264" + style="fill:#000000;fill-opacity:1"> + <path + id="path6262" + transform="translate(148.712,134.765)" + d="M 3.71875,-3.765625 C 3.53125,-4.140625 3.25,-4.40625 2.796875,-4.40625 c -1.15625,0 -2.390625,1.46875 -2.390625,2.921875 0,0.9375 0.546875,1.59375 1.3125,1.59375 0.203125,0 0.703125,-0.046875 1.296875,-0.75 0.078125,0.421875 0.4375,0.75 0.90625,0.75 0.359375,0 0.578125,-0.234375 0.75,-0.546875 0.15625,-0.359375 0.296875,-0.96875 0.296875,-0.984375 0,-0.109375 -0.09375,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.1875 -0.171875,0.640625 -0.34375,1.234375 -0.75,1.234375 -0.28125,0 -0.296875,-0.265625 -0.296875,-0.453125 0,-0.21875 0.015625,-0.3125 0.125,-0.75 C 3.890625,-1.71875 3.90625,-1.828125 4,-2.203125 L 4.359375,-3.59375 c 0.0625,-0.28125 0.0625,-0.296875 0.0625,-0.34375 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.25,0 -0.390625,0.21875 -0.421875,0.4375 z M 3.078125,-1.1875 C 3.015625,-1 3.015625,-0.984375 2.875,-0.8125 2.4375,-0.265625 2.03125,-0.109375 1.75,-0.109375 c -0.5,0 -0.640625,-0.546875 -0.640625,-0.9375 0,-0.5 0.3125,-1.71875 0.546875,-2.1875 0.3125,-0.578125 0.75,-0.953125 1.15625,-0.953125 0.640625,0 0.78125,0.8125 0.78125,0.875 0,0.0625 -0.015625,0.125 -0.03125,0.171875 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g6268" + style="fill:#000000;fill-opacity:1"> + <path + id="path6266" + transform="translate(153.978,136.259)" + d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + transform="matrix(4.4290657,0,0,4.4290657,116.55333,-54.60966)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$x$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g6582"> + <g + id="g6580"> + <g + style="fill:#000000;fill-opacity:1" + id="g6578"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.328125,-3.015625 C 3.390625,-3.265625 3.625,-4.1875 4.3125,-4.1875 c 0.046875,0 0.296875,0 0.5,0.125 C 4.53125,-4 4.34375,-3.765625 4.34375,-3.515625 c 0,0.15625 0.109375,0.34375 0.375,0.34375 0.21875,0 0.53125,-0.171875 0.53125,-0.578125 0,-0.515625 -0.578125,-0.65625 -0.921875,-0.65625 -0.578125,0 -0.921875,0.53125 -1.046875,0.75 -0.25,-0.65625 -0.78125,-0.75 -1.078125,-0.75 -1.03125,0 -1.609375,1.28125 -1.609375,1.53125 0,0.109375 0.109375,0.109375 0.125,0.109375 0.078125,0 0.109375,-0.03125 0.125,-0.109375 0.34375,-1.0625 1,-1.3125 1.34375,-1.3125 0.1875,0 0.53125,0.09375 0.53125,0.671875 0,0.3125 -0.171875,0.96875 -0.53125,2.375 -0.15625,0.609375 -0.515625,1.03125 -0.953125,1.03125 -0.0625,0 -0.28125,0 -0.5,-0.125 0.25,-0.0625 0.46875,-0.265625 0.46875,-0.546875 0,-0.265625 -0.21875,-0.34375 -0.359375,-0.34375 -0.3125,0 -0.546875,0.25 -0.546875,0.578125 0,0.453125 0.484375,0.65625 0.921875,0.65625 0.671875,0 1.03125,-0.703125 1.046875,-0.75 0.125,0.359375 0.484375,0.75 1.078125,0.75 1.03125,0 1.59375,-1.28125 1.59375,-1.53125 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.109375 -0.328125,1.078125 -1,1.3125 -1.3125,1.3125 -0.390625,0 -0.546875,-0.3125 -0.546875,-0.65625 0,-0.21875 0.046875,-0.4375 0.15625,-0.875 z m 0,0" + transform="translate(148.712,134.765)" + id="path6576" /> + </g> + </g> + </g> + <g + id="g7220" + ns1:scale="1.0" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:text="$b_1$" + ns1:converter="pdf2svg" + ns1:textextver="0.8" + transform="matrix(4.2776301,0,0,4.2776301,38.02267,-84.289131)"> + <g + id="g7218"> + <g + id="g7212" + style="fill:#000000;fill-opacity:1"> + <path + id="path7210" + transform="translate(148.712,134.765)" + d="m 2.375,-6.8125 c 0,0 0,-0.109375 -0.125,-0.109375 -0.21875,0 -0.953125,0.078125 -1.21875,0.109375 -0.078125,0 -0.1875,0.015625 -0.1875,0.1875 0,0.125 0.09375,0.125 0.25,0.125 0.46875,0 0.484375,0.0625 0.484375,0.171875 0,0.0625 -0.078125,0.40625 -0.125,0.609375 l -0.828125,3.25 c -0.109375,0.5 -0.15625,0.671875 -0.15625,1.015625 0,0.9375 0.53125,1.5625 1.265625,1.5625 1.171875,0 2.40625,-1.484375 2.40625,-2.921875 0,-0.90625 -0.53125,-1.59375 -1.328125,-1.59375 -0.453125,0 -0.875,0.296875 -1.171875,0.59375 z M 1.453125,-3.046875 C 1.5,-3.265625 1.5,-3.28125 1.59375,-3.390625 2.078125,-4.03125 2.53125,-4.1875 2.796875,-4.1875 c 0.359375,0 0.625,0.296875 0.625,0.9375 0,0.59375 -0.328125,1.734375 -0.515625,2.109375 -0.328125,0.671875 -0.78125,1.03125 -1.171875,1.03125 -0.34375,0 -0.671875,-0.265625 -0.671875,-1 0,-0.203125 0,-0.390625 0.15625,-1.015625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + <g + id="g7216" + style="fill:#000000;fill-opacity:1"> + <path + id="path7214" + transform="translate(152.988,136.259)" + d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/figs/False_position_method.svg b/figs/False_position_method.svg new file mode 100644 index 0000000000000000000000000000000000000000..6ea4185263a6cdbaddc3ee96076ef7eb21167518 --- /dev/null +++ b/figs/False_position_method.svg @@ -0,0 +1,298 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Creator: fig2dev Version 3.2 Patchlevel 5-alpha7 --> + +<!-- CreationDate: Mon Jun 19 22:27:10 2006 --> + +<!-- Magnification: 1.050 --> + +<svg + xmlns:ns1="http://www.iki.fi/pav/software/textext/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="3.9in" + height="3.5in" + viewBox="456 270 4681 4158" + version="1.1" + id="svg7584" + sodipodi:docname="False_position_method.svg" + inkscape:version="0.92.2 2405546, 2018-03-11"> + <metadata + id="metadata7590"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs7588" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1016" + id="namedview7586" + showgrid="false" + inkscape:zoom="1.4047619" + inkscape:cx="247.93156" + inkscape:cy="118.28909" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="svg7584" /> + <polyline + id="polyline7526" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter" + points="527,2362 5125,2362 " /> + <polyline + id="polyline7528" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter" + points="1417,283 1417,4416 " /> + <polyline + id="polyline7530" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="4708,486 4708,2369 " /> + <polyline + id="polyline7532" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="3298,1195 3298,2353 " /> + <polyline + id="polyline7534" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="1881,4267 1881,2362 " /> + <polyline + id="polyline7536" + style="fill:none;stroke:#0000ff;stroke-width:16;stroke-linecap:butt;stroke-linejoin:miter" + points="1889,4251 4719,474 " /> + <polyline + id="polyline7538" + style="fill:none;stroke:#0000ff;stroke-width:16;stroke-linecap:butt;stroke-linejoin:miter" + points="1874,4259 3307,1196 " /> + <circle + id="circle7540" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="4259" + cx="1881" /> + <circle + id="circle7542" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="479" + cx="4716" /> + <circle + id="circle7544" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="1196" + cx="3307" /> + <circle + id="circle7546" + style="fill:#0000ff;stroke:#000000;stroke-width:0" + r="43" + cy="2369" + cx="3291" /> + <circle + id="circle7548" + style="fill:#0000ff;stroke:#000000;stroke-width:0" + r="43" + cy="2362" + cx="2760" /> + <polyline + id="polyline7550" + style="fill:none;stroke:#ff0000;stroke-width:16;stroke-linecap:butt;stroke-linejoin:bevel" + points="5070,393 5068,393 5063,395 5054,397 5040,401 5019,405 4994,411 4961,418 4923,428 4880,437 4834,449 4784,460 4732,473 4679,487 4626,499 4574,512 4522,525 4472,538 4424,551 4379,562 4334,574 4293,585 4254,596 4217,606 4181,617 4148,627 4115,637 4085,647 4054,658 4025,667 3996,678 3968,688 3939,700 3909,711 3880,723 3850,735 3821,749 3792,763 3762,777 3733,793 3704,810 3675,827 3646,846 3616,866 3588,886 3560,908 3532,931 3505,954 3478,979 3453,1005 3426,1032 3402,1060 3379,1088 3356,1118 3334,1149 3313,1180 3293,1212 3274,1246 3255,1280 3237,1315 3220,1352 3205,1391 3192,1421 3180,1454 3167,1486 3155,1521 3144,1556 3132,1593 3121,1631 3109,1671 3098,1711 3087,1753 3076,1795 3065,1839 3055,1884 3043,1929 3033,1975 3022,2023 3012,2070 3001,2118 2991,2166 2980,2215 2971,2263 2960,2311 2951,2360 2941,2407 2931,2454 2921,2501 2912,2548 2902,2593 2894,2637 2885,2680 2876,2723 2867,2764 2858,2805 2849,2845 2840,2883 2831,2921 2823,2958 2813,2994 2803,3036 2791,3077 2780,3118 2768,3158 2755,3196 2743,3235 2730,3274 2717,3312 2703,3350 2689,3386 2675,3423 2660,3459 2644,3495 2628,3529 2613,3563 2597,3596 2580,3629 2563,3659 2548,3690 2531,3719 2514,3748 2497,3774 2480,3800 2464,3824 2447,3848 2430,3870 2413,3892 2397,3913 2381,3932 2365,3951 2348,3970 2331,3987 2311,4008 2290,4028 2268,4048 2246,4067 2223,4086 2200,4103 2175,4121 2150,4139 2123,4155 2096,4171 2068,4186 2039,4201 2010,4215 1981,4227 1950,4239 1919,4250 1888,4260 1857,4269 1825,4278 1794,4285 1762,4291 1731,4297 1698,4301 1667,4305 1634,4308 1602,4310 1574,4312 1546,4313 1518,4313 1488,4313 1458,4313 1425,4312 1392,4310 1356,4308 1318,4306 1278,4303 1236,4299 1192,4295 1145,4289 1097,4284 1045,4279 993,4272 938,4266 883,4259 829,4251 775,4245 724,4238 676,4232 632,4225 593,4220 559,4216 532,4212 511,4208 496,4206 487,4205 481,4204 479,4204 " /> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7554" + font-size="177" + font-weight="normal" + font-style="italic" + y="2270" + x="2503" + xml:space="preserve">a</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7556" + font-size="114" + font-weight="normal" + font-style="normal" + y="2322" + x="2653" + xml:space="preserve">2</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7558" + font-size="177" + font-weight="normal" + font-style="italic" + y="2578" + x="4629" + xml:space="preserve">b</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7560" + font-size="114" + font-weight="normal" + font-style="normal" + y="2645" + x="4779" + xml:space="preserve">0</text> + <text + style="font-style:normal;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7562" + font-size="177" + font-weight="normal" + font-style="normal" + y="2554" + x="2157" + xml:space="preserve">=</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7564" + font-size="114" + font-weight="normal" + font-style="normal" + y="2605" + x="2061" + xml:space="preserve">0</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7566" + font-size="114" + font-weight="normal" + font-style="normal" + y="2605" + x="2479" + xml:space="preserve">1</text> + <text + style="font-style:normal;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7568" + font-size="177" + font-weight="normal" + font-style="normal" + y="2601" + x="3504" + xml:space="preserve">=</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7570" + font-size="114" + font-weight="normal" + font-style="normal" + y="2692" + x="3408" + xml:space="preserve">1</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7572" + font-size="177" + font-weight="normal" + font-style="italic" + y="2554" + x="2330" + xml:space="preserve">a</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7574" + font-size="177" + font-weight="normal" + font-style="italic" + y="2554" + x="1912" + xml:space="preserve">a</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7576" + font-size="177" + font-weight="normal" + font-style="italic" + y="2624" + x="3259" + xml:space="preserve">b</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7578" + font-size="177" + font-weight="normal" + font-style="italic" + y="2624" + x="3669" + xml:space="preserve">b</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text7580" + font-size="114" + font-weight="normal" + font-style="normal" + y="2692" + x="3818" + xml:space="preserve">2</text> + <g + transform="matrix(25.044472,0,0,25.044472,-3227.4081,727.76015)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$g(x)$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g5970"> + <g + id="g5968"> + <g + style="fill:#000000;fill-opacity:1" + id="g5954"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + transform="translate(148.712,134.765)" + id="path5952" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5958"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + transform="translate(153.822,134.765)" + id="path5956" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5962"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.328125,-3.015625 C 3.390625,-3.265625 3.625,-4.1875 4.3125,-4.1875 c 0.046875,0 0.296875,0 0.5,0.125 C 4.53125,-4 4.34375,-3.765625 4.34375,-3.515625 c 0,0.15625 0.109375,0.34375 0.375,0.34375 0.21875,0 0.53125,-0.171875 0.53125,-0.578125 0,-0.515625 -0.578125,-0.65625 -0.921875,-0.65625 -0.578125,0 -0.921875,0.53125 -1.046875,0.75 -0.25,-0.65625 -0.78125,-0.75 -1.078125,-0.75 -1.03125,0 -1.609375,1.28125 -1.609375,1.53125 0,0.109375 0.109375,0.109375 0.125,0.109375 0.078125,0 0.109375,-0.03125 0.125,-0.109375 0.34375,-1.0625 1,-1.3125 1.34375,-1.3125 0.1875,0 0.53125,0.09375 0.53125,0.671875 0,0.3125 -0.171875,0.96875 -0.53125,2.375 -0.15625,0.609375 -0.515625,1.03125 -0.953125,1.03125 -0.0625,0 -0.28125,0 -0.5,-0.125 0.25,-0.0625 0.46875,-0.265625 0.46875,-0.546875 0,-0.265625 -0.21875,-0.34375 -0.359375,-0.34375 -0.3125,0 -0.546875,0.25 -0.546875,0.578125 0,0.453125 0.484375,0.65625 0.921875,0.65625 0.671875,0 1.03125,-0.703125 1.046875,-0.75 0.125,0.359375 0.484375,0.75 1.078125,0.75 1.03125,0 1.59375,-1.28125 1.59375,-1.53125 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.109375 -0.328125,1.078125 -1,1.3125 -1.3125,1.3125 -0.390625,0 -0.546875,-0.3125 -0.546875,-0.65625 0,-0.21875 0.046875,-0.4375 0.15625,-0.875 z m 0,0" + transform="translate(157.696,134.765)" + id="path5960" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5966"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + transform="translate(163.39,134.765)" + id="path5964" /> + </g> + </g> + </g> +</svg> diff --git a/figs/Linear_regression.svg b/figs/Linear_regression.svg new file mode 100644 index 0000000000000000000000000000000000000000..80cf40e3b201cb2025503f3a8c9545f6af9fd1a6 --- /dev/null +++ b/figs/Linear_regression.svg @@ -0,0 +1,797 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with matplotlib (http://matplotlib.sourceforge.net/) --> +<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="350pt" height="231pt" viewBox="0 0 350 231" version="1.1" id="svg1" inkscape:version="0.91 r13725" sodipodi:docname="Linear_regression.svg"> + <metadata id="metadata5070"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs5068"> + <clipPath id="pb35f941141d272a764a5f4ccfdc9a1c0-8"> + <rect id="rect4242-0" height="213.59254" width="334.79999" y="7.1999998" x="8.3552876"/> + </clipPath> + <clipPath id="pb35f941141d272a764a5f4ccfdc9a1c0-0"> + <rect id="rect4242-05" height="213.59254" width="334.79999" y="7.1999998" x="8.3552876"/> + </clipPath> + </defs> + <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1278" inkscape:window-height="781" id="namedview5066" showgrid="false" inkscape:zoom="1.4105403" inkscape:cx="359.2549" inkscape:cy="181.2024" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="0" inkscape:current-layer="svg1"/> + <filter id="colorAdd"> + <feComposite in="SourceGraphic" in2="BackgroundImage" operator="arithmetic" k2="1" k3="1" id="feComposite4225"/> + </filter> + <g id="CircleCollection1"> + <defs id="defs4236"> + <path id="coll0_0_71a92fafb39aa715ce05c6169a644d10" d="m 0,1.784124 c 0.473155,0 0.926995,-0.187986 1.261566,-0.522558 C 1.596138,0.926995 1.784124,0.473155 1.784124,0 c 0,-0.473155 -0.187986,-0.926995 -0.522558,-1.261566 C 0.926995,-1.596138 0.473155,-1.784124 0,-1.784124 c -0.473155,0 -0.926995,0.187986 -1.261566,0.522558 C -1.596138,-0.926995 -1.784124,-0.473155 -1.784124,0 c 0,0.473155 0.187986,0.926995 0.522558,1.261566 C -0.926995,1.596138 -0.473155,1.784124 0,1.784124 Z" inkscape:connector-curvature="0"/> + </defs> + <defs id="defs4239"> + <clipPath id="pb35f941141d272a764a5f4ccfdc9a1c0"> + <rect x="8.3552876" y="7.1999998" width="334.79999" height="213.59254" id="rect4242"/> + </clipPath> + </defs> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4244"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="213.10428" y="82.317932" id="use4246" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4248"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="31.108936" y="144.87952" id="use4250" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4252"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="131.16365" y="121.04858" id="use4254" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4256"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="254.27422" y="87.888832" id="use4258" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4260"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="69.139931" y="156.6734" id="use4262" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4264"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="99.535843" y="141.71375" id="use4266" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4268"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="155.22977" y="99.159874" id="use4270" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4272"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="329.35657" y="35.899166" id="use4274" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4276"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="250.70714" y="81.499184" id="use4278" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4280"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="229.02971" y="104.57353" id="use4282" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4284"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="35.038727" y="169.93517" id="use4286" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4288"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="334.75369" y="66.060211" id="use4290" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4292"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="21.468176" y="216.685" id="use4294" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4296"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="117.84223" y="118.01432" id="use4298" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4300"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="262.85095" y="57.540298" id="use4302" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4304"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="268.79651" y="86.094559" id="use4306" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4308"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="111.35522" y="169.85677" id="use4310" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4312"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="83.943977" y="161.20171" id="use4314" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4316"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="240.51471" y="79.669922" id="use4318" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4320"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="320.97736" y="16.928829" id="use4322" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4324"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="251.30025" y="97.356819" id="use4326" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4328"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="122.55439" y="137.54688" id="use4330" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4332"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="315.11728" y="13.448799" id="use4334" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4336"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="176.32593" y="108.8874" id="use4338" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4340"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="143.66872" y="136.78468" id="use4342" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4344"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="246.76042" y="82.787125" id="use4346" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4348"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="130.1832" y="152.77139" id="use4350" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4352"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="134.5222" y="122.98319" id="use4354" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4356"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="274.44623" y="88.537682" id="use4358" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4360"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="65.841011" y="142.0343" id="use4362" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4364"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="260.90109" y="83.244209" id="use4366" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4368"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="32.315254" y="182.17229" id="use4370" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4372"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="224.8855" y="110.82157" id="use4374" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4376"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="224.29504" y="104.83395" id="use4378" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4380"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="275.86261" y="71.185539" id="use4382" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4384"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="27.732841" y="175.43102" id="use4386" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4388"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="221.53754" y="74.339638" id="use4390" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4392"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="88.213249" y="130.18654" id="use4394" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4396"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="323.01709" y="37.45052" id="use4398" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4400"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="162.04512" y="111.48347" id="use4402" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4404"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="122.27563" y="157.47876" id="use4406" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4408"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="106.37446" y="120.83677" id="use4410" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4412"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="252.4543" y="70.253166" id="use4414" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4416"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="249.408" y="72.271591" id="use4418" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4420"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="320.56702" y="52.674007" id="use4422" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4424"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="103.24979" y="153.63457" id="use4426" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4428"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="122.43329" y="124.00661" id="use4430" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4432"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="45.750961" y="161.80769" id="use4434" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4436"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="211.6922" y="97.773361" id="use4438" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4440"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="328.29861" y="11.307549" id="use4442" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4444"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="132.51141" y="143.75768" id="use4446" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4448"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="43.633152" y="174.96623" id="use4450" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4452"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="163.37422" y="106.98009" id="use4454" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4456"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="108.29999" y="131.45024" id="use4458" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4460"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="38.938622" y="213.31259" id="use4462" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4464"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="50.37381" y="153.3465" id="use4466" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4468"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="21.020824" y="167.71324" id="use4470" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4472"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="59.718433" y="156.76028" id="use4474" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4476"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="259.34244" y="70.719536" id="use4478" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4480"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="211.57324" y="143.95935" id="use4482" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4484"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="160.54738" y="130.1732" id="use4486" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4488"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="140.11653" y="126.39202" id="use4490" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4492"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="215.29839" y="120.8754" id="use4494" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4496"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="152.67949" y="124.38599" id="use4498" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4500"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="253.00122" y="92.071693" id="use4502" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4504"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="191.52469" y="123.09646" id="use4506" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4508"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="149.57117" y="161.07338" id="use4510" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4512"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="142.17656" y="166.56871" id="use4514" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4516"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="133.13835" y="161.33244" id="use4518" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4520"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="146.56841" y="120.69839" id="use4522" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4524"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="69.208023" y="177.49467" id="use4526" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4528"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="312.26135" y="16.667896" id="use4530" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4532"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="270.35959" y="90.094872" id="use4534" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4536"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="253.15073" y="72.709801" id="use4538" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4540"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="282.96771" y="55.906548" id="use4542" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4544"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="117.55467" y="156.20444" id="use4546" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4548"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="251.15385" y="52.62421" id="use4550" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4552"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="22.589869" y="165.70134" id="use4554" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4556"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="296.57126" y="35.791718" id="use4558" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4560"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="292.1282" y="90.574226" id="use4562" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4564"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="223.41808" y="85.240356" id="use4566" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4568"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="97.771843" y="167.76175" id="use4570" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4572"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="238.87352" y="103.95156" id="use4574" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4576"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="180.70277" y="119.09729" id="use4578" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4580"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="76.930725" y="171.55194" id="use4582" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4584"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="77.988663" y="158.34319" id="use4586" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4588"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="261.91229" y="85.092262" id="use4590" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4592"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="179.97768" y="109.05155" id="use4594" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4596"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="122.34274" y="124.03812" id="use4598" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4600"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="26.680471" y="144.72145" id="use4602" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4604"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="155.78293" y="100.54779" id="use4606" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4608"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="206.15446" y="63.817688" id="use4610" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4612"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="117.44544" y="167.04361" id="use4614" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4616"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="49.307514" y="160.91736" id="use4618" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4620"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="197.7393" y="123.61622" id="use4622" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4624"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="82.168991" y="192.49586" id="use4626" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4628"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="226.84201" y="84.979988" id="use4630" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4632"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="291.75278" y="63.208378" id="use4634" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4636"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="200.07933" y="107.76558" id="use4638" width="100%" height="100%"/> + </g> + <g clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" id="g4640"> + <use style="opacity:1;fill:#0000ff" xlink:href="#coll0_0_71a92fafb39aa715ce05c6169a644d10" x="243.81894" y="99.014786" id="use4642" width="100%" height="100%"/> + </g> + </g> + <g id="line2d1"> + <path style="opacity:1;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round" clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0)" d="m 14.79375,187.34535 321.92308,-146.595566 0,0" id="path4645" inkscape:connector-curvature="0"/> + </g> + <g id="matplotlib.axis1"> + <g id="xtick1"> + <g id="line2d2"> + <defs id="defs4650"> + <path id="m30e32995789d870ad79a2e54c91cf9c6" d="M 0,0 0,-4" inkscape:connector-curvature="0"/> + </defs> + <g id="g4653"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="14.79375" y="213.20276" id="use4655" width="100%" height="100%"/> + </g> + </g> + <g id="text1"> + <defs id="defs4658"> + <path id="c_7b26b13f539f13a4c64eef23b6952d29" d="m 4.890625,-31.390625 26.3125,0 0,8 -26.3125,0 z" inkscape:connector-curvature="0"/> + <path id="c_ed3f3ed3ebfbd18bcb9c012009a68ad1" d="m 19.1875,-8.296875 34.421875,0 0,8.296875 -46.28125,0 0,-8.296875 q 5.609375,-5.8125 15.296875,-15.59375 9.703125,-9.796875 12.1875,-12.640625 4.734375,-5.3125 6.609375,-9 1.890625,-3.6875 1.890625,-7.25 0,-5.8125 -4.078125,-9.46875 -4.078125,-3.671875 -10.625,-3.671875 -4.640625,0 -9.796875,1.609375 -5.140625,1.609375 -11,4.890625 l 0,-9.96875 Q 13.765625,-71.78125 18.9375,-73 q 5.1875,-1.21875 9.484375,-1.21875 11.328125,0 18.0625,5.671875 6.734375,5.65625 6.734375,15.125 0,4.5 -1.6875,8.53125 -1.671875,4.015625 -6.125,9.484375 -1.21875,1.421875 -7.765625,8.1875 -6.53125,6.765625 -18.453125,18.921875" inkscape:connector-curvature="0"/> + <path id="c_7a2040fe3b94fcd41d0a72c84e93b115" d="m 31.78125,-66.40625 q -7.609375,0 -11.453125,7.5 Q 16.5,-51.421875 16.5,-36.375 q 0,14.984375 3.828125,22.484375 3.84375,7.5 11.453125,7.5 7.671875,0 11.5,-7.5 3.84375,-7.5 3.84375,-22.484375 0,-15.046875 -3.84375,-22.53125 -3.828125,-7.5 -11.5,-7.5 m 0,-7.8125 q 12.265625,0 18.734375,9.703125 6.46875,9.6875 6.46875,28.140625 0,18.40625 -6.46875,28.109375 -6.46875,9.6875 -18.734375,9.6875 -12.25,0 -18.71875,-9.6875 Q 6.59375,-17.96875 6.59375,-36.375 q 0,-18.453125 6.46875,-28.140625 6.46875,-9.703125 18.71875,-9.703125" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,7.2,224.62463)" id="g4663"> + <use xlink:href="#c_7b26b13f539f13a4c64eef23b6952d29" id="use4665" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_ed3f3ed3ebfbd18bcb9c012009a68ad1" x="36.083984" id="use4667" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="99.707031" id="use4669" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick2"> + <g id="line2d3"> + <g id="g4673"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="55.034134" y="213.20276" id="use4675" width="100%" height="100%"/> + </g> + </g> + <g id="text2"> + <defs id="defs4678"> + <path id="c_42baa63129a918535c52adb20d687ea7" d="m 12.40625,-8.296875 16.109375,0 0,-55.625 -17.53125,3.515625 0,-8.984375 17.4375,-3.515625 9.859375,0 0,64.609375 16.109375,0 0,8.296875 -41.984375,0 z" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,47.440385,224.62463)" id="g4681"> + <use xlink:href="#c_7b26b13f539f13a4c64eef23b6952d29" id="use4683" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_42baa63129a918535c52adb20d687ea7" x="36.083984" id="use4685" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="99.707031" id="use4687" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick3"> + <g id="line2d4"> + <g id="g4691"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="95.274521" y="213.20276" id="use4693" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick4"> + <g id="line2d5"> + <g id="g4697"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="135.51491" y="213.20276" id="use4699" width="100%" height="100%"/> + </g> + </g> + <g id="text3"> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,130.03053,224.62463)" id="g4702"> + <use xlink:href="#c_42baa63129a918535c52adb20d687ea7" id="use4704" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4706" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick5"> + <g id="line2d6"> + <g id="g4710"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="175.75529" y="213.20276" id="use4712" width="100%" height="100%"/> + </g> + </g> + <g id="text4"> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,170.09123,224.62463)" id="g4715"> + <use xlink:href="#c_ed3f3ed3ebfbd18bcb9c012009a68ad1" id="use4717" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4719" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick6"> + <g id="line2d7"> + <g id="g4723"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="215.99567" y="213.20276" id="use4725" width="100%" height="100%"/> + </g> + </g> + <g id="text5"> + <defs id="defs4728"> + <path id="c_3dcfa38a02242cb63ec6726c6e70be7a" d="M 40.578125,-39.3125 Q 47.65625,-37.796875 51.625,-33 q 3.984375,4.78125 3.984375,11.8125 0,10.78125 -7.421875,16.703125 -7.421875,5.90625 -21.09375,5.90625 -4.578125,0 -9.4375,-0.90625 -4.859375,-0.90625 -10.03125,-2.71875 l 0,-9.515625 q 4.09375,2.390625 8.96875,3.609375 4.890625,1.21875 10.21875,1.21875 9.265625,0 14.125,-3.65625 4.859375,-3.65625 4.859375,-10.640625 0,-6.453125 -4.515625,-10.078125 -4.515625,-3.640625 -12.5625,-3.640625 l -8.5,0 0,-8.109375 8.890625,0 q 7.265625,0 11.125,-2.90625 3.859375,-2.90625 3.859375,-8.375 0,-5.609375 -3.984375,-8.609375 -3.96875,-3.015625 -11.390625,-3.015625 -4.0625,0 -8.703125,0.890625 -4.640625,0.875 -10.203125,2.71875 l 0,-8.78125 q 5.625,-1.5625 10.53125,-2.34375 4.90625,-0.78125 9.25,-0.78125 11.234375,0 17.765625,5.109375 6.546875,5.09375 6.546875,13.78125 0,6.0625 -3.46875,10.234375 -3.46875,4.171875 -9.859375,5.78125" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,210.34724,224.62463)" id="g4731"> + <use xlink:href="#c_3dcfa38a02242cb63ec6726c6e70be7a" id="use4733" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4735" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick7"> + <g id="line2d8"> + <g id="g4739"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="256.23605" y="213.20276" id="use4741" width="100%" height="100%"/> + </g> + </g> + <g id="text6"> + <defs id="defs4744"> + <path id="c_a0416418d96557a09b8c1332d34883ba" d="m 37.796875,-64.3125 -24.90625,38.921875 24.90625,0 z m -2.59375,-8.59375 12.40625,0 0,47.515625 10.40625,0 0,8.203125 -10.40625,0 0,17.1875 -9.8125,0 0,-17.1875 -32.90625,0 0,-9.515625 z" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,250.44699,224.62463)" id="g4747"> + <use xlink:href="#c_a0416418d96557a09b8c1332d34883ba" id="use4749" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4751" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick8"> + <g id="line2d9"> + <g id="g4755"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="296.47644" y="213.20276" id="use4757" width="100%" height="100%"/> + </g> + </g> + <g id="text7"> + <defs id="defs4760"> + <path id="c_1260a2df50f305f3db244e29828f968e" d="m 10.796875,-72.90625 38.71875,0 0,8.3125 -29.6875,0 0,17.859375 q 2.140625,-0.734375 4.28125,-1.09375 2.15625,-0.359375 4.3125,-0.359375 12.203125,0 19.328125,6.6875 7.140625,6.6875 7.140625,18.109375 0,11.765625 -7.328125,18.296875 -7.328125,6.515625 -20.65625,6.515625 -4.59375,0 -9.359375,-0.78125 -4.75,-0.78125 -9.828125,-2.34375 l 0,-9.921875 q 4.390625,2.390625 9.078125,3.5625 4.6875,1.171875 9.90625,1.171875 8.453125,0 13.375,-4.4375 4.9375,-4.4375 4.9375,-12.0625 0,-7.609375 -4.9375,-12.046875 -4.921875,-4.453125 -13.375,-4.453125 -3.953125,0 -7.890625,0.875 -3.921875,0.875 -8.015625,2.734375 z" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,290.82801,224.62463)" id="g4763"> + <use xlink:href="#c_1260a2df50f305f3db244e29828f968e" id="use4765" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4767" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick9"> + <g id="line2d10"> + <g id="g4771"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m30e32995789d870ad79a2e54c91cf9c6" x="336.71683" y="213.20276" id="use4773" width="100%" height="100%"/> + </g> + </g> + <g id="text8"> + <defs id="defs4776"> + <path id="c_cc8d6d580d1b10c8632f7a42cd53db8a" d="m 33.015625,-40.375 q -6.640625,0 -10.53125,4.546875 -3.875,4.53125 -3.875,12.4375 0,7.859375 3.875,12.4375 3.890625,4.5625 10.53125,4.5625 6.640625,0 10.515625,-4.5625 3.875,-4.578125 3.875,-12.4375 0,-7.90625 -3.875,-12.4375 Q 39.65625,-40.375 33.015625,-40.375 m 19.578125,-30.921875 0,8.984375 q -3.71875,-1.75 -7.5,-2.671875 -3.78125,-0.9375 -7.5,-0.9375 -9.765625,0 -14.921875,6.59375 -5.140625,6.59375 -5.875,19.921875 2.875,-4.25 7.21875,-6.515625 4.359375,-2.265625 9.578125,-2.265625 10.984375,0 17.359375,6.671875 6.375,6.65625 6.375,18.125 0,11.234375 -6.640625,18.03125 -6.640625,6.78125 -17.671875,6.78125 -12.65625,0 -19.34375,-9.6875 -6.6875,-9.703125 -6.6875,-28.109375 0,-17.28125 8.203125,-27.5625 8.203125,-10.28125 22.015625,-10.28125 3.71875,0 7.5,0.734375 3.78125,0.734375 7.890625,2.1875" inkscape:connector-curvature="0"/> + </defs> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,331.03714,224.62463)" id="g4779"> + <use xlink:href="#c_cc8d6d580d1b10c8632f7a42cd53db8a" id="use4781" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4783" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick10"> + <g id="line2d11"> + <defs id="defs4787"> + <path id="m3b2d125790092c17af877e29e2858cbc" d="M 0,0 0,-2" inkscape:connector-curvature="0"/> + </defs> + <g id="g4790"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="24.853846" y="213.20276" id="use4792" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick11"> + <g id="line2d12"> + <g id="g4796"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="34.91394" y="213.20276" id="use4798" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick12"> + <g id="line2d13"> + <g id="g4802"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="44.974037" y="213.20276" id="use4804" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick13"> + <g id="line2d14"> + <g id="g4808"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="65.094231" y="213.20276" id="use4810" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick14"> + <g id="line2d15"> + <g id="g4814"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="75.154327" y="213.20276" id="use4816" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick15"> + <g id="line2d16"> + <g id="g4820"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="85.214424" y="213.20276" id="use4822" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick16"> + <g id="line2d17"> + <g id="g4826"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="105.33462" y="213.20276" id="use4828" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick17"> + <g id="line2d18"> + <g id="g4832"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="115.39471" y="213.20276" id="use4834" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick18"> + <g id="line2d19"> + <g id="g4838"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="125.45481" y="213.20276" id="use4840" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick19"> + <g id="line2d20"> + <g id="g4844"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="145.575" y="213.20276" id="use4846" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick20"> + <g id="line2d21"> + <g id="g4850"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="155.6351" y="213.20276" id="use4852" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick21"> + <g id="line2d22"> + <g id="g4856"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="165.69519" y="213.20276" id="use4858" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick22"> + <g id="line2d23"> + <g id="g4862"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="185.81538" y="213.20276" id="use4864" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick23"> + <g id="line2d24"> + <g id="g4868"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="195.87549" y="213.20276" id="use4870" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick24"> + <g id="line2d25"> + <g id="g4874"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="205.93558" y="213.20276" id="use4876" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick25"> + <g id="line2d26"> + <g id="g4880"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="226.05577" y="213.20276" id="use4882" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick26"> + <g id="line2d27"> + <g id="g4886"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="236.11586" y="213.20276" id="use4888" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick27"> + <g id="line2d28"> + <g id="g4892"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="246.17596" y="213.20276" id="use4894" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick28"> + <g id="line2d29"> + <g id="g4898"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="266.29614" y="213.20276" id="use4900" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick29"> + <g id="line2d30"> + <g id="g4904"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="276.35626" y="213.20276" id="use4906" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick30"> + <g id="line2d31"> + <g id="g4910"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="286.41635" y="213.20276" id="use4912" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick31"> + <g id="line2d32"> + <g id="g4916"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="306.53653" y="213.20276" id="use4918" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick32"> + <g id="line2d33"> + <g id="g4922"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="316.59665" y="213.20276" id="use4924" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="xtick33"> + <g id="line2d34"> + <g id="g4928"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3b2d125790092c17af877e29e2858cbc" x="326.65674" y="213.20276" id="use4930" width="100%" height="100%"/> + </g> + </g> + </g> + </g> + <g id="matplotlib.axis2"> + <g id="ytick1"> + <g id="line2d35"> + <defs id="defs4935"> + <path id="m3400efa6b1638b3fea9e19e898273957" d="M 0,0 4,0" inkscape:connector-curvature="0"/> + </defs> + <g id="g4938"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3400efa6b1638b3fea9e19e898273957" x="95.274521" y="213.20276" id="use4940" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick2"> + <g id="line2d36"> + <g id="g4944"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3400efa6b1638b3fea9e19e898273957" x="95.274521" y="151.5817" id="use4946" width="100%" height="100%"/> + </g> + </g> + <g id="text9"> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,86.555769,155.15981)" id="g4949"> + <use xlink:href="#c_1260a2df50f305f3db244e29828f968e" id="use4951" x="0" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick3"> + <g id="line2d37"> + <g id="g4955"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3400efa6b1638b3fea9e19e898273957" x="95.274521" y="89.960617" id="use4957" width="100%" height="100%"/> + </g> + </g> + <g id="text10"> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,80.305769,93.601244)" id="g4960"> + <use xlink:href="#c_42baa63129a918535c52adb20d687ea7" id="use4962" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_7a2040fe3b94fcd41d0a72c84e93b115" x="63.623047" id="use4964" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick4"> + <g id="line2d38"> + <g id="g4968"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#m3400efa6b1638b3fea9e19e898273957" x="95.274521" y="28.33955" id="use4970" width="100%" height="100%"/> + </g> + </g> + <g id="text11"> + <g style="opacity:1;fill:#000000" transform="matrix(0.1,0,0,0.1,80.524519,31.917675)" id="g4973"> + <use xlink:href="#c_42baa63129a918535c52adb20d687ea7" id="use4975" x="0" y="0" width="100%" height="100%"/> + <use xlink:href="#c_1260a2df50f305f3db244e29828f968e" x="63.623047" id="use4977" y="0" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick5"> + <g id="line2d39"> + <defs id="defs4981"> + <path id="mb39cfcf7402899e54c4d755745537394" d="M 0,0 2,0" inkscape:connector-curvature="0"/> + </defs> + <g id="g4984"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="200.87854" id="use4986" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick6"> + <g id="line2d40"> + <g id="g4990"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="188.55434" id="use4992" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick7"> + <g id="line2d41"> + <g id="g4996"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="176.23012" id="use4998" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick8"> + <g id="line2d42"> + <g id="g5002"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="163.9059" id="use5004" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick9"> + <g id="line2d43"> + <g id="g5008"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="139.25748" id="use5010" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick10"> + <g id="line2d44"> + <g id="g5014"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="126.93326" id="use5016" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick11"> + <g id="line2d45"> + <g id="g5020"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="114.60905" id="use5022" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick12"> + <g id="line2d46"> + <g id="g5026"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="102.28483" id="use5028" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick13"> + <g id="line2d47"> + <g id="g5032"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="77.636406" id="use5034" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick14"> + <g id="line2d48"> + <g id="g5038"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="65.312187" id="use5040" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick15"> + <g id="line2d49"> + <g id="g5044"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="52.987976" id="use5046" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick16"> + <g id="line2d50"> + <g id="g5050"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="40.663765" id="use5052" width="100%" height="100%"/> + </g> + </g> + </g> + <g id="ytick17"> + <g id="line2d51"> + <g id="g5056"> + <use style="opacity:1;fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round" xlink:href="#mb39cfcf7402899e54c4d755745537394" x="95.274521" y="16.015335" id="use5058" width="100%" height="100%"/> + </g> + </g> + </g> + </g> + <g id="patch3"> + <path style="opacity:1;fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:round" d="m 8.355288,213.20276 334.800002,0" id="path5061" inkscape:connector-curvature="0"/> + </g> + <g id="patch4"> + <path style="opacity:1;fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:round" d="m 95.274519,220.79255 0,-213.59255" id="path5064" inkscape:connector-curvature="0"/> + </g> + <path transform="translate(0.71215082,0.03664112)" inkscape:connector-curvature="0" id="path10960" d="m 14.79375,187.34535 321.92308,-146.595566 0,0" clip-path="url(#pb35f941141d272a764a5f4ccfdc9a1c0-0)" style="opacity:1;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round"/> +</svg> \ No newline at end of file diff --git a/figs/Secant_method.svg b/figs/Secant_method.svg new file mode 100644 index 0000000000000000000000000000000000000000..43f6d5d2f39ed7cd03b3a31d724bedf42c421792 --- /dev/null +++ b/figs/Secant_method.svg @@ -0,0 +1,244 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Creator: fig2dev Version 3.2 Patchlevel 5-alpha7 --> + +<!-- CreationDate: Mon Jun 19 21:50:42 2006 --> + +<!-- Magnification: 1.050 --> + +<svg + xmlns:ns1="http://www.iki.fi/pav/software/textext/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="3.9in" + height="3.5in" + viewBox="456 270 4681 4158" + version="1.1" + id="svg48" + sodipodi:docname="Secant_method.svg" + inkscape:version="0.92.2 2405546, 2018-03-11"> + <metadata + id="metadata54"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs52" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1016" + id="namedview50" + showgrid="false" + inkscape:zoom="1.4047619" + inkscape:cx="26.021188" + inkscape:cy="216.45526" + inkscape:window-x="0" + inkscape:window-y="30" + inkscape:window-maximized="1" + inkscape:current-layer="svg48" /> + <polyline + id="polyline2" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter" + points="527,2362 5125,2362 " /> + <polyline + id="polyline4" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter" + points="1417,283 1417,4416 " /> + <polyline + id="polyline6" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="4708,486 4708,2369 " /> + <polyline + id="polyline8" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="3298,1195 3298,2353 " /> + <polyline + id="polyline10" + style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:50, 50" + points="1881,4267 1881,2362 " /> + <polyline + id="polyline12" + style="fill:none;stroke:#0000ff;stroke-width:16;stroke-linecap:butt;stroke-linejoin:miter" + points="1889,4251 4719,474 " /> + <polyline + id="polyline14" + style="fill:none;stroke:#0000ff;stroke-width:16;stroke-linecap:butt;stroke-linejoin:miter" + points="535,2614 4708,479 " /> + <circle + id="circle16" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="4259" + cx="1881" /> + <circle + id="circle18" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="479" + cx="4716" /> + <circle + id="circle20" + style="fill:#ff0000;stroke:#000000;stroke-width:0" + r="43" + cy="1196" + cx="3307" /> + <circle + id="circle22" + style="fill:#0000ff;stroke:#000000;stroke-width:0" + r="43" + cy="2369" + cx="3291" /> + <circle + id="circle24" + style="fill:#0000ff;stroke:#000000;stroke-width:0" + r="43" + cy="2369" + cx="1027" /> + <polyline + id="polyline26" + style="fill:none;stroke:#ff0000;stroke-width:16;stroke-linecap:butt;stroke-linejoin:bevel" + points="5070,393 5068,393 5063,395 5054,397 5040,401 5019,405 4994,411 4961,418 4923,428 4880,437 4834,449 4784,460 4732,473 4679,487 4626,499 4574,512 4522,525 4472,538 4424,551 4379,562 4334,574 4293,585 4254,596 4217,606 4181,617 4148,627 4115,637 4085,647 4054,658 4025,667 3996,678 3968,688 3939,700 3909,711 3880,723 3850,735 3821,749 3792,763 3762,777 3733,793 3704,810 3675,827 3646,846 3616,866 3588,886 3560,908 3532,931 3505,954 3478,979 3453,1005 3426,1032 3402,1060 3379,1088 3356,1118 3334,1149 3313,1180 3293,1212 3274,1246 3255,1280 3237,1315 3220,1352 3205,1391 3192,1421 3180,1454 3167,1486 3155,1521 3144,1556 3132,1593 3121,1631 3109,1671 3098,1711 3087,1753 3076,1795 3065,1839 3055,1884 3043,1929 3033,1975 3022,2023 3012,2070 3001,2118 2991,2166 2980,2215 2971,2263 2960,2311 2951,2360 2941,2407 2931,2454 2921,2501 2912,2548 2902,2593 2894,2637 2885,2680 2876,2723 2867,2764 2858,2805 2849,2845 2840,2883 2831,2921 2823,2958 2813,2994 2803,3036 2791,3077 2780,3118 2768,3158 2755,3196 2743,3235 2730,3274 2717,3312 2703,3350 2689,3386 2675,3423 2660,3459 2644,3495 2628,3529 2613,3563 2597,3596 2580,3629 2563,3659 2548,3690 2531,3719 2514,3748 2497,3774 2480,3800 2464,3824 2447,3848 2430,3870 2413,3892 2397,3913 2381,3932 2365,3951 2348,3970 2331,3987 2311,4008 2290,4028 2268,4048 2246,4067 2223,4086 2200,4103 2175,4121 2150,4139 2123,4155 2096,4171 2068,4186 2039,4201 2010,4215 1981,4227 1950,4239 1919,4250 1888,4260 1857,4269 1825,4278 1794,4285 1762,4291 1731,4297 1698,4301 1667,4305 1634,4308 1602,4310 1574,4312 1546,4313 1518,4313 1488,4313 1458,4313 1425,4312 1392,4310 1356,4308 1318,4306 1278,4303 1236,4299 1192,4295 1145,4289 1097,4284 1045,4279 993,4272 938,4266 883,4259 829,4251 775,4245 724,4238 676,4232 632,4225 593,4220 559,4216 532,4212 511,4208 496,4206 487,4205 481,4204 479,4204 " /> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text30" + font-size="177" + font-weight="normal" + font-style="italic" + y="2578" + x="1007" + xml:space="preserve">x</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text32" + font-size="177" + font-weight="normal" + font-style="italic" + y="2554" + x="1912" + xml:space="preserve">x</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text34" + font-size="114" + font-weight="normal" + font-style="normal" + y="2605" + x="2061" + xml:space="preserve">0</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text36" + font-size="177" + font-weight="normal" + font-style="italic" + y="2570" + x="3259" + xml:space="preserve">x</text> + <text + style="font-style:italic;font-weight:normal;font-size:177px;font-family:Helvetica;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text38" + font-size="177" + font-weight="normal" + font-style="italic" + y="2546" + x="4629" + xml:space="preserve">x</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text40" + font-size="114" + font-weight="normal" + font-style="normal" + y="2598" + x="4779" + xml:space="preserve">1</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text42" + font-size="114" + font-weight="normal" + font-style="normal" + y="2621" + x="3408" + xml:space="preserve">2</text> + <text + style="font-style:normal;font-weight:normal;font-size:114px;font-family:Times;text-anchor:start;fill:#000000;stroke:#000000;stroke-width:0.025in" + id="text44" + font-size="114" + font-weight="normal" + font-style="normal" + y="2629" + x="1156" + xml:space="preserve">3</text> + <g + transform="matrix(25.044472,0,0,25.044472,-3236.517,687.28543)" + ns1:textextver="0.8" + ns1:converter="pdf2svg" + ns1:text="$g(x)$" + ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" + ns1:scale="1.0" + id="g5970"> + <g + id="g5968"> + <g + style="fill:#000000;fill-opacity:1" + id="g5954"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 4.6875,-3.765625 C 4.703125,-3.8125 4.71875,-3.875 4.71875,-3.9375 c 0,-0.171875 -0.109375,-0.265625 -0.28125,-0.265625 -0.09375,0 -0.375,0.0625 -0.40625,0.421875 -0.1875,-0.359375 -0.53125,-0.625 -0.9375,-0.625 -1.125,0 -2.359375,1.390625 -2.359375,2.828125 0,0.984375 0.59375,1.578125 1.3125,1.578125 0.59375,0 1.0625,-0.46875 1.15625,-0.578125 L 3.21875,-0.5625 C 3.015625,0.3125 2.890625,0.734375 2.890625,0.75 2.84375,0.84375 2.515625,1.828125 1.453125,1.828125 1.265625,1.828125 0.9375,1.8125 0.65625,1.71875 0.953125,1.640625 1.0625,1.375 1.0625,1.203125 c 0,-0.15625 -0.109375,-0.34375 -0.375,-0.34375 -0.21875,0 -0.53125,0.171875 -0.53125,0.578125 0,0.40625 0.359375,0.609375 1.3125,0.609375 1.25,0 1.96875,-0.78125 2.125,-1.375 z M 3.40625,-1.28125 C 3.34375,-1.015625 3.109375,-0.765625 2.890625,-0.578125 2.6875,-0.40625 2.375,-0.21875 2.078125,-0.21875 c -0.5,0 -0.640625,-0.515625 -0.640625,-0.921875 0,-0.46875 0.28125,-1.65625 0.5625,-2.15625 C 2.265625,-3.78125 2.6875,-4.1875 3.109375,-4.1875 c 0.65625,0 0.796875,0.8125 0.796875,0.859375 0,0.046875 -0.015625,0.109375 -0.03125,0.140625 z m 0,0" + transform="translate(148.712,134.765)" + id="path5952" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5958"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" + transform="translate(153.822,134.765)" + id="path5956" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5962"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.328125,-3.015625 C 3.390625,-3.265625 3.625,-4.1875 4.3125,-4.1875 c 0.046875,0 0.296875,0 0.5,0.125 C 4.53125,-4 4.34375,-3.765625 4.34375,-3.515625 c 0,0.15625 0.109375,0.34375 0.375,0.34375 0.21875,0 0.53125,-0.171875 0.53125,-0.578125 0,-0.515625 -0.578125,-0.65625 -0.921875,-0.65625 -0.578125,0 -0.921875,0.53125 -1.046875,0.75 -0.25,-0.65625 -0.78125,-0.75 -1.078125,-0.75 -1.03125,0 -1.609375,1.28125 -1.609375,1.53125 0,0.109375 0.109375,0.109375 0.125,0.109375 0.078125,0 0.109375,-0.03125 0.125,-0.109375 0.34375,-1.0625 1,-1.3125 1.34375,-1.3125 0.1875,0 0.53125,0.09375 0.53125,0.671875 0,0.3125 -0.171875,0.96875 -0.53125,2.375 -0.15625,0.609375 -0.515625,1.03125 -0.953125,1.03125 -0.0625,0 -0.28125,0 -0.5,-0.125 0.25,-0.0625 0.46875,-0.265625 0.46875,-0.546875 0,-0.265625 -0.21875,-0.34375 -0.359375,-0.34375 -0.3125,0 -0.546875,0.25 -0.546875,0.578125 0,0.453125 0.484375,0.65625 0.921875,0.65625 0.671875,0 1.03125,-0.703125 1.046875,-0.75 0.125,0.359375 0.484375,0.75 1.078125,0.75 1.03125,0 1.59375,-1.28125 1.59375,-1.53125 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.046875 -0.140625,0.109375 -0.328125,1.078125 -1,1.3125 -1.3125,1.3125 -0.390625,0 -0.546875,-0.3125 -0.546875,-0.65625 0,-0.21875 0.046875,-0.4375 0.15625,-0.875 z m 0,0" + transform="translate(157.696,134.765)" + id="path5960" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g5966"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" + transform="translate(163.39,134.765)" + id="path5964" /> + </g> + </g> + </g> +</svg> diff --git a/figs/ackley.svg b/figs/ackley.svg new file mode 100644 index 0000000000000000000000000000000000000000..5f1a9a93b7dfc7c5e89195f6578f99275dfb9f79 --- /dev/null +++ b/figs/ackley.svg @@ -0,0 +1,757 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with matplotlib (https://matplotlib.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + height="281.25262pt" + version="1.1" + viewBox="0 0 376.51219 281.25262" + width="376.51218pt" + id="svg212" + sodipodi:docname="ackley.svg" + inkscape:version="0.92.2 2405546, 2018-03-11"> + <metadata + id="metadata216"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1030" + id="namedview214" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:zoom="1.2797896" + inkscape:cx="235.79347" + inkscape:cy="274.71953" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="svg212" /> + <defs + id="defs4" + style="stroke-linecap:butt;stroke-linejoin:round"> + <style + type="text/css" + id="style2"> +*{stroke-linecap:butt;stroke-linejoin:round;} + </style> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="axes_1" + transform="translate(-38.607813,-41.072)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_2"> + <path + inkscape:connector-curvature="0" + id="path9" + style="fill:#ffffff;stroke-linecap:butt;stroke-linejoin:round" + d="M 57.6,307.584 H 414.72 V 41.472 H 57.6 Z" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="matplotlib.axis_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_1"> + <defs + id="defs13"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m403b46365c" + d="M 0,0 V 3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g17"> + <use + height="100%" + width="100%" + id="use15" + y="307.58401" + xlink:href="#m403b46365c" + x="73.832726" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_1"> + <!-- −30 --> + <defs + id="defs23"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-8722" + d="M 10.59375,35.5 H 73.1875 V 27.203125 H 10.59375 Z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-51" + d="M 40.578125,39.3125 Q 47.65625,37.796875 51.625,33 q 3.984375,-4.78125 3.984375,-11.8125 0,-10.78125 -7.421875,-16.703125 -7.421875,-5.90625 -21.09375,-5.90625 -4.578125,0 -9.4375,0.90625 -4.859375,0.90625 -10.03125,2.71875 v 9.515625 q 4.09375,-2.390625 8.96875,-3.609375 4.890625,-1.21875 10.21875,-1.21875 9.265625,0 14.125,3.65625 4.859375,3.65625 4.859375,10.640625 0,6.453125 -4.515625,10.078125 -4.515625,3.640625 -12.5625,3.640625 h -8.5 v 8.109375 h 8.890625 q 7.265625,0 11.125,2.90625 3.859375,2.90625 3.859375,8.375 0,5.609375 -3.984375,8.609375 -3.96875,3.015625 -11.390625,3.015625 -4.0625,0 -8.703125,-0.890625 Q 15.375,64.15625 9.8125,62.3125 v 8.78125 q 5.625,1.5625 10.53125,2.34375 4.90625,0.78125 9.25,0.78125 11.234375,0 17.765625,-5.109375 6.546875,-5.09375 6.546875,-13.78125 0,-6.0625 -3.46875,-10.234375 -3.46875,-4.171875 -9.859375,-5.78125 z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-48" + d="m 31.78125,66.40625 q -7.609375,0 -11.453125,-7.5 Q 16.5,51.421875 16.5,36.375 q 0,-14.984375 3.828125,-22.484375 3.84375,-7.5 11.453125,-7.5 7.671875,0 11.5,7.5 3.84375,7.5 3.84375,22.484375 0,15.046875 -3.84375,22.53125 -3.828125,7.5 -11.5,7.5 z m 0,7.8125 q 12.265625,0 18.734375,-9.703125 6.46875,-9.6875 6.46875,-28.140625 0,-18.40625 -6.46875,-28.109375 -6.46875,-9.6875 -18.734375,-9.6875 -12.25,0 -18.71875,9.6875 Q 6.59375,17.96875 6.59375,36.375 q 0,18.453125 6.46875,28.140625 6.46875,9.703125 18.71875,9.703125 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g31" + transform="matrix(0.1,0,0,-0.1,63.280384,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use25" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use27" + xlink:href="#DejaVuSans-51" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use29" + xlink:href="#DejaVuSans-48" + x="147.41211" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g37"> + <use + height="100%" + width="100%" + id="use35" + y="307.58401" + xlink:href="#m403b46365c" + x="127.94182" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_2"> + <!-- −20 --> + <defs + id="defs41"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-50" + d="M 19.1875,8.296875 H 53.609375 V 0 H 7.328125 v 8.296875 q 5.609375,5.8125 15.296875,15.59375 9.703125,9.796875 12.1875,12.640625 4.734375,5.3125 6.609375,9 1.890625,3.6875 1.890625,7.25 0,5.8125 -4.078125,9.46875 -4.078125,3.671875 -10.625,3.671875 -4.640625,0 -9.796875,-1.609375 -5.140625,-1.609375 -11,-4.890625 v 9.96875 Q 13.765625,71.78125 18.9375,73 q 5.1875,1.21875 9.484375,1.21875 11.328125,0 18.0625,-5.671875 6.734375,-5.65625 6.734375,-15.125 0,-4.5 -1.6875,-8.53125 Q 49.859375,40.875 45.40625,35.40625 44.1875,33.984375 37.640625,27.21875 31.109375,20.453125 19.1875,8.296875 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g49" + transform="matrix(0.1,0,0,-0.1,117.38947,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use43" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use45" + xlink:href="#DejaVuSans-50" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use47" + xlink:href="#DejaVuSans-48" + x="147.41211" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g55"> + <use + height="100%" + width="100%" + id="use53" + y="307.58401" + xlink:href="#m403b46365c" + x="182.0509" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_3"> + <!-- −10 --> + <defs + id="defs59"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-49" + d="m 12.40625,8.296875 h 16.109375 v 55.625 L 10.984375,60.40625 v 8.984375 l 17.4375,3.515625 H 38.28125 V 8.296875 H 54.390625 V 0 H 12.40625 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g67" + transform="matrix(0.1,0,0,-0.1,171.49857,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use61" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use63" + xlink:href="#DejaVuSans-49" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use65" + xlink:href="#DejaVuSans-48" + x="147.41211" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g73"> + <use + height="100%" + width="100%" + id="use71" + y="307.58401" + xlink:href="#m403b46365c" + x="236.16" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_4"> + <!-- 0 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g78" + transform="matrix(0.1,0,0,-0.1,232.97875,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use76" + xlink:href="#DejaVuSans-48" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g84"> + <use + height="100%" + width="100%" + id="use82" + y="307.58401" + xlink:href="#m403b46365c" + x="290.2691" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_5"> + <!-- 10 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g91" + transform="matrix(0.1,0,0,-0.1,283.90659,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use87" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use89" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_6"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_6"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g97"> + <use + height="100%" + width="100%" + id="use95" + y="307.58401" + xlink:href="#m403b46365c" + x="344.37817" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_6"> + <!-- 20 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g104" + transform="matrix(0.1,0,0,-0.1,338.01568,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use100" + xlink:href="#DejaVuSans-50" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use102" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_7"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_7"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g110"> + <use + height="100%" + width="100%" + id="use108" + y="307.58401" + xlink:href="#m403b46365c" + x="398.48727" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_7"> + <!-- 30 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g117" + transform="matrix(0.1,0,0,-0.1,392.12477,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use113" + xlink:href="#DejaVuSans-51" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use115" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="matplotlib.axis_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_8"> + <defs + id="defs123"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m1532b5efc7" + d="M 0,0 H -3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g127"> + <use + height="100%" + width="100%" + id="use125" + y="307.96756" + xlink:href="#m1532b5efc7" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_8"> + <!-- 0 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g132" + transform="matrix(0.1,0,0,-0.1,44.2375,311.76679)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use130" + xlink:href="#DejaVuSans-48" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_9"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g138"> + <use + height="100%" + width="100%" + id="use136" + y="249.62788" + xlink:href="#m1532b5efc7" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_9"> + <!-- 5 --> + <defs + id="defs142"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-53" + d="m 10.796875,72.90625 h 38.71875 v -8.3125 h -29.6875 V 46.734375 q 2.140625,0.734375 4.28125,1.09375 2.15625,0.359375 4.3125,0.359375 Q 40.625,48.1875 47.75,41.5 54.890625,34.8125 54.890625,23.390625 54.890625,11.625 47.5625,5.09375 40.234375,-1.421875 26.90625,-1.421875 q -4.59375,0 -9.359375,0.78125 -4.75,0.78125 -9.828125,2.34375 V 11.625 q 4.390625,-2.390625 9.078125,-3.5625 4.6875,-1.171875 9.90625,-1.171875 8.453125,0 13.375,4.4375 4.9375,4.4375 4.9375,12.0625 0,7.609375 -4.9375,12.046875 -4.921875,4.453125 -13.375,4.453125 -3.953125,0 -7.890625,-0.875 -3.921875,-0.875 -8.015625,-2.734375 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g146" + transform="matrix(0.1,0,0,-0.1,44.2375,253.4271)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use144" + xlink:href="#DejaVuSans-53" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_10"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g152"> + <use + height="100%" + width="100%" + id="use150" + y="191.28819" + xlink:href="#m1532b5efc7" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_10"> + <!-- 10 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g159" + transform="matrix(0.1,0,0,-0.1,37.875,195.08741)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use155" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use157" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_11"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g165"> + <use + height="100%" + width="100%" + id="use163" + y="132.9485" + xlink:href="#m1532b5efc7" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_11"> + <!-- 15 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g172" + transform="matrix(0.1,0,0,-0.1,37.875,136.74772)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use168" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use170" + xlink:href="#DejaVuSans-53" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_12"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g178"> + <use + height="100%" + width="100%" + id="use176" + y="74.60881" + xlink:href="#m1532b5efc7" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_12"> + <!-- 20 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g185" + transform="matrix(0.1,0,0,-0.1,37.875,78.408032)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use181" + xlink:href="#DejaVuSans-50" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use183" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_13"> + <path + inkscape:connector-curvature="0" + id="path190" + style="fill:none;stroke:#1f77b4;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round" + d="m 73.832727,65.482519 0.180364,-0.193201 0.360727,-1.511045 1.442909,-9.004313 0.360728,-0.927106 0.360727,-0.278854 0.180363,0.09475 0.360728,0.665613 0.360727,1.335506 0.541091,3.259453 0.901818,6.218488 0.360727,0.8501 0.180364,-0.190794 0.360727,-1.506197 1.442909,-8.984456 0.360728,-0.922024 0.360727,-0.273724 0.180364,0.09734 0.360727,0.670816 0.360727,1.340759 0.541091,3.267425 0.901818,6.232029 0.360727,0.855606 0.180364,-0.188021 0.360727,-1.500612 1.442909,-8.961584 0.360728,-0.91617 0.360727,-0.267814 0.180364,0.100313 0.360727,0.676809 0.360727,1.34681 0.541091,3.276609 0.901818,6.247626 0.360728,0.861949 0.180363,-0.184827 0.360727,-1.49418 1.44291,-8.935237 0.360727,-0.909426 0.360727,-0.261007 0.180364,0.103741 0.360727,0.683714 0.360727,1.353779 0.541091,3.287188 0.901818,6.265592 0.360728,0.869255 0.180363,-0.181148 0.360728,-1.486769 1.442909,-8.904888 0.360727,-0.901658 0.360727,-0.253165 0.180364,0.107689 0.360727,0.691667 0.360727,1.361808 0.541091,3.299373 0.901823,6.286289 0.36072,0.877671 0.18037,-0.17691 0.36072,-1.478234 1.44291,-8.869927 0.36073,-0.892711 0.36073,-0.244133 0.18036,0.112238 0.36073,0.700829 0.36073,1.371056 0.54109,3.313409 0.90182,6.310129 0.36072,0.887366 0.18036,-0.172029 0.36073,-1.468401 1.44291,-8.829657 0.36073,-0.882403 0.36073,-0.233728 0.18036,0.117477 0.36073,0.711382 0.36073,1.381709 0.54109,3.329578 0.90181,6.337591 0.36073,0.898532 0.18036,-0.166405 0.36073,-1.457075 1.44291,-8.783269 0.36073,-0.87053 0.36073,-0.221742 0.18036,0.123512 0.36073,0.723538 0.36072,1.39398 0.5411,3.348204 0.90181,6.369224 0.36073,0.911396 0.18036,-0.159928 0.36073,-1.444028 1.44291,-8.729834 0.36073,-0.856854 0.36073,-0.207936 0.18036,0.130464 0.36073,0.737541 0.36072,1.408115 0.54109,3.369659 0.90182,6.405662 0.36073,0.926214 0.18036,-0.152466 0.36073,-1.428999 1.44291,-8.668282 0.36073,-0.8411 0.18036,-0.174723 0.18036,-0.01731 0.18037,0.138473 0.36073,0.75367 0.36072,1.424398 0.54109,3.394372 0.90182,6.447637 0.36073,0.943283 0.18036,-0.143872 0.36073,-1.411687 1.44291,-8.597379 0.36072,-0.822953 0.18037,-0.165585 0.18036,-0.0081 0.18037,0.147697 0.36072,0.77225 0.36073,1.443155 0.54109,3.42284 0.90182,6.495987 0.36073,0.962944 0.18036,-0.133971 0.36073,-1.391745 1.44291,-8.515706 0.36072,-0.802049 0.18037,-0.155059 0.18036,0.0024 0.18036,0.158323 0.36073,0.793653 0.36073,1.46476 0.54109,3.455633 0.90182,6.551683 0.36073,0.985592 0.18036,-0.122566 0.36073,-1.368775 1.44291,-8.421626 0.36072,-0.777968 0.18037,-0.142934 0.18036,0.01463 0.18036,0.170563 0.36073,0.818307 0.36073,1.489648 0.54109,3.493407 0.90182,6.615839 0.36072,1.011681 0.18037,-0.10943 0.18036,-0.504722 0.36073,-1.917737 1.08218,-6.600683 0.36073,-1.091588 0.36073,-0.420035 0.18036,0.02866 0.36073,0.52696 0.36072,1.176926 0.54109,3.05203 1.26255,8.738909 0.18036,0.323254 0.18037,-0.0943 0.18036,-0.489519 0.36073,-1.887113 1.08218,-6.507059 0.36073,-1.059787 0.36072,-0.387933 0.18037,0.04483 0.36073,0.559519 0.36072,1.209794 0.5411,3.101916 1.26254,8.858092 0.18036,0.340603 0.18037,-0.07687 0.18036,-0.472004 0.36073,-1.851838 1.08218,-6.399212 0.36073,-1.023155 0.36072,-0.350954 0.18037,0.06345 0.36072,0.597026 0.36073,1.247654 0.54109,3.159381 1.26255,8.995379 0.18036,0.360588 0.18037,-0.05679 0.18036,-0.45183 0.36073,-1.811202 1.08218,-6.274984 0.36073,-0.980958 0.36072,-0.308358 0.18037,0.0849 0.36072,0.640228 0.36073,1.291267 0.54109,3.225575 1.26255,9.153522 0.18036,0.383609 0.18036,-0.03366 0.18037,-0.428592 0.36073,-1.764394 0.90181,-5.404361 0.36073,-1.280518 0.36073,-0.590242 0.18036,-0.04841 0.18037,0.109606 0.36072,0.689994 0.36073,1.341505 0.54109,3.301825 1.26255,9.335689 0.18036,0.41012 0.18036,-0.007 0.18037,-0.40182 0.36072,-1.71048 0.90182,-5.267315 0.36073,-1.224791 0.36073,-0.533987 0.18036,-0.02008 0.18037,0.138066 0.36072,0.747321 0.36073,1.399373 0.54109,3.389663 1.26255,9.54553 0.18036,0.44067 0.18036,0.0237 0.18037,-0.37098 0.36072,-1.64837 0.90182,-5.10946 0.36073,-1.1606 0.36073,-0.46918 0.18036,0.0126 0.18036,0.17085 0.36073,0.81336 0.36073,1.46603 0.54109,3.49083 1.26254,9.78725 0.18037,0.47586 0.18036,0.059 0.18037,-0.33547 0.36072,-1.57682 0.90182,-4.92763 0.36073,-1.08665 0.36073,-0.39454 0.18036,0.0501 0.36073,0.57408 0.36073,1.21088 0.54108,3.09103 0.72146,6.17672 0.54109,4.35049 0.36073,1.4271 0.18036,0.0998 0.18036,-0.29455 0.36073,-1.49441 0.90182,-4.71816 0.36073,-1.00148 0.36072,-0.30856 0.18037,0.0934 0.36073,0.66129 0.36072,1.29891 0.54109,3.22465 0.72146,6.35784 0.54109,4.4886 0.36073,1.52026 0.18036,0.14666 0.18036,-0.24742 0.36073,-1.39948 0.90182,-4.47688 0.36073,-0.90336 0.18036,-0.18943 0.18036,-0.0201 0.18037,0.14331 0.36072,0.76175 0.36073,1.40032 0.54109,3.37857 0.72146,6.56648 0.54109,4.64767 0.36073,1.62757 0.18036,0.2007 0.18036,-0.19313 0.36073,-1.29013 0.90182,-4.19894 0.36073,-0.79034 0.18036,-0.13253 0.18036,0.0371 0.36073,0.56071 0.36073,1.19424 0.54109,3.03551 0.54109,4.56413 0.90182,8.43437 0.36072,1.75118 0.18037,0.26294 0.18036,-0.13059 0.36073,-1.16416 0.90182,-3.87879 0.36073,-0.66015 0.18036,-0.067 0.18036,0.10298 0.36073,0.69337 0.36073,1.32817 0.54109,3.23878 0.54109,4.77029 0.90182,8.78452 0.36072,1.89357 0.18037,0.33465 0.18036,-0.0586 0.36073,-1.01906 0.90182,-3.51 0.36072,-0.51018 0.18037,0.009 0.18036,0.17885 0.36073,0.8462 0.36073,1.48243 0.54109,3.47293 0.72145,6.93722 0.72146,7.25842 0.36072,2.05759 0.18037,0.41724 0.18036,0.0244 0.18036,-0.30594 0.54109,-1.95309 0.5411,-1.67807 0.36072,-0.33744 0.18037,0.0955 0.36073,0.69722 0.36072,1.34118 0.54109,3.23105 0.54109,4.78825 1.26255,12.88685 0.36073,1.43944 0.18036,0.12001 0.18036,-0.2099 0.36073,-1.0364 0.54109,-1.68179 0.36073,-0.48496 0.18036,0.0194 0.18037,0.19574 0.36072,0.89905 0.36073,1.54491 0.54109,3.54029 0.54109,5.10187 1.26255,13.63615 0.36072,1.65811 0.18037,0.23012 0.18036,-0.0993 0.36073,-0.81357 0.54109,-1.34359 0.36073,-0.25682 0.18036,0.13427 0.36073,0.79405 0.36073,1.4586 0.54109,3.39746 0.54109,4.93808 1.62327,17.65481 0.36073,1.10516 0.18036,0.0282 0.36073,-0.55689 0.54109,-0.95401 0.18036,-0.0822 0.18037,0.0882 0.36072,0.71071 0.36073,1.39934 0.54109,3.31705 0.54109,4.82349 0.72146,8.76793 0.90182,10.8211 0.18036,1.30652 0.36073,-3.00364 0.72145,-9.12398 0.90182,-10.55172 0.54109,-4.30681 0.54109,-2.8328 0.36073,-1.06059 0.36073,-0.35482 0.18036,0.0822 0.36073,0.56962 0.54109,0.94128 0.18036,-0.0282 0.18036,-0.35696 0.36073,-1.90999 0.54109,-5.55557 1.26255,-14.40685 0.54109,-3.89649 0.54109,-2.42825 0.36073,-0.79405 0.18036,-0.13427 0.18036,0.0435 0.36073,0.57463 0.72146,1.79586 0.18036,0.0993 0.18036,-0.23012 0.18037,-0.62197 0.36072,-2.46416 0.72146,-8.06016 0.72146,-7.72398 0.54108,-4.05334 0.5411,-2.55772 0.36072,-0.89905 0.18037,-0.19574 0.18036,-0.0194 0.18036,0.15783 0.36073,0.8017 0.72146,2.24362 0.18036,0.2099 0.18036,-0.12001 0.18037,-0.51237 0.36072,-2.24653 0.54109,-5.56523 0.90182,-9.3686 0.54109,-3.74264 0.54109,-2.2514 0.36073,-0.69722 0.18037,-0.0955 0.18036,0.0803 0.36073,0.68302 1.08218,3.51118 0.18036,-0.0244 0.18037,-0.41724 0.36072,-2.05759 0.54109,-5.28515 0.90182,-8.91049 0.54109,-3.47293 0.54109,-1.98546 0.36073,-0.52202 0.18036,-0.009 0.18037,0.16692 0.36073,0.85495 1.08218,4.01737 0.18036,0.0586 0.18036,-0.33465 0.36073,-1.89357 0.54109,-5.042 0.90182,-8.51281 0.54109,-3.23878 0.36073,-1.32817 0.36073,-0.69337 0.18036,-0.10298 0.18036,0.067 0.36073,0.66015 0.36073,1.31851 0.90182,3.72444 0.18036,0.13059 0.18036,-0.26294 0.36073,-1.75118 0.54109,-4.83092 0.90182,-8.16758 0.54109,-3.03551 0.36073,-1.19424 0.36073,-0.56071 0.18036,-0.0371 0.18036,0.13253 0.36073,0.79034 0.54109,2.34948 0.54109,2.61506 0.36073,0.71766 0.18036,-0.2007 0.36073,-1.62757 0.54109,-4.64767 0.90182,-7.86787 0.54109,-2.85905 0.36073,-1.07797 0.36073,-0.44554 0.18036,0.0201 0.18036,0.18943 0.36073,0.90336 0.54109,2.51703 0.54109,2.78026 0.36073,0.82649 0.18036,-0.14666 0.18037,-0.56308 0.36072,-2.24605 1.44291,-11.88199 0.54109,-2.19914 0.36073,-0.66129 0.18037,-0.0934 0.18036,0.0697 0.36073,0.652 0.36072,1.34393 1.26255,5.75152 0.18036,-0.0998 0.18036,-0.51639 0.36073,-2.15332 1.44291,-11.51974 0.54109,-2.06677 0.36073,-0.57408 0.18036,-0.0501 0.18037,0.11281 0.36073,0.73757 0.36072,1.42871 1.26255,6.04202 0.18036,-0.059 0.18036,-0.47586 0.36073,-2.07283 1.44291,-11.20525 0.54109,-1.95187 0.36073,-0.49837 0.18036,-0.0126 0.18037,0.15021 0.36072,0.81187 0.36073,1.50231 1.26255,6.2942 0.18036,-0.0237 0.18036,-0.44067 0.36073,-2.00296 1.44291,-10.932233 0.36073,-1.399373 0.36072,-0.747321 0.18037,-0.138066 0.18036,0.02008 0.18036,0.182692 0.36073,0.876361 0.36073,1.566201 1.26255,6.513139 0.18036,0.007 0.18036,-0.41012 0.36073,-1.94229 1.44291,-10.695224 0.36073,-1.341505 0.36072,-0.689994 0.18037,-0.109606 0.18036,0.04841 0.36073,0.590242 0.36072,1.280518 0.5411,3.076133 0.72145,4.092622 0.18037,0.428592 0.18036,0.03366 0.18036,-0.383609 0.36073,-1.889628 1.44291,-10.489469 0.36072,-1.291267 0.36073,-0.640228 0.18037,-0.0849 0.18036,0.073 0.36073,0.639078 0.36072,1.328897 0.54109,3.147849 0.72146,4.186682 0.18036,0.45183 0.18037,0.05679 0.18036,-0.360588 0.36073,-1.84391 1.44291,-10.31085 0.36072,-1.247654 0.36073,-0.597026 0.18036,-0.06345 0.18037,0.09434 0.36073,0.681475 0.36072,1.370894 0.54109,3.210109 0.72146,4.268337 0.18036,0.472004 0.18037,0.07687 0.18036,-0.340603 0.36073,-1.804223 1.44291,-10.155785 0.36072,-1.209794 0.36073,-0.559519 0.18036,-0.04483 0.18037,0.112878 0.36072,0.718279 0.36073,1.407354 0.54109,3.264159 0.72146,4.339222 0.18036,0.489519 0.18037,0.0943 0.18036,-0.323254 0.36073,-1.769768 1.4429,-10.021171 0.36073,-1.176926 0.36073,-0.52696 0.18036,-0.02866 0.18037,0.128967 0.36072,0.75023 0.36073,1.439006 0.54109,3.311079 0.72146,4.400761 0.18036,0.504722 0.18037,0.10943 0.18036,-0.308192 0.36073,-1.739857 1.4429,-9.904309 0.36073,-1.148392 0.36073,-0.498695 0.18036,-0.01463 0.18037,0.142934 0.36072,0.777968 0.36073,1.466483 0.54109,3.351813 0.72146,4.454184 0.18036,0.517921 0.18036,0.122566 0.18037,-0.295117 0.36073,-1.713891 1.4429,-9.802858 0.36073,-1.123622 0.36073,-0.474156 0.18036,-0.0024 0.18036,0.155059 0.36073,0.802049 0.36073,1.490336 0.54109,3.387174 0.72145,4.500562 0.18037,0.529379 0.18036,0.133971 0.18037,-0.283766 0.36072,-1.691349 1.44291,-9.714786 0.36073,-1.102118 0.36073,-0.452854 0.18036,0.0081 0.18036,0.165585 0.36073,0.822953 0.36073,1.511044 0.54109,3.417873 0.72145,4.540822 0.18037,0.539327 0.18036,0.143872 0.18036,-0.273912 0.36073,-1.671781 1.44291,-9.638329 0.36073,-1.083449 0.36073,-0.434362 0.18036,0.01731 0.18036,0.174723 0.36073,0.8411 0.36073,1.529021 0.54109,3.444523 0.72145,4.575774 0.18037,0.547963 0.18036,0.152466 0.18036,-0.265357 0.36073,-1.654792 1.44291,-9.571955 0.36073,-1.067244 0.36073,-0.418307 0.18036,0.02528 0.18036,0.182656 0.36073,0.856854 0.36073,1.544628 0.54109,3.467658 0.72145,4.606117 0.18037,0.555459 0.18036,0.159928 0.18036,-0.257932 0.36073,-1.640043 1.44291,-9.514334 0.36073,-1.053175 0.36073,-0.40437 0.18036,0.0322 0.18036,0.189543 0.36073,0.87053 0.36073,1.558177 0.54109,3.487742 0.72145,4.632458 0.18036,0.561967 0.18037,0.166405 0.18036,-0.251484 0.36073,-1.627241 1.44291,-9.464311 0.36073,-1.040961 0.36072,-0.392272 0.18037,0.03821 0.36073,0.552833 0.36072,1.223138 0.54109,3.091653 0.90182,5.940742 0.18036,0.567617 0.18037,0.172029 0.18036,-0.245888 0.36073,-1.616126 1.44291,-9.420886 0.36072,-1.030358 0.36073,-0.381769 0.18037,0.04342 0.36072,0.563188 0.36073,1.233398 0.54109,3.106861 0.90182,5.965615 0.18036,0.572522 0.18037,0.17691 0.18036,-0.241029 0.36073,-1.606477 1.44291,-9.383188 0.36072,-1.021153 0.36073,-0.37265 0.18036,0.04795 0.36073,0.572179 0.36073,1.242303 0.54109,3.120063 0.90182,5.987209 0.18036,0.576779 0.18037,0.181148 0.18036,-0.236811 0.36073,-1.598101 1.44291,-9.35046 0.36072,-1.013163 0.36073,-0.364734 0.18036,0.05188 0.36073,0.579983 0.36073,1.250035 0.54109,3.131524 0.90182,6.005954 0.18036,0.580476 0.18036,0.184827 0.18037,-0.23315 0.36073,-1.590829 1.4429,-9.322049 0.36073,-1.006226 0.36073,-0.357862 0.18036,0.05529 0.36073,0.586759 0.36073,1.256746 0.54109,3.141474 0.90182,6.022228 0.18036,0.583684 0.18036,0.188021 0.18037,-0.229971 0.36072,-1.584516 1.44291,-9.297384 0.36073,-1.000204 0.36073,-0.351897 0.18036,0.05825 0.36073,0.59264 0.36073,1.262574 0.54109,3.150111 0.90182,6.036355 0.18036,0.58647 0.18036,0.190794 0.18037,-0.227211 0.36072,-1.579036 1.44291,-9.275973 0.36073,-0.994976 0.36073,-0.346718 0.18036,0.06082 0.36073,0.597746 0.36073,1.267631 0.54109,3.15761 0.90182,6.048619 0.18036,0.588889 0.18036,0.193201 v 0" + clip-path="url(#p6309f1df46)" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_3"> + <path + inkscape:connector-curvature="0" + id="path193" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,307.584 V 41.472" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_4"> + <path + inkscape:connector-curvature="0" + id="path196" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 414.72,307.584 V 41.472" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_5"> + <path + inkscape:connector-curvature="0" + id="path199" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,307.584 H 414.72" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_6"> + <path + inkscape:connector-curvature="0" + id="path202" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,41.472 H 414.72" /> + </g> + </g> + <defs + id="defs210"> + <clipPath + id="p6309f1df46" + style="stroke-linecap:butt;stroke-linejoin:round"> + <rect + height="266.112" + width="357.12" + x="57.599998" + y="41.472" + id="rect207" + style="stroke-linecap:butt;stroke-linejoin:round" /> + </clipPath> + </defs> +</svg> diff --git a/figs/e_a.svg b/figs/e_a.svg new file mode 100644 index 0000000000000000000000000000000000000000..cfdc8d3f61d20f404028ded5350e5a84153fd2b8 --- /dev/null +++ b/figs/e_a.svg @@ -0,0 +1,1130 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with matplotlib (https://matplotlib.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + height="280.3371pt" + version="1.1" + viewBox="0 0 374.92213 280.33709" + width="374.92212pt" + id="svg319" + sodipodi:docname="e_a.svg" + inkscape:version="0.92.2 2405546, 2018-03-11"> + <metadata + id="metadata323"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1030" + id="namedview321" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:zoom="1.2797896" + inkscape:cx="138.6725" + inkscape:cy="172.61956" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="svg319" /> + <defs + id="defs4" + style="stroke-linecap:butt;stroke-linejoin:round"> + <style + type="text/css" + id="style2"> +*{stroke-linecap:butt;stroke-linejoin:round;} + </style> + </defs> + <path + inkscape:connector-curvature="0" + id="path9" + style="fill:#ffffff;stroke-width:0.99674481;stroke-linecap:butt;stroke-linejoin:round" + d="M 18.565929,265.64445 H 374.52343 V 0.39869791 H 18.565929 Z" /> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_1" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_1"> + <defs + id="defs13"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m2d76e467a3" + d="M 0,0 V 3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g17"> + <use + height="100%" + width="100%" + id="use15" + y="307.58401" + xlink:href="#m2d76e467a3" + x="73.832726" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_1"> + <!-- −1.00 --> + <defs + id="defs24"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-8722" + d="M 10.59375,35.5 H 73.1875 V 27.203125 H 10.59375 Z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-49" + d="m 12.40625,8.296875 h 16.109375 v 55.625 L 10.984375,60.40625 v 8.984375 l 17.4375,3.515625 H 38.28125 V 8.296875 H 54.390625 V 0 H 12.40625 Z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-46" + d="M 10.6875,12.40625 H 21 V 0 H 10.6875 Z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-48" + d="m 31.78125,66.40625 q -7.609375,0 -11.453125,-7.5 Q 16.5,51.421875 16.5,36.375 q 0,-14.984375 3.828125,-22.484375 3.84375,-7.5 11.453125,-7.5 7.671875,0 11.5,7.5 3.84375,7.5 3.84375,22.484375 0,15.046875 -3.84375,22.53125 -3.828125,7.5 -11.5,7.5 z m 0,7.8125 q 12.265625,0 18.734375,-9.703125 6.46875,-9.6875 6.46875,-28.140625 0,-18.40625 -6.46875,-28.109375 -6.46875,-9.6875 -18.734375,-9.6875 -12.25,0 -18.71875,9.6875 Q 6.59375,17.96875 6.59375,36.375 q 0,18.453125 6.46875,28.140625 6.46875,9.703125 18.71875,9.703125 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g36" + transform="matrix(0.1,0,0,-0.1,58.510071,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use26" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use28" + xlink:href="#DejaVuSans-49" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use30" + xlink:href="#DejaVuSans-46" + x="147.41211" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use32" + xlink:href="#DejaVuSans-48" + x="179.19922" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use34" + xlink:href="#DejaVuSans-48" + x="242.82227" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_2" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g42"> + <use + height="100%" + width="100%" + id="use40" + y="307.58401" + xlink:href="#m2d76e467a3" + x="114.41454" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_2"> + <!-- −0.75 --> + <defs + id="defs47"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-55" + d="m 8.203125,72.90625 h 46.875 V 68.703125 L 28.609375,0 H 18.3125 L 43.21875,64.59375 H 8.203125 Z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-53" + d="m 10.796875,72.90625 h 38.71875 v -8.3125 h -29.6875 V 46.734375 q 2.140625,0.734375 4.28125,1.09375 2.15625,0.359375 4.3125,0.359375 Q 40.625,48.1875 47.75,41.5 54.890625,34.8125 54.890625,23.390625 54.890625,11.625 47.5625,5.09375 40.234375,-1.421875 26.90625,-1.421875 q -4.59375,0 -9.359375,0.78125 -4.75,0.78125 -9.828125,2.34375 V 11.625 q 4.390625,-2.390625 9.078125,-3.5625 4.6875,-1.171875 9.90625,-1.171875 8.453125,0 13.375,4.4375 4.9375,4.4375 4.9375,12.0625 0,7.609375 -4.9375,12.046875 -4.921875,4.453125 -13.375,4.453125 -3.953125,0 -7.890625,-0.875 -3.921875,-0.875 -8.015625,-2.734375 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g59" + transform="matrix(0.1,0,0,-0.1,99.091889,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use49" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use51" + xlink:href="#DejaVuSans-48" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use53" + xlink:href="#DejaVuSans-46" + x="147.41211" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use55" + xlink:href="#DejaVuSans-55" + x="179.19922" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use57" + xlink:href="#DejaVuSans-53" + x="242.82227" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_3" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g65"> + <use + height="100%" + width="100%" + id="use63" + y="307.58401" + xlink:href="#m2d76e467a3" + x="154.99637" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_3"> + <!-- −0.50 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g78" + transform="matrix(0.1,0,0,-0.1,139.67371,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use68" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use70" + xlink:href="#DejaVuSans-48" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use72" + xlink:href="#DejaVuSans-46" + x="147.41211" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use74" + xlink:href="#DejaVuSans-53" + x="179.19922" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use76" + xlink:href="#DejaVuSans-48" + x="242.82227" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_4" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g84"> + <use + height="100%" + width="100%" + id="use82" + y="307.58401" + xlink:href="#m2d76e467a3" + x="195.57819" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_4"> + <!-- −0.25 --> + <defs + id="defs88"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-50" + d="M 19.1875,8.296875 H 53.609375 V 0 H 7.328125 v 8.296875 q 5.609375,5.8125 15.296875,15.59375 9.703125,9.796875 12.1875,12.640625 4.734375,5.3125 6.609375,9 1.890625,3.6875 1.890625,7.25 0,5.8125 -4.078125,9.46875 -4.078125,3.671875 -10.625,3.671875 -4.640625,0 -9.796875,-1.609375 -5.140625,-1.609375 -11,-4.890625 v 9.96875 Q 13.765625,71.78125 18.9375,73 q 5.1875,1.21875 9.484375,1.21875 11.328125,0 18.0625,-5.671875 6.734375,-5.65625 6.734375,-15.125 0,-4.5 -1.6875,-8.53125 Q 49.859375,40.875 45.40625,35.40625 44.1875,33.984375 37.640625,27.21875 31.109375,20.453125 19.1875,8.296875 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g100" + transform="matrix(0.1,0,0,-0.1,180.25553,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use90" + xlink:href="#DejaVuSans-8722" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use92" + xlink:href="#DejaVuSans-48" + x="83.789062" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use94" + xlink:href="#DejaVuSans-46" + x="147.41211" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use96" + xlink:href="#DejaVuSans-50" + x="179.19922" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use98" + xlink:href="#DejaVuSans-53" + x="242.82227" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_5" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g106"> + <use + height="100%" + width="100%" + id="use104" + y="307.58401" + xlink:href="#m2d76e467a3" + x="236.16" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_5"> + <!-- 0.00 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g117" + transform="matrix(0.1,0,0,-0.1,225.02719,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use109" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use111" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use113" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use115" + xlink:href="#DejaVuSans-48" + x="159.0332" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_6" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_6"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g123"> + <use + height="100%" + width="100%" + id="use121" + y="307.58401" + xlink:href="#m2d76e467a3" + x="276.74182" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_6"> + <!-- 0.25 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g134" + transform="matrix(0.1,0,0,-0.1,265.60901,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use126" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use128" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use130" + xlink:href="#DejaVuSans-50" + x="95.410156" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use132" + xlink:href="#DejaVuSans-53" + x="159.0332" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_7" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_7"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g140"> + <use + height="100%" + width="100%" + id="use138" + y="307.58401" + xlink:href="#m2d76e467a3" + x="317.32364" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_7"> + <!-- 0.50 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g151" + transform="matrix(0.1,0,0,-0.1,306.19082,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use143" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use145" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use147" + xlink:href="#DejaVuSans-53" + x="95.410156" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use149" + xlink:href="#DejaVuSans-48" + x="159.0332" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_8" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_8"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g157"> + <use + height="100%" + width="100%" + id="use155" + y="307.58401" + xlink:href="#m2d76e467a3" + x="357.90546" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_8"> + <!-- 0.75 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g168" + transform="matrix(0.1,0,0,-0.1,346.77264,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use160" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use162" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use164" + xlink:href="#DejaVuSans-55" + x="95.410156" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use166" + xlink:href="#DejaVuSans-53" + x="159.0332" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_9" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_9"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g174"> + <use + height="100%" + width="100%" + id="use172" + y="307.58401" + xlink:href="#m2d76e467a3" + x="398.48727" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_9"> + <!-- 1.00 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g185" + transform="matrix(0.1,0,0,-0.1,387.35446,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use177" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use179" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use181" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use183" + xlink:href="#DejaVuSans-48" + x="159.0332" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_1" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_10"> + <defs + id="defs191"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m4964ab505a" + d="M 0,0 H -3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g195"> + <use + height="100%" + width="100%" + id="use193" + y="290.6496" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_10"> + <!-- 0 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g200" + transform="matrix(0.1,0,0,-0.1,44.2375,294.44882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use198" + xlink:href="#DejaVuSans-48" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_2" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_11"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g206"> + <use + height="100%" + width="100%" + id="use204" + y="256.0896" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_11"> + <!-- 2 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g211" + transform="matrix(0.1,0,0,-0.1,44.2375,259.88882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use209" + xlink:href="#DejaVuSans-50" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_3" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_12"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g217"> + <use + height="100%" + width="100%" + id="use215" + y="221.5296" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_12"> + <!-- 4 --> + <defs + id="defs221"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-52" + d="M 37.796875,64.3125 12.890625,25.390625 h 24.90625 z m -2.59375,8.59375 h 12.40625 V 25.390625 h 10.40625 V 17.1875 H 47.609375 V 0 h -9.8125 V 17.1875 H 4.890625 v 9.515625 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g225" + transform="matrix(0.1,0,0,-0.1,44.2375,225.32882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use223" + xlink:href="#DejaVuSans-52" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_4" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_13"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g231"> + <use + height="100%" + width="100%" + id="use229" + y="186.9696" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_13"> + <!-- 6 --> + <defs + id="defs235"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-54" + d="m 33.015625,40.375 q -6.640625,0 -10.53125,-4.546875 -3.875,-4.53125 -3.875,-12.4375 0,-7.859375 3.875,-12.4375 3.890625,-4.5625 10.53125,-4.5625 6.640625,0 10.515625,4.5625 3.875,4.578125 3.875,12.4375 0,7.90625 -3.875,12.4375 Q 39.65625,40.375 33.015625,40.375 Z M 52.59375,71.296875 V 62.3125 q -3.71875,1.75 -7.5,2.671875 -3.78125,0.9375 -7.5,0.9375 -9.765625,0 -14.921875,-6.59375 -5.140625,-6.59375 -5.875,-19.921875 2.875,4.25 7.21875,6.515625 4.359375,2.265625 9.578125,2.265625 10.984375,0 17.359375,-6.671875 6.375,-6.65625 6.375,-18.125 0,-11.234375 -6.640625,-18.03125 -6.640625,-6.78125 -17.671875,-6.78125 -12.65625,0 -19.34375,9.6875 -6.6875,9.703125 -6.6875,28.109375 0,17.28125 8.203125,27.5625 8.203125,10.28125 22.015625,10.28125 3.71875,0 7.5,-0.734375 3.78125,-0.734375 7.890625,-2.1875 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g239" + transform="matrix(0.1,0,0,-0.1,44.2375,190.76882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use237" + xlink:href="#DejaVuSans-54" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_5" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_14"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g245"> + <use + height="100%" + width="100%" + id="use243" + y="152.40961" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_14"> + <!-- 8 --> + <defs + id="defs249"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-56" + d="m 31.78125,34.625 q -7.03125,0 -11.0625,-3.765625 -4.015625,-3.765625 -4.015625,-10.34375 0,-6.59375 4.015625,-10.359375 4.03125,-3.765625 11.0625,-3.765625 7.03125,0 11.078125,3.78125 4.0625,3.796875 4.0625,10.34375 0,6.578125 -4.03125,10.34375 Q 38.875,34.625 31.78125,34.625 Z m -9.859375,4.1875 Q 15.578125,40.375 12.03125,44.71875 8.5,49.078125 8.5,55.328125 q 0,8.734375 6.21875,13.8125 6.234375,5.078125 17.0625,5.078125 10.890625,0 17.09375,-5.078125 6.203125,-5.078125 6.203125,-13.8125 0,-6.25 -3.546875,-10.609375 Q 48,40.375 41.703125,38.8125 q 7.125,-1.65625 11.09375,-6.5 3.984375,-4.828125 3.984375,-11.796875 0,-10.609375 -6.46875,-16.28125 -6.46875,-5.65625 -18.53125,-5.65625 -12.046875,0 -18.53125,5.65625 -6.46875,5.671875 -6.46875,16.28125 0,6.96875 4,11.796875 4.015625,4.84375 11.140625,6.5 z M 18.3125,54.390625 q 0,-5.65625 3.53125,-8.828125 3.546875,-3.171875 9.9375,-3.171875 6.359375,0 9.9375,3.171875 3.59375,3.171875 3.59375,8.828125 0,5.671875 -3.59375,8.84375 -3.578125,3.171875 -9.9375,3.171875 -6.390625,0 -9.9375,-3.171875 Q 18.3125,60.0625 18.3125,54.390625 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g253" + transform="matrix(0.1,0,0,-0.1,44.2375,156.20882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use251" + xlink:href="#DejaVuSans-56" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_6" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_15"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g259"> + <use + height="100%" + width="100%" + id="use257" + y="117.8496" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_15"> + <!-- 10 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g266" + transform="matrix(0.1,0,0,-0.1,37.875,121.64882)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use262" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use264" + xlink:href="#DejaVuSans-48" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_7" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_16"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g272"> + <use + height="100%" + width="100%" + id="use270" + y="83.289597" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_16"> + <!-- 12 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g279" + transform="matrix(0.1,0,0,-0.1,37.875,87.088819)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use275" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use277" + xlink:href="#DejaVuSans-50" + x="63.623047" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_8" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_17"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g285"> + <use + height="100%" + width="100%" + id="use283" + y="48.729599" + xlink:href="#m4964ab505a" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_17"> + <!-- 14 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g292" + transform="matrix(0.1,0,0,-0.1,37.875,52.528819)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use288" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use290" + xlink:href="#DejaVuSans-52" + x="63.623047" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path297" + style="fill:none;stroke:#ff0000;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round" + d="m 73.832727,53.568 3.246546,9.580032 3.246545,9.386496 3.246546,9.19296 3.246545,8.999424 3.246546,8.805888 3.246545,8.61235 3.246545,8.41882 3.246546,8.22528 3.246549,8.03174 3.24654,7.83821 3.24655,7.64467 3.24654,7.45114 3.24655,7.2576 3.24654,7.06406 3.24655,6.87053 3.24655,6.67699 3.24654,6.48346 3.24654,6.28992 3.24655,6.09638 3.24655,5.90285 3.24654,5.70931 3.24655,5.51578 3.24654,5.32224 3.24655,5.1287 3.24654,4.93517 3.24655,4.74163 3.24654,4.5481 3.24655,4.35456 3.24654,4.16102 3.24655,3.96749 3.24655,3.77395 3.24654,3.58042 3.24655,3.38688 3.24654,3.19334 3.24655,2.99981 3.24654,2.80627 3.24655,2.61274 3.24654,2.4192 3.24655,2.22566 3.24654,2.03213 3.24655,1.83859 3.24655,1.64506 3.24654,1.45152 3.24655,1.25798 3.24654,1.06445 3.24655,0.87091 3.24654,0.67738 3.24655,0.48384 3.24654,0.2903 3.24655,0.0968 3.24654,-0.0968 3.24655,-0.2903 3.24655,-0.48384 3.24654,-0.67738 3.24655,-0.87091 3.24654,-1.06445 3.24655,-1.25798 3.24654,-1.45152 3.24655,-1.64506 3.24654,-1.83859 3.24655,-2.03213 3.24654,-2.22566 3.24655,-2.4192 3.24655,-2.61274 3.24654,-2.80627 3.24655,-2.99981 3.24654,-3.19334 3.24655,-3.38688 3.24654,-3.58042 3.24655,-3.77395 3.24654,-3.96749 3.24655,-4.16102 3.24654,-4.35456 3.24655,-4.5481 3.24655,-4.74163 3.24654,-4.93517 3.24655,-5.1287 3.24654,-5.32224 3.24655,-5.51578 3.24654,-5.70931 3.24655,-5.90285 3.24655,-6.09638 3.24654,-6.28992 3.24655,-6.48346 3.24654,-6.67699 3.24655,-6.87053 3.24654,-7.06406 3.24655,-7.2576 3.24654,-7.45114 3.24655,-7.64467 3.24654,-7.83821 3.24655,-8.03174 3.24654,-8.22528 3.24655,-8.41882 3.24654,-8.61235 3.24655,-8.805888 3.24655,-8.999424 3.24654,-9.19296 3.24655,-9.386496 3.24654,-9.580032" + clip-path="url(#pde749db4c9)" + transform="matrix(0.99674479,0,0,0.99674479,-38.846571,-40.938302)" /> + <path + inkscape:connector-curvature="0" + id="path300" + style="fill:none;stroke:#000000;stroke-width:0.79739583;stroke-linecap:square;stroke-linejoin:miter" + d="M 18.565929,265.64445 V 0.39869791" /> + <path + inkscape:connector-curvature="0" + id="path303" + style="fill:none;stroke:#000000;stroke-width:0.79739583;stroke-linecap:square;stroke-linejoin:miter" + d="M 374.52343,265.64445 V 0.39869791" /> + <path + inkscape:connector-curvature="0" + id="path306" + style="fill:none;stroke:#000000;stroke-width:0.79739583;stroke-linecap:square;stroke-linejoin:miter" + d="M 18.565929,265.64445 H 374.52343" /> + <path + inkscape:connector-curvature="0" + id="path309" + style="fill:none;stroke:#000000;stroke-width:0.79739583;stroke-linecap:square;stroke-linejoin:miter" + d="M 18.565929,0.39869791 H 374.52343" /> + <defs + id="defs317"> + <clipPath + id="pde749db4c9" + style="stroke-linecap:butt;stroke-linejoin:round"> + <rect + height="266.112" + width="357.12" + x="57.599998" + y="41.472" + id="rect314" + style="stroke-linecap:butt;stroke-linejoin:round" /> + </clipPath> + </defs> +</svg> diff --git a/figs/regression_ex.svg b/figs/regression_ex.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8ef05f762f896c944641d39bf44fb70167f730d --- /dev/null +++ b/figs/regression_ex.svg @@ -0,0 +1,913 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with matplotlib (https://matplotlib.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + height="281.25262pt" + version="1.1" + viewBox="0 0 379.76374 281.25262" + width="379.76373pt" + id="svg3524" + sodipodi:docname="regression_ex.svg" + inkscape:version="0.92.2 2405546, 2018-03-11"> + <metadata + id="metadata3528"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1030" + id="namedview3526" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:zoom="1.2797896" + inkscape:cx="311.33355" + inkscape:cy="286.04754" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:current-layer="svg3524" /> + <defs + id="defs3273" + style="stroke-linecap:butt;stroke-linejoin:round"> + <style + type="text/css" + id="style3271"> +*{stroke-linecap:butt;stroke-linejoin:round;} + </style> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="axes_1" + transform="translate(-35.35625,-41.072)"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_2"> + <path + inkscape:connector-curvature="0" + id="path3278" + style="fill:#ffffff;stroke-linecap:butt;stroke-linejoin:round" + d="M 57.6,307.584 H 414.72 V 41.472 H 57.6 Z" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="matplotlib.axis_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_1"> + <defs + id="defs3282"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m2b2445c883" + d="M 0,0 V 3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3286"> + <use + height="100%" + width="100%" + id="use3284" + y="307.58401" + xlink:href="#m2b2445c883" + x="73.832726" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_1"> + <!-- 0.0 --> + <defs + id="defs3291"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-48" + d="m 31.78125,66.40625 q -7.609375,0 -11.453125,-7.5 Q 16.5,51.421875 16.5,36.375 q 0,-14.984375 3.828125,-22.484375 3.84375,-7.5 11.453125,-7.5 7.671875,0 11.5,7.5 3.84375,7.5 3.84375,22.484375 0,15.046875 -3.84375,22.53125 -3.828125,7.5 -11.5,7.5 z m 0,7.8125 q 12.265625,0 18.734375,-9.703125 6.46875,-9.6875 6.46875,-28.140625 0,-18.40625 -6.46875,-28.109375 -6.46875,-9.6875 -18.734375,-9.6875 -12.25,0 -18.71875,9.6875 Q 6.59375,17.96875 6.59375,36.375 q 0,18.453125 6.46875,28.140625 6.46875,9.703125 18.71875,9.703125 z" /> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-46" + d="M 10.6875,12.40625 H 21 V 0 H 10.6875 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3299" + transform="matrix(0.1,0,0,-0.1,65.881165,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3293" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3295" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3297" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3305"> + <use + height="100%" + width="100%" + id="use3303" + y="307.58401" + xlink:href="#m2b2445c883" + x="127.94182" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_2"> + <!-- 0.5 --> + <defs + id="defs3309"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-53" + d="m 10.796875,72.90625 h 38.71875 v -8.3125 h -29.6875 V 46.734375 q 2.140625,0.734375 4.28125,1.09375 2.15625,0.359375 4.3125,0.359375 Q 40.625,48.1875 47.75,41.5 54.890625,34.8125 54.890625,23.390625 54.890625,11.625 47.5625,5.09375 40.234375,-1.421875 26.90625,-1.421875 q -4.59375,0 -9.359375,0.78125 -4.75,0.78125 -9.828125,2.34375 V 11.625 q 4.390625,-2.390625 9.078125,-3.5625 4.6875,-1.171875 9.90625,-1.171875 8.453125,0 13.375,4.4375 4.9375,4.4375 4.9375,12.0625 0,7.609375 -4.9375,12.046875 -4.921875,4.453125 -13.375,4.453125 -3.953125,0 -7.890625,-0.875 -3.921875,-0.875 -8.015625,-2.734375 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3317" + transform="matrix(0.1,0,0,-0.1,119.99026,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3311" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3313" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3315" + xlink:href="#DejaVuSans-53" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3323"> + <use + height="100%" + width="100%" + id="use3321" + y="307.58401" + xlink:href="#m2b2445c883" + x="182.0509" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_3"> + <!-- 1.0 --> + <defs + id="defs3327"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-49" + d="m 12.40625,8.296875 h 16.109375 v 55.625 L 10.984375,60.40625 v 8.984375 l 17.4375,3.515625 H 38.28125 V 8.296875 H 54.390625 V 0 H 12.40625 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3335" + transform="matrix(0.1,0,0,-0.1,174.09935,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3329" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3331" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3333" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3341"> + <use + height="100%" + width="100%" + id="use3339" + y="307.58401" + xlink:href="#m2b2445c883" + x="236.16" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_4"> + <!-- 1.5 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3350" + transform="matrix(0.1,0,0,-0.1,228.20844,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3344" + xlink:href="#DejaVuSans-49" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3346" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3348" + xlink:href="#DejaVuSans-53" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3356"> + <use + height="100%" + width="100%" + id="use3354" + y="307.58401" + xlink:href="#m2b2445c883" + x="290.2691" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_5"> + <!-- 2.0 --> + <defs + id="defs3360"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-50" + d="M 19.1875,8.296875 H 53.609375 V 0 H 7.328125 v 8.296875 q 5.609375,5.8125 15.296875,15.59375 9.703125,9.796875 12.1875,12.640625 4.734375,5.3125 6.609375,9 1.890625,3.6875 1.890625,7.25 0,5.8125 -4.078125,9.46875 -4.078125,3.671875 -10.625,3.671875 -4.640625,0 -9.796875,-1.609375 -5.140625,-1.609375 -11,-4.890625 v 9.96875 Q 13.765625,71.78125 18.9375,73 q 5.1875,1.21875 9.484375,1.21875 11.328125,0 18.0625,-5.671875 6.734375,-5.65625 6.734375,-15.125 0,-4.5 -1.6875,-8.53125 Q 49.859375,40.875 45.40625,35.40625 44.1875,33.984375 37.640625,27.21875 31.109375,20.453125 19.1875,8.296875 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3368" + transform="matrix(0.1,0,0,-0.1,282.31753,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3362" + xlink:href="#DejaVuSans-50" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3364" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3366" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_6"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_6"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3374"> + <use + height="100%" + width="100%" + id="use3372" + y="307.58401" + xlink:href="#m2b2445c883" + x="344.37817" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_6"> + <!-- 2.5 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3383" + transform="matrix(0.1,0,0,-0.1,336.42662,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3377" + xlink:href="#DejaVuSans-50" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3379" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3381" + xlink:href="#DejaVuSans-53" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="xtick_7"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_7"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3389"> + <use + height="100%" + width="100%" + id="use3387" + y="307.58401" + xlink:href="#m2b2445c883" + x="398.48727" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_7"> + <!-- 3.0 --> + <defs + id="defs3393"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-51" + d="M 40.578125,39.3125 Q 47.65625,37.796875 51.625,33 q 3.984375,-4.78125 3.984375,-11.8125 0,-10.78125 -7.421875,-16.703125 -7.421875,-5.90625 -21.09375,-5.90625 -4.578125,0 -9.4375,0.90625 -4.859375,0.90625 -10.03125,2.71875 v 9.515625 q 4.09375,-2.390625 8.96875,-3.609375 4.890625,-1.21875 10.21875,-1.21875 9.265625,0 14.125,3.65625 4.859375,3.65625 4.859375,10.640625 0,6.453125 -4.515625,10.078125 -4.515625,3.640625 -12.5625,3.640625 h -8.5 v 8.109375 h 8.890625 q 7.265625,0 11.125,2.90625 3.859375,2.90625 3.859375,8.375 0,5.609375 -3.984375,8.609375 -3.96875,3.015625 -11.390625,3.015625 -4.0625,0 -8.703125,-0.890625 Q 15.375,64.15625 9.8125,62.3125 v 8.78125 q 5.625,1.5625 10.53125,2.34375 4.90625,0.78125 9.25,0.78125 11.234375,0 17.765625,-5.109375 6.546875,-5.09375 6.546875,-13.78125 0,-6.0625 -3.46875,-10.234375 -3.46875,-4.171875 -9.859375,-5.78125 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3401" + transform="matrix(0.1,0,0,-0.1,390.53571,322.18244)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3395" + xlink:href="#DejaVuSans-51" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3397" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3399" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + </g> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="matplotlib.axis_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_1"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_8"> + <defs + id="defs3407"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" + id="m1ddd834b80" + d="M 0,0 H -3.5" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3411"> + <use + height="100%" + width="100%" + id="use3409" + y="295.48801" + xlink:href="#m1ddd834b80" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_8"> + <!-- 0.0 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3420" + transform="matrix(0.1,0,0,-0.1,34.696875,299.28722)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3414" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3416" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3418" + xlink:href="#DejaVuSans-48" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_2"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_9"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3426"> + <use + height="100%" + width="100%" + id="use3424" + y="241.728" + xlink:href="#m1ddd834b80" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_9"> + <!-- 0.1 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3435" + transform="matrix(0.1,0,0,-0.1,34.696875,245.52722)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3429" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3431" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3433" + xlink:href="#DejaVuSans-49" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_3"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_10"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3441"> + <use + height="100%" + width="100%" + id="use3439" + y="187.968" + xlink:href="#m1ddd834b80" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_10"> + <!-- 0.2 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3450" + transform="matrix(0.1,0,0,-0.1,34.696875,191.76722)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3444" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3446" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3448" + xlink:href="#DejaVuSans-50" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_4"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_11"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3456"> + <use + height="100%" + width="100%" + id="use3454" + y="134.20799" + xlink:href="#m1ddd834b80" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_11"> + <!-- 0.3 --> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3465" + transform="matrix(0.1,0,0,-0.1,34.696875,138.00722)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3459" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3461" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3463" + xlink:href="#DejaVuSans-51" + x="95.410156" /> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="ytick_5"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_12"> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3471"> + <use + height="100%" + width="100%" + id="use3469" + y="80.447998" + xlink:href="#m1ddd834b80" + x="57.599998" + style="stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="text_12"> + <!-- 0.4 --> + <defs + id="defs3475"> + <path + style="stroke-linecap:butt;stroke-linejoin:round" + inkscape:connector-curvature="0" + id="DejaVuSans-52" + d="M 37.796875,64.3125 12.890625,25.390625 h 24.90625 z m -2.59375,8.59375 h 12.40625 V 25.390625 h 10.40625 V 17.1875 H 47.609375 V 0 h -9.8125 V 17.1875 H 4.890625 v 9.515625 z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3483" + transform="matrix(0.1,0,0,-0.1,34.696875,84.247219)"> + <use + height="100%" + width="100%" + y="0" + x="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3477" + xlink:href="#DejaVuSans-48" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3479" + xlink:href="#DejaVuSans-46" + x="63.623047" /> + <use + height="100%" + width="100%" + y="0" + style="stroke-linecap:butt;stroke-linejoin:round" + id="use3481" + xlink:href="#DejaVuSans-52" + x="95.410156" /> + </g> + </g> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_13"> + <defs + id="defs3489"> + <path + inkscape:connector-curvature="0" + style="stroke:#000000;stroke-linecap:butt;stroke-linejoin:round" + id="m51409d331d" + d="M 0,3 C 0.795609,3 1.55874,2.683901 2.12132,2.12132 2.683901,1.55874 3,0.795609 3,0 3,-0.795609 2.683901,-1.55874 2.12132,-2.12132 1.55874,-2.683901 0.795609,-3 0,-3 -0.795609,-3 -1.55874,-2.683901 -2.12132,-2.12132 -2.683901,-1.55874 -3,-0.795609 -3,0 -3,0.795609 -2.683901,1.55874 -2.12132,2.12132 -1.55874,2.683901 -0.795609,3 0,3 Z" /> + </defs> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="g3499" + clip-path="url(#p56c5012fcc)"> + <use + height="100%" + width="100%" + id="use3491" + y="241.728" + xlink:href="#m51409d331d" + x="73.832726" + style="stroke:#000000;stroke-linecap:butt;stroke-linejoin:round" /> + <use + height="100%" + width="100%" + id="use3493" + y="134.20799" + xlink:href="#m51409d331d" + x="182.0509" + style="stroke:#000000;stroke-linecap:butt;stroke-linejoin:round" /> + <use + height="100%" + width="100%" + id="use3495" + y="134.20799" + xlink:href="#m51409d331d" + x="290.2691" + style="stroke:#000000;stroke-linecap:butt;stroke-linejoin:round" /> + <use + height="100%" + width="100%" + id="use3497" + y="80.447998" + xlink:href="#m51409d331d" + x="398.48727" + style="stroke:#000000;stroke-linecap:butt;stroke-linejoin:round" /> + </g> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="line2d_14"> + <path + inkscape:connector-curvature="0" + id="path3502" + style="fill:none;stroke:#0000ff;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round" + d="m 73.832727,295.488 10.821818,-8.064 10.821819,-8.064 10.821816,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82181,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82181,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82181,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82181,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82182,-8.064 10.82181,-8.064 10.82182,-8.064" + clip-path="url(#p56c5012fcc)" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_3"> + <path + inkscape:connector-curvature="0" + id="path3505" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,307.584 V 41.472" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_4"> + <path + inkscape:connector-curvature="0" + id="path3508" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 414.72,307.584 V 41.472" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_5"> + <path + inkscape:connector-curvature="0" + id="path3511" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,307.584 H 414.72" /> + </g> + <g + style="stroke-linecap:butt;stroke-linejoin:round" + id="patch_6"> + <path + inkscape:connector-curvature="0" + id="path3514" + style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter" + d="M 57.6,41.472 H 414.72" /> + </g> + </g> + <defs + id="defs3522"> + <clipPath + id="p56c5012fcc" + style="stroke-linecap:butt;stroke-linejoin:round"> + <rect + height="266.112" + width="357.12" + x="57.599998" + y="41.472" + id="rect3519" + style="stroke-linecap:butt;stroke-linejoin:round" /> + </clipPath> + </defs> +</svg>