adjusted y axis scale in all graphs

This commit is contained in:
Claudio Maggioni (maggicl) 2021-05-22 16:31:35 +02:00
parent 8f031b19b4
commit fb9c2a3831
49 changed files with 7154 additions and 6184 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -2,6 +2,7 @@
"cells": [ "cells": [
{ {
"cell_type": "markdown", "cell_type": "markdown",
"id": "776f8aa3",
"metadata": {}, "metadata": {},
"source": [ "source": [
"# Statuses total time\n", "# Statuses total time\n",
@ -11,7 +12,8 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 3, "execution_count": 1,
"id": "7c77e2f1",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -32,7 +34,8 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 4, "execution_count": 2,
"id": "cc6d3e6a",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -53,16 +56,18 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 5, "execution_count": 3,
"id": "44c77966",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"DIR = \"/Users/maggicl/git/bachelorThesis\"" "DIR = \"/home/claudio/hdd/git/bachelorThesis\""
] ]
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 6, "execution_count": 4,
"id": "8038bdb2",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -131,6 +136,7 @@
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"id": "31fdf065",
"metadata": {}, "metadata": {},
"source": [ "source": [
"## Graph 1: Absolute total time spent per status per \"last termination\" type" "## Graph 1: Absolute total time spent per status per \"last termination\" type"
@ -138,7 +144,8 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 7, "execution_count": 5,
"id": "f44fef5d",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -154,6 +161,7 @@
}, },
{ {
"cell_type": "markdown", "cell_type": "markdown",
"id": "41bcaff4",
"metadata": {}, "metadata": {},
"source": [ "source": [
"## Graph 2: Relative total time spent per status per \"last termination\" type\n", "## Graph 2: Relative total time spent per status per \"last termination\" type\n",
@ -163,27 +171,37 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 8, "execution_count": 9,
"id": "3ba51241",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"def graph_2(df, cluster, totals):\n", "def graph_2(df, cluster, totals):\n",
" df = df.copy()\n", " df = df.copy()\n",
" for i in [4,5,6,7]:\n", " for i in [4,5,6,7]:\n",
" df.loc[df[\"Last termination\"] == to_name(i), \"time_ms\"] = df[\"time_ms\"][df[\"Last termination\"] == to_name(i)] / totals\n", " df.loc[df[\"Last termination\"] == to_name(i), \"time_ms\"] = 100 * df[\"time_ms\"][df[\"Last termination\"] == to_name(i)] / totals\n",
"\n", "\n",
" df.rename(columns = {'time_type': 'Execution phase'}, inplace = True)\n", " df.rename(columns = {'time_type': 'Execution phase'}, inplace = True)\n",
" \n", " \n",
" h = sns.histplot(df, x=\"Last termination\", \n", " h = sns.histplot(df, x=\"Last termination\", \n",
" weights=\"time_ms\", shrink=.5, common_bins=True,\n", " weights=\"time_ms\", shrink=.5, common_bins=True,\n",
" hue=\"Execution phase\", multiple=\"stack\", discrete=True, legend=True)\n", " hue=\"Execution phase\", multiple=\"stack\", discrete=True, legend=True)\n",
" h.set_yticks([0,20,40,60,80,100])\n",
" h.set_ylabel(\"Time spent [%]\") \n",
" h.set_xlabel(\"Task termination\") \n",
" #ax.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)\n", " #ax.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)\n",
" h.set_title((\"Cluster \" + cluster.upper()) if cluster != \"all\" else \"All clusters\" if cluster == \"all\" else \"2011 traces\")" " if cluster == \"2011\":\n",
" h.set_title(\"2011 data\")\n",
" elif cluster == \"all\":\n",
" h.set_title(\"2019 data\")\n",
" else:\n",
" h.set_title((\"Cluster \" + cluster.upper()) if cluster != \"all\" else \"All clusters\" if cluster == \"all\" else \"2011 traces\")"
] ]
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 9, "execution_count": 10,
"id": "8fc1b568",
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
@ -206,7 +224,126 @@
"12 KILL Queue 7.482888e+13\n", "12 KILL Queue 7.482888e+13\n",
"13 KILL Resubmission 1.211419e+11\n", "13 KILL Resubmission 1.211419e+11\n",
"14 KILL Running 6.311166e+14\n", "14 KILL Running 6.311166e+14\n",
"15 KILL Unknown 1.207792e+15\n" "15 KILL Unknown 1.207792e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 2.991028e+11\n",
"1 EVICT Resubmission 1.360657e+09\n",
"2 EVICT Running 2.871365e+13\n",
"3 EVICT Unknown 1.428912e+13\n",
"4 FAIL Queue 9.376134e+10\n",
"5 FAIL Resubmission 1.225520e+02\n",
"6 FAIL Running 8.338530e+12\n",
"7 FAIL Unknown 1.989378e+12\n",
"8 FINISH Queue 6.817208e+12\n",
"9 FINISH Resubmission 1.493729e+03\n",
"10 FINISH Running 8.069421e+13\n",
"11 FINISH Unknown 1.006353e+14\n",
"12 KILL Queue 5.397953e+13\n",
"13 KILL Resubmission 1.842002e+10\n",
"14 KILL Running 5.716892e+14\n",
"15 KILL Unknown 2.088855e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 3.158380e+11\n",
"1 EVICT Resubmission 2.355575e+09\n",
"2 EVICT Running 4.229815e+13\n",
"3 EVICT Unknown 6.785277e+12\n",
"4 FAIL Queue 2.352869e+11\n",
"5 FAIL Resubmission 4.684500e+01\n",
"6 FAIL Running 9.316941e+12\n",
"7 FAIL Unknown 4.873943e+12\n",
"8 FINISH Queue 1.172189e+13\n",
"9 FINISH Resubmission 3.623451e+03\n",
"10 FINISH Running 1.154498e+14\n",
"11 FINISH Unknown 4.934279e+13\n",
"12 KILL Queue 7.171264e+13\n",
"13 KILL Resubmission 2.108520e+11\n",
"14 KILL Running 6.180005e+14\n",
"15 KILL Unknown 2.088457e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 1.415993e+11\n",
"1 EVICT Resubmission 2.835890e+08\n",
"2 EVICT Running 4.303187e+13\n",
"3 EVICT Unknown 7.410999e+12\n",
"4 FAIL Queue 2.231462e+10\n",
"5 FAIL Resubmission 1.073960e+02\n",
"6 FAIL Running 1.186956e+13\n",
"7 FAIL Unknown 2.829927e+12\n",
"8 FINISH Queue 4.455665e+12\n",
"9 FINISH Resubmission 1.577302e+03\n",
"10 FINISH Running 6.516562e+13\n",
"11 FINISH Unknown 7.106965e+13\n",
"12 KILL Queue 7.435926e+13\n",
"13 KILL Resubmission 5.556059e+11\n",
"14 KILL Running 4.702722e+14\n",
"15 KILL Unknown 2.040366e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 1.722618e+10\n",
"1 EVICT Resubmission 1.788932e+09\n",
"2 EVICT Running 1.710804e+13\n",
"3 EVICT Unknown 7.078678e+12\n",
"4 FAIL Queue 2.895755e+09\n",
"5 FAIL Resubmission 5.304400e+01\n",
"6 FAIL Running 2.281806e+12\n",
"7 FAIL Unknown 3.984907e+11\n",
"8 FINISH Queue 7.454410e+11\n",
"9 FINISH Resubmission 6.310360e+02\n",
"10 FINISH Running 4.284518e+13\n",
"11 FINISH Unknown 3.672368e+13\n",
"12 KILL Queue 1.398332e+14\n",
"13 KILL Resubmission 4.825723e+10\n",
"14 KILL Running 3.049664e+14\n",
"15 KILL Unknown 3.072445e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 3.140594e+10\n",
"1 EVICT Resubmission 1.504263e+10\n",
"2 EVICT Running 5.070239e+13\n",
"3 EVICT Unknown 1.602834e+13\n",
"4 FAIL Queue 5.523972e+09\n",
"5 FAIL Resubmission 2.352700e+01\n",
"6 FAIL Running 3.889624e+12\n",
"7 FAIL Unknown 1.833895e+12\n",
"8 FINISH Queue 1.098116e+13\n",
"9 FINISH Resubmission 6.319590e+02\n",
"10 FINISH Running 9.761364e+13\n",
"11 FINISH Unknown 9.603417e+13\n",
"12 KILL Queue 1.129539e+14\n",
"13 KILL Resubmission 1.356476e+11\n",
"14 KILL Running 4.505937e+14\n",
"15 KILL Unknown 2.669451e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 9.528645e+10\n",
"1 EVICT Resubmission 1.493116e+09\n",
"2 EVICT Running 8.513084e+12\n",
"3 EVICT Unknown 2.778074e+12\n",
"4 FAIL Queue 2.887122e+11\n",
"5 FAIL Resubmission 1.757300e+01\n",
"6 FAIL Running 1.867799e+12\n",
"7 FAIL Unknown 6.622832e+11\n",
"8 FINISH Queue 8.337090e+11\n",
"9 FINISH Resubmission 6.753141e+07\n",
"10 FINISH Running 3.514254e+13\n",
"11 FINISH Unknown 6.704536e+13\n",
"12 KILL Queue 1.152843e+14\n",
"13 KILL Resubmission 5.814544e+10\n",
"14 KILL Running 2.225128e+14\n",
"15 KILL Unknown 3.894626e+15\n",
" Last termination time_type time_ms\n",
"0 EVICT Queue 4.621613e+10\n",
"1 EVICT Resubmission 4.511340e+02\n",
"2 EVICT Running 2.786346e+13\n",
"3 EVICT Unknown 9.513981e+12\n",
"4 FAIL Queue 7.828423e+09\n",
"5 FAIL Resubmission 1.148130e+02\n",
"6 FAIL Running 3.509052e+12\n",
"7 FAIL Unknown 1.212378e+12\n",
"8 FINISH Queue 9.252380e+12\n",
"9 FINISH Resubmission 1.675400e+02\n",
"10 FINISH Running 7.635478e+13\n",
"11 FINISH Unknown 5.980213e+13\n",
"12 KILL Queue 1.543895e+14\n",
"13 KILL Resubmission 3.419664e+09\n",
"14 KILL Running 3.838571e+14\n",
"15 KILL Unknown 4.039843e+15\n"
] ]
} }
], ],
@ -214,7 +351,7 @@
"dft = None\n", "dft = None\n",
"tts = None\n", "tts = None\n",
"\n", "\n",
"for cluster in \"a\":\n", "for cluster in \"abcdefgh\":\n",
" df, totals = create_df(cluster)\n", " df, totals = create_df(cluster)\n",
" \n", " \n",
" print(df)\n", " print(df)\n",
@ -223,7 +360,7 @@
" #graph_1(df, cluster)\n", " #graph_1(df, cluster)\n",
" plt.figure(figsize=(4,3))\n", " plt.figure(figsize=(4,3))\n",
" graph_2(df, cluster, totals)\n", " graph_2(df, cluster, totals)\n",
" plt.savefig('../report/figures/machine_time_waste/cluster_%s.pgf' % cluster)\n", " plt.savefig('../report/figures/machine_time_waste/cluster_%s.pgf' % cluster, bbox_inches='tight')\n",
" \n", " \n",
" if dft is None:\n", " if dft is None:\n",
" dft = df\n", " dft = df\n",
@ -236,7 +373,7 @@
"#graph_1(dft, \"all\")\n", "#graph_1(dft, \"all\")\n",
"plt.figure(figsize=(4,3))\n", "plt.figure(figsize=(4,3))\n",
"graph_2(dft, \"all\", tts)\n", "graph_2(dft, \"all\", tts)\n",
"plt.savefig('../report/figures/machine_time_waste/cluster_all.pgf')\n", "plt.savefig('../report/figures/machine_time_waste/cluster_all.pgf', bbox_inches='tight')\n",
"\n", "\n",
"d2011 = {'Last termination': [\"EVICT\"] * 4 + [\"FAIL\"] * 4 + [\"FINISH\"] * 4 + [\"KILL\"] * 4,\n", "d2011 = {'Last termination': [\"EVICT\"] * 4 + [\"FAIL\"] * 4 + [\"FINISH\"] * 4 + [\"KILL\"] * 4,\n",
" 'time_type': [\"Queue\", \"Resubmission\", \"Running\", \"Unknown\"] * 4,\n", " 'time_type': [\"Queue\", \"Resubmission\", \"Running\", \"Unknown\"] * 4,\n",
@ -245,12 +382,13 @@
"d2011 = pandas.DataFrame(d2011, columns=['Last termination', 'time_type', 'time_ms'])\n", "d2011 = pandas.DataFrame(d2011, columns=['Last termination', 'time_type', 'time_ms'])\n",
"plt.figure(figsize=(4,3))\n", "plt.figure(figsize=(4,3))\n",
"graph_2(d2011, \"2011\", 100)\n", "graph_2(d2011, \"2011\", 100)\n",
"plt.savefig('../report/figures/machine_time_waste/cluster_2011.pgf')\n" "plt.savefig('../report/figures/machine_time_waste/cluster_2011.pgf', bbox_inches='tight')\n"
] ]
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 10, "execution_count": 8,
"id": "5d112e3c",
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
@ -258,22 +396,22 @@
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
" Last termination time_type time_ms\n", " Last termination time_type time_ms\n",
"0 EVICT Queue 5.102510e-04\n", "0 EVICT Queue 7.373993e-05\n",
"1 EVICT Resubmission 2.688201e-07\n", "1 EVICT Resubmission 8.449953e-07\n",
"2 EVICT Running 1.564165e-02\n", "2 EVICT Running 9.249078e-03\n",
"3 EVICT Unknown 1.644476e-03\n", "3 EVICT Unknown 2.484572e-03\n",
"4 FAIL Queue 4.609415e-04\n", "4 FAIL Queue 5.926861e-05\n",
"5 FAIL Resubmission 3.475558e-14\n", "5 FAIL Resubmission 2.058252e-14\n",
"6 FAIL Running 3.531306e-03\n", "6 FAIL Running 1.785410e-03\n",
"7 FAIL Unknown 1.360804e-03\n", "7 FAIL Unknown 6.131290e-04\n",
"8 FINISH Queue 1.612259e-02\n", "8 FINISH Queue 2.880144e-03\n",
"9 FINISH Resubmission 8.889150e-09\n", "9 FINISH Resubmission 3.170097e-09\n",
"10 FINISH Running 1.841400e-02\n", "10 FINISH Running 2.035703e-02\n",
"11 FINISH Unknown 1.206717e-02\n", "11 FINISH Unknown 1.867017e-02\n",
"12 KILL Queue 3.637118e-02\n", "12 KILL Queue 2.945024e-02\n",
"13 KILL Resubmission 5.888201e-05\n", "13 KILL Resubmission 4.253091e-05\n",
"14 KILL Running 3.067593e-01\n", "14 KILL Running 1.349259e-01\n",
"15 KILL Unknown 5.870572e-01\n" "15 KILL Unknown 7.794080e-01\n"
] ]
} }
], ],
@ -285,6 +423,7 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"id": "45819798",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [] "source": []
@ -292,6 +431,7 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"id": "7ebdc37c",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [] "source": []
@ -299,6 +439,7 @@
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,
"id": "81f69410",
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [] "source": []
@ -306,9 +447,9 @@
], ],
"metadata": { "metadata": {
"kernelspec": { "kernelspec": {
"display_name": "Python 3", "display_name": "venv",
"language": "python", "language": "python",
"name": "python3" "name": "venv"
}, },
"language_info": { "language_info": {
"codemirror_mode": { "codemirror_mode": {
@ -320,7 +461,7 @@
"name": "python", "name": "python",
"nbconvert_exporter": "python", "nbconvert_exporter": "python",
"pygments_lexer": "ipython3", "pygments_lexer": "ipython3",
"version": "3.8.3" "version": "3.9.5"
} }
}, },
"nbformat": 4, "nbformat": 4,

Binary file not shown.

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.569224in}% \pgfsys@transformshift{0.652287in}{0.561094in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.516462in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.508332in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.105963in}% \pgfsys@transformshift{0.652287in}{1.006196in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.053201in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.953434in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.642701in}% \pgfsys@transformshift{0.652287in}{1.451298in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.589940in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.398536in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.179440in}% \pgfsys@transformshift{0.652287in}{1.896400in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.126678in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.843638in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.716178in}% \pgfsys@transformshift{0.652287in}{2.341501in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.663417in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.288740in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.650548in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.628533in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.699500in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.669128in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.727088in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.692006in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.781794in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.737372in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.881887in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.820376in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.127220in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.023823in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.205564in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.088792in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.650548in}% \pgfsys@transformshift{0.793196in}{0.628533in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.699500in}% \pgfsys@transformshift{1.262893in}{0.669128in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.727088in}% \pgfsys@transformshift{1.732590in}{0.692006in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.781794in}% \pgfsys@transformshift{2.202287in}{0.737372in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.881887in}% \pgfsys@transformshift{2.671983in}{0.820376in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.127220in}% \pgfsys@transformshift{3.141680in}{1.023823in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.205564in}% \pgfsys@transformshift{3.611377in}{1.088792in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.314526in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.559324in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.382156in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.727088in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.692006in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.675509in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.649233in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.777666in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.733949in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.648938in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.627198in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.606981in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.314526in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.559324in}% \pgfsys@transformshift{1.262893in}{1.382156in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.727088in}% \pgfsys@transformshift{1.732590in}{0.692006in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.675509in}% \pgfsys@transformshift{2.202287in}{0.649233in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.777666in}% \pgfsys@transformshift{2.671983in}{0.733949in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.648938in}% \pgfsys@transformshift{3.141680in}{0.627198in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.606981in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.867412in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.808373in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.116385in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.014838in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.095438in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.997468in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.020935in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.935685in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.038219in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.950018in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.127220in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.023823in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.505910in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.167132in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.867412in}% \pgfsys@transformshift{0.793196in}{0.808373in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.116385in}% \pgfsys@transformshift{1.262893in}{1.014838in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.095438in}% \pgfsys@transformshift{1.732590in}{0.997468in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.020935in}% \pgfsys@transformshift{2.202287in}{0.935685in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.038219in}% \pgfsys@transformshift{2.671983in}{0.950018in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.127220in}% \pgfsys@transformshift{3.141680in}{1.023823in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.505910in}% \pgfsys@transformshift{3.611377in}{2.167132in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.758980in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.718453in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.585380in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.403762in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.410974in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.088404in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.482352in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.147596in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.262817in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.965542in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.057212in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.795040in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.606981in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.758980in}% \pgfsys@transformshift{0.793196in}{0.718453in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.585380in}% \pgfsys@transformshift{1.262893in}{1.403762in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.410974in}% \pgfsys@transformshift{1.732590in}{2.088404in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.482352in}% \pgfsys@transformshift{2.202287in}{2.147596in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.262817in}% \pgfsys@transformshift{2.671983in}{1.965542in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.057212in}% \pgfsys@transformshift{3.141680in}{1.795040in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.606981in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624394in}% \pgfsys@transformshift{0.652287in}{0.623210in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571632in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.570449in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.062112in}% \pgfsys@transformshift{0.652287in}{1.055889in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.009351in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.003127in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.499831in}% \pgfsys@transformshift{0.652287in}{1.488568in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.447069in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.435806in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.937549in}% \pgfsys@transformshift{0.652287in}{1.921246in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.884788in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868485in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.375268in}% \pgfsys@transformshift{0.652287in}{2.353925in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.322506in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301163in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.623372in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624651in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.623464in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.625706in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.624507in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.629046in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.627809in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.639485in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.638128in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.664756in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.663108in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.807520in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.804227in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.623372in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624651in}% \pgfsys@transformshift{1.262893in}{0.623464in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.625706in}% \pgfsys@transformshift{1.732590in}{0.624507in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.629046in}% \pgfsys@transformshift{2.202287in}{0.627809in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.639485in}% \pgfsys@transformshift{2.671983in}{0.638128in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.664756in}% \pgfsys@transformshift{3.141680in}{0.663108in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.807520in}% \pgfsys@transformshift{3.611377in}{0.804227in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.642240in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.640851in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.697053in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.695033in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.630020in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.628771in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.626927in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.625715in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.670586in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.668871in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.631339in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.630075in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.661246in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.659638in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.642240in}% \pgfsys@transformshift{0.793196in}{0.640851in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.697053in}% \pgfsys@transformshift{1.262893in}{0.695033in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.630020in}% \pgfsys@transformshift{1.732590in}{0.628771in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.626927in}% \pgfsys@transformshift{2.202287in}{0.625715in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.670586in}% \pgfsys@transformshift{2.671983in}{0.668871in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.631339in}% \pgfsys@transformshift{3.141680in}{0.630075in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.661246in}% \pgfsys@transformshift{3.611377in}{0.659638in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.165107in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.157698in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.931120in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.914891in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.058209in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.040517in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.613873in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.601296in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.379336in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.369460in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.706424in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.704296in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.151088in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.143840in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.165107in}% \pgfsys@transformshift{0.793196in}{1.157698in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.931120in}% \pgfsys@transformshift{1.262893in}{1.914891in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.058209in}% \pgfsys@transformshift{1.732590in}{2.040517in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.613873in}% \pgfsys@transformshift{2.202287in}{1.601296in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.379336in}% \pgfsys@transformshift{2.671983in}{1.369460in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.706424in}% \pgfsys@transformshift{3.141680in}{0.704296in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.151088in}% \pgfsys@transformshift{3.611377in}{1.143840in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.234525in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.214803in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.433345in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.422847in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.372233in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.362439in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.816322in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.801415in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.996761in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.979776in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.658755in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.065296in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.047522in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.234525in}% \pgfsys@transformshift{0.793196in}{2.214803in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.433345in}% \pgfsys@transformshift{1.262893in}{1.422847in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.372233in}% \pgfsys@transformshift{1.732590in}{1.362439in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.816322in}% \pgfsys@transformshift{2.202287in}{1.801415in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.996761in}% \pgfsys@transformshift{2.671983in}{1.979776in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.658755in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.065296in}% \pgfsys@transformshift{3.611377in}{2.047522in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624430in}% \pgfsys@transformshift{0.652287in}{0.624335in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571668in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.571574in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.057281in}% \pgfsys@transformshift{0.652287in}{1.056789in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.004520in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.004027in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.490133in}% \pgfsys@transformshift{0.652287in}{1.489242in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.437372in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.436481in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.922985in}% \pgfsys@transformshift{0.652287in}{1.921696in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.870223in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868935in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.355837in}% \pgfsys@transformshift{0.652287in}{2.354150in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.303075in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301388in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.624463in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624669in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.624575in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624967in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.624872in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.625924in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.625828in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.627039in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.626942in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.646572in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.646457in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.685943in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.685791in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.624463in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624669in}% \pgfsys@transformshift{1.262893in}{0.624575in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624967in}% \pgfsys@transformshift{1.732590in}{0.624872in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.625924in}% \pgfsys@transformshift{2.202287in}{0.625828in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.627039in}% \pgfsys@transformshift{2.671983in}{0.626942in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.646572in}% \pgfsys@transformshift{3.141680in}{0.646457in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.685943in}% \pgfsys@transformshift{3.611377in}{0.685791in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.628505in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.628407in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.633030in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.632928in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.666067in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.665935in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.636450in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.636345in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.635125in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.635020in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.628430in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.628332in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.652934in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.652813in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.628505in}% \pgfsys@transformshift{0.793196in}{0.628407in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.633030in}% \pgfsys@transformshift{1.262893in}{0.632928in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.666067in}% \pgfsys@transformshift{1.732590in}{0.665935in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.636450in}% \pgfsys@transformshift{2.202287in}{0.636345in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.635125in}% \pgfsys@transformshift{2.671983in}{0.635020in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.628430in}% \pgfsys@transformshift{3.141680in}{0.628332in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.652934in}% \pgfsys@transformshift{3.611377in}{0.652813in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.774329in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.773176in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.878656in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.877408in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.312446in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.311719in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.030599in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.030131in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.986835in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.986407in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.703325in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.703158in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.928110in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.927736in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.774329in}% \pgfsys@transformshift{0.793196in}{1.773176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.878656in}% \pgfsys@transformshift{1.262893in}{1.877408in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.312446in}% \pgfsys@transformshift{1.732590in}{1.311719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.030599in}% \pgfsys@transformshift{2.202287in}{1.030131in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.986835in}% \pgfsys@transformshift{2.671983in}{0.986407in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.703325in}% \pgfsys@transformshift{3.141680in}{0.703158in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.928110in}% \pgfsys@transformshift{3.611377in}{0.927736in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.629009in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.627991in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.525424in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.524501in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.058343in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.056929in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.368796in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.367097in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.412874in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.411134in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.681660in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.394628in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.392906in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.629009in}% \pgfsys@transformshift{0.793196in}{1.627991in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.525424in}% \pgfsys@transformshift{1.262893in}{1.524501in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.058343in}% \pgfsys@transformshift{1.732590in}{2.056929in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.368796in}% \pgfsys@transformshift{2.202287in}{2.367097in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.412874in}% \pgfsys@transformshift{2.671983in}{2.411134in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.681660in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.394628in}% \pgfsys@transformshift{3.611377in}{2.392906in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624159in}% \pgfsys@transformshift{0.652287in}{0.622619in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571397in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.569857in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.063555in}% \pgfsys@transformshift{0.652287in}{1.055415in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.010793in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.002654in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.502951in}% \pgfsys@transformshift{0.652287in}{1.488212in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.450190in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.435451in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.942347in}% \pgfsys@transformshift{0.652287in}{1.921009in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.889586in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868248in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.381744in}% \pgfsys@transformshift{0.652287in}{2.353806in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.328982in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301045in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624573in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.623027in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624720in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.623171in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.625910in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.624344in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.627465in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.625875in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.627400in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.625811in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.661939in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.659831in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.699090in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.696425in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624573in}% \pgfsys@transformshift{0.793196in}{0.623027in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624720in}% \pgfsys@transformshift{1.262893in}{0.623171in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.625910in}% \pgfsys@transformshift{1.732590in}{0.624344in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.627465in}% \pgfsys@transformshift{2.202287in}{0.625875in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.627400in}% \pgfsys@transformshift{2.671983in}{0.625811in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.661939in}% \pgfsys@transformshift{3.141680in}{0.659831in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.699090in}% \pgfsys@transformshift{3.611377in}{0.696425in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.623012in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624971in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.623419in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.646955in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.645073in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.636345in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.634622in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.644505in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.642659in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.638251in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.636499in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.633033in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.631360in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.623012in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624971in}% \pgfsys@transformshift{1.262893in}{0.623419in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.646955in}% \pgfsys@transformshift{1.732590in}{0.645073in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.636345in}% \pgfsys@transformshift{2.202287in}{0.634622in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.644505in}% \pgfsys@transformshift{2.671983in}{0.642659in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.638251in}% \pgfsys@transformshift{3.141680in}{0.636499in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.633033in}% \pgfsys@transformshift{3.611377in}{0.631360in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.988112in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.966087in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.139035in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.114743in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.546330in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.530940in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.016463in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.009031in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.055952in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.047927in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.709778in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.706951in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.892642in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.887069in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.988112in}% \pgfsys@transformshift{0.793196in}{1.966087in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.139035in}% \pgfsys@transformshift{1.262893in}{2.114743in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.546330in}% \pgfsys@transformshift{1.732590in}{1.530940in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.016463in}% \pgfsys@transformshift{2.202287in}{1.009031in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.055952in}% \pgfsys@transformshift{2.671983in}{1.047927in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.709778in}% \pgfsys@transformshift{3.141680in}{0.706951in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.892642in}% \pgfsys@transformshift{3.611377in}{0.887069in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.451574in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.437607in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.304889in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.293125in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.874420in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.854102in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.413342in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.384930in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.365759in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.338062in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.651177in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.468017in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.438784in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.451574in}% \pgfsys@transformshift{0.793196in}{1.437607in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.304889in}% \pgfsys@transformshift{1.262893in}{1.293125in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.874420in}% \pgfsys@transformshift{1.732590in}{1.854102in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.413342in}% \pgfsys@transformshift{2.202287in}{2.384930in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.365759in}% \pgfsys@transformshift{2.671983in}{2.338062in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.651177in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.468017in}% \pgfsys@transformshift{3.611377in}{2.438784in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624497in}% \pgfsys@transformshift{0.652287in}{0.621984in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571736in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.569222in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.068261in}% \pgfsys@transformshift{0.652287in}{1.054908in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.015500in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.002146in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.512025in}% \pgfsys@transformshift{0.652287in}{1.487832in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.459264in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.435070in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.955789in}% \pgfsys@transformshift{0.652287in}{1.920756in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.903028in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867994in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.399553in}% \pgfsys@transformshift{0.652287in}{2.353679in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.346792in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300918in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622043in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624712in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.622193in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624859in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.622336in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.625425in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.622889in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.626659in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.624092in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.636487in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.633681in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.715491in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.710755in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.622043in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624712in}% \pgfsys@transformshift{1.262893in}{0.622193in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624859in}% \pgfsys@transformshift{1.732590in}{0.622336in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.625425in}% \pgfsys@transformshift{2.202287in}{0.622889in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.626659in}% \pgfsys@transformshift{2.671983in}{0.624092in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.636487in}% \pgfsys@transformshift{3.141680in}{0.633681in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.715491in}% \pgfsys@transformshift{3.611377in}{0.710755in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625321in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622787in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.625710in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.623167in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.626227in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.623671in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.630266in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.627612in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.633781in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.631041in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.627601in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.625011in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.687698in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.683641in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625321in}% \pgfsys@transformshift{0.793196in}{0.622787in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.625710in}% \pgfsys@transformshift{1.262893in}{0.623167in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.626227in}% \pgfsys@transformshift{1.732590in}{0.623671in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.630266in}% \pgfsys@transformshift{2.202287in}{0.627612in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.633781in}% \pgfsys@transformshift{2.671983in}{0.631041in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.627601in}% \pgfsys@transformshift{3.141680in}{0.625011in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.687698in}% \pgfsys@transformshift{3.611377in}{0.683641in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.982840in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.947146in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.128855in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.089593in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.478806in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.455424in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.086476in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.072677in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.060745in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.047575in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.769071in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.763026in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.984467in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.973160in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.982840in}% \pgfsys@transformshift{0.793196in}{1.947146in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.128855in}% \pgfsys@transformshift{1.262893in}{2.089593in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.478806in}% \pgfsys@transformshift{1.732590in}{1.455424in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.086476in}% \pgfsys@transformshift{2.202287in}{1.072677in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.060745in}% \pgfsys@transformshift{2.671983in}{1.047575in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.769071in}% \pgfsys@transformshift{3.141680in}{0.763026in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.984467in}% \pgfsys@transformshift{3.611377in}{0.973160in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.481189in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.457748in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.337204in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.317281in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.986732in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.950942in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.374585in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.329322in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.395604in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.349827in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.630835in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.328276in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.284143in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.481189in}% \pgfsys@transformshift{0.793196in}{1.457748in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.337204in}% \pgfsys@transformshift{1.262893in}{1.317281in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.986732in}% \pgfsys@transformshift{1.732590in}{1.950942in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.374585in}% \pgfsys@transformshift{2.202287in}{2.329322in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.395604in}% \pgfsys@transformshift{2.671983in}{2.349827in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.630835in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.328276in}% \pgfsys@transformshift{3.611377in}{2.284143in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624454in}% \pgfsys@transformshift{0.652287in}{0.621047in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571692in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.568285in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.072403in}% \pgfsys@transformshift{0.652287in}{1.054158in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.019641in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.001397in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.520352in}% \pgfsys@transformshift{0.652287in}{1.487269in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.467591in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.434508in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.968301in}% \pgfsys@transformshift{0.652287in}{1.920381in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.915540in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867619in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.416250in}% \pgfsys@transformshift{0.652287in}{2.353492in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.363489in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300731in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.621148in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624591in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.621180in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.625086in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.621658in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.625364in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.621927in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.625495in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.622054in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.701649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.695685in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.710069in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.703826in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.621148in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624591in}% \pgfsys@transformshift{1.262893in}{0.621180in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.625086in}% \pgfsys@transformshift{1.732590in}{0.621658in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.625364in}% \pgfsys@transformshift{2.202287in}{0.621927in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.625495in}% \pgfsys@transformshift{2.671983in}{0.622054in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.701649in}% \pgfsys@transformshift{3.141680in}{0.695685in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.710069in}% \pgfsys@transformshift{3.611377in}{0.703826in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.629722in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.626141in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.630283in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.626683in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.645115in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.641024in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.626137in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.622674in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.631764in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.628115in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624902in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.621480in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.651276in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.646980in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.629722in}% \pgfsys@transformshift{0.793196in}{0.626141in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.630283in}% \pgfsys@transformshift{1.262893in}{0.626683in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.645115in}% \pgfsys@transformshift{1.732590in}{0.641024in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.626137in}% \pgfsys@transformshift{2.202287in}{0.622674in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.631764in}% \pgfsys@transformshift{2.671983in}{0.628115in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624902in}% \pgfsys@transformshift{3.141680in}{0.621480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.651276in}% \pgfsys@transformshift{3.611377in}{0.646980in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.009723in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.960431in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.348193in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.320813in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.133589in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.113318in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.922487in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.909208in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.902812in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.890185in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.727360in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.720545in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.843411in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.832752in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.009723in}% \pgfsys@transformshift{0.793196in}{1.960431in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.348193in}% \pgfsys@transformshift{1.262893in}{1.320813in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.133589in}% \pgfsys@transformshift{1.732590in}{1.113318in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.922487in}% \pgfsys@transformshift{2.202287in}{0.909208in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.902812in}% \pgfsys@transformshift{2.671983in}{0.890185in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.727360in}% \pgfsys@transformshift{3.141680in}{0.720545in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.843411in}% \pgfsys@transformshift{3.611377in}{0.832752in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.458073in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.427053in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.133588in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.080192in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.332043in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.272074in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.560027in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.492506in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.576530in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.508462in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.612033in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.532702in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.466086in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.458073in}% \pgfsys@transformshift{0.793196in}{1.427053in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.133588in}% \pgfsys@transformshift{1.262893in}{2.080192in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.332043in}% \pgfsys@transformshift{1.732590in}{2.272074in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.560027in}% \pgfsys@transformshift{2.202287in}{2.492506in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.576530in}% \pgfsys@transformshift{2.671983in}{2.508462in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.612033in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.532702in}% \pgfsys@transformshift{3.611377in}{2.466086in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.916116in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.916116in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{3.916116in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.107428in}{0.521603in}% \pgfsys@transformshift{1.195793in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.107428in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.195793in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.510025in}{0.521603in}% \pgfsys@transformshift{1.598390in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.510025in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.598390in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.912623in}{0.521603in}% \pgfsys@transformshift{2.000988in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.912623in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.000988in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.315220in}{0.521603in}% \pgfsys@transformshift{2.403585in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.315220in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=2.403585in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.717817in}{0.521603in}% \pgfsys@transformshift{2.806183in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.717817in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-11}% \pgftext[x=2.806183in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-11}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.120415in}{0.521603in}% \pgfsys@transformshift{3.208780in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,7 +230,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.120415in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 12-13}% \pgftext[x=3.208780in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 12-13}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -247,7 +247,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -255,13 +255,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.799367in}% \pgfsys@transformshift{0.652287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=0.746606in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10}% \pgftext[x=0.466699in, y=0.468842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.218096in}% \pgfsys@transformshift{0.652287in}{0.974603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.165335in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.921842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.636826in}% \pgfsys@transformshift{0.652287in}{1.427603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.584064in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 30}% \pgftext[x=0.378334in, y=1.374842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.055555in}% \pgfsys@transformshift{0.652287in}{1.880603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.002793in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.827842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -378,7 +378,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.474284in}% \pgfsys@transformshift{0.652287in}{2.333603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -386,7 +386,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.421523in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 50}% \pgftext[x=0.378334in, y=2.280842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -395,7 +420,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -403,18 +428,18 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.227973in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.520868in}}%
\pgfpathlineto{\pgfqpoint{1.107428in}{1.209805in}}% \pgfpathlineto{\pgfqpoint{1.195793in}{0.970118in}}%
\pgfpathlineto{\pgfqpoint{1.510025in}{0.799367in}}% \pgfpathlineto{\pgfqpoint{1.598390in}{0.748103in}}%
\pgfpathlineto{\pgfqpoint{1.912623in}{0.723235in}}% \pgfpathlineto{\pgfqpoint{2.000988in}{0.706922in}}%
\pgfpathlineto{\pgfqpoint{2.315220in}{0.709053in}}% \pgfpathlineto{\pgfqpoint{2.403585in}{0.699250in}}%
\pgfpathlineto{\pgfqpoint{2.717817in}{0.670846in}}% \pgfpathlineto{\pgfqpoint{2.806183in}{0.678584in}}%
\pgfpathlineto{\pgfqpoint{3.120415in}{0.629388in}}% \pgfpathlineto{\pgfqpoint{3.208780in}{0.656158in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.653545in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -438,40 +463,40 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.227973in}% \pgfsys@transformshift{0.793196in}{1.520868in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.107428in}{1.209805in}% \pgfsys@transformshift{1.195793in}{0.970118in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.510025in}{0.799367in}% \pgfsys@transformshift{1.598390in}{0.748103in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.912623in}{0.723235in}% \pgfsys@transformshift{2.000988in}{0.706922in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.315220in}{0.709053in}% \pgfsys@transformshift{2.403585in}{0.699250in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.717817in}{0.670846in}% \pgfsys@transformshift{2.806183in}{0.678584in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.120415in}{0.629388in}% \pgfsys@transformshift{3.208780in}{0.656158in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.653545in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -479,18 +504,18 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.873261in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.788074in}}%
\pgfpathlineto{\pgfqpoint{1.107428in}{1.043971in}}% \pgfpathlineto{\pgfqpoint{1.195793in}{0.880415in}}%
\pgfpathlineto{\pgfqpoint{1.510025in}{1.092478in}}% \pgfpathlineto{\pgfqpoint{1.598390in}{0.906653in}}%
\pgfpathlineto{\pgfqpoint{1.912623in}{1.294229in}}% \pgfpathlineto{\pgfqpoint{2.000988in}{1.015785in}}%
\pgfpathlineto{\pgfqpoint{2.315220in}{1.406935in}}% \pgfpathlineto{\pgfqpoint{2.403585in}{1.076750in}}%
\pgfpathlineto{\pgfqpoint{2.717817in}{1.417096in}}% \pgfpathlineto{\pgfqpoint{2.806183in}{1.082247in}}%
\pgfpathlineto{\pgfqpoint{3.120415in}{1.458555in}}% \pgfpathlineto{\pgfqpoint{3.208780in}{1.104673in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.437624in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.093351in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -514,40 +539,40 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.873261in}% \pgfsys@transformshift{0.793196in}{0.788074in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.107428in}{1.043971in}% \pgfsys@transformshift{1.195793in}{0.880415in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.510025in}{1.092478in}% \pgfsys@transformshift{1.598390in}{0.906653in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.912623in}{1.294229in}% \pgfsys@transformshift{2.000988in}{1.015785in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.315220in}{1.406935in}% \pgfsys@transformshift{2.403585in}{1.076750in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.717817in}{1.417096in}% \pgfsys@transformshift{2.806183in}{1.082247in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.120415in}{1.458555in}% \pgfsys@transformshift{3.208780in}{1.104673in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.437624in}% \pgfsys@transformshift{3.611377in}{1.093351in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -555,18 +580,18 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.489039in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.121162in}}%
\pgfpathlineto{\pgfqpoint{1.107428in}{1.209805in}}% \pgfpathlineto{\pgfqpoint{1.195793in}{0.970118in}}%
\pgfpathlineto{\pgfqpoint{1.510025in}{1.134351in}}% \pgfpathlineto{\pgfqpoint{1.598390in}{0.929303in}}%
\pgfpathlineto{\pgfqpoint{1.912623in}{1.141964in}}% \pgfpathlineto{\pgfqpoint{2.000988in}{0.933422in}}%
\pgfpathlineto{\pgfqpoint{2.315220in}{1.119572in}}% \pgfpathlineto{\pgfqpoint{2.403585in}{0.921309in}}%
\pgfpathlineto{\pgfqpoint{2.717817in}{1.168346in}}% \pgfpathlineto{\pgfqpoint{2.806183in}{0.947692in}}%
\pgfpathlineto{\pgfqpoint{3.120415in}{1.209805in}}% \pgfpathlineto{\pgfqpoint{3.208780in}{0.970118in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.234358in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.983399in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -590,40 +615,40 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.489039in}% \pgfsys@transformshift{0.793196in}{1.121162in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.107428in}{1.209805in}% \pgfsys@transformshift{1.195793in}{0.970118in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.510025in}{1.134351in}% \pgfsys@transformshift{1.598390in}{0.929303in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.912623in}{1.141964in}% \pgfsys@transformshift{2.000988in}{0.933422in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.315220in}{1.119572in}% \pgfsys@transformshift{2.403585in}{0.921309in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.717817in}{1.168346in}% \pgfsys@transformshift{2.806183in}{0.947692in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.120415in}{1.209805in}% \pgfsys@transformshift{3.208780in}{0.970118in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.234358in}% \pgfsys@transformshift{3.611377in}{0.983399in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -631,18 +656,18 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.119572in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.921309in}}%
\pgfpathlineto{\pgfqpoint{1.107428in}{2.246263in}}% \pgfpathlineto{\pgfqpoint{1.195793in}{1.530762in}}%
\pgfpathlineto{\pgfqpoint{1.510025in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.598390in}{1.767353in}}%
\pgfpathlineto{\pgfqpoint{1.912623in}{2.550417in}}% \pgfpathlineto{\pgfqpoint{2.000988in}{1.695285in}}%
\pgfpathlineto{\pgfqpoint{2.315220in}{2.474284in}}% \pgfpathlineto{\pgfqpoint{2.403585in}{1.654103in}}%
\pgfpathlineto{\pgfqpoint{2.717817in}{2.453555in}}% \pgfpathlineto{\pgfqpoint{2.806183in}{1.642890in}}%
\pgfpathlineto{\pgfqpoint{3.120415in}{2.412097in}}% \pgfpathlineto{\pgfqpoint{3.208780in}{1.620465in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.413304in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.621118in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -666,35 +691,35 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.119572in}% \pgfsys@transformshift{0.793196in}{0.921309in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.107428in}{2.246263in}% \pgfsys@transformshift{1.195793in}{1.530762in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.510025in}{2.683649in}% \pgfsys@transformshift{1.598390in}{1.767353in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.912623in}{2.550417in}% \pgfsys@transformshift{2.000988in}{1.695285in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.315220in}{2.474284in}% \pgfsys@transformshift{2.403585in}{1.654103in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.717817in}{2.453555in}% \pgfsys@transformshift{2.806183in}{1.642890in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.120415in}{2.412097in}% \pgfsys@transformshift{3.208780in}{1.620465in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.413304in}% \pgfsys@transformshift{3.611377in}{1.621118in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -705,8 +730,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -716,8 +741,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -727,8 +752,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -738,15 +763,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -759,15 +784,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{2.752314in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{3.655064in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.682842in}{1.860063in}}{\pgfqpoint{3.682842in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{3.682842in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.682842in}{2.717159in}}{\pgfqpoint{3.655064in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{2.752314in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{2.724536in}{2.717159in}}{\pgfqpoint{2.724536in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{2.724536in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{2.724536in}{1.860063in}}{\pgfqpoint{2.752314in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -778,8 +803,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{2.780091in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{3.057869in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -805,7 +830,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{2.918980in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -813,7 +838,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=3.168980in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -822,8 +847,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{2.780091in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{3.057869in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -849,7 +874,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{2.918980in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -857,7 +882,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=3.168980in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -866,8 +891,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{2.780091in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{3.057869in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -893,7 +918,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{2.918980in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -901,7 +926,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=3.168980in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -910,8 +935,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{2.780091in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{3.057869in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -937,7 +962,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{2.918980in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -945,7 +970,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.168980in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.562536in}% \pgfsys@transformshift{0.652287in}{0.557701in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.509775in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.504940in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.068026in}% \pgfsys@transformshift{0.652287in}{1.003482in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.015265in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.950720in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.573516in}% \pgfsys@transformshift{0.652287in}{1.449262in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.520755in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.396500in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.079006in}% \pgfsys@transformshift{0.652287in}{1.895042in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.026245in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.842281in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.584496in}% \pgfsys@transformshift{0.652287in}{2.340823in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.531735in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.288061in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.764027in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.735392in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.769156in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.739914in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.758570in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.730579in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.716397in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.693388in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.699407in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.678404in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.802334in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.769173in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.764027in}% \pgfsys@transformshift{0.793196in}{0.735392in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.769156in}% \pgfsys@transformshift{1.356832in}{0.739914in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.758570in}% \pgfsys@transformshift{1.920468in}{0.730579in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.716397in}% \pgfsys@transformshift{2.484105in}{0.693388in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.699407in}% \pgfsys@transformshift{3.047741in}{0.678404in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.802334in}% \pgfsys@transformshift{3.611377in}{0.769173in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.649750in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.634613in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.698166in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.677310in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.747748in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.721035in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.721897in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.698238in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.666538in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.649418in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.612397in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.649750in}% \pgfsys@transformshift{0.793196in}{0.634613in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.698166in}% \pgfsys@transformshift{1.356832in}{0.677310in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.747748in}% \pgfsys@transformshift{1.920468in}{0.721035in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.721897in}% \pgfsys@transformshift{2.484105in}{0.698238in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.666538in}% \pgfsys@transformshift{3.047741in}{0.649418in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.612397in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.836306in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.799133in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.792824in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.760786in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.759902in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.731753in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.717996in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.694798in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.705437in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.683722in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.904331in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.859122in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.836306in}% \pgfsys@transformshift{0.793196in}{0.799133in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.792824in}% \pgfsys@transformshift{1.356832in}{0.760786in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.759902in}% \pgfsys@transformshift{1.920468in}{0.731753in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.717996in}% \pgfsys@transformshift{2.484105in}{0.694798in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.705437in}% \pgfsys@transformshift{3.047741in}{0.683722in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.904331in}% \pgfsys@transformshift{3.611377in}{0.859122in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.430465in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.204986in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.446267in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.218921in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.462661in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.233379in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.589321in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.345078in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.428263in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.311596in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.100158in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.430465in}% \pgfsys@transformshift{0.793196in}{2.204986in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.446267in}% \pgfsys@transformshift{1.356832in}{2.218921in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.462661in}% \pgfsys@transformshift{1.920468in}{2.233379in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.589321in}% \pgfsys@transformshift{2.484105in}{2.345078in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.683649in}% \pgfsys@transformshift{3.047741in}{2.428263in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.311596in}% \pgfsys@transformshift{3.611377in}{2.100158in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.600710in}% \pgfsys@transformshift{0.652287in}{0.593813in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.547949in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.541052in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.081154in}% \pgfsys@transformshift{0.652287in}{1.032371in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.028393in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.979610in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.561598in}% \pgfsys@transformshift{0.652287in}{1.470929in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.508837in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.418168in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.042042in}% \pgfsys@transformshift{0.652287in}{1.909487in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.989281in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.856726in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.522486in}% \pgfsys@transformshift{0.652287in}{2.348045in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.469725in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.295284in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.686529in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.672150in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.681418in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.667485in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.688193in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.673669in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.696585in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.681329in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.695409in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.680257in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.704602in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.688648in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.686529in}% \pgfsys@transformshift{0.793196in}{0.672150in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.681418in}% \pgfsys@transformshift{1.356832in}{0.667485in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.688193in}% \pgfsys@transformshift{1.920468in}{0.673669in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.696585in}% \pgfsys@transformshift{2.484105in}{0.681329in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.695409in}% \pgfsys@transformshift{3.047741in}{0.680257in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.704602in}% \pgfsys@transformshift{3.611377in}{0.688648in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.627133in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.617933in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.634335in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.624507in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.651405in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.640089in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.676588in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.663076in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.706695in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.690558in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.615582in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.627133in}% \pgfsys@transformshift{0.793196in}{0.617933in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.634335in}% \pgfsys@transformshift{1.356832in}{0.624507in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.651405in}% \pgfsys@transformshift{1.920468in}{0.640089in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.676588in}% \pgfsys@transformshift{2.484105in}{0.663076in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.706695in}% \pgfsys@transformshift{3.047741in}{0.690558in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.615582in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.778255in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.755879in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.777214in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.754929in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.787928in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.764709in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.804089in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.779461in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.817272in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.791495in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.811098in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.785859in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.778255in}% \pgfsys@transformshift{0.793196in}{0.755879in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.777214in}% \pgfsys@transformshift{1.356832in}{0.754929in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.787928in}% \pgfsys@transformshift{1.920468in}{0.764709in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.804089in}% \pgfsys@transformshift{2.484105in}{0.779461in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.817272in}% \pgfsys@transformshift{3.047741in}{0.791495in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.811098in}% \pgfsys@transformshift{3.611377in}{0.785859in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.495157in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.683372in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.494904in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.646502in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.461249in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.596297in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.415421in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.556306in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.378916in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.627176in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.443608in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.495157in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.683372in}% \pgfsys@transformshift{1.356832in}{2.494904in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.646502in}% \pgfsys@transformshift{1.920468in}{2.461249in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.596297in}% \pgfsys@transformshift{2.484105in}{2.415421in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.556306in}% \pgfsys@transformshift{3.047741in}{2.378916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.627176in}% \pgfsys@transformshift{3.611377in}{2.443608in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.617282in}% \pgfsys@transformshift{0.652287in}{0.609105in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.564521in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.556343in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.093483in}% \pgfsys@transformshift{0.652287in}{1.044604in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.040722in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.991843in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.569684in}% \pgfsys@transformshift{0.652287in}{1.480104in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.516923in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.427343in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.045885in}% \pgfsys@transformshift{0.652287in}{1.915604in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.993123in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.862842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.522086in}% \pgfsys@transformshift{0.652287in}{2.351104in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.469324in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.298342in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.727389in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.709801in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.725679in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.708236in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.728644in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.710948in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.732897in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.714837in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.728293in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.710627in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.750912in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.731313in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.727389in}% \pgfsys@transformshift{0.793196in}{0.709801in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.725679in}% \pgfsys@transformshift{1.356832in}{0.708236in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.728644in}% \pgfsys@transformshift{1.920468in}{0.710948in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.732897in}% \pgfsys@transformshift{2.484105in}{0.714837in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.728293in}% \pgfsys@transformshift{3.047741in}{0.710627in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.750912in}% \pgfsys@transformshift{3.611377in}{0.731313in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625354in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.616486in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.627497in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.618446in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.631621in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.622218in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.633435in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.623876in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.630176in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.620896in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.615758in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625354in}% \pgfsys@transformshift{0.793196in}{0.616486in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.627497in}% \pgfsys@transformshift{1.356832in}{0.618446in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.631621in}% \pgfsys@transformshift{1.920468in}{0.622218in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.633435in}% \pgfsys@transformshift{2.484105in}{0.623876in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.630176in}% \pgfsys@transformshift{3.047741in}{0.620896in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.615758in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.746593in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.727363in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.749504in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.730025in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.755999in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.735965in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.760555in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.740132in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.769126in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.747970in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.753777in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.733933in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.746593in}% \pgfsys@transformshift{0.793196in}{0.727363in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.749504in}% \pgfsys@transformshift{1.356832in}{0.730025in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.755999in}% \pgfsys@transformshift{1.920468in}{0.735965in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.760555in}% \pgfsys@transformshift{2.484105in}{0.740132in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.769126in}% \pgfsys@transformshift{3.047741in}{0.747970in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.753777in}% \pgfsys@transformshift{3.611377in}{0.733933in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.498858in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.679247in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.494832in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.663104in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.480069in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.653039in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.470864in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.657901in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.475310in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.642897in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.461589in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.498858in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.679247in}% \pgfsys@transformshift{1.356832in}{2.494832in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.663104in}% \pgfsys@transformshift{1.920468in}{2.480069in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.653039in}% \pgfsys@transformshift{2.484105in}{2.470864in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.657901in}% \pgfsys@transformshift{3.047741in}{2.475310in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.642897in}% \pgfsys@transformshift{3.611377in}{2.461589in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.601662in}% \pgfsys@transformshift{0.652287in}{0.595073in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.548901in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.542311in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.079279in}% \pgfsys@transformshift{0.652287in}{1.033379in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.026518in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.980617in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.556896in}% \pgfsys@transformshift{0.652287in}{1.471685in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.504135in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.418923in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.034513in}% \pgfsys@transformshift{0.652287in}{1.909991in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.981752in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.857230in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.512130in}% \pgfsys@transformshift{0.652287in}{2.348297in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.459369in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.295536in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.690960in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.677021in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.691839in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.677828in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.698549in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.683985in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.703219in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.688271in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.705108in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.690004in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.694736in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.680486in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.690960in}% \pgfsys@transformshift{0.793196in}{0.677021in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.691839in}% \pgfsys@transformshift{1.356832in}{0.677828in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.698549in}% \pgfsys@transformshift{1.920468in}{0.683985in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.703219in}% \pgfsys@transformshift{2.484105in}{0.688271in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.705108in}% \pgfsys@transformshift{3.047741in}{0.690004in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.694736in}% \pgfsys@transformshift{3.611377in}{0.680486in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.639442in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.629743in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.661035in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.649558in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.681706in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.668529in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.708260in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.692897in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.754777in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.735586in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.616084in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.639442in}% \pgfsys@transformshift{0.793196in}{0.629743in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.661035in}% \pgfsys@transformshift{1.356832in}{0.649558in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.681706in}% \pgfsys@transformshift{1.920468in}{0.668529in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.708260in}% \pgfsys@transformshift{2.484105in}{0.692897in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.754777in}% \pgfsys@transformshift{3.047741in}{0.735586in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.616084in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.740293in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.722293in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.762923in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.743061in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.797248in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.774560in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.831485in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.805979in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.853488in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.826172in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.734159in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.716665in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.740293in}% \pgfsys@transformshift{0.793196in}{0.722293in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.762923in}% \pgfsys@transformshift{1.356832in}{0.743061in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.797248in}% \pgfsys@transformshift{1.920468in}{0.774560in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.831485in}% \pgfsys@transformshift{2.484105in}{0.805979in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.853488in}% \pgfsys@transformshift{3.047741in}{0.826172in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.734159in}% \pgfsys@transformshift{3.611377in}{0.716665in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.670047in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.493216in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.629022in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.455568in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.572738in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.403917in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.513232in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.349308in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.446685in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.288239in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.505699in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.670047in}% \pgfsys@transformshift{0.793196in}{2.493216in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.629022in}% \pgfsys@transformshift{1.356832in}{2.455568in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.572738in}% \pgfsys@transformshift{1.920468in}{2.403917in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.513232in}% \pgfsys@transformshift{2.484105in}{2.349308in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.446685in}% \pgfsys@transformshift{3.047741in}{2.288239in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.505699in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.610645in}% \pgfsys@transformshift{0.652287in}{0.603140in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.557883in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.550378in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.087533in}% \pgfsys@transformshift{0.652287in}{1.039832in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.034771in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.987071in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.564421in}% \pgfsys@transformshift{0.652287in}{1.476525in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.511660in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.423764in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.041309in}% \pgfsys@transformshift{0.652287in}{1.913218in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.988548in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.860456in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.518198in}% \pgfsys@transformshift{0.652287in}{2.349911in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.465436in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.297149in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.716624in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.700186in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.718801in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.702180in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.734241in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.716319in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.747973in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.728893in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.749267in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.730078in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.725609in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.708414in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.716624in}% \pgfsys@transformshift{0.793196in}{0.700186in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.718801in}% \pgfsys@transformshift{1.356832in}{0.702180in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.734241in}% \pgfsys@transformshift{1.920468in}{0.716319in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.747973in}% \pgfsys@transformshift{2.484105in}{0.728893in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.749267in}% \pgfsys@transformshift{3.047741in}{0.730078in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.725609in}% \pgfsys@transformshift{3.611377in}{0.708414in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.632049in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622740in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.642018in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.631868in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.666120in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.653939in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.686996in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.673056in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.716917in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.700454in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.615880in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.632049in}% \pgfsys@transformshift{0.793196in}{0.622740in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.642018in}% \pgfsys@transformshift{1.356832in}{0.631868in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.666120in}% \pgfsys@transformshift{1.920468in}{0.653939in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.686996in}% \pgfsys@transformshift{2.484105in}{0.673056in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.716917in}% \pgfsys@transformshift{3.047741in}{0.700454in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.615880in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.797155in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.773930in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.804734in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.780870in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.813609in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.788997in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.827126in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.801374in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.847587in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.820110in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.785186in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.762970in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.797155in}% \pgfsys@transformshift{0.793196in}{0.773930in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.804734in}% \pgfsys@transformshift{1.356832in}{0.780870in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.813609in}% \pgfsys@transformshift{1.920468in}{0.788997in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.827126in}% \pgfsys@transformshift{2.484105in}{0.801374in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.847587in}% \pgfsys@transformshift{3.047741in}{0.820110in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.785186in}% \pgfsys@transformshift{3.611377in}{0.762970in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.672650in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.491345in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.652884in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.473245in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.604396in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.428843in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.556079in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.384599in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.504107in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.337007in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.501416in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.672650in}% \pgfsys@transformshift{0.793196in}{2.491345in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.652884in}% \pgfsys@transformshift{1.356832in}{2.473245in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.604396in}% \pgfsys@transformshift{1.920468in}{2.428843in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.556079in}% \pgfsys@transformshift{2.484105in}{2.384599in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.504107in}% \pgfsys@transformshift{3.047741in}{2.337007in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.501416in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.602170in}% \pgfsys@transformshift{0.652287in}{0.595229in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.549409in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.542467in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.081765in}% \pgfsys@transformshift{0.652287in}{1.033504in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.029004in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.980742in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.561360in}% \pgfsys@transformshift{0.652287in}{1.471779in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.508599in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.419017in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.040955in}% \pgfsys@transformshift{0.652287in}{1.910054in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.988193in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.857292in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.520550in}% \pgfsys@transformshift{0.652287in}{2.348328in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.467788in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.295567in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.738185in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.719525in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.719256in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.702227in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.699917in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.684554in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.685854in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.671702in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.684536in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.670498in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.767185in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.746026in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -386,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.738185in}% \pgfsys@transformshift{0.793196in}{0.719525in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.719256in}% \pgfsys@transformshift{1.356832in}{0.702227in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.699917in}% \pgfsys@transformshift{1.920468in}{0.684554in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.685854in}% \pgfsys@transformshift{2.484105in}{0.671702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.684536in}% \pgfsys@transformshift{3.047741in}{0.670498in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.767185in}% \pgfsys@transformshift{3.611377in}{0.746026in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -419,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625868in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.616885in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.632572in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.623012in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.655846in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.644280in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.718832in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.701840in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.756997in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.736717in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.615688in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -452,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625868in}% \pgfsys@transformshift{0.793196in}{0.616885in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.632572in}% \pgfsys@transformshift{1.356832in}{0.623012in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.655846in}% \pgfsys@transformshift{1.920468in}{0.644280in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.718832in}% \pgfsys@transformshift{2.484105in}{0.701840in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.756997in}% \pgfsys@transformshift{3.047741in}{0.736717in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.615688in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -485,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.747679in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.728201in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.758705in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.738277in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.784102in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.761486in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.790244in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.767099in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.791539in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.768282in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.759642in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.739133in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.747679in}% \pgfsys@transformshift{0.793196in}{0.728201in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.758705in}% \pgfsys@transformshift{1.356832in}{0.738277in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.784102in}% \pgfsys@transformshift{1.920468in}{0.761486in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.790244in}% \pgfsys@transformshift{2.484105in}{0.767099in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.791539in}% \pgfsys@transformshift{3.047741in}{0.768282in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.759642in}% \pgfsys@transformshift{3.611377in}{0.739133in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -551,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.497375in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.683574in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.497307in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.653195in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.469545in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.601657in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.422448in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.564866in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.388827in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.643340in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.460539in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -584,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.497375in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.683574in}% \pgfsys@transformshift{1.356832in}{2.497307in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.653195in}% \pgfsys@transformshift{1.920468in}{2.469545in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.601657in}% \pgfsys@transformshift{2.484105in}{2.422448in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.564866in}% \pgfsys@transformshift{3.047741in}{2.388827in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.643340in}% \pgfsys@transformshift{3.611377in}{2.460539in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -615,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -626,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -637,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -669,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -688,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -715,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -723,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -732,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -759,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -767,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -776,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -803,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -811,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -820,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -847,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -855,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.521603in}% \pgfsys@transformshift{1.356832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.268467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}% \pgftext[x=1.356832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-3}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.521603in}% \pgfsys@transformshift{1.920468in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.832103in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}% \pgftext[x=1.920468in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.521603in}% \pgfsys@transformshift{2.484105in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.395739in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}% \pgftext[x=2.484105in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6-7}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.521603in}% \pgfsys@transformshift{3.047741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.959376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}% \pgftext[x=3.047741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8-9}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,13 +205,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=14}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine concurrency}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.581941in}% \pgfsys@transformshift{0.652287in}{0.569155in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.529180in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.516394in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.144679in}% \pgfsys@transformshift{0.652287in}{1.012645in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.091918in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.959883in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.707417in}% \pgfsys@transformshift{0.652287in}{1.456134in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.654656in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.403373in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.270156in}% \pgfsys@transformshift{0.652287in}{1.899624in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,57 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.217394in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.846863in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.343114in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=2.290352in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +370,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,16 +378,16 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.643743in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.617860in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.637677in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.613080in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.632318in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.608856in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.637940in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.613288in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.638704in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.613890in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.685376in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.650672in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -361,32 +411,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.643743in}% \pgfsys@transformshift{0.793196in}{0.617860in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.637677in}% \pgfsys@transformshift{1.356832in}{0.613080in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.632318in}% \pgfsys@transformshift{1.920468in}{0.608856in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.637940in}% \pgfsys@transformshift{2.484105in}{0.613288in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.638704in}% \pgfsys@transformshift{3.047741in}{0.613890in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.685376in}% \pgfsys@transformshift{3.611377in}{0.650672in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -394,16 +444,16 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625891in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.603792in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{0.634836in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{0.610841in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{0.647074in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{0.620486in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{0.652079in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{0.624430in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{0.647713in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{0.620990in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.602741in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -427,32 +477,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625891in}% \pgfsys@transformshift{0.793196in}{0.603792in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{0.634836in}% \pgfsys@transformshift{1.356832in}{0.610841in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{0.647074in}% \pgfsys@transformshift{1.920468in}{0.620486in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{0.652079in}% \pgfsys@transformshift{2.484105in}{0.624430in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{0.647713in}% \pgfsys@transformshift{3.047741in}{0.620990in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.602741in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -460,16 +510,16 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.186758in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.045806in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{1.170327in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{1.032857in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{1.171273in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{1.033603in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{1.264028in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{1.106703in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{1.266948in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{1.109004in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.310797in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.143561in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -493,32 +543,32 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.186758in}% \pgfsys@transformshift{0.793196in}{1.045806in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{1.170327in}% \pgfsys@transformshift{1.356832in}{1.032857in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{1.171273in}% \pgfsys@transformshift{1.920468in}{1.033603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{1.264028in}% \pgfsys@transformshift{2.484105in}{1.106703in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{1.266948in}% \pgfsys@transformshift{3.047741in}{1.109004in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.310797in}% \pgfsys@transformshift{3.611377in}{1.143561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -526,16 +576,16 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.669173in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.214087in}}%
\pgfpathlineto{\pgfqpoint{1.268467in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.356832in}{2.225495in}}%
\pgfpathlineto{\pgfqpoint{1.832103in}{2.676706in}}% \pgfpathlineto{\pgfqpoint{1.920468in}{2.220024in}}%
\pgfpathlineto{\pgfqpoint{2.395739in}{2.572235in}}% \pgfpathlineto{\pgfqpoint{2.484105in}{2.137690in}}%
\pgfpathlineto{\pgfqpoint{2.959376in}{2.571996in}}% \pgfpathlineto{\pgfqpoint{3.047741in}{2.137503in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.498593in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.079654in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -559,27 +609,27 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.669173in}% \pgfsys@transformshift{0.793196in}{2.214087in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.268467in}{2.683649in}% \pgfsys@transformshift{1.356832in}{2.225495in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.832103in}{2.676706in}% \pgfsys@transformshift{1.920468in}{2.220024in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.395739in}{2.572235in}% \pgfsys@transformshift{2.484105in}{2.137690in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.959376in}{2.571996in}% \pgfsys@transformshift{3.047741in}{2.137503in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.498593in}% \pgfsys@transformshift{3.611377in}{2.079654in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -590,8 +640,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -601,8 +651,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -612,8 +662,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -623,15 +673,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -644,15 +694,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -663,8 +713,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -690,7 +740,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -698,7 +748,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -707,8 +757,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -734,7 +784,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -742,7 +792,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -751,8 +801,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -778,7 +828,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -786,7 +836,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -795,8 +845,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -822,7 +872,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -830,7 +880,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0-1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0-1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 5-8}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 5-8}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,13 +155,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 9-11}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 9-11}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2011 priority}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2011 priority}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -178,7 +178,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.608916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -186,7 +186,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.556155in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.138119in}% \pgfsys@transformshift{0.652287in}{1.044454in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.085358in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.991692in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.651681in}% \pgfsys@transformshift{0.652287in}{1.479991in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.598919in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.427230in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.165242in}% \pgfsys@transformshift{0.652287in}{1.915529in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.112481in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.862767in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.678804in}% \pgfsys@transformshift{0.652287in}{2.351066in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.626042in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.298304in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -295,7 +320,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -303,14 +328,14 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.068986in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.985824in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.608916in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.608916in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.608916in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -334,24 +359,24 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.068986in}% \pgfsys@transformshift{0.793196in}{0.985824in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.608916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624558in}% \pgfsys@transformshift{2.671983in}{0.608916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.608916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -359,14 +384,14 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.562795in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.404610in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.724279in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.693487in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.809864in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.766069in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.355175in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -390,24 +415,24 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.562795in}% \pgfsys@transformshift{0.793196in}{1.404610in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.724279in}% \pgfsys@transformshift{1.732590in}{0.693487in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.809864in}% \pgfsys@transformshift{2.671983in}{0.766069in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.355175in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -415,14 +440,14 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.118367in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.027702in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.148091in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.052911in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.286364in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.170176in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.036376in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.958168in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -446,24 +471,24 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.118367in}% \pgfsys@transformshift{0.793196in}{1.027702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.148091in}% \pgfsys@transformshift{1.732590in}{1.052911in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.286364in}% \pgfsys@transformshift{2.671983in}{1.170176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.036376in}% \pgfsys@transformshift{3.611377in}{0.958168in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -471,14 +496,14 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.315891in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.195217in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.569111in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.258039in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.345254in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.068191in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.721456in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.691093in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -502,19 +527,19 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.315891in}% \pgfsys@transformshift{0.793196in}{1.195217in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.569111in}% \pgfsys@transformshift{1.732590in}{2.258039in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.345254in}% \pgfsys@transformshift{2.671983in}{2.068191in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.721456in}% \pgfsys@transformshift{3.611377in}{0.691093in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -525,8 +550,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -536,8 +561,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -547,8 +572,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -558,15 +583,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -579,15 +604,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -598,8 +623,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -625,7 +650,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -633,7 +658,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -642,8 +667,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -669,7 +694,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -677,7 +702,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -686,8 +711,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -713,7 +738,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -721,7 +746,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -730,8 +755,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -757,7 +782,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -765,7 +790,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Free}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Free}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Best effort}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Best effort}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Mid}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Mid}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Production}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Production}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Monitoring}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Monitoring}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Tier}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Tier}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.623695in}% \pgfsys@transformshift{0.652287in}{0.621426in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.570934in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.568664in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.066576in}% \pgfsys@transformshift{0.652287in}{1.054461in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.013814in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.001700in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.509457in}% \pgfsys@transformshift{0.652287in}{1.487497in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.456695in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.434735in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.952337in}% \pgfsys@transformshift{0.652287in}{1.920532in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.899576in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867771in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.395218in}% \pgfsys@transformshift{0.652287in}{2.353568in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.342456in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300806in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.946150in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.936713in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.627484in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.625130in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.626957in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.624615in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.630487in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.628067in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.755376in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.750179in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.946150in}% \pgfsys@transformshift{0.793196in}{0.936713in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.627484in}% \pgfsys@transformshift{1.497741in}{0.625130in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.626957in}% \pgfsys@transformshift{2.202287in}{0.624615in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.630487in}% \pgfsys@transformshift{2.906832in}{0.628067in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.755376in}% \pgfsys@transformshift{3.611377in}{0.750179in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622269in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.639206in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.636592in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624741in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.622449in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.630569in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.628146in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.630647in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.628223in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.622269in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.639206in}% \pgfsys@transformshift{1.497741in}{0.636592in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624741in}% \pgfsys@transformshift{2.202287in}{0.622449in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.630569in}% \pgfsys@transformshift{2.906832in}{0.628146in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.630647in}% \pgfsys@transformshift{3.611377in}{0.628223in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.631070in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.628637in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.744811in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.717619in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.948085in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.938604in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{1.226142in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{1.210480in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.639513in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.636892in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.631070in}% \pgfsys@transformshift{0.793196in}{0.628637in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.744811in}% \pgfsys@transformshift{1.497741in}{1.717619in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.948085in}% \pgfsys@transformshift{2.202287in}{0.938604in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{1.226142in}% \pgfsys@transformshift{2.906832in}{1.210480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.639513in}% \pgfsys@transformshift{3.611377in}{0.636892in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.507406in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.463263in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.697684in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.671540in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.509401in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.465213in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.221987in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.184188in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.635587in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.507406in}% \pgfsys@transformshift{0.793196in}{2.463263in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.697684in}% \pgfsys@transformshift{1.497741in}{1.671540in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.509401in}% \pgfsys@transformshift{2.202287in}{2.465213in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.221987in}% \pgfsys@transformshift{2.906832in}{2.184188in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.635587in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.567414in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.077105in}% \pgfsys@transformshift{0.652287in}{1.053461in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.024344in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.000700in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.529653in}% \pgfsys@transformshift{0.652287in}{1.486747in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.476891in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.433985in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.982200in}% \pgfsys@transformshift{0.652287in}{1.920032in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.929439in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867271in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.434748in}% \pgfsys@transformshift{0.652287in}{2.353318in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.381986in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300556in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.620176in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624558in}% \pgfsys@transformshift{2.671983in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624558in}% \pgfsys@transformshift{3.141680in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.646961in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.641626in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.691768in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.684525in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.760322in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.750161in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.646961in}% \pgfsys@transformshift{2.671983in}{0.641626in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.691768in}% \pgfsys@transformshift{3.141680in}{0.684525in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.760322in}% \pgfsys@transformshift{3.611377in}{0.750161in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.850832in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.836819in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.620162in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.573404in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.733299in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.681725in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.755927in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.703390in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.811935in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.757014in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.968758in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.907162in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.591625in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.850832in}% \pgfsys@transformshift{0.793196in}{0.836819in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.620162in}% \pgfsys@transformshift{1.262893in}{1.573404in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.733299in}% \pgfsys@transformshift{1.732590in}{1.681725in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.755927in}% \pgfsys@transformshift{2.202287in}{1.703390in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.811935in}% \pgfsys@transformshift{2.671983in}{1.757014in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.968758in}% \pgfsys@transformshift{3.141680in}{1.907162in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.591625in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.661021in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.569961in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.891691in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.833375in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.778554in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.725054in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.755927in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.703390in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.677515in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.628315in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.475885in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.435267in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.692440in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.685169in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.661021in}% \pgfsys@transformshift{0.793196in}{2.569961in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.891691in}% \pgfsys@transformshift{1.262893in}{1.833375in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.778554in}% \pgfsys@transformshift{1.732590in}{1.725054in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.755927in}% \pgfsys@transformshift{2.202287in}{1.703390in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.677515in}% \pgfsys@transformshift{2.671983in}{1.628315in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.475885in}% \pgfsys@transformshift{3.141680in}{1.435267in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.692440in}% \pgfsys@transformshift{3.611377in}{0.685169in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.622702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.569940in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.065285in}% \pgfsys@transformshift{0.652287in}{1.055482in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.012523in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.002720in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.506011in}% \pgfsys@transformshift{0.652287in}{1.488262in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.453250in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.435501in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.946738in}% \pgfsys@transformshift{0.652287in}{1.921043in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.893976in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868281in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.387465in}% \pgfsys@transformshift{0.652287in}{2.353823in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.334703in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301061in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624559in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622703in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.622702in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.622702in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624562in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.622706in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624564in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.622708in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624670in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.622812in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624665in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.622807in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624559in}% \pgfsys@transformshift{0.793196in}{0.622703in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.622702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.622702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624562in}% \pgfsys@transformshift{2.202287in}{0.622706in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624564in}% \pgfsys@transformshift{2.671983in}{0.622708in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624670in}% \pgfsys@transformshift{3.141680in}{0.622812in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624665in}% \pgfsys@transformshift{3.611377in}{0.622807in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.629828in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.627877in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.632486in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.630487in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.634002in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.631976in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.632948in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.630941in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.689350in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.686325in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.831774in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.826181in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.732449in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.728647in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.629828in}% \pgfsys@transformshift{0.793196in}{0.627877in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.632486in}% \pgfsys@transformshift{1.262893in}{0.630487in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.634002in}% \pgfsys@transformshift{1.732590in}{0.631976in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.632948in}% \pgfsys@transformshift{2.202287in}{0.630941in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.689350in}% \pgfsys@transformshift{2.671983in}{0.686325in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.831774in}% \pgfsys@transformshift{3.141680in}{0.826181in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.732449in}% \pgfsys@transformshift{3.611377in}{0.728647in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.525572in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.507470in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.761172in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.756853in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.004889in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.996176in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.142194in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.131004in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.168842in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.157172in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.030313in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.021141in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.864190in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.858013in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.525572in}% \pgfsys@transformshift{0.793196in}{1.507470in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.761172in}% \pgfsys@transformshift{1.262893in}{0.756853in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.004889in}% \pgfsys@transformshift{1.732590in}{0.996176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.142194in}% \pgfsys@transformshift{2.202287in}{1.131004in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.168842in}% \pgfsys@transformshift{2.671983in}{1.157172in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.030313in}% \pgfsys@transformshift{3.141680in}{1.021141in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.864190in}% \pgfsys@transformshift{3.611377in}{0.858013in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.921906in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.896658in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.644667in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.438416in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.403855in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.302161in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.270057in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.219109in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.188503in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.215108in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.184574in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.480562in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.445241in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.921906in}% \pgfsys@transformshift{0.793196in}{1.896658in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.683649in}% \pgfsys@transformshift{1.262893in}{2.644667in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.438416in}% \pgfsys@transformshift{1.732590in}{2.403855in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.302161in}% \pgfsys@transformshift{2.202287in}{2.270057in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.219109in}% \pgfsys@transformshift{2.671983in}{2.188503in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.215108in}% \pgfsys@transformshift{3.141680in}{2.184574in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.480562in}% \pgfsys@transformshift{3.611377in}{2.445241in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624495in}% \pgfsys@transformshift{0.652287in}{0.600019in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571733in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.547257in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.911404in}% \pgfsys@transformshift{0.652287in}{1.037336in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=0.858643in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10}% \pgftext[x=0.378334in, y=0.984574in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.198313in}% \pgfsys@transformshift{0.652287in}{1.474653in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.145552in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.421891in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.485222in}% \pgfsys@transformshift{0.652287in}{1.911970in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.432461in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 30}% \pgftext[x=0.378334in, y=1.859208in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.772132in}% \pgfsys@transformshift{0.652287in}{2.349286in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.719370in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=2.296525in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -378,7 +378,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.059041in}% \pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -386,57 +386,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.006279in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 50}% \pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.345950in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.293189in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.632859in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.580098in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 70}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -445,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -453,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624755in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.600217in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624769in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.600228in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624770in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.600228in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624813in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.600261in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.625128in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.600501in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624812in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.600261in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.600067in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -487,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624755in}% \pgfsys@transformshift{0.793196in}{0.600217in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624769in}% \pgfsys@transformshift{1.262893in}{0.600228in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624770in}% \pgfsys@transformshift{1.732590in}{0.600228in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624813in}% \pgfsys@transformshift{2.202287in}{0.600261in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.625128in}% \pgfsys@transformshift{2.671983in}{0.600501in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624812in}% \pgfsys@transformshift{3.141680in}{0.600261in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.600067in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -524,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.647675in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.617685in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.670384in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.634991in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.662291in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.628824in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.660608in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.627542in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.715998in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.669755in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.945707in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.844820in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.770069in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.710963in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -558,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.647675in}% \pgfsys@transformshift{0.793196in}{0.617685in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.670384in}% \pgfsys@transformshift{1.262893in}{0.634991in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.662291in}% \pgfsys@transformshift{1.732590in}{0.628824in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.660608in}% \pgfsys@transformshift{2.202287in}{0.627542in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.715998in}% \pgfsys@transformshift{2.671983in}{0.669755in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.945707in}% \pgfsys@transformshift{3.141680in}{0.844820in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.770069in}% \pgfsys@transformshift{3.611377in}{0.710963in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -595,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.802912in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.498111in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.957460in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.615895in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.980663in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.633578in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.277389in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.859718in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.854641in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.537535in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.532042in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.291676in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.288796in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.106294in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -629,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.802912in}% \pgfsys@transformshift{0.793196in}{1.498111in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.957460in}% \pgfsys@transformshift{1.262893in}{1.615895in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.980663in}% \pgfsys@transformshift{1.732590in}{1.633578in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.277389in}% \pgfsys@transformshift{2.202287in}{1.859718in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.854641in}% \pgfsys@transformshift{2.671983in}{1.537535in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.532042in}% \pgfsys@transformshift{3.141680in}{1.291676in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.288796in}% \pgfsys@transformshift{3.611377in}{1.106294in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -666,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.291730in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.870647in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.114459in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.735546in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.099347in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.724029in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.804262in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.499139in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.171305in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.778869in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.264511in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.849903in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.169336in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -700,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.291730in}% \pgfsys@transformshift{0.793196in}{1.870647in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.114459in}% \pgfsys@transformshift{1.262893in}{1.735546in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.099347in}% \pgfsys@transformshift{1.732590in}{1.724029in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.804262in}% \pgfsys@transformshift{2.202287in}{1.499139in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.171305in}% \pgfsys@transformshift{2.671983in}{1.778869in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.264511in}% \pgfsys@transformshift{3.141680in}{1.849903in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.169336in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -735,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -746,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -757,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -768,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -789,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -808,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -835,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -843,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -852,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -879,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -887,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -896,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -923,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -931,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -940,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -967,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -975,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.597205in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.544444in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.922710in}% \pgfsys@transformshift{0.652287in}{1.035085in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=0.869949in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10}% \pgftext[x=0.378334in, y=0.982323in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.220863in}% \pgfsys@transformshift{0.652287in}{1.472964in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.168101in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.420203in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.519015in}% \pgfsys@transformshift{0.652287in}{1.910844in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.466254in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 30}% \pgftext[x=0.378334in, y=1.858083in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.817168in}% \pgfsys@transformshift{0.652287in}{2.348724in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.764406in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=2.295962in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -378,7 +378,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.115320in}% \pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -386,57 +386,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.062559in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 50}% \pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.413473in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.360711in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.711625in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.658864in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 70}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -445,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -453,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624562in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.597208in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.597205in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.597205in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.597205in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624573in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.597216in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624574in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.597217in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.597205in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -487,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624562in}% \pgfsys@transformshift{0.793196in}{0.597208in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.597205in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.597205in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.597205in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624573in}% \pgfsys@transformshift{2.671983in}{0.597216in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624574in}% \pgfsys@transformshift{3.141680in}{0.597217in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.597205in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -524,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.640330in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.608787in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.669874in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.630481in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.651449in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.616952in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.648872in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.615059in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.811059in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.734157in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.864979in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.773751in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.800296in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.726254in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -558,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.640330in}% \pgfsys@transformshift{0.793196in}{0.608787in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.669874in}% \pgfsys@transformshift{1.262893in}{0.630481in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.651449in}% \pgfsys@transformshift{1.732590in}{0.616952in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.648872in}% \pgfsys@transformshift{2.202287in}{0.615059in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.811059in}% \pgfsys@transformshift{2.671983in}{0.734157in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.864979in}% \pgfsys@transformshift{3.141680in}{0.773751in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.800296in}% \pgfsys@transformshift{3.611377in}{0.726254in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -595,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.909323in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.540636in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.891651in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.527659in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.270791in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.806070in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.330281in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.849754in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.110146in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.688105in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.306554in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.098010in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.616382in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.325523in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -629,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.909323in}% \pgfsys@transformshift{0.793196in}{1.540636in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.891651in}% \pgfsys@transformshift{1.262893in}{1.527659in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.270791in}% \pgfsys@transformshift{1.732590in}{1.806070in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.330281in}% \pgfsys@transformshift{2.202287in}{1.849754in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.110146in}% \pgfsys@transformshift{2.671983in}{1.688105in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.306554in}% \pgfsys@transformshift{3.141680in}{1.098010in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.616382in}% \pgfsys@transformshift{3.611377in}{1.325523in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -666,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.305542in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.831588in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.293674in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.822873in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.932959in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.557992in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.876046in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.516200in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.933979in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.558741in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.109240in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.438520in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.929237in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -700,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.305542in}% \pgfsys@transformshift{0.793196in}{1.831588in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.293674in}% \pgfsys@transformshift{1.262893in}{1.822873in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.932959in}% \pgfsys@transformshift{1.732590in}{1.557992in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.876046in}% \pgfsys@transformshift{2.202287in}{1.516200in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.933979in}% \pgfsys@transformshift{2.671983in}{1.558741in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.683649in}% \pgfsys@transformshift{3.141680in}{2.109240in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.438520in}% \pgfsys@transformshift{3.611377in}{1.929237in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -735,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -746,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -757,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -768,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -789,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -808,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -835,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -843,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -852,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -879,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -887,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -896,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -923,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -931,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -940,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -967,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -975,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.602388in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.549627in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.181281in}% \pgfsys@transformshift{0.652287in}{1.039231in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.128520in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.986470in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.738004in}% \pgfsys@transformshift{0.652287in}{1.476074in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.685243in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.423313in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.294727in}% \pgfsys@transformshift{0.652287in}{1.912917in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,57 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.241966in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.860156in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.349760in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=2.296999in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625471in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.603105in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.625201in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.602893in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.625228in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.602914in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.625102in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.602815in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.626341in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.603788in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.625692in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.603278in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.602388in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -387,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625471in}% \pgfsys@transformshift{0.793196in}{0.603105in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.625201in}% \pgfsys@transformshift{1.262893in}{0.602893in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.625228in}% \pgfsys@transformshift{1.732590in}{0.602914in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.625102in}% \pgfsys@transformshift{2.202287in}{0.602815in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.626341in}% \pgfsys@transformshift{2.671983in}{0.603788in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.625692in}% \pgfsys@transformshift{3.141680in}{0.603278in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.602388in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -424,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.660635in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.630697in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.651440in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.623482in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.657966in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.628603in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.655369in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.626565in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.709632in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.669143in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.065210in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.948154in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.743227in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.695504in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -458,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.660635in}% \pgfsys@transformshift{0.793196in}{0.630697in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.651440in}% \pgfsys@transformshift{1.262893in}{0.623482in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.657966in}% \pgfsys@transformshift{1.732590in}{0.628603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.655369in}% \pgfsys@transformshift{2.202287in}{0.626565in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.709632in}% \pgfsys@transformshift{2.671983in}{0.669143in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.065210in}% \pgfsys@transformshift{3.141680in}{0.948154in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.743227in}% \pgfsys@transformshift{3.611377in}{0.695504in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -495,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.404648in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.999168in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.218092in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.117827in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.774109in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.635862in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.180595in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.613958in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.163407in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.012342in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.691339in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.434238in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.237718in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -529,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.404648in}% \pgfsys@transformshift{0.793196in}{1.999168in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.683649in}% \pgfsys@transformshift{1.262893in}{2.218092in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.117827in}% \pgfsys@transformshift{1.732590in}{1.774109in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.635862in}% \pgfsys@transformshift{2.202287in}{2.180595in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.613958in}% \pgfsys@transformshift{2.671983in}{2.163407in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.012342in}% \pgfsys@transformshift{3.141680in}{1.691339in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.434238in}% \pgfsys@transformshift{3.611377in}{1.237718in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -566,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.591094in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.360798in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.321558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.149302in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.880828in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.588143in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.365515in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.183794in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.331917in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.157431in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.578603in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.350997in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.479825in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.058157in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -600,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.591094in}% \pgfsys@transformshift{0.793196in}{1.360798in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.321558in}% \pgfsys@transformshift{1.262893in}{1.149302in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.880828in}% \pgfsys@transformshift{1.732590in}{1.588143in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.365515in}% \pgfsys@transformshift{2.202287in}{1.183794in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.331917in}% \pgfsys@transformshift{2.671983in}{1.157431in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.578603in}% \pgfsys@transformshift{3.141680in}{1.350997in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.479825in}% \pgfsys@transformshift{3.611377in}{2.058157in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -635,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -646,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -657,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -668,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -689,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -708,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -735,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -743,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -752,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -779,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -787,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -796,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -823,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -831,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -840,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -867,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -875,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.604112in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.551350in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.169225in}% \pgfsys@transformshift{0.652287in}{1.040610in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.116463in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.987848in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.713891in}% \pgfsys@transformshift{0.652287in}{1.477108in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.661130in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.424347in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.258558in}% \pgfsys@transformshift{0.652287in}{1.913607in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,57 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.205797in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.860845in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.350105in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=2.297343in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -345,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -353,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624568in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.604119in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.604112in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.604112in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624566in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.604118in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624610in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.604153in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624612in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.604155in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624625in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.604165in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -387,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624568in}% \pgfsys@transformshift{0.793196in}{0.604119in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.604112in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.604112in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624566in}% \pgfsys@transformshift{2.202287in}{0.604118in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624610in}% \pgfsys@transformshift{2.671983in}{0.604153in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624612in}% \pgfsys@transformshift{3.141680in}{0.604155in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624625in}% \pgfsys@transformshift{3.611377in}{0.604165in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -424,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.650354in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.624784in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.701494in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.665769in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.676479in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.645722in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.672886in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.642842in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.679086in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.647810in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.790562in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.737148in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.709642in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.672299in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -458,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.650354in}% \pgfsys@transformshift{0.793196in}{0.624784in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.701494in}% \pgfsys@transformshift{1.262893in}{0.665769in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.676479in}% \pgfsys@transformshift{1.732590in}{0.645722in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.672886in}% \pgfsys@transformshift{2.202287in}{0.642842in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.679086in}% \pgfsys@transformshift{2.671983in}{0.647810in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.790562in}% \pgfsys@transformshift{3.141680in}{0.737148in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.709642in}% \pgfsys@transformshift{3.611377in}{0.672299in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -495,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.940870in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.659010in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.286928in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.936342in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.174528in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.846265in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.799498in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.545714in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.410310in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.233817in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.407591in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.231638in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.203650in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.068198in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -529,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.940870in}% \pgfsys@transformshift{0.793196in}{1.659010in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.286928in}% \pgfsys@transformshift{1.262893in}{1.936342in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.174528in}% \pgfsys@transformshift{1.732590in}{1.846265in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.799498in}% \pgfsys@transformshift{2.202287in}{1.545714in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.410310in}% \pgfsys@transformshift{2.671983in}{1.233817in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.407591in}% \pgfsys@transformshift{3.141680in}{1.231638in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.203650in}% \pgfsys@transformshift{3.611377in}{1.068198in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -566,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.005774in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.711024in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.608585in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.392715in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.746000in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.502840in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.124614in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.806264in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.507559in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.113157in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.398801in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.025998in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.254276in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -600,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.005774in}% \pgfsys@transformshift{0.793196in}{1.711024in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.608585in}% \pgfsys@transformshift{1.262893in}{1.392715in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.746000in}% \pgfsys@transformshift{1.732590in}{1.502840in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.124614in}% \pgfsys@transformshift{2.202287in}{1.806264in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.507559in}% \pgfsys@transformshift{2.671983in}{2.113157in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.398801in}% \pgfsys@transformshift{3.141680in}{2.025998in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.254276in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -635,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -646,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -657,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -668,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -689,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -708,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -735,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -743,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -752,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -779,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -787,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -796,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -823,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -831,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -840,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -867,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -875,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.615626in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.562864in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.100003in}% \pgfsys@transformshift{0.652287in}{1.049821in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.047241in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.997060in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.575447in}% \pgfsys@transformshift{0.652287in}{1.484017in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.522686in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.431255in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.050892in}% \pgfsys@transformshift{0.652287in}{1.918212in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.998130in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.865451in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.526336in}% \pgfsys@transformshift{0.652287in}{2.352408in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.473575in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.299646in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.625139in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.616156in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.625647in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.616620in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.625326in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.616327in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.625400in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.616395in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624577in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.615644in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.615626in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624944in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.615979in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.625139in}% \pgfsys@transformshift{0.793196in}{0.616156in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.625647in}% \pgfsys@transformshift{1.262893in}{0.616620in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.625326in}% \pgfsys@transformshift{1.732590in}{0.616327in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.625400in}% \pgfsys@transformshift{2.202287in}{0.616395in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624577in}% \pgfsys@transformshift{2.671983in}{0.615644in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624558in}% \pgfsys@transformshift{3.141680in}{0.615626in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624944in}% \pgfsys@transformshift{3.611377in}{0.615979in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.681665in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.667779in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.710397in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.694018in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.717864in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.700836in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.683021in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.669016in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.725202in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.707538in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.889429in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.857517in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.702823in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.687100in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.681665in}% \pgfsys@transformshift{0.793196in}{0.667779in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.710397in}% \pgfsys@transformshift{1.262893in}{0.694018in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.717864in}% \pgfsys@transformshift{1.732590in}{0.700836in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.683021in}% \pgfsys@transformshift{2.202287in}{0.669016in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.725202in}% \pgfsys@transformshift{2.671983in}{0.707538in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.889429in}% \pgfsys@transformshift{3.141680in}{0.857517in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.702823in}% \pgfsys@transformshift{3.611377in}{0.687100in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.319000in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.163060in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.747202in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.640870in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.001529in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.873132in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.845585in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.730718in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.130145in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.077349in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.585407in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.493113in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.864039in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.834329in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.319000in}% \pgfsys@transformshift{0.793196in}{2.163060in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.747202in}% \pgfsys@transformshift{1.262893in}{1.640870in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.001529in}% \pgfsys@transformshift{1.732590in}{1.873132in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.845585in}% \pgfsys@transformshift{2.202287in}{1.730718in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.130145in}% \pgfsys@transformshift{2.671983in}{1.077349in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.585407in}% \pgfsys@transformshift{3.141680in}{1.493113in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.864039in}% \pgfsys@transformshift{3.611377in}{0.834329in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.249650in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.186486in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.792208in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.681972in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.530737in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.443185in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.721449in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.617351in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.395530in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.232950in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.776060in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.667225in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.496072in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.249650in}% \pgfsys@transformshift{0.793196in}{1.186486in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.792208in}% \pgfsys@transformshift{1.262893in}{1.681972in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.530737in}% \pgfsys@transformshift{1.732590in}{1.443185in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.721449in}% \pgfsys@transformshift{2.202287in}{1.617351in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.395530in}% \pgfsys@transformshift{2.671983in}{2.232950in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.776060in}% \pgfsys@transformshift{3.141680in}{1.667225in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.496072in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster E}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster E}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.607796in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.555034in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.145062in}% \pgfsys@transformshift{0.652287in}{1.043557in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.092301in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.990796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.665567in}% \pgfsys@transformshift{0.652287in}{1.479319in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.612805in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.426557in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.186071in}% \pgfsys@transformshift{0.652287in}{1.915080in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.133309in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.862319in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.706575in}% \pgfsys@transformshift{0.652287in}{2.350842in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.653814in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.298080in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624580in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.607814in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624572in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.607808in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624571in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.607807in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624570in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.607806in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624596in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.607828in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624652in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.607875in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.607796in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624580in}% \pgfsys@transformshift{0.793196in}{0.607814in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624572in}% \pgfsys@transformshift{1.262893in}{0.607808in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624571in}% \pgfsys@transformshift{1.732590in}{0.607807in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624570in}% \pgfsys@transformshift{2.202287in}{0.607806in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624596in}% \pgfsys@transformshift{2.671983in}{0.607828in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624652in}% \pgfsys@transformshift{3.141680in}{0.607875in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.607796in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.761266in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.722247in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.870203in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.813448in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.716974in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.685166in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.718713in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.686622in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.714044in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.682713in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.326586in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.195528in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.966311in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.893909in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.761266in}% \pgfsys@transformshift{0.793196in}{0.722247in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.870203in}% \pgfsys@transformshift{1.262893in}{0.813448in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.716974in}% \pgfsys@transformshift{1.732590in}{0.685166in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.718713in}% \pgfsys@transformshift{2.202287in}{0.686622in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.714044in}% \pgfsys@transformshift{2.671983in}{0.682713in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.326586in}% \pgfsys@transformshift{3.141680in}{1.195528in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.966311in}% \pgfsys@transformshift{3.611377in}{0.893909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.322499in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.029297in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.331491in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.036825in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.089517in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.834246in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.072894in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.820330in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.745114in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.545916in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.054930in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.968100in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.826236in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.776639in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.322499in}% \pgfsys@transformshift{0.793196in}{2.029297in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.331491in}% \pgfsys@transformshift{1.262893in}{2.036825in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.089517in}% \pgfsys@transformshift{1.732590in}{1.834246in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.072894in}% \pgfsys@transformshift{2.202287in}{1.820330in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.745114in}% \pgfsys@transformshift{2.671983in}{1.545916in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.054930in}% \pgfsys@transformshift{3.141680in}{0.968100in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.826236in}% \pgfsys@transformshift{3.611377in}{0.776639in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.392408in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.250633in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.274487in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.151910in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.669691in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.482772in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.684576in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.495233in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.016999in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.773535in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.094584in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.838489in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.331648in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.392408in}% \pgfsys@transformshift{0.793196in}{1.250633in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.274487in}% \pgfsys@transformshift{1.262893in}{1.151910in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.669691in}% \pgfsys@transformshift{1.732590in}{1.482772in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.684576in}% \pgfsys@transformshift{2.202287in}{1.495233in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.016999in}% \pgfsys@transformshift{2.671983in}{1.773535in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.094584in}% \pgfsys@transformshift{3.141680in}{1.838489in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.331648in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.560881in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.110690in}% \pgfsys@transformshift{0.652287in}{1.048235in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.057928in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.995473in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.596821in}% \pgfsys@transformshift{0.652287in}{1.482827in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.544060in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.430065in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.082953in}% \pgfsys@transformshift{0.652287in}{1.917419in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.030191in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.864658in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.569085in}% \pgfsys@transformshift{0.652287in}{2.352011in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.516323in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.299250in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.613643in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.613643in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624594in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.613675in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.613643in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624583in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.613666in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.613643in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.613643in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624594in}% \pgfsys@transformshift{1.732590in}{0.613675in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624583in}% \pgfsys@transformshift{2.671983in}{0.613666in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624558in}% \pgfsys@transformshift{3.141680in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.613643in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.629161in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.617758in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.641409in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.628707in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.660753in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.646000in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.637043in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.624804in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.702270in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.683116in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.884275in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.845825in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.840738in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.806903in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.629161in}% \pgfsys@transformshift{0.793196in}{0.617758in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.641409in}% \pgfsys@transformshift{1.262893in}{0.628707in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.660753in}% \pgfsys@transformshift{1.732590in}{0.646000in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.637043in}% \pgfsys@transformshift{2.202287in}{0.624804in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.702270in}% \pgfsys@transformshift{2.671983in}{0.683116in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.884275in}% \pgfsys@transformshift{3.141680in}{0.845825in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.840738in}% \pgfsys@transformshift{3.611377in}{0.806903in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.454429in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{2.618617in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{2.396292in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.430235in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.227882in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.627269in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.404027in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.142720in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.076869in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.729681in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.601601in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.573077in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.461600in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.454429in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{2.618617in}% \pgfsys@transformshift{1.262893in}{2.396292in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.430235in}% \pgfsys@transformshift{1.732590in}{2.227882in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.627269in}% \pgfsys@transformshift{2.202287in}{2.404027in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.142720in}% \pgfsys@transformshift{2.671983in}{1.076869in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.729681in}% \pgfsys@transformshift{3.141680in}{1.601601in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.573077in}% \pgfsys@transformshift{3.611377in}{1.461600in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.991522in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.941702in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.044306in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.988889in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{1.213308in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{1.139974in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.040020in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.985058in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{2.459316in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{2.253881in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.690376in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.566463in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.890517in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.745385in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.991522in}% \pgfsys@transformshift{0.793196in}{0.941702in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.044306in}% \pgfsys@transformshift{1.262893in}{0.988889in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{1.213308in}% \pgfsys@transformshift{1.732590in}{1.139974in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.040020in}% \pgfsys@transformshift{2.202287in}{0.985058in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{2.459316in}% \pgfsys@transformshift{2.671983in}{2.253881in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.690376in}% \pgfsys@transformshift{3.141680in}{1.566463in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.890517in}% \pgfsys@transformshift{3.611377in}{1.745385in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont <1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.521603in}% \pgfsys@transformshift{1.262893in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.174527in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}% \pgftext[x=1.262893in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1-2}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.521603in}% \pgfsys@transformshift{1.732590in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.644224in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}% \pgftext[x=1.732590in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-4}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.521603in}% \pgfsys@transformshift{2.671983in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,7 +180,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.583618in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}% \pgftext[x=2.671983in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10-60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -197,7 +197,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.521603in}% \pgfsys@transformshift{3.141680in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -205,7 +205,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.053315in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}% \pgftext[x=3.141680in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60-1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -222,7 +222,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -230,13 +230,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1d}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Job execution time}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.571384in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.058790in}% \pgfsys@transformshift{0.652287in}{1.056637in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.006029in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.003875in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.493023in}% \pgfsys@transformshift{0.652287in}{1.489128in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.440261in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.436367in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.927255in}% \pgfsys@transformshift{0.652287in}{1.921620in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,7 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.874494in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868859in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -353,7 +353,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.361488in}% \pgfsys@transformshift{0.652287in}{2.354112in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -361,7 +361,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.308726in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301350in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -370,7 +395,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -378,17 +403,17 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.624145in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.624145in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.624145in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.624145in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.624566in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.624154in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.624145in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.624145in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -412,36 +437,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.624558in}% \pgfsys@transformshift{1.262893in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.624558in}% \pgfsys@transformshift{1.732590in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.624566in}% \pgfsys@transformshift{2.671983in}{0.624154in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.624558in}% \pgfsys@transformshift{3.141680in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.624145in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -449,17 +474,17 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.626066in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.625648in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{0.654221in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{0.653689in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.640553in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.640077in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.666150in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.665571in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{0.694074in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{0.693383in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{0.750113in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{0.749197in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.657107in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.656564in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -483,36 +508,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.626066in}% \pgfsys@transformshift{0.793196in}{0.625648in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{0.654221in}% \pgfsys@transformshift{1.262893in}{0.653689in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.640553in}% \pgfsys@transformshift{1.732590in}{0.640077in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.666150in}% \pgfsys@transformshift{2.202287in}{0.665571in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{0.694074in}% \pgfsys@transformshift{2.671983in}{0.693383in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{0.750113in}% \pgfsys@transformshift{3.141680in}{0.749197in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.657107in}% \pgfsys@transformshift{3.611377in}{0.656564in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -520,17 +545,17 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.735121in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.734265in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.791143in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.786054in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{2.510178in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{2.502206in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.022020in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.016005in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.371344in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.367937in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{1.078931in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{1.076697in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.106559in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.104214in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -554,36 +579,36 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.735121in}% \pgfsys@transformshift{0.793196in}{0.734265in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.791143in}% \pgfsys@transformshift{1.262893in}{1.786054in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{2.510178in}% \pgfsys@transformshift{1.732590in}{2.502206in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.022020in}% \pgfsys@transformshift{2.202287in}{2.016005in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.371344in}% \pgfsys@transformshift{2.671983in}{1.367937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{1.078931in}% \pgfsys@transformshift{3.141680in}{1.076697in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.106559in}% \pgfsys@transformshift{3.611377in}{1.104214in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -591,17 +616,17 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.674981in}}%
\pgfpathlineto{\pgfqpoint{1.174527in}{1.599472in}}% \pgfpathlineto{\pgfqpoint{1.262893in}{1.595151in}}%
\pgfpathlineto{\pgfqpoint{1.644224in}{0.894104in}}% \pgfpathlineto{\pgfqpoint{1.732590in}{0.892611in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.356665in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.353317in}}%
\pgfpathlineto{\pgfqpoint{2.583618in}{1.979409in}}% \pgfpathlineto{\pgfqpoint{2.671983in}{1.973565in}}%
\pgfpathlineto{\pgfqpoint{3.053315in}{2.215792in}}% \pgfpathlineto{\pgfqpoint{3.141680in}{2.209000in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.281170in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.274116in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -625,31 +650,31 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.674981in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.174527in}{1.599472in}% \pgfsys@transformshift{1.262893in}{1.595151in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.644224in}{0.894104in}% \pgfsys@transformshift{1.732590in}{0.892611in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.356665in}% \pgfsys@transformshift{2.202287in}{1.353317in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.583618in}{1.979409in}% \pgfsys@transformshift{2.671983in}{1.973565in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.053315in}{2.215792in}% \pgfsys@transformshift{3.141680in}{2.209000in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.281170in}% \pgfsys@transformshift{3.611377in}{2.274116in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -660,8 +685,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -671,8 +696,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -682,8 +707,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -693,15 +718,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster H}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster H}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -714,15 +739,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -733,8 +758,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -760,7 +785,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -768,7 +793,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -777,8 +802,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -804,7 +829,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -812,7 +837,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -821,8 +846,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -848,7 +873,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -856,7 +881,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -865,8 +890,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -892,7 +917,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -900,7 +925,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.567414in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.077105in}% \pgfsys@transformshift{0.652287in}{1.053461in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.024344in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.000700in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.529653in}% \pgfsys@transformshift{0.652287in}{1.486747in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.476891in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.433985in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.982200in}% \pgfsys@transformshift{0.652287in}{1.920032in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.929439in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867271in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.434748in}% \pgfsys@transformshift{0.652287in}{2.353318in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.381986in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300556in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.620176in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.647185in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.641840in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.620176in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.802027in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.790092in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.001681in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.981247in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.647185in}% \pgfsys@transformshift{1.497741in}{0.641840in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.620176in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.802027in}% \pgfsys@transformshift{2.906832in}{0.790092in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.001681in}% \pgfsys@transformshift{3.611377in}{0.981247in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.591625in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.661021in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.569961in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.529653in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.486747in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.643274in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.552969in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.237806in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.164758in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.591625in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.661021in}% \pgfsys@transformshift{1.497741in}{2.569961in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.529653in}% \pgfsys@transformshift{2.202287in}{1.486747in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.643274in}% \pgfsys@transformshift{2.906832in}{2.552969in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.237806in}% \pgfsys@transformshift{3.611377in}{2.164758in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.828204in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.815154in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.828204in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.815154in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.982200in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.920032in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.691109in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.683894in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.896924in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.880949in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.828204in}% \pgfsys@transformshift{0.793196in}{0.815154in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.828204in}% \pgfsys@transformshift{1.497741in}{0.815154in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.982200in}% \pgfsys@transformshift{2.202287in}{1.920032in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.691109in}% \pgfsys@transformshift{2.906832in}{0.683894in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.896924in}% \pgfsys@transformshift{3.611377in}{0.880949in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.571718in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.057310in}% \pgfsys@transformshift{0.652287in}{1.056905in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.004549in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.004143in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.490063in}% \pgfsys@transformshift{0.652287in}{1.489329in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.437301in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.436568in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.922815in}% \pgfsys@transformshift{0.652287in}{1.921754in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.870053in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868992in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.355567in}% \pgfsys@transformshift{0.652287in}{2.354179in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.302806in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301417in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.624480in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.624480in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.624480in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.624480in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.624480in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.624480in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.967866in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.967528in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.693551in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.693420in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.654947in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.654846in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.676351in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.676234in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.640761in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.640671in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.967866in}% \pgfsys@transformshift{0.793196in}{0.967528in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.693551in}% \pgfsys@transformshift{1.497741in}{0.693420in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.654947in}% \pgfsys@transformshift{2.202287in}{0.654846in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.676351in}% \pgfsys@transformshift{2.906832in}{0.676234in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.640761in}% \pgfsys@transformshift{3.611377in}{0.640671in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.641658in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.641567in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.660236in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.660131in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.946188in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.945866in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.883734in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.883460in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.718662in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.718512in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.641658in}% \pgfsys@transformshift{0.793196in}{0.641567in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.660236in}% \pgfsys@transformshift{1.497741in}{0.660131in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.946188in}% \pgfsys@transformshift{2.202287in}{0.945866in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.883734in}% \pgfsys@transformshift{2.906832in}{0.883460in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.718662in}% \pgfsys@transformshift{3.611377in}{0.718512in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.427912in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.426468in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.682012in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.436301in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.434851in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.477350in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.475869in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.678013in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.676380in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.427912in}% \pgfsys@transformshift{0.793196in}{2.426468in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.683649in}% \pgfsys@transformshift{1.497741in}{2.682012in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.436301in}% \pgfsys@transformshift{2.202287in}{2.434851in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.477350in}% \pgfsys@transformshift{2.906832in}{2.475869in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.678013in}% \pgfsys@transformshift{3.611377in}{2.676380in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.621071in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.568309in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.072848in}% \pgfsys@transformshift{0.652287in}{1.054177in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.020087in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.001416in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.521139in}% \pgfsys@transformshift{0.652287in}{1.487284in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.468378in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.434522in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.969430in}% \pgfsys@transformshift{0.652287in}{1.920390in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.916668in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867629in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.417720in}% \pgfsys@transformshift{0.652287in}{2.353497in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.364959in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300735in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.621071in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.621071in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624890in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.621391in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.621071in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624560in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.621072in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.621071in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.621071in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624890in}% \pgfsys@transformshift{2.202287in}{0.621391in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.621071in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624560in}% \pgfsys@transformshift{3.611377in}{0.621072in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.826952in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.816610in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.695126in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.689249in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.671017in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.665957in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.719252in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.712558in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.743878in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.736349in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.826952in}% \pgfsys@transformshift{0.793196in}{0.816610in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.695126in}% \pgfsys@transformshift{1.497741in}{0.689249in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.671017in}% \pgfsys@transformshift{2.202287in}{0.665957in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.719252in}% \pgfsys@transformshift{2.906832in}{0.712558in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.743878in}% \pgfsys@transformshift{3.611377in}{0.736349in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.672170in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.667070in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.736352in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.729078in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.750850in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.709215in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.818348in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.808297in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.113373in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.093329in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.672170in}% \pgfsys@transformshift{0.793196in}{0.667070in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.736352in}% \pgfsys@transformshift{1.497741in}{0.729078in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.750850in}% \pgfsys@transformshift{2.202287in}{1.709215in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.818348in}% \pgfsys@transformshift{2.906832in}{0.808297in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.113373in}% \pgfsys@transformshift{3.611377in}{1.093329in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.616004in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.545065in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.610418in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.692927in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.653253in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.577526in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.507890in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.257874in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.199065in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.616004in}% \pgfsys@transformshift{0.793196in}{2.545065in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.683649in}% \pgfsys@transformshift{1.497741in}{2.610418in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.692927in}% \pgfsys@transformshift{2.202287in}{1.653253in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.577526in}% \pgfsys@transformshift{2.906832in}{2.507890in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.257874in}% \pgfsys@transformshift{3.611377in}{2.199065in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.622712in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.569951in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.065235in}% \pgfsys@transformshift{0.652287in}{1.055491in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.012473in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.002729in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.505912in}% \pgfsys@transformshift{0.652287in}{1.488269in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.453150in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.435507in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.946589in}% \pgfsys@transformshift{0.652287in}{1.921047in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.893827in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868285in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.387266in}% \pgfsys@transformshift{0.652287in}{2.353825in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.334505in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301064in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.622712in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.622712in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624562in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.622716in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.622712in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.622712in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.622712in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.622712in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624562in}% \pgfsys@transformshift{2.202287in}{0.622716in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.622712in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.622712in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.379806in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.364423in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.732900in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.729113in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.661062in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.658562in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.681946in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.679072in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.825743in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.820292in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.379806in}% \pgfsys@transformshift{0.793196in}{1.364423in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.732900in}% \pgfsys@transformshift{1.497741in}{0.729113in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.661062in}% \pgfsys@transformshift{2.202287in}{0.658562in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.681946in}% \pgfsys@transformshift{2.906832in}{0.679072in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.825743in}% \pgfsys@transformshift{3.611377in}{0.820292in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.636106in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.634054in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.767181in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.762779in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.658356in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.637981in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.711464in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.708061in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.295879in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.282001in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.636106in}% \pgfsys@transformshift{0.793196in}{0.634054in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.767181in}% \pgfsys@transformshift{1.497741in}{0.762779in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.658356in}% \pgfsys@transformshift{2.202287in}{1.637981in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.711464in}% \pgfsys@transformshift{2.906832in}{0.708061in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.295879in}% \pgfsys@transformshift{3.611377in}{1.282001in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.061147in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.033551in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.576978in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.540136in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.757637in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.735482in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.644895in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.955436in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.929736in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.061147in}% \pgfsys@transformshift{0.793196in}{2.033551in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.576978in}% \pgfsys@transformshift{1.497741in}{2.540136in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.757637in}% \pgfsys@transformshift{2.202287in}{1.735482in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.683649in}% \pgfsys@transformshift{2.906832in}{2.644895in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.955436in}% \pgfsys@transformshift{3.611377in}{1.929736in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont (0,0.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.5,0.9)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [0.9,1.1)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont [1.1,1.5)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont >=1.5}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Machine locality}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.601937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.549175in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.184527in}% \pgfsys@transformshift{0.652287in}{1.038870in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.131766in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=0.986109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.744497in}% \pgfsys@transformshift{0.652287in}{1.475803in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.691735in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.423042in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.304466in}% \pgfsys@transformshift{0.652287in}{1.912737in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,57 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.251704in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.859975in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.349670in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=2.296908in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -295,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -303,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.601937in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.601937in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624573in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.601948in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.601937in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.601937in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -335,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.601937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.601937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624573in}% \pgfsys@transformshift{2.202287in}{0.601948in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.601937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.601937in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -364,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.183827in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.038324in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.891177in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.809975in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.655694in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.626232in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.826486in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.759497in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.833279in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.545079in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -396,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.183827in}% \pgfsys@transformshift{0.793196in}{1.038324in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.891177in}% \pgfsys@transformshift{1.497741in}{0.809975in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.655694in}% \pgfsys@transformshift{2.202287in}{0.626232in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.826486in}% \pgfsys@transformshift{2.906832in}{0.759497in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.833279in}% \pgfsys@transformshift{3.611377in}{1.545079in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -425,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.806044in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.743547in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.175073in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.031493in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.243132in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.864879in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{1.480847in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{1.270083in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.383934in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.194464in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -457,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.806044in}% \pgfsys@transformshift{0.793196in}{0.743547in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.175073in}% \pgfsys@transformshift{1.497741in}{1.031493in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.243132in}% \pgfsys@transformshift{2.202287in}{1.864879in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{1.480847in}% \pgfsys@transformshift{2.906832in}{1.270083in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.383934in}% \pgfsys@transformshift{3.611377in}{1.194464in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -486,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.683649in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.208606in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.607270in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.149009in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.774680in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.499355in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.366187in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{1.960897in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.456307in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.250934in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -518,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.683649in}% \pgfsys@transformshift{0.793196in}{2.208606in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.607270in}% \pgfsys@transformshift{1.497741in}{2.149009in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.774680in}% \pgfsys@transformshift{2.202287in}{1.499355in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.366187in}% \pgfsys@transformshift{2.906832in}{1.960897in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.456307in}% \pgfsys@transformshift{3.611377in}{1.250934in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -545,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -556,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -567,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -578,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -599,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -618,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -645,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -653,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -662,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -689,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -697,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -706,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -733,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -741,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -750,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -777,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -785,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.571147in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.059841in}% \pgfsys@transformshift{0.652287in}{1.056448in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.007079in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.003686in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.495123in}% \pgfsys@transformshift{0.652287in}{1.488987in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.442362in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.436225in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.930406in}% \pgfsys@transformshift{0.652287in}{1.921526in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.877644in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868764in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.365688in}% \pgfsys@transformshift{0.652287in}{2.354064in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.312927in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301303in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624558in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.623909in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.623909in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.623909in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.623909in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.623909in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624558in}% \pgfsys@transformshift{0.793196in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.623909in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.633609in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.632903in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.640161in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.639414in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.678854in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.677863in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.672667in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.671715in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.745310in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.743900in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.633609in}% \pgfsys@transformshift{0.793196in}{0.632903in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.640161in}% \pgfsys@transformshift{1.497741in}{0.639414in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.678854in}% \pgfsys@transformshift{2.202287in}{0.677863in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.672667in}% \pgfsys@transformshift{2.906832in}{0.671715in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.745310in}% \pgfsys@transformshift{3.611377in}{0.743900in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.737641in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.736279in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.730515in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.729198in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.271200in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.266475in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.693771in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.692686in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.709599in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.708414in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.737641in}% \pgfsys@transformshift{0.793196in}{0.736279in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.730515in}% \pgfsys@transformshift{1.497741in}{0.729198in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.271200in}% \pgfsys@transformshift{2.202287in}{1.266475in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.693771in}% \pgfsys@transformshift{2.906832in}{0.692686in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.709599in}% \pgfsys@transformshift{3.611377in}{0.708414in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.678837in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.665239in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.679411in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.665809in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.100033in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.090083in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.670021in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.595178in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.582108in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.678837in}% \pgfsys@transformshift{0.793196in}{2.665239in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.679411in}% \pgfsys@transformshift{1.497741in}{2.665809in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.100033in}% \pgfsys@transformshift{2.202287in}{2.090083in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.683649in}% \pgfsys@transformshift{2.906832in}{2.670021in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.595178in}% \pgfsys@transformshift{3.611377in}{2.582108in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.621561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.568800in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.070547in}% \pgfsys@transformshift{0.652287in}{1.054570in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.017786in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.001808in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.516537in}% \pgfsys@transformshift{0.652287in}{1.487578in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.463776in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.434817in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.962527in}% \pgfsys@transformshift{0.652287in}{1.920586in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.909765in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.867825in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.408516in}% \pgfsys@transformshift{0.652287in}{2.353595in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.355755in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.300833in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624929in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.621922in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.621561in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.621561in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.621561in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.621561in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624929in}% \pgfsys@transformshift{0.793196in}{0.621922in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.621561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.621561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.621561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.621561in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.676529in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.672020in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.655375in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.651482in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.694339in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.689311in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.664366in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.660210in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.697468in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.692349in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.676529in}% \pgfsys@transformshift{0.793196in}{0.672020in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.655375in}% \pgfsys@transformshift{1.497741in}{0.651482in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.694339in}% \pgfsys@transformshift{2.202287in}{0.689311in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.664366in}% \pgfsys@transformshift{2.906832in}{0.660210in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.697468in}% \pgfsys@transformshift{3.611377in}{0.692349in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.833730in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.795539in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.092881in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.076253in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.952004in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.939476in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.940334in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.928146in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.722505in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.716658in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.833730in}% \pgfsys@transformshift{0.793196in}{1.795539in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.092881in}% \pgfsys@transformshift{1.497741in}{1.076253in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.952004in}% \pgfsys@transformshift{2.202287in}{0.939476in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.940334in}% \pgfsys@transformshift{2.906832in}{0.928146in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.722505in}% \pgfsys@transformshift{3.611377in}{0.716658in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.592991in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.561807in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.355366in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.301991in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.457279in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.400938in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.498922in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.441369in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.620719in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.592991in}% \pgfsys@transformshift{0.793196in}{1.561807in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.355366in}% \pgfsys@transformshift{1.497741in}{2.301991in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.457279in}% \pgfsys@transformshift{2.202287in}{2.400938in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.498922in}% \pgfsys@transformshift{2.906832in}{2.441369in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.620719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.623719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.570958in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.060686in}% \pgfsys@transformshift{0.652287in}{1.056296in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.007925in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.003535in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.496815in}% \pgfsys@transformshift{0.652287in}{1.488873in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.444054in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=1.436111in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.932944in}% \pgfsys@transformshift{0.652287in}{1.921450in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.880182in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}% \pgftext[x=0.378334in, y=1.868688in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.369072in}% \pgfsys@transformshift{0.652287in}{2.354027in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,32 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.316311in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}% \pgftext[x=0.378334in, y=2.301265in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -320,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -328,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624587in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.623748in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.623719in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.623719in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.623719in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.623719in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -360,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624587in}% \pgfsys@transformshift{0.793196in}{0.623748in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.623719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.623719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.623719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.623719in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -389,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.802329in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.800043in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.707988in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.706470in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.672008in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.670783in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.679892in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.678603in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.690725in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.689348in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -421,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.802329in}% \pgfsys@transformshift{0.793196in}{0.800043in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.707988in}% \pgfsys@transformshift{1.497741in}{0.706470in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.672008in}% \pgfsys@transformshift{2.202287in}{0.670783in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.679892in}% \pgfsys@transformshift{2.906832in}{0.678603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.690725in}% \pgfsys@transformshift{3.611377in}{0.689348in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -450,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.051997in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{2.039533in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.106610in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.101845in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.015245in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.011225in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.699577in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.698127in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.679943in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.678653in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -482,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.051997in}% \pgfsys@transformshift{0.793196in}{2.039533in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.106610in}% \pgfsys@transformshift{1.497741in}{1.101845in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.015245in}% \pgfsys@transformshift{2.202287in}{1.011225in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.699577in}% \pgfsys@transformshift{2.906832in}{0.698127in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.679943in}% \pgfsys@transformshift{3.611377in}{0.678653in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -511,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.199961in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.194437in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.239719in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{2.225726in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.367063in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{2.352034in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.674848in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.657312in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{2.666041in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -543,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.199961in}% \pgfsys@transformshift{0.793196in}{1.194437in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.239719in}% \pgfsys@transformshift{1.497741in}{2.225726in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.367063in}% \pgfsys@transformshift{2.202287in}{2.352034in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.674848in}% \pgfsys@transformshift{2.906832in}{2.657312in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.683649in}% \pgfsys@transformshift{3.611377in}{2.666041in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -570,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -581,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -592,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -603,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -624,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -643,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -687,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -714,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -722,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -731,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -758,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -766,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -775,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -802,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -810,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -23,7 +23,7 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -34,8 +34,8 @@
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.791672in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{4.880037in}{3.096564in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.096564in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{}% \pgfusepath{}%
@ -50,10 +50,10 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
@ -72,7 +72,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.521603in}% \pgfsys@transformshift{0.793196in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -80,7 +80,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.704830in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}% \pgftext[x=0.793196in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -97,7 +97,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.521603in}% \pgfsys@transformshift{1.497741in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -105,7 +105,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.409376in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}% \pgftext[x=1.497741in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2-10}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -122,7 +122,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.521603in}% \pgfsys@transformshift{2.202287in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -130,7 +130,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}% \pgftext[x=2.202287in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11-50}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -147,7 +147,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.521603in}% \pgfsys@transformshift{2.906832in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -155,7 +155,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.818467in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}% \pgftext[x=2.906832in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 51-100}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -172,7 +172,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.521603in}% \pgfsys@transformshift{3.611377in}{0.521603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -180,13 +180,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.523012in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}% \pgftext[x=3.611377in,y=0.424381in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 101+}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}% \pgftext[x=2.202287in,y=0.234413in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Number of tasks}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -203,7 +203,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.624558in}% \pgfsys@transformshift{0.652287in}{0.597359in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -211,7 +211,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.378334in, y=0.571796in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}% \pgftext[x=0.466699in, y=0.544598in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -228,7 +228,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{0.922083in}% \pgfsys@transformshift{0.652287in}{1.035208in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -236,7 +236,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=0.869322in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 10}% \pgftext[x=0.378334in, y=0.982446in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -253,7 +253,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.219609in}% \pgfsys@transformshift{0.652287in}{1.473057in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -261,7 +261,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.166847in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}% \pgftext[x=0.378334in, y=1.420295in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -278,7 +278,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.517134in}% \pgfsys@transformshift{0.652287in}{1.910906in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -286,7 +286,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.464372in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 30}% \pgftext[x=0.378334in, y=1.858144in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -303,7 +303,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{1.814659in}% \pgfsys@transformshift{0.652287in}{2.348754in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -311,7 +311,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=1.761898in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}% \pgftext[x=0.378334in, y=2.295993in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 80}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -328,7 +328,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.112185in}% \pgfsys@transformshift{0.652287in}{2.786603in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -336,57 +336,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.059423in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 50}% \pgftext[x=0.289968in, y=2.733842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.409710in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.356948in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 60}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.563921in}{2.707235in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.289968in, y=2.654474in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 70}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
@ -395,7 +345,7 @@
\pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}% \pgftext[x=0.234413in,y=1.654103in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Event rate [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -403,15 +353,15 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.624576in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.597372in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.597359in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.597359in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.597359in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.624558in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.597359in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -435,28 +385,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.624576in}% \pgfsys@transformshift{0.793196in}{0.597372in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.624558in}% \pgfsys@transformshift{1.497741in}{0.597359in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{0.624558in}% \pgfsys@transformshift{2.202287in}{0.597359in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.624558in}% \pgfsys@transformshift{2.906832in}{0.597359in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.624558in}% \pgfsys@transformshift{3.611377in}{0.597359in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -464,15 +414,15 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{0.673894in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{0.633661in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{0.658756in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{0.622523in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.031507in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{0.896800in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{0.719653in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{0.667332in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{0.896992in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{0.797821in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -496,28 +446,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{0.673894in}% \pgfsys@transformshift{0.793196in}{0.633661in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{0.658756in}% \pgfsys@transformshift{1.497741in}{0.622523in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.031507in}% \pgfsys@transformshift{2.202287in}{0.896800in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{0.719653in}% \pgfsys@transformshift{2.906832in}{0.667332in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{0.896992in}% \pgfsys@transformshift{3.611377in}{0.797821in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -525,15 +475,15 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{2.309296in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.837019in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{2.501568in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.978496in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{2.013415in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.619304in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{1.445625in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{1.201515in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{1.709716in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.395838in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -557,28 +507,28 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{2.309296in}% \pgfsys@transformshift{0.793196in}{1.837019in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{2.501568in}% \pgfsys@transformshift{1.497741in}{1.978496in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{2.013415in}% \pgfsys@transformshift{2.202287in}{1.619304in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{1.445625in}% \pgfsys@transformshift{2.906832in}{1.201515in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{1.709716in}% \pgfsys@transformshift{3.611377in}{1.395838in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetrectcap% \pgfsetrectcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -586,15 +536,15 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.704830in}{1.865719in}}% \pgfpathmoveto{\pgfqpoint{0.793196in}{1.510628in}}%
\pgfpathlineto{\pgfqpoint{1.409376in}{1.688603in}}% \pgfpathlineto{\pgfqpoint{1.497741in}{1.380303in}}%
\pgfpathlineto{\pgfqpoint{2.113921in}{1.804005in}}% \pgfpathlineto{\pgfqpoint{2.202287in}{1.465217in}}%
\pgfpathlineto{\pgfqpoint{2.818467in}{2.683649in}}% \pgfpathlineto{\pgfqpoint{2.906832in}{2.112475in}}%
\pgfpathlineto{\pgfqpoint{3.523012in}{2.242219in}}% \pgfpathlineto{\pgfqpoint{3.611377in}{1.787662in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.563921in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.652287in}{0.521603in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetroundjoin% \pgfsetroundjoin%
@ -618,23 +568,23 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.704830in}{1.865719in}% \pgfsys@transformshift{0.793196in}{1.510628in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.409376in}{1.688603in}% \pgfsys@transformshift{1.497741in}{1.380303in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.113921in}{1.804005in}% \pgfsys@transformshift{2.202287in}{1.465217in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.818467in}{2.683649in}% \pgfsys@transformshift{2.906832in}{2.112475in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.523012in}{2.242219in}% \pgfsys@transformshift{3.611377in}{1.787662in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -645,8 +595,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -656,8 +606,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -667,8 +617,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{0.521603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{0.521603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{0.521603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{0.521603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -678,15 +628,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.563921in}{2.786603in}}% \pgfpathmoveto{\pgfqpoint{0.652287in}{2.786603in}}%
\pgfpathlineto{\pgfqpoint{3.663921in}{2.786603in}}% \pgfpathlineto{\pgfqpoint{3.752287in}{2.786603in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.113921in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}% \pgftext[x=2.202287in,y=2.869937in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -699,15 +649,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathmoveto{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathlineto{\pgfqpoint{4.663894in}{1.860063in}}% \pgfpathlineto{\pgfqpoint{4.752259in}{1.860063in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{1.860063in}}{\pgfqpoint{4.691672in}{1.887841in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{1.860063in}}{\pgfqpoint{4.780037in}{1.887841in}}%
\pgfpathlineto{\pgfqpoint{4.691672in}{2.689381in}}% \pgfpathlineto{\pgfqpoint{4.780037in}{2.689381in}}%
\pgfpathquadraticcurveto{\pgfqpoint{4.691672in}{2.717159in}}{\pgfqpoint{4.663894in}{2.717159in}}% \pgfpathquadraticcurveto{\pgfqpoint{4.780037in}{2.717159in}}{\pgfqpoint{4.752259in}{2.717159in}}%
\pgfpathlineto{\pgfqpoint{3.761143in}{2.717159in}}% \pgfpathlineto{\pgfqpoint{3.849509in}{2.717159in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{2.717159in}}{\pgfqpoint{3.733366in}{2.689381in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{2.717159in}}{\pgfqpoint{3.821731in}{2.689381in}}%
\pgfpathlineto{\pgfqpoint{3.733366in}{1.887841in}}% \pgfpathlineto{\pgfqpoint{3.821731in}{1.887841in}}%
\pgfpathquadraticcurveto{\pgfqpoint{3.733366in}{1.860063in}}{\pgfqpoint{3.761143in}{1.860063in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.821731in}{1.860063in}}{\pgfqpoint{3.849509in}{1.860063in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -718,8 +668,8 @@
\definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}% \definecolor{currentstroke}{rgb}{0.121569,0.466667,0.705882}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.604691in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.604691in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.604691in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.604691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -745,7 +695,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.604691in}% \pgfsys@transformshift{4.016175in}{2.604691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -753,7 +703,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=4.266175in,y=2.556080in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -762,8 +712,8 @@
\definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}% \definecolor{currentstroke}{rgb}{1.000000,0.498039,0.054902}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.400834in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.400834in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.400834in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.400834in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -789,7 +739,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.400834in}% \pgfsys@transformshift{4.016175in}{2.400834in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -797,7 +747,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=4.266175in,y=2.352223in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -806,8 +756,8 @@
\definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}% \definecolor{currentstroke}{rgb}{0.172549,0.627451,0.172549}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{2.196977in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{2.196977in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{2.196977in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{2.196977in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -833,7 +783,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{2.196977in}% \pgfsys@transformshift{4.016175in}{2.196977in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -841,7 +791,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=4.266175in,y=2.148366in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -850,8 +800,8 @@
\definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}% \definecolor{currentstroke}{rgb}{0.839216,0.152941,0.156863}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.788921in}{1.993120in}}% \pgfpathmoveto{\pgfqpoint{3.877287in}{1.993120in}}%
\pgfpathlineto{\pgfqpoint{4.066699in}{1.993120in}}% \pgfpathlineto{\pgfqpoint{4.155064in}{1.993120in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -877,7 +827,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.927810in}{1.993120in}% \pgfsys@transformshift{4.016175in}{1.993120in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -885,7 +835,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=4.177810in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=4.266175in,y=1.944509in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -25,23 +19,22 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -53,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -72,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -91,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -110,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -129,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -148,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.896066in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -167,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.612941in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -186,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{1.383041in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -205,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.992857in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.179191in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{1.992857in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{1.179191in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -224,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.318750in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.896066in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -243,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.644643in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.612941in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -262,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{2.478214in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{1.383041in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -281,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{1.992857in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{1.179191in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.992857in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.179191in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.046786in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.201841in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.046786in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{1.201841in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -300,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.318750in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{1.318750in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.896066in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{1.453571in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.952691in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{1.453571in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.952691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -319,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.644643in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.612941in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.644643in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.612941in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -338,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{2.478214in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{2.478214in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{1.383041in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{1.405691in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{1.405691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -357,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.046786in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{1.201841in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.046786in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.201841in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.316429in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.315091in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.316429in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{1.315091in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -379,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -387,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -404,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -412,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -429,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -437,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -454,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -462,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.098766in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -479,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -493,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.326775in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.0}\)}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -504,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.914286in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -518,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.866060in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.1}\)}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -529,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.453571in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -543,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.405346in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.2}\)}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -554,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.992857in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -568,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.944632in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.3}\)}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -579,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.532143in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -593,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=2.483918in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.4}\)}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.169753in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -608,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -619,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -630,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -641,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont 2011 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -662,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathmoveto{\pgfqpoint{2.336187in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.863813in}{1.561297in}}% \pgfpathlineto{\pgfqpoint{3.602778in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{1.561297in}}{\pgfqpoint{1.891591in}{1.589074in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.630556in}{1.685988in}}{\pgfqpoint{3.630556in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{1.891591in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{3.630556in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{2.570556in}}{\pgfqpoint{1.863813in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{3.630556in}{2.695247in}}{\pgfqpoint{3.602778in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{2.336187in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{2.308410in}{2.695247in}}{\pgfqpoint{2.308410in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.589074in}}% \pgfpathlineto{\pgfqpoint{2.308410in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.561297in}}{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathquadraticcurveto{\pgfqpoint{2.308410in}{1.685988in}}{\pgfqpoint{2.336187in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.733410in,y=2.418549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=2.472375in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -690,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.224877in}}% \pgfpathmoveto{\pgfqpoint{2.363965in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.224877in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{2.363965in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -701,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.224877in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=2.752854in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -713,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.031204in}}% \pgfpathmoveto{\pgfqpoint{2.363965in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.031204in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{2.363965in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -724,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.031204in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=2.752854in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -736,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.837531in}}% \pgfpathmoveto{\pgfqpoint{2.363965in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.837531in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{2.363965in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -747,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.837531in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=2.752854in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -759,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.643858in}}% \pgfpathmoveto{\pgfqpoint{2.363965in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.643858in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{2.641743in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{2.363965in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -770,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.643858in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=2.752854in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -25,23 +19,22 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -53,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -72,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.503416in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.503416in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -91,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.502773in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.502773in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -110,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.527023in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.527023in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -129,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.829376in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{1.829376in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -148,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.378813in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.503416in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.503416in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.538844in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.538844in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -167,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.378156in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.502773in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.502773in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.510772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -186,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.402982in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.527023in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.527023in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.568731in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -205,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{1.736323in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{1.829376in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{1.829376in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.524185in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.524185in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -224,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.538844in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.538844in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.538845in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.538845in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -243,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.510772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -262,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.568731in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -281,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.447665in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.524185in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.524185in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.524319in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.524319in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -300,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.538845in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.538845in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.416269in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540001in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.416269in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.540001in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -319,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510772in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387413in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511816in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.387413in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.511816in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -338,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.568731in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.483069in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.605249in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.483069in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.605249in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -357,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.447802in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.524319in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.524319in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.606700in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.606700in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -379,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -387,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -404,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -412,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -429,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -437,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -454,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -462,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.098766in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -479,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -493,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.326775in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.0}\)}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -504,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.838779in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -518,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.790553in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.2}\)}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -529,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.302557in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -543,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.254332in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.4}\)}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -554,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.766336in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -568,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.718111in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.6}\)}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -579,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.230115in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -593,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=2.181890in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.8}\)}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.169753in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -608,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -619,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -630,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -641,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster A}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -662,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.863813in}{1.561297in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{1.561297in}}{\pgfqpoint{1.891591in}{1.589074in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{1.891591in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{2.570556in}}{\pgfqpoint{1.863813in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.589074in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.561297in}}{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.733410in,y=2.418549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -690,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.224877in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.224877in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -701,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.224877in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -713,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.031204in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.031204in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -724,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.031204in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -736,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.837531in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.837531in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -747,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.837531in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -759,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.643858in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.643858in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -770,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.643858in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -25,23 +19,22 @@
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -53,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -72,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505319in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.505319in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -91,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501080in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501080in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -110,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.541979in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.541979in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -129,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.265050in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.265050in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -148,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.378813in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.505319in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.378813in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505319in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.526268in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.526268in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -167,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.378156in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501080in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378156in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501080in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.505124in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -186,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.402982in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.541979in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.402982in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.541979in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.588088in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -205,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{1.736323in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.265050in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736323in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.265050in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.570657in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.570657in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -224,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.526268in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.526268in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.526270in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.526270in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -243,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.505124in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -262,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.588088in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -281,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.447665in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.570657in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447665in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.570657in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.570754in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.570754in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -300,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.415085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.526270in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.415085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.526270in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.416269in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.526437in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.416269in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.526437in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -319,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386344in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386344in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.505124in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387413in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.505258in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.387413in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.505258in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -338,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.445683in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.445683in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.588088in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.483069in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.594611in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.483069in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.594611in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -357,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.447802in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.570754in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.447802in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.570754in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.637458in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.637458in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -379,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -387,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -404,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -412,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -429,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -437,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -454,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -462,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.098766in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -479,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -493,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.326775in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.0}\)}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -504,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.838779in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -518,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=0.790553in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.2}\)}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -529,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.302557in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -543,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.254332in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.4}\)}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -554,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.766336in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -568,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=1.718111in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.6}\)}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -579,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.230115in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -593,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.225308in, y=2.181890in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.8}\)}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.169753in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -608,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -619,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -630,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -641,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont All clusters}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont 2019 data}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -662,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.863813in}{1.561297in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{1.561297in}}{\pgfqpoint{1.891591in}{1.589074in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{1.891591in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{1.891591in}{2.570556in}}{\pgfqpoint{1.863813in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.589074in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.561297in}}{\pgfqpoint{0.597222in}{1.561297in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -678,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.733410in,y=2.418549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -690,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.224877in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.224877in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.322099in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -701,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.224877in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -713,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.031204in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.031204in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.128426in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -724,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.031204in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -736,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.837531in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.837531in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.934753in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -747,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.837531in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -759,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.643858in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.643858in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.741081in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -770,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.643858in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.386355in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.510638in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.386355in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.510638in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376581in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501215in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376581in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501215in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.454971in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.576791in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.454971in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.576791in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.034933in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.100028in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.034933in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.100028in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.386355in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.510638in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.386355in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.510638in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.409173in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.532637in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.409173in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.532637in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376581in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501215in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376581in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501215in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.507604in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.454971in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.576791in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.454971in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.576791in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.638613in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.034933in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.100028in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.034933in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.100028in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.489233in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.538016in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.489233in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.538016in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.409173in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.532637in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.409173in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.532637in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.409174in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.532638in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.409174in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.532638in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.383207in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.507604in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.519096in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.638613in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.489233in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.538016in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.489233in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.538016in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.489247in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.538030in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.489247in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.538030in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.409174in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.532638in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.409174in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.532638in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.409411in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.532867in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.409411in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.532867in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.383207in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.383207in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.507604in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.383282in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.507675in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.383282in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.507675in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.519096in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.519096in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.638613in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.524513in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.643836in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.524513in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.643836in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.489247in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.538030in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.489247in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.538030in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.579386in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.579386in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.844870in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.792108in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.314740in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.261978in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.784609in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.731848in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.254479in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.201718in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -612,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -623,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -634,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -645,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster B}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -666,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -682,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -694,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -705,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -717,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -728,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -740,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -751,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -763,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -774,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380268in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504782in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.380268in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.504782in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378784in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503348in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378784in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.503348in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.413310in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.536714in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.413310in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.536714in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.996484in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.066696in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{1.996484in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.066696in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.380268in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.504782in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380268in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504782in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.413109in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.536519in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.413109in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.536519in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.378784in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.503348in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378784in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503348in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.510339in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.413310in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.536714in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.413310in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.536714in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.623338in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{1.996484in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.066696in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{1.996484in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.066696in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.476301in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.530393in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.476301in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.530393in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.413109in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.536519in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.413109in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.536519in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.413110in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.536521in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.413110in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.536521in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386018in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.510339in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.502945in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.623338in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.476301in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.530393in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.476301in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.530393in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.476465in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.530551in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.476465in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.530551in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.413110in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.536521in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.413110in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.536521in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.413356in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.536758in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.413356in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.536758in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.386018in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386018in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510339in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.386201in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.510515in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.386201in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.510515in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.502945in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.502945in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.623338in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.512046in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.632133in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.512046in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.632133in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.476465in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.530551in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.476465in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.530551in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.584358in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.584358in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.843749in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.790988in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.312498in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.259737in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.781247in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.728486in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.249996in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.197235in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -612,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -623,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -634,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -645,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster C}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -666,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -682,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -694,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -705,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -717,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -728,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -740,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -751,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -763,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -774,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.381183in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505704in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.381183in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.505704in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377361in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501987in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.377361in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501987in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.434294in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.557355in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.434294in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.557355in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.077290in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.155197in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.077290in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.155197in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.381183in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.505704in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.381183in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505704in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540619in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.540619in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.377361in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501987in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377361in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501987in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.511618in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.434294in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.557355in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.434294in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.557355in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.610229in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.077290in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.155197in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.077290in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.155197in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.469641in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.536765in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.469641in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.536765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.417085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.540619in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540619in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540620in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.540620in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.387264in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.511618in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.488662in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.610229in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.469641in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.536765in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.469641in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.536765in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.470104in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.537216in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.470104in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.537216in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.417085in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.540620in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.417085in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540620in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.417203in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.540734in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.417203in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.540734in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.387264in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387264in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511618in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.387282in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.511636in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.387282in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.511636in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.488662in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.488662in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.610229in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.492379in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.613844in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.492379in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.613844in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.470104in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.537216in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.470104in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.537216in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.597550in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.597550in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.840802in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.788040in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.306603in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.253842in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.772405in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.719643in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.238206in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.185445in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -612,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -623,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -634,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -645,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster D}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -666,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -682,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -694,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -705,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -717,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -728,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -740,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -751,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -763,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -774,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.379341in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504032in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.379341in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.504032in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375244in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499936in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.375244in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.499936in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.397523in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.522214in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.397523in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.522214in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.259319in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.384010in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.259319in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.384010in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.379341in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.504032in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.379341in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504032in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.389834in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.514525in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.389834in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.514525in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375244in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499936in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375244in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499936in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501335in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.397523in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.522214in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.397523in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.522214in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.548490in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.259319in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.384010in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.259319in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.384010in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.446354in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.571045in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.446354in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.571045in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.389834in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.514525in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.389834in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.514525in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.389835in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.514526in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.389835in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.514526in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376644in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501335in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.423799in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.548490in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.446354in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.571045in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.446354in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.571045in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.446384in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.571075in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.446384in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.571075in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.389835in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.514526in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.389835in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.514526in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.389845in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.514536in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.389845in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.514536in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376644in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376644in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501335in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376646in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501337in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376646in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501337in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.423799in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.423799in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.548490in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.424256in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.548948in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.424256in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.548948in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.446384in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.571075in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.446384in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.571075in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.656834in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.656834in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.819578in}% \pgfsys@transformshift{0.600001in}{0.944269in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.766817in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.896044in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.264156in}% \pgfsys@transformshift{0.600001in}{1.388847in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.211395in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.340622in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.708734in}% \pgfsys@transformshift{0.600001in}{1.833425in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.655973in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.785200in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.153312in}% \pgfsys@transformshift{0.600001in}{2.278003in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,7 +586,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.100551in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.229778in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -608,13 +597,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.597890in}% \pgfsys@transformshift{0.600001in}{2.722581in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -622,13 +611,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.545129in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.0}% \pgftext[x=0.294444in, y=2.674356in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -637,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -659,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster E}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster E}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -691,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -707,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -719,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -730,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -742,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -753,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -765,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -776,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -788,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -799,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.385694in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.510033in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.385694in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.510033in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376224in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500874in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376224in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.500874in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439074in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.561657in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.439074in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.561657in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.156054in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.222153in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.156054in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.222153in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.385694in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.510033in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.385694in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.510033in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.419523in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.542749in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.419523in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.542749in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376224in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.500874in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376224in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500874in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.503384in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.439074in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.561657in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439074in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.561657in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.624642in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.156054in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.222153in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.156054in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.222153in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.456690in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.512899in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.456690in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.512899in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.419523in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.542749in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.419523in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.542749in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.419533in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.542759in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.419533in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.542759in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.378819in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.503384in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.504202in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.624642in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.456690in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.512899in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.456690in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.512899in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.456780in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.512986in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.456780in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.512986in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.419533in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.542759in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.419533in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.542759in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.419554in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.542779in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.419554in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.542779in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.378819in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378819in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503384in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.378822in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.503388in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.378822in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.503388in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.504202in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.504202in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.624642in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.511528in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.631728in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.511528in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.631728in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.456780in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.512986in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.456780in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.512986in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.585870in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.585870in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.843409in}% \pgfsys@transformshift{0.600001in}{0.952691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.790648in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.904466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.311819in}% \pgfsys@transformshift{0.600001in}{1.405691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.259057in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.357466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.780228in}% \pgfsys@transformshift{0.600001in}{1.858691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.727467in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.810466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.248638in}% \pgfsys@transformshift{0.600001in}{2.311691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,13 +586,38 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.195876in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.263466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.600001in}{2.764691in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.294444in, y=2.716466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -612,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -623,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -634,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -645,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster F}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -666,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -682,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -694,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -705,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -717,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -728,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -740,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -751,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -763,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -774,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.376416in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.501107in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.376416in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.501107in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375338in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500029in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.375338in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.500029in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.409171in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.533862in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.409171in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.533862in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.359950in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.484641in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.359950in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.484641in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.376416in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.501107in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.376416in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.501107in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505446in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.505446in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375338in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.500029in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375338in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500029in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.500981in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.409171in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.533862in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.409171in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.533862in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.427081in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.427081in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.551773in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.359950in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.484641in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.359950in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.484641in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.473357in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.598048in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.473357in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.598048in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.380755in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.505446in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505446in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505447in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.505447in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376289in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.500981in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.427081in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.427081in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.427082in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.427082in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.551773in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.473357in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.598048in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.473357in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.598048in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.473387in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.598078in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.473387in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.598078in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.380755in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.505447in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380755in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505447in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.380804in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.505495in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.380804in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.505495in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.376289in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376289in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500981in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.376437in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501128in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.376437in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501128in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.427082in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.427082in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.551773in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.427506in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.552198in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.427506in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.552198in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.473387in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.598078in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.473387in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.598078in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.656834in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.656834in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.818378in}% \pgfsys@transformshift{0.600001in}{0.943069in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.765616in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.894844in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.261756in}% \pgfsys@transformshift{0.600001in}{1.386447in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.208994in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.338222in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.705134in}% \pgfsys@transformshift{0.600001in}{1.829825in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.652372in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.781600in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.148512in}% \pgfsys@transformshift{0.600001in}{2.273203in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,7 +586,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.095750in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.224978in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -608,13 +597,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.591890in}% \pgfsys@transformshift{0.600001in}{2.716581in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -622,13 +611,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.539128in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.0}% \pgftext[x=0.294444in, y=2.668356in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -637,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -659,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster G}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -691,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -707,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -719,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -730,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -742,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -753,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -765,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -776,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -788,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -799,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%

View file

@ -6,12 +6,6 @@
%% Make sure the required packages are loaded in your preamble %% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf} %% \usepackage{pgf}
%% %%
%% and, on pdftex
%% \usepackage[utf8]{inputenc}\DeclareUnicodeCharacter{2212}{-}
%%
%% or, on luatex and xetex
%% \usepackage{unicode-math}
%%
%% Figures using additional raster images can only be included by \input if %% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures %% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package %% from other directories you can use the `import` package
@ -21,31 +15,26 @@
%% \import{<path to file>}{<filename>.pgf} %% \import{<path to file>}{<filename>.pgf}
%% %%
%% Matplotlib used the following preamble %% Matplotlib used the following preamble
%% \usepackage{fontspec}
%% \setmainfont{DejaVuSerif.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setsansfont{DejaVuSans.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% \setmonofont{DejaVuSansMono.ttf}[Path=/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/]
%% %%
\begingroup% \begingroup%
\makeatletter% \makeatletter%
\begin{pgfpicture}% \begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfusepath{use as bounding box, clip}% \pgfusepath{use as bounding box, clip}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}% \pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}% \definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{4.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{3.800001in}{3.063765in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{3.000000in}}% \pgfpathlineto{\pgfqpoint{0.000000in}{3.063765in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -57,15 +46,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}% \pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{fill}% \pgfusepath{fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -76,15 +65,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.379483in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504174in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.379483in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.504174in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -95,15 +84,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375571in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500262in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.375571in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.500262in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -114,15 +103,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.403178in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.527869in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.403178in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.527869in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -133,15 +122,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.278526in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.403217in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.278526in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.403217in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -152,15 +141,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.379483in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.504174in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.379483in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.504174in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.517303in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -171,15 +160,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.375571in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.500262in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.375571in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.500262in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501916in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -190,15 +179,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.403178in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.527869in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.403178in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.527869in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.563847in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -209,15 +198,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.278526in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.403217in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.278526in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.403217in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.459395in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.584086in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.459395in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.584086in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -228,15 +217,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.392612in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.517303in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -247,15 +236,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.377225in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501916in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -266,15 +255,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.439156in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.563847in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -285,15 +274,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.459395in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.584086in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.459395in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.584086in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.459396in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.584087in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.459396in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.584087in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -304,15 +293,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.640909in}{0.392612in}}% \pgfpathmoveto{\pgfqpoint{0.740910in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.392612in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.517303in}}%
\pgfpathlineto{\pgfqpoint{1.043506in}{0.392634in}}% \pgfpathlineto{\pgfqpoint{1.143507in}{0.517325in}}%
\pgfpathlineto{\pgfqpoint{0.640909in}{0.392634in}}% \pgfpathlineto{\pgfqpoint{0.740910in}{0.517325in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -323,15 +312,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.446104in}{0.377225in}}% \pgfpathmoveto{\pgfqpoint{1.546105in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377225in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501916in}}%
\pgfpathlineto{\pgfqpoint{1.848701in}{0.377228in}}% \pgfpathlineto{\pgfqpoint{1.948702in}{0.501919in}}%
\pgfpathlineto{\pgfqpoint{1.446104in}{0.377228in}}% \pgfpathlineto{\pgfqpoint{1.546105in}{0.501919in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -342,15 +331,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.251299in}{0.439156in}}% \pgfpathmoveto{\pgfqpoint{2.351299in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.439156in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.563847in}}%
\pgfpathlineto{\pgfqpoint{2.653896in}{0.443515in}}% \pgfpathlineto{\pgfqpoint{2.753897in}{0.568206in}}%
\pgfpathlineto{\pgfqpoint{2.251299in}{0.443515in}}% \pgfpathlineto{\pgfqpoint{2.351299in}{0.568206in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.375000in}}{\pgfqpoint{3.100000in}{2.265000in}}% \pgfpathrectangle{\pgfqpoint{0.600001in}{0.499691in}}{\pgfqpoint{3.100000in}{2.265000in}}%
\pgfusepath{clip}% \pgfusepath{clip}%
\pgfsetbuttcap% \pgfsetbuttcap%
\pgfsetmiterjoin% \pgfsetmiterjoin%
@ -361,10 +350,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.056494in}{2.459396in}}% \pgfpathmoveto{\pgfqpoint{3.156494in}{2.584087in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.459396in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.584087in}}%
\pgfpathlineto{\pgfqpoint{3.459091in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.559092in}{2.656834in}}%
\pgfpathlineto{\pgfqpoint{3.056494in}{2.532143in}}% \pgfpathlineto{\pgfqpoint{3.156494in}{2.656834in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -383,7 +372,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.842208in}{0.375000in}% \pgfsys@transformshift{0.942208in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -391,7 +380,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.842208in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}% \pgftext[x=0.942208in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -408,7 +397,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{1.647403in}{0.375000in}% \pgfsys@transformshift{1.747403in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -416,7 +405,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.647403in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}% \pgftext[x=1.747403in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -433,7 +422,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{2.452597in}{0.375000in}% \pgfsys@transformshift{2.552598in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -441,7 +430,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.452597in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}% \pgftext[x=2.552598in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -458,7 +447,7 @@
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{3.257792in}{0.375000in}% \pgfsys@transformshift{3.357793in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -466,13 +455,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=3.257792in,y=0.277778in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}% \pgftext[x=3.357793in,y=0.402469in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=0.087809in,,top]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Last termination}% \pgftext[x=2.150001in,y=0.223457in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Task termination}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -483,13 +472,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.375000in}% \pgfsys@transformshift{0.600001in}{0.499691in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -497,7 +486,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.322238in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \pgftext[x=0.433334in, y=0.451466in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -508,13 +497,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{0.824104in}% \pgfsys@transformshift{0.600001in}{0.948795in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -522,7 +511,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=0.771342in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.2}% \pgftext[x=0.363889in, y=0.900570in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {20}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -533,13 +522,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.273208in}% \pgfsys@transformshift{0.600001in}{1.397899in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -547,7 +536,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.220446in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.4}% \pgftext[x=0.363889in, y=1.349674in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {40}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -558,13 +547,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{1.722312in}% \pgfsys@transformshift{0.600001in}{1.847003in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -572,7 +561,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=1.669550in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.6}% \pgftext[x=0.363889in, y=1.798778in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {60}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -583,13 +572,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.171416in}% \pgfsys@transformshift{0.600001in}{2.296107in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -597,7 +586,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.118654in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.8}% \pgftext[x=0.363889in, y=2.247882in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {80}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -608,13 +597,13 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% \pgfsys@defobject{currentmarker}{\pgfqpoint{-0.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% \pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}% \pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
}% }%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsys@transformshift{0.500000in}{2.620520in}% \pgfsys@transformshift{0.600001in}{2.745211in}%
\pgfsys@useobject{currentmarker}{}% \pgfsys@useobject{currentmarker}{}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfscope}% \end{pgfscope}%
@ -622,13 +611,13 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.181898in, y=2.567758in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.0}% \pgftext[x=0.294444in, y=2.696986in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {100}\)}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.126343in,y=1.507500in,,bottom,rotate=90.000000]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Count}% \pgftext[x=0.238889in,y=1.632191in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Time spent [\%]}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetrectcap% \pgfsetrectcap%
@ -637,8 +626,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -648,8 +637,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -659,8 +648,8 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.375000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{0.499691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{0.375000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{0.499691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
@ -670,15 +659,15 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.500000in}{2.640000in}}% \pgfpathmoveto{\pgfqpoint{0.600001in}{2.764691in}}%
\pgfpathlineto{\pgfqpoint{3.600000in}{2.640000in}}% \pgfpathlineto{\pgfqpoint{3.700001in}{2.764691in}}%
\pgfusepath{stroke}% \pgfusepath{stroke}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=2.050000in,y=2.723333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster H}% \pgftext[x=2.150001in,y=2.848024in,,base]{\color{textcolor}\rmfamily\fontsize{12.000000}{14.400000}\selectfont Cluster H}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -691,15 +680,15 @@
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.800000}% \pgfsetstrokeopacity{0.800000}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathmoveto{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathlineto{\pgfqpoint{1.996121in}{1.509603in}}% \pgfpathlineto{\pgfqpoint{1.963814in}{1.685988in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{1.509603in}}{\pgfqpoint{2.023899in}{1.537381in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{1.685988in}}{\pgfqpoint{1.991592in}{1.713766in}}%
\pgfpathlineto{\pgfqpoint{2.023899in}{2.542778in}}% \pgfpathlineto{\pgfqpoint{1.991592in}{2.667469in}}%
\pgfpathquadraticcurveto{\pgfqpoint{2.023899in}{2.570556in}}{\pgfqpoint{1.996121in}{2.570556in}}% \pgfpathquadraticcurveto{\pgfqpoint{1.991592in}{2.695247in}}{\pgfqpoint{1.963814in}{2.695247in}}%
\pgfpathlineto{\pgfqpoint{0.597222in}{2.570556in}}% \pgfpathlineto{\pgfqpoint{0.697223in}{2.695247in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{2.570556in}}{\pgfqpoint{0.569444in}{2.542778in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{2.695247in}}{\pgfqpoint{0.669445in}{2.667469in}}%
\pgfpathlineto{\pgfqpoint{0.569444in}{1.537381in}}% \pgfpathlineto{\pgfqpoint{0.669445in}{1.713766in}}%
\pgfpathquadraticcurveto{\pgfqpoint{0.569444in}{1.509603in}}{\pgfqpoint{0.597222in}{1.509603in}}% \pgfpathquadraticcurveto{\pgfqpoint{0.669445in}{1.685988in}}{\pgfqpoint{0.697223in}{1.685988in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -707,7 +696,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=0.724263in,y=2.409477in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}% \pgftext[x=0.833411in,y=2.543241in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Execution phase}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -719,10 +708,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.205620in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.205620in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.349568in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.446790in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.302842in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.446790in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -730,7 +719,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.205620in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Queue}% \pgftext[x=1.113890in,y=2.349568in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Queue}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -742,10 +731,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{2.001763in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.001763in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.155895in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.253117in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{2.098985in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.253117in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -753,7 +742,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=2.001763in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}% \pgftext[x=1.113890in,y=2.155895in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Resubmission}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -765,10 +754,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.797905in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.797905in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.962222in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{2.059444in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.895128in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{2.059444in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -776,7 +765,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.797905in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Running}% \pgftext[x=1.113890in,y=1.962222in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Running}%
\end{pgfscope}% \end{pgfscope}%
\begin{pgfscope}% \begin{pgfscope}%
\pgfsetbuttcap% \pgfsetbuttcap%
@ -788,10 +777,10 @@
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% \definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}% \pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}% \pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.625000in}{1.594048in}}% \pgfpathmoveto{\pgfqpoint{0.725001in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.594048in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.768549in}}%
\pgfpathlineto{\pgfqpoint{0.902778in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{1.002778in}{1.865772in}}%
\pgfpathlineto{\pgfqpoint{0.625000in}{1.691270in}}% \pgfpathlineto{\pgfqpoint{0.725001in}{1.865772in}}%
\pgfpathclose% \pgfpathclose%
\pgfusepath{stroke,fill}% \pgfusepath{stroke,fill}%
\end{pgfscope}% \end{pgfscope}%
@ -799,7 +788,7 @@
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}% \pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}% \pgfsetfillcolor{textcolor}%
\pgftext[x=1.013889in,y=1.594048in,left,base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont Unknown}% \pgftext[x=1.113890in,y=1.768549in,left,base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Unknown}%
\end{pgfscope}% \end{pgfscope}%
\end{pgfpicture}% \end{pgfpicture}%
\makeatother% \makeatother%