report work
|
@ -1,22 +1,26 @@
|
|||
\documentclass{usiinfbachelorproject}
|
||||
\usepackage{enumitem}
|
||||
\usepackage{fontawesome5}
|
||||
\usepackage{pgf}
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{fit,arrows,calc,positioning}
|
||||
\usepackage{parskip}
|
||||
\setlength{\parskip}{5pt}
|
||||
\setlength{\parindent}{0pt}
|
||||
%\usepackage[printfigures]{figcaps} % figures at the end of the file
|
||||
\usepackage{xcolor}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{subcaption}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{graphicx}
|
||||
\usepackage[backend=biber,
|
||||
style=numeric,
|
||||
citestyle=ieee]{biblatex}
|
||||
\usepackage[backend=biber,style=numeric,citestyle=ieee]{biblatex}
|
||||
\usepackage{booktabs}
|
||||
\usepackage{pgfplots}
|
||||
|
||||
\usepgfplotslibrary{external}
|
||||
|
||||
\addbibresource{references.bib}
|
||||
|
||||
\setlength{\parskip}{5pt}
|
||||
\setlength{\parindent}{0pt}
|
||||
|
||||
\captionsetup{labelfont={bf}}
|
||||
|
||||
\title{Understanding and Comparing Unsuccessful Executions in Large Datacenters}
|
||||
|
@ -46,17 +50,17 @@ system attributes such asmachine locality and concurrency level.}
|
|||
\tableofcontents
|
||||
\newpage
|
||||
|
||||
\section{Introduction}
|
||||
In today's world there is an ever growing demand for efficient, large scale
|
||||
computations. The rising trend of ``big data'' put the need for efficient
|
||||
management of large scaled parallelized computing at an all time high. This fact
|
||||
also increases the demand for research in the field of distributed systems, in
|
||||
particular in how to schedule computations effectively, avoid wasting resources
|
||||
and avoid failures.
|
||||
\section{Introduction} In today's world there is an ever growing demand for
|
||||
efficient, large scale computations. The rising trend of ``big data'' put the
|
||||
need for efficient management of large scaled parallelized computing at an all
|
||||
time high. This fact also increases the demand for research in the field of
|
||||
distributed systems, in particular in how to schedule computations effectively,
|
||||
avoid wasting resources and avoid failures.
|
||||
|
||||
In 2011 Google released a month long data trace of its own \textit{Borg} cluster
|
||||
management system\cite{google-marso-11}, containing a lot of data regarding
|
||||
In 2011 Google released a month long data trace of their own cluster management
|
||||
system\cite{google-marso-11} \textit{Borg}, containing a lot of data regarding
|
||||
scheduling, priority management, and failures of a real production workload.
|
||||
This data was 2009
|
||||
This data was the foundation of the 2015 Ros\'a et al.\ paper
|
||||
\textit{Understanding the Dark Side of Big Data Clusters: An Analysis beyond
|
||||
Failures}\cite{vino-paper}, which in its many conclusions highlighted the need
|
||||
|
@ -64,69 +68,66 @@ for better cluster management highlighting the high amount of failures found in
|
|||
the traces.
|
||||
|
||||
In 2019 Google released an updated version of the \textit{Borg} cluster
|
||||
traces\cite{google-marso-19},
|
||||
not only containing data from a far bigger workload due to the sheer power of
|
||||
Moore's law, but also providing data from 8 different \textit{Borg} cells from
|
||||
datacenters all over the world. These new traces are therefore about 100 times
|
||||
larger than the old traces, weighing in terms of storage spaces approximately
|
||||
8TiB (when compressed and stored in JSONL format)\cite{google-drive-marso},
|
||||
requiring considerable computational power to analyze them and the
|
||||
implementation of special data engineering tecniques for analysis of the data.
|
||||
traces\cite{google-marso-19}, not only containing data from a far bigger
|
||||
workload due to improvements in computational technology, but also providing
|
||||
data from 8 different \textit{Borg} cells from datacenters located all over the
|
||||
world. These new traces are therefore about 100 times larger than the old
|
||||
traces, weighing in terms of storage spaces approximately 8TiB (when compressed
|
||||
and stored in JSONL format)\cite{google-drive-marso}, requiring a considerable
|
||||
amount of computational power to analyze them and the implementation of special
|
||||
data engineering techniques for analysis of the data.
|
||||
|
||||
This project aims to repeat the analysis performed in 2015 to highlight
|
||||
similarities and differences in workload this decade brought, and expanding the
|
||||
old analysis to understand even better the causes of failures and how to prevent
|
||||
them. Additionally, this report will provide an overview on the data engineering
|
||||
tecniques used to perform the queries and analyses on the 2019 traces.
|
||||
techniques used to perform the queries and analyses on the 2019 traces.
|
||||
|
||||
\section{Background information}
|
||||
|
||||
\hypertarget{introduction}{%
|
||||
\subsection{Introduction}\label{introduction}}
|
||||
\textit{Borg} is Google's own cluster management software able to run
|
||||
thousands of different jobs. Among the various cluster management services it
|
||||
provides, the main ones are: job queuing, scheduling, allocation, and
|
||||
deallocation due to higher priority computations.
|
||||
|
||||
\textbf{TBD}
|
||||
The core structure of Borg is a cell, a set of
|
||||
machines usually all within the same cluster, whose work is allocated by the
|
||||
same cluster-management system and hence a cell is handled as a unit. Each
|
||||
cell may run large computational workload that is submitted to Borg. Such
|
||||
workload is called ``job'', which outlines the computations that a user wants
|
||||
to run and is made up of several ``tasks''. A task is an executable program,
|
||||
consisting of multiple processes, which has to be run on a single machine.
|
||||
Those tasks may be ran sequentially or in parallel, and the condition for a
|
||||
job's successful termination is nontrivial.
|
||||
% Both tasks and jobs lifecyles are represented by several events, which are
|
||||
% encoded and stored in the trace as rows of various tables. Among the
|
||||
% information events provide, the field ``type'' provides information on the
|
||||
% execution status of the job or task. This field can have several values,
|
||||
% which are illustrated in figure~\ref{fig:eventtypes}.
|
||||
|
||||
\hypertarget{rosuxe0-et-al.-2015-dsn-paper}{%
|
||||
\subsection{Rosà et al.~2015 DSN
|
||||
paper}\label{rosuxe0-et-al.-2015-dsn-paper}}
|
||||
\subsection{Traces}
|
||||
|
||||
In 2015, Dr.~Andrea Rosà, Lydia Y. Chen, Prof.~Walter Binder published a
|
||||
research paper titled \textit{Understanding the Dark Side of Big Data
|
||||
Clusters: An Analysis beyond Failures}\cite{vino-paper} performing several analysis on
|
||||
Google's 2011 Borg cluster traces. The salient conclusion of that
|
||||
research is that lots of computation performed by Google would
|
||||
eventually fail, leading to large amounts of computational power being
|
||||
wasted.
|
||||
The data relative to the events happening while Borg cell
|
||||
processes the workload is then encoded and stored as rows of several tables that
|
||||
make up a single usage trace. Such data comes from the information obtained by
|
||||
the cell's management system and single machines that make up the cell. Each
|
||||
table is identified by a key, usually a timestamp.
|
||||
|
||||
Our aim with this thesis is to repeat the analysis performed in 2015 on
|
||||
the new 2019 dataset to find similarities and differences with the
|
||||
previous analysis, and ulimately find if computational power is indeed
|
||||
wasted in this new workload as well.
|
||||
In general events can be of two kinds, there are events that are relative to the
|
||||
status of the schedule, and there are other events that are relative to the
|
||||
status of a task itself.
|
||||
|
||||
\hypertarget{google-borg}{%
|
||||
\subsection{Google Borg}\label{google-borg}}
|
||||
% \subsection{Rosà et al.~2015 DSN paper}
|
||||
|
||||
Borg is Google's own cluster management software. Among the various
|
||||
cluster management services it provides, the main ones are: job queuing,
|
||||
scheduling, allocation, and deallocation due to higher priority
|
||||
computations.
|
||||
|
||||
The data this thesis is based on is from 8 Borg ``cells''
|
||||
(i.e.~clusters) spanning 8 different datacenters, all focused on
|
||||
``compute'' (i.e.~computational oriented) workloads. The data collection
|
||||
timespan matches the entire month of May 2019.
|
||||
|
||||
In Google's lingo a ``job'' is a large unit of computational workload
|
||||
made up of several ``tasks'', i.e.~a number of executions of single
|
||||
executables running on a single machine. A job may run tasks
|
||||
sequentially or in parallel, and the condition for a job's succesful
|
||||
termination is nontrivial.
|
||||
|
||||
Both tasks and jobs lifecyles are represented by several events, which
|
||||
are encoded and stored in the trace as rows of various tables. Among the
|
||||
information events provide, the field ``type'' provides information on
|
||||
the execution status of the job or task. This field can have several values,
|
||||
which are illustrated in figure~\ref{fig:eventtypes}.
|
||||
In 2015, Dr.~Andrea Rosà, Lydia Y. Chen and Prof.~Walter Binder published a
|
||||
research paper titled \textit{Understanding the Dark Side of Big Data Clusters:
|
||||
An Analysis beyond Failures}\cite{vino-paper} in which they performed several
|
||||
analysis on unsuccessful executions in the Google's 2011 Borg cluster traces
|
||||
with the aim of identifying their resource waste, their impacts on the
|
||||
performance of the application, and any causes that may lie behind such
|
||||
failures. The salient conclusion of that research is that actually lots of
|
||||
computations performed by Google would eventually end in failure, then leading
|
||||
to large amounts of computational power being wasted.
|
||||
|
||||
\begin{figure}[h]
|
||||
\begin{center}
|
||||
|
@ -134,12 +135,15 @@ which are illustrated in figure~\ref{fig:eventtypes}.
|
|||
\toprule
|
||||
\textbf{Type code} & \textbf{Description} \\
|
||||
\midrule
|
||||
\texttt{QUEUE} & The job or task was marked not eligible for scheduling
|
||||
by Borg's scheduler, and thus Borg will move the job/task in a long
|
||||
wait queue\\
|
||||
\texttt{SUBMIT} & The job or task was submitted to Borg for execution\\
|
||||
\texttt{ENABLE} & The job or task became eligible for scheduling\\
|
||||
\texttt{SCHEDULE} & The job or task's execution started\\
|
||||
% SUGGERIMENTO, NON CANCELLARE MAI, A MENO CHE NON SONO COSE COMPLETAMENTE
|
||||
% INUTILI, IN MOLTI CASI VA BENE COMMENTARE, INTANTO NON INFLUISCONO CON LA
|
||||
% COMPILAZIONE.
|
||||
% \texttt{QUEUE} & The job or task was marked not eligible for scheduling
|
||||
% by Borg's scheduler, and thus Borg will move the job/task in a long
|
||||
% wait queue\\
|
||||
% \texttt{SUBMIT} & The job or task was submitted to Borg for execution\\
|
||||
% \texttt{ENABLE} & The job or task became eligible for scheduling\\
|
||||
% \texttt{SCHEDULE} & The job or task's execution started\\
|
||||
\texttt{EVICT} & The job or task was terminated in order to free
|
||||
computational resources for an higher priority job\\
|
||||
\texttt{FAIL} & The job or task terminated its execution unsuccesfully
|
||||
|
@ -147,15 +151,15 @@ which are illustrated in figure~\ref{fig:eventtypes}.
|
|||
\texttt{FINISH} & The job or task terminated succesfully\\
|
||||
\texttt{KILL} & The job or task terminated its execution because of a
|
||||
manual request to stop it\\
|
||||
\texttt{LOST} & It is assumed a job or task is has been terminated, but
|
||||
due to missing data there is insufficent information to identify when
|
||||
or how\\
|
||||
\texttt{UPDATE\_PENDING} & The metadata (scheduling class, resource
|
||||
requirements, \ldots) of the job/task was updated while the job was
|
||||
waiting to be scheduled\\
|
||||
\texttt{UPDATE\_RUNNING} & The metadata (scheduling class, resource
|
||||
requirements, \ldots) of the job/task was updated while the job was in
|
||||
execution\\
|
||||
% \texttt{LOST} & It is assumed a job or task is has been terminated, but
|
||||
% due to missing data there is insufficent information to identify when
|
||||
% or how\\
|
||||
% \texttt{UPDATE\_PENDING} & The metadata (scheduling class, resource
|
||||
% requirements, \ldots) of the job/task was updated while the job was
|
||||
% waiting to be scheduled\\
|
||||
% \texttt{UPDATE\_RUNNING} & The metadata (scheduling class, resource
|
||||
% requirements, \ldots) of the job/task was updated while the job was in
|
||||
% execution\\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{center}
|
||||
|
@ -246,6 +250,14 @@ detail in the following section.
|
|||
analysis}\label{project-requirements-and-analysis}}
|
||||
|
||||
\textbf{TBD} (describe our objective with this analysis in detail)
|
||||
The aim of this thesis is to repeat the analysis performed in 2015 on the
|
||||
dataset Google has released in 2019 in order to find similarities and
|
||||
differences with the previous analysis, and ultimately find whether
|
||||
computational power is indeed wasted in this new workload as well. The 2019 data
|
||||
comes from 8 Borg cells spanning 8 different datacenters located in different
|
||||
geographical positions, all focused on computational oriented workloads. The
|
||||
data collection time span matches the entire month of May 2019.
|
||||
|
||||
|
||||
\hypertarget{analysis-methodology}{%
|
||||
\section{Analysis methodology}\label{analysis-methodology}}
|
||||
|
@ -281,6 +293,7 @@ The chosen programming language for writing analysis scripts was Python.
|
|||
Spark has very powerful native Python bindings in the form of the
|
||||
\emph{PySpark} API, which were used to implement the various queries.
|
||||
|
||||
|
||||
\hypertarget{query-architecture}{%
|
||||
\subsection{Query architecture}\label{query-architecture}}
|
||||
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
compiler = pdflatex --enable-write18 -shell-escape
|
||||
|
||||
default:
|
||||
mkdir -p build
|
||||
pdflatex -output-directory=build Claudio_Maggioni_report
|
||||
$(compiler) -output-directory=build Claudio_Maggioni_report
|
||||
biber build/Claudio_Maggioni_report.bcf
|
||||
pdflatex -output-directory=build Claudio_Maggioni_report
|
||||
pdflatex -output-directory=build Claudio_Maggioni_report
|
||||
$(compiler) -output-directory=build Claudio_Maggioni_report
|
||||
$(compiler) -output-directory=build Claudio_Maggioni_report
|
||||
mv build/Claudio_Maggioni_report.pdf ./
|
||||
|
||||
quick:
|
||||
mkdir -p build
|
||||
pdflatex -output-directory=build Claudio_Maggioni_report
|
||||
$(compiler) -output-directory=build Claudio_Maggioni_report
|
||||
mv build/Claudio_Maggioni_report.pdf ./
|
||||
|
||||
clean:
|
||||
|
|
|
@ -1,142 +1,39 @@
|
|||
\newcommand{\spatialresourcewaste}[3][0.24\textwidth]{
|
||||
\begin{subfigure}{0.24\textwidth}
|
||||
\vspace{0.5cm}
|
||||
\newcommand{\spatialresourcewaste}[2][0.33\textwidth]{
|
||||
\begin{subfigure}{#1}
|
||||
%\ifnum#1=1 \hspace{0.25\textwidth} \fi
|
||||
\begin{minipage}[c]{\textwidth}%
|
||||
\includegraphics[width=1\textwidth]{figures/spatial_resource_waste/#3}
|
||||
\end{minipage}
|
||||
\resizebox{\textwidth}{!}{%
|
||||
\input{figures/spatial_resource_waste/#2.pgf}}
|
||||
%\hfill
|
||||
\caption{#2}
|
||||
\end{subfigure}}
|
||||
|
||||
\newcommand{\spatialresourcewastetable}[3][0.9\textwidth]{
|
||||
\begin{subfigure}{0.24\textwidth}
|
||||
\begin{minipage}[c][#1]{\textwidth}%
|
||||
\resizebox{\textwidth}{!}{
|
||||
\centering
|
||||
\begin{tabular}{llll}
|
||||
\toprule
|
||||
\textbf{Task termination} & \textbf{\% CPU} & \textbf{\% RAM} \\
|
||||
\midrule
|
||||
#3
|
||||
\bottomrule
|
||||
\end{tabular}}
|
||||
\end{minipage}
|
||||
\caption{#2 (exact values)}
|
||||
\end{subfigure}}
|
||||
|
||||
\begin{figure}
|
||||
\spatialresourcewaste{Cluster A}{output_3_1.png}
|
||||
\spatialresourcewaste{Cluster B}{output_3_3.png}
|
||||
\spatialresourcewaste{Cluster C}{output_3_5.png}
|
||||
\spatialresourcewaste{Cluster D}{output_3_7.png}
|
||||
\spatialresourcewastetable{Cluster A}{
|
||||
No termination & 0.6972\% & 1.0447\% \\
|
||||
Evict & 13.4392\% & 11.8184\% \\
|
||||
Fail & 2.2792\% & 2.8387\% \\
|
||||
Finish & 1.3963\% & 1.1066\% \\
|
||||
Kill & 82.1791\% & 83.1826\% \\
|
||||
Lost & 0.0091\% & 0.0091\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster B}{
|
||||
No termination & 0.2582\% & 0.4637\%\\
|
||||
Evict & 4.8340\% & 7.3120\%\\
|
||||
Fail & 6.2950\% & 8.3841\%\\
|
||||
Finish & 2.5877\% & 1.2231\%\\
|
||||
Kill & 86.0215\% & 82.6144\%\\
|
||||
Lost & 0.0036\% & 0.0027\%\\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster C}{
|
||||
No termination & 0.3376\% & 0.3812\% \\
|
||||
Evict & 8.2099\% & 8.0454\% \\
|
||||
Fail & 1.2294\% & 2.0809\% \\
|
||||
Finish & 2.9399\% & 3.3249\% \\
|
||||
Kill & 87.2740\% & 86.1588\% \\
|
||||
Lost & 0.0093\% & 0.0088\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster D}{
|
||||
No termination & 0.4995\% & 0.4822\% \\
|
||||
Evict & 7.6002\% & 9.0656\% \\
|
||||
Fail & 3.0288\% & 3.9214\% \\
|
||||
Finish & 0.8666\% & 0.8914\% \\
|
||||
Kill & 88.0011\% & 85.6364\% \\
|
||||
Lost & 0.0039\% & 0.0030\% \\
|
||||
}
|
||||
\caption{Relative usage of CPU and RAM resources w.r.t. final task termination.}\label{fig:spatialresourcewaste-actual}
|
||||
\spatialresourcewaste[0.5\textwidth]{used-2011}
|
||||
\spatialresourcewaste[0.5\textwidth]{used-all}
|
||||
\caption{Percentages of CPU and RAM resources used by tasks w.r.t. task termination type in 2011 and 2019 traces (average of clusters A to D). The x axis is the type of resource, y-axis is the percentage of resource used and color represents task termination. Numeric values are displayed below the graph as a table.}\label{fig:spatialresourcewaste-requested}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}
|
||||
\spatialresourcewaste{Cluster A}{output_3_9.png}
|
||||
\spatialresourcewaste{Cluster B}{output_3_11.png}
|
||||
\spatialresourcewaste{Cluster C}{output_3_13.png}
|
||||
\spatialresourcewaste{Cluster D}{output_3_15.png}
|
||||
\spatialresourcewastetable{Cluster A}{
|
||||
No termination & 0.033962\% & 0.193674\% \\
|
||||
Evict & 2.838362\% & 3.399075\% \\
|
||||
Fail & 0.058335\% & 0.069755\% \\
|
||||
Finish & 0.000102\% & 0.000151\% \\
|
||||
Kill & 96.661332\% & 95.799104\% \\
|
||||
Lost & 0.407908\% & 0.538242\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster B}{
|
||||
No termination & 0.000094\% & 0.000191\% \\
|
||||
Evict & 0.003365\% & 0.004696\% \\
|
||||
Fail & 0.003061\% & 0.004965\% \\
|
||||
Finish & 0.012696\% & 0.017647\% \\
|
||||
Kill & 91.094839\% & 85.573746\% \\
|
||||
Lost & 8.885947\% & 14.398756\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster C}{
|
||||
No termination & 0.000105\% & 0.000221\% \\
|
||||
Evict & 0.008618\% & 0.006991\% \\
|
||||
Fail & 0.001261\% & 0.001459\% \\
|
||||
Finish & 0.015047\% & 0.017003\% \\
|
||||
Kill & 82.483146\% & 79.698011\% \\
|
||||
Lost & 17.491823\% & 20.276314\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster D}{
|
||||
No termination & 0.000948\% & 0.000128\% \\
|
||||
Evict & 0.046057\% & 0.006352\% \\
|
||||
Fail & 0.023703\% & 0.002770\% \\
|
||||
Finish & 0.095353\% & 0.012975\% \\
|
||||
Kill & 95.468127\% & 97.927565\% \\
|
||||
Lost & 4.365813\% & 2.050210\% \\
|
||||
}
|
||||
\spatialresourcewaste{Cluster E}{output_3_17.png}
|
||||
\spatialresourcewaste{Cluster F}{output_3_19.png}
|
||||
\spatialresourcewaste{Cluster G}{output_3_21.png}
|
||||
\spatialresourcewaste{Cluster H}{output_3_23.png}
|
||||
\spatialresourcewastetable{Cluster E}{
|
||||
No termination & 0.015102\% & 0.016472\% \\
|
||||
Evict & 0.362088\% & 0.321274\% \\
|
||||
Fail & 0.051373\% & 0.047377\% \\
|
||||
Finish & 1.672195\% & 1.310360\% \\
|
||||
Kill & 97.899179\% & 98.304482\% \\
|
||||
Lost & 0.000063\% & 0.000034\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster F}{
|
||||
No termination & 0.000114\% & 0.000306\% \\
|
||||
Evict & 0.007986\% & 0.013466\% \\
|
||||
Fail & 0.000913\% & 0.002064\% \\
|
||||
Finish & 0.013296\% & 0.021751\% \\
|
||||
Kill & 94.396548\% & 90.227868\% \\
|
||||
Lost & 5.581144\% & 9.734546\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster G}{
|
||||
No termination & 0.001283\% & 0.000748\% \\
|
||||
Evict & 0.034040\% & 0.025278\% \\
|
||||
Fail & 0.004384\% & 0.003918\% \\
|
||||
Finish & 0.176091\% & 0.166656\% \\
|
||||
Kill & 27.376816\% & 30.954255\% \\
|
||||
Lost & 72.407386\% & 68.849146\% \\
|
||||
}
|
||||
\spatialresourcewastetable{Cluster H}{
|
||||
No termination & 0.000148\% & 0.000022\% \\
|
||||
Evict & 0.006021\% & 0.000751\% \\
|
||||
Fail & 0.000858\% & 0.000144\% \\
|
||||
Finish & 0.015642\% & 0.001873\% \\
|
||||
Kill & 78.910066\% & 97.713322\% \\
|
||||
Lost & 21.067264\% & 2.283888\% \\
|
||||
}
|
||||
\caption{Relative request of CPU and RAM resources prior to tasks' execution w.r.t. final task termination.}\label{fig:spatialresourcewaste-requested}
|
||||
\spatialresourcewaste{used-a}
|
||||
\spatialresourcewaste{used-b}
|
||||
\spatialresourcewaste{used-c}
|
||||
\spatialresourcewaste{used-d}
|
||||
\caption{Percentages of CPU and RAM resources used by tasks w.r.t. task termination type for clusters A to D in 2019 traces. Refer to figure~\ref{fig:spatialresourcewaste-requested} for plot explaination.}\label{fig:spatialresourcewaste-actual-csts}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}
|
||||
\spatialresourcewaste[0.5\textwidth]{requested-2011}
|
||||
\spatialresourcewaste[0.5\textwidth]{requested-all}
|
||||
\caption{Percentages of CPU and RAM resources requested by tasks w.r.t. task termination type in 2011 and 2019 traces. The x axis is the type of resource, y-axis is the percentage of resource used and color represents task termination. Numeric values are displayed below the graph as a table.}\label{fig:spatialresourcewaste-actual}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}
|
||||
\spatialresourcewaste{requested-a}
|
||||
\spatialresourcewaste{requested-b}
|
||||
\spatialresourcewaste{requested-c}
|
||||
\spatialresourcewaste{requested-d}
|
||||
\spatialresourcewaste{requested-e}
|
||||
\spatialresourcewaste{requested-f}
|
||||
\spatialresourcewaste{requested-g}
|
||||
\spatialresourcewaste{requested-h}
|
||||
\caption{Percentages of CPU and RAM resources requested by tasks w.r.t. task termination type for in 2019 traces. Refer to figure~\ref{fig:spatialresourcewaste-requested} for plot explaination.}\label{fig:spatialresourcewaste-actual-csts}
|
||||
\end{figure}
|
||||
|
|
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 10 KiB |
722
report/figures/spatial_resource_waste/requested-2011.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 28.20\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 30.40\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 31.70\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 23.50\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 13.90\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 17.30\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 26.20\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 28.80\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.023639in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{2.023639in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.066503in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{2.066503in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{2.023639in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.023639in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.641277in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{2.641277in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{2.066503in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.066503in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.524374in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{2.524374in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{2.641277in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.641277in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.912103in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{2.912103in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{2.524374in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.524374in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.861445in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{2.861445in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{2.912103in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.912103in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{2.861445in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.861445in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-a.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.85\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.42\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.06\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.07\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 97.09\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 96.51\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.529741in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.529741in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.540909in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.540909in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.529741in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.529741in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.530883in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.530883in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.540909in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.540909in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.542278in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.542278in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.530883in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.530883in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.530885in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.530885in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.542278in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.542278in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.542281in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.542281in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.530885in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.530885in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.542281in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.542281in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-all.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.73\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.04\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.06\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.06\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 97.21\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 96.89\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.527341in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.527341in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.533472in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.533472in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.527341in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.527341in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.528435in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.528435in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.533472in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.533472in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.534690in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.534690in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.528435in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.528435in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.528459in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.528459in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.534690in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.534690in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.534715in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.534715in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.528459in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.528459in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.534715in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.534715in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-b.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.98\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.97\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474265in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474265in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474300in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474300in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474265in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474265in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474331in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474331in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474300in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474300in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474413in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474413in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474331in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474331in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474602in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474602in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474413in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474413in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474815in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474815in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474602in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474602in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474815in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474815in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-c.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.97\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.97\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474397in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474397in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474364in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474364in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474397in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474397in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474427in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474427in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474364in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474364in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474427in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474427in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474782in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474782in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474816in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474816in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474782in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474782in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474816in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474816in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-d.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.05\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.10\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.83\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.98\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.475132in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.475132in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474320in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474320in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.475132in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.475132in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.475615in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.475615in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474320in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474320in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474375in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474375in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.475615in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.475615in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.477557in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.477557in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474375in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474375in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474633in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474633in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.477557in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.477557in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474633in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474633in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-e.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.36\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.32\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.05\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.05\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.67\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.31\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 97.91\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 98.32\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.481249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.481249in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.480454in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.480454in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.481249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.481249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.482251in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.482251in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.480454in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.480454in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.481377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.481377in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.482251in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.482251in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.514836in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.514836in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.481377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.481377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.506913in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.506913in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.514836in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.514836in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.506913in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.506913in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster E (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-f.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.98\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.96\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474358in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474358in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474484in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474484in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474358in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474358in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474377in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474484in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474484in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474529in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474529in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474377in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474652in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474652in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474529in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474529in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474998in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474998in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474652in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474652in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474998in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474998in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster F (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-g.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.12\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.08\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.64\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.54\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.22\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.37\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.476597in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.476597in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.475775in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.475775in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.476597in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.476597in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.476907in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.476907in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.475775in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.475775in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.476020in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.476020in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.476907in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.476907in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.489342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.489342in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.476020in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.476020in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.486444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.486444in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.489342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.489342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.486444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.486444in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster G (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/requested-h.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.01\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 99.97\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474342in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474209in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474209in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474342in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474363in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474363in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474209in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474209in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474211in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474211in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474363in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474363in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474749in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.474749in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474211in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474211in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.474249in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474749in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474749in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474249in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster H (requested resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-2011.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 19.20\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 21.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 13.70\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 14.20\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 23.20\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 32.10\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 43.90\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 32.70\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.848284in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.848284in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.883355in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.883355in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.848284in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.848284in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.115213in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{2.115213in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.883355in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.883355in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.160026in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{2.160026in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{2.115213in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.115213in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.567239in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{2.567239in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{2.160026in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.160026in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.785458in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{2.785458in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{2.567239in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{2.567239in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{2.785458in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{2.785458in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2011 data (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-a.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 13.53\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 11.94\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.30\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.87\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.41\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.12\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 82.76\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 84.07\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.737903in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.737903in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.706914in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.706914in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.737903in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.737903in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.782627in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.782627in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.706914in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.706914in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.762811in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.762811in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.782627in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.782627in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.810025in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.810025in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.762811in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.762811in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.784601in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.784601in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.810025in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.810025in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.784601in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.784601in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster A (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-all.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8.53\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 9.03\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.17\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4.45\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.02\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.66\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 86.29\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 84.86\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.640369in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.640369in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.650049in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.650049in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.640369in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.640369in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.702048in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.702048in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.650049in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.650049in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736774in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.736774in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.702048in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.702048in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.741408in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.741408in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.736774in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.736774in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.769128in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.769128in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.741408in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.741408in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.769128in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.769128in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont 2019 data (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-b.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 4.85\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 7.35\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 6.31\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8.42\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.59\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.23\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 86.25\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 83.00\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.568626in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.568626in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.617328in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.617328in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.568626in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.568626in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.691598in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.691598in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.617328in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.617328in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.781448in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.781448in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.691598in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.691598in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.742149in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.742149in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.781448in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.781448in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.805390in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.805390in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.742149in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.742149in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.805390in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.805390in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster B (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-c.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8.24\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 8.08\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 1.23\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.09\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 2.95\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.34\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 87.58\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 86.50\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.634711in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.634711in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.631563in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.631563in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.634711in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.634711in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.658747in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.658747in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.631563in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.631563in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.672266in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.672266in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.658747in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.658747in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.716227in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.716227in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.672266in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.672266in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.737302in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.737302in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.716227in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.716227in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.737302in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.737302in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster C (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
722
report/figures/spatial_resource_waste/used-d.pgf
Normal file
|
@ -0,0 +1,722 @@
|
|||
%% Creator: Matplotlib, PGF backend
|
||||
%%
|
||||
%% To include the figure in your LaTeX document, write
|
||||
%% \input{<filename>.pgf}
|
||||
%%
|
||||
%% Make sure the required packages are loaded in your preamble
|
||||
%% \usepackage{pgf}
|
||||
%%
|
||||
%% 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
|
||||
%% from other directories you can use the `import` package
|
||||
%% \usepackage{import}
|
||||
%%
|
||||
%% and then include the figures with
|
||||
%% \import{<path to file>}{<filename>.pgf}
|
||||
%%
|
||||
%% Matplotlib used the following preamble
|
||||
%% \usepackage{fontspec}
|
||||
%% \setmainfont{DejaVuSerif.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setsansfont{DejaVuSans.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%% \setmonofont{DejaVuSansMono.ttf}[Path=\detokenize{/Users/maggicl/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/}]
|
||||
%%
|
||||
\begingroup%
|
||||
\makeatletter%
|
||||
\begin{pgfpicture}%
|
||||
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfusepath{use as bounding box, clip}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{0.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{4.000000in}{4.000000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.275000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% CPU}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.406000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.406000in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.825000in,y=1.315400in,,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont \% Memory}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=1.134200in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont EVICT}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 7.64\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.224800in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.224800in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=1.134200in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 9.11\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.953000in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FAIL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.04\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{1.043600in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{1.043600in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.953000in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 3.94\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.771800in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont FINISH}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.87\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.862400in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.862400in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.771800in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0.90\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{-0.049968in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{-0.049968in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=0.005029in,y=0.590600in,left,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont KILL}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=1.895000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 88.45\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{1.003750pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.050000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.681200in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.050000in}{0.681200in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{stroke,fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=3.445000in,y=0.590600in,right,]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 86.05\%}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.623023in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.623023in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.956863,0.427451,0.262745}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.474194in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.651687in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.651687in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.623023in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.623023in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.682334in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.682334in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.996078,0.878431,0.545098}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.651687in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.651687in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.728464in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.728464in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.682334in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.682334in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.699303in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{1.699303in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.400000,0.760784,0.647059}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.728464in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.728464in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.745916in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{1.745916in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.640909in}{1.699303in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{1.699303in}}%
|
||||
\pgfpathlineto{\pgfqpoint{1.935749in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.640909in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfpathrectangle{\pgfqpoint{0.500000in}{0.500000in}}{\pgfqpoint{3.100000in}{3.020000in}}%
|
||||
\pgfusepath{clip}%
|
||||
\pgfsetbuttcap%
|
||||
\pgfsetmiterjoin%
|
||||
\definecolor{currentfill}{rgb}{0.199462,0.528950,0.739100}%
|
||||
\pgfsetfillcolor{currentfill}%
|
||||
\pgfsetlinewidth{0.000000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetstrokeopacity{0.000000}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{2.164251in}{1.745916in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{1.745916in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.459091in}{3.422581in}}%
|
||||
\pgfpathlineto{\pgfqpoint{2.164251in}{3.422581in}}%
|
||||
\pgfpathclose%
|
||||
\pgfusepath{fill}%
|
||||
\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.500000in}{1.474194in}%
|
||||
\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.314412in, y=1.421432in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 0}%
|
||||
\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.500000in}{1.863871in}%
|
||||
\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.226047in, y=1.811109in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 20}%
|
||||
\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.500000in}{2.253548in}%
|
||||
\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.226047in, y=2.200787in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 40}%
|
||||
\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.500000in}{2.643226in}%
|
||||
\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.226047in, y=2.590464in, 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.500000in}{3.032903in}%
|
||||
\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.226047in, y=2.980142in, 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.500000in}{3.422581in}%
|
||||
\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.137682in, y=3.369819in, left, base]{\color{textcolor}\sffamily\fontsize{10.000000}{12.000000}\selectfont 100}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{0.500000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{0.500000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\pgfsetrectcap%
|
||||
\pgfsetmiterjoin%
|
||||
\pgfsetlinewidth{0.803000pt}%
|
||||
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{currentstroke}%
|
||||
\pgfsetdash{}{0pt}%
|
||||
\pgfpathmoveto{\pgfqpoint{0.500000in}{3.520000in}}%
|
||||
\pgfpathlineto{\pgfqpoint{3.600000in}{3.520000in}}%
|
||||
\pgfusepath{stroke}%
|
||||
\end{pgfscope}%
|
||||
\begin{pgfscope}%
|
||||
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
|
||||
\pgfsetstrokecolor{textcolor}%
|
||||
\pgfsetfillcolor{textcolor}%
|
||||
\pgftext[x=2.050000in,y=3.603333in,,base]{\color{textcolor}\sffamily\fontsize{12.000000}{14.400000}\selectfont Cluster D (used resources)}%
|
||||
\end{pgfscope}%
|
||||
\end{pgfpicture}%
|
||||
\makeatother%
|
||||
\endgroup%
|
|
@ -1,5 +1,5 @@
|
|||
\newcommand{\taskslowdown}[2]{
|
||||
\begin{subfigure}{0.33\textwidth}
|
||||
\begin{subfigure}{0.49\textwidth}
|
||||
\vspace{0.5cm}
|
||||
\begin{minipage}[c]{\textwidth}%
|
||||
\resizebox{\textwidth}{!}{#2}
|
||||
|
@ -17,39 +17,30 @@
|
|||
|
||||
\begin{figure}
|
||||
\taskslowdownbig{2011 data}{
|
||||
\begin{tabular}{rlrrr}
|
||||
\begin{tabular}{rp{2.5cm}rrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{Equivalent 2019 priority} & \textbf{\% finished} &
|
||||
\textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 53.80\% & 2845 & 1767 & 3.37\\
|
||||
1 & 67.44\% & 3598 & 2939 &2.58\\
|
||||
2 & 90.78\% & 1835 & 1782 &1.15\\
|
||||
3 & 95.62\% & 9683 & 8294 &3.39\\
|
||||
4 & 78.05\% & 2006 & 1890 &1.69 \\
|
||||
5 & 100\% & 58 & 58 & 1 \\
|
||||
6 & 77.99\% & 567 & 567 & 1.02 \\
|
||||
8 & 45.48\% & 1159 & 1151 & 1.01 \\
|
||||
9 & 23.35\% & 504 & 496 & 1.07 \\
|
||||
0 & $\leq 99$ & 53.80\% & 2845 & 1767 & 3.37\\
|
||||
1 & $\leq 99$ & 67.44\% & 3598 & 2939 &2.58\\
|
||||
2 & $\in [110,115]$ & 90.78\% & 1835 & 1782 &1.15\\
|
||||
3 & $\in [110,115]$ & 95.62\% & 9683 & 8294 &3.39\\
|
||||
4 & $\in [110,115]$ & 78.05\% & 2006 & 1890 &1.69 \\
|
||||
5 & $\in [110,115]$ & 100\% & 58 & 58 & 1 \\
|
||||
6 & $\in [110,115]$ & 77.99\% & 567 & 567 & 1.02 \\
|
||||
8 & $\in [110,115]$ & 45.48\% & 1159 & 1151 & 1.01 \\
|
||||
9 & $\in [120,359]$ & 23.35\% & 504 & 496 & 1.07 \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
}
|
||||
\taskslowdownbig{2019 data}{
|
||||
\end{tabular}}%
|
||||
\taskslowdownbig{2019 data}{%
|
||||
\begin{tabular}{rlrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 42.86\% & 1373.0 & 0.0 & 1.136770 \\
|
||||
3 & 0.0\% & -- & 0.0 & -- \\
|
||||
5 & 0.0\% & -- & 0.0 & -- \\
|
||||
10 & 0.0\% & -- & 0.0 & -- \\
|
||||
19 & 0.0\% & -- & 0.0 & -- \\
|
||||
24 & 0.0\% & -- & 0.0 & -- \\
|
||||
25 & 1.31\% & 86732.0 & 22.0 & 11.772172 \\
|
||||
50 & 0.0\% & -- & 0.0 & -- \\
|
||||
80 & 0.0\% & -- & 0.0 & -- \\
|
||||
100 & 0.0\% & -- & 0.0 & -- \\
|
||||
101 & 5.2\% & 65233.0 & 673.0 & 36.358841 \\
|
||||
102 & 0.0\% & -- & 0.0 & -- \\
|
||||
103 & 1.05\% & 8210.0 & 28.0 & 1.257530 \\
|
||||
105 & 22.9\% & 3651.0 & 616.0 & 1.733089 \\
|
||||
107 & 18.51\% & 1025.0 & 308.0 & 1.017332 \\
|
||||
|
@ -59,86 +50,61 @@
|
|||
117 & 0.0\% & 2430.0 & 1.0 & 1.000000 \\
|
||||
118 & 1.28\% & 15072.0 & 163.0 & 3.340741 \\
|
||||
119 & 4.49\% & 19449.0 & 280.0 & 5.326446 \\
|
||||
170 & 0.0\% & -- & 0.0 & -- \\
|
||||
197 & 0.0\% & -- & 0.0 & -- \\
|
||||
199 & 0.0\% & -- & 0.0 & -- \\
|
||||
200 & 13.54\% & 54789.0 & 24.0 & 6.684155 \\
|
||||
201 & 0.0\% & -- & 0.0 & -- \\
|
||||
205 & 0.0\% & -- & 0.0 & -- \\
|
||||
210 & 0.0\% & -- & 0.0 & -- \\
|
||||
214 & 0.0\% & -- & 0.0 & -- \\
|
||||
215 & 0.0\% & -- & 0.0 & -- \\
|
||||
220 & 0.0\% & -- & 0.0 & -- \\
|
||||
360 & 3.36\% & 788069.0 & 42.0 & 2.241646 \\
|
||||
400 & 0.0\% & -- & 0.0 & -- \\
|
||||
450 & 1.15\% & 1182248.0 & 197.0 & 1.068893 \\
|
||||
500 & 0.0\% & -- & 0.0 & -- \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
}
|
||||
\caption{Mean task slowdown for each cluster and each task \textbf{Priority}}\label{fig:taskslowdown}
|
||||
\caption{Mean task slowdown for each cluster and each task priority for 2011 and
|
||||
2019 data. \textbf{\% finished} is the percentage of tasks with
|
||||
\texttt{FINISH} termination w.r.t.\ priority, \textbf{Mean resp. (last
|
||||
exec.)} is the mean response time (queue+execution time) for the last
|
||||
task execution w.r.t.\ priority, \textbf{Mean resp. (all execs.)} is
|
||||
the response time of all executions, \textbf{Mean slowdown} is the mean
|
||||
slowdown measure w.r.t.\ priority. Note that task priorities in 2011
|
||||
were expressed in a 0--11 range, so equivalent 2019 priorities are
|
||||
provided in the 2011 table.}\label{fig:taskslowdown}
|
||||
\end{figure}
|
||||
|
||||
\begin{figure}
|
||||
\taskslowdown{Cluster A}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
24 & 0.0\% & -- & -- & -- \\
|
||||
25 & 0.33\% & 5769.0 & 1203.0 & 82.97 \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 81.92\% & 63305.0 & 6346.0 & 30.80 \\
|
||||
102 & 0.0\% & -- & -- & -- \\
|
||||
103 & 14.99\% & 3074.0 & 3033.0 & 1.13 \\
|
||||
105 & 57.68\% & 1666.0 & 1750.0 & 1.08 \\
|
||||
107 & 53.93\% & 1022.0 & 1031.0 & 1.02 \\
|
||||
114 & 0.0\% & -- & -- & -- \\
|
||||
115 & 4.11\% & 2041.0 & 2042.0 & 1.00 \\
|
||||
116 & 13.05\% & 4443.0 & 4443.0 & 1.03 \\
|
||||
117 & 0.0\% & -- & -- & -- \\
|
||||
118 & 11.91\% & 1817.0 & 1814.0 & 1.00 \\
|
||||
119 & 21.26\% & 2250.0 & 2877.0 & 1.50 \\
|
||||
170 & 0.0\% & -- & -- & -- \\
|
||||
200 & 27.21\% & 4546.0 & 16845.0 & 4.12 \\
|
||||
205 & 0.0\% & -- & -- & -- \\
|
||||
210 & 0.0\% & -- & -- & -- \\
|
||||
214 & 0.0\% & -- & -- & -- \\
|
||||
215 & 0.0\% & -- & -- & -- \\
|
||||
360 & 0.62\% & 514181.0 & 400580.0 & 2.92 \\
|
||||
400 & 0.0\% & -- & -- & -- \\
|
||||
450 & 2.2\% & 686817.0 & 653878.0 & 1.14 \\
|
||||
500 & 0.0\% & -- & -- & -- \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
|
||||
}
|
||||
\taskslowdown{Cluster B}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 45.19\% & 1351.0 & 1467.0 & 1.18 \\
|
||||
25 & 0.02\% & 10696.0 & 4121.0 & 133.48 \\
|
||||
80 & 0.0\% & -- & -- & -- \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 66.48\% & 6069.0 & 5402.0 & 433.41 \\
|
||||
103 & 0.11\% & 19430.0 & 14897.0 & 1.65 \\
|
||||
105 & 0.46\% & 934421.0 & 392431.0 & 2.41 \\
|
||||
107 & 0.0\% & -- & -- & -- \\
|
||||
114 & 0.68\% & 32949.0 & 30470.0 & 1.00 \\
|
||||
115 & 4.12\% & 25585.0 & 107089.0 & 5.92 \\
|
||||
116 & 8.32\% & 29290.0 & 29017.0 & 1.11 \\
|
||||
117 & 0.0\% & -- & -- & -- \\
|
||||
118 & 0.31\% & 2776.0 & 2776.0 & 1.00 \\
|
||||
119 & 0.2\% & 193081.0 & 304469.0 & 2.56 \\
|
||||
170 & 0.0\% & -- & -- & -- \\
|
||||
199 & 0.0\% & -- & -- & -- \\
|
||||
200 & 30.92\% & 182604.0 & 466329.0 & 9.71 \\
|
||||
205 & 0.0\% & -- & -- & -- \\
|
||||
210 & 0.0\% & -- & -- & -- \\
|
||||
214 & 0.0\% & -- & -- & -- \\
|
||||
215 & 0.0\% & -- & -- & -- \\
|
||||
360 & 3.5\% & 1048245.0 & 495124.0 & 1.61 \\
|
||||
450 & 0.61\% & 1579367.0 & 1529555.0 & 1.06 \\
|
||||
\bottomrule
|
||||
|
@ -146,15 +112,12 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster C}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 50.89\% & 933.0 & 1002.0 & 1.11 \\
|
||||
3 & 0.0\% & -- & -- & -- \\
|
||||
10 & 0.0\% & -- & -- & -- \\
|
||||
25 & 22.47\% & 171281.0 & 4551.0 & 8.19 \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 52.63\% & 6271.0 & 2498.0 & 421.49 \\
|
||||
103 & 0.01\% & 3344.0 & 7444.0 & 2.79 \\
|
||||
105 & 0.02\% & 1202141.0 & 863764.0 & 1.37 \\
|
||||
|
@ -165,12 +128,7 @@
|
|||
117 & 93.17\% & 2144.0 & 2144.0 & 1.00 \\
|
||||
118 & 0.0\% & 1114.0 & 1112.0 & 1.10 \\
|
||||
119 & 2.22\% & 573740.0 & 242446.0 & 2.04 \\
|
||||
170 & 0.0\% & -- & -- & -- \\
|
||||
200 & 3.61\% & 352603.0 & 357993.0 & 4.14 \\
|
||||
205 & 0.0\% & -- & -- & -- \\
|
||||
210 & 0.0\% & -- & -- & -- \\
|
||||
214 & 0.0\% & -- & -- & -- \\
|
||||
215 & 0.0\% & -- & -- & -- \\
|
||||
360 & 4.37\% & 769284.0 & 442062.0 & 2.06 \\
|
||||
450 & 1.51\% & 1390175.0 & 1319771.0 & 1.07 \\
|
||||
\bottomrule
|
||||
|
@ -178,31 +136,22 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster D}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 26.52\% & 1398.0 & 1469.0 & 1.12 \\
|
||||
5 & 0.0\% & -- & -- & -- \\
|
||||
25 & 16.29\% & 21432.0 & 4037.0 & 65.68 \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 45.31\% & 8391.0 & 3317.0 & 315.95 \\
|
||||
103 & 0.0\% & 6791.0 & 6647.0 & 1.07 \\
|
||||
105 & 0.05\% & 825749.0 & 924081.0 & 2.90 \\
|
||||
107 & 0.0\% & 300532.0 & 174837.0 & 1.55 \\
|
||||
114 & 0.0\% & -- & -- & -- \\
|
||||
115 & 5.19\% & 12598.0 & 26142.0 & 2.19 \\
|
||||
116 & 0.13\% & 9268.0 & 10955.0 & 1.28 \\
|
||||
117 & 85.71\% & 10969.0 & 10969.0 & 1.00 \\
|
||||
118 & 0.05\% & 24041.0 & 30599.0 & 2.05 \\
|
||||
119 & 0.44\% & 184484.0 & 172746.0 & 3.02 \\
|
||||
197 & 0.0\% & -- & -- & -- \\
|
||||
199 & 0.0\% & -- & -- & -- \\
|
||||
200 & 6.53\% & 279565.0 & 349364.0 & 5.51 \\
|
||||
205 & 0.0\% & -- & -- & -- \\
|
||||
210 & 0.0\% & -- & -- & -- \\
|
||||
214 & 0.0\% & -- & -- & -- \\
|
||||
215 & 0.0\% & -- & -- & -- \\
|
||||
360 & 1.59\% & 650116.0 & 390151.0 & 2.48 \\
|
||||
450 & 0.61\% & 938727.0 & 523665.0 & 1.33 \\
|
||||
\bottomrule
|
||||
|
@ -210,30 +159,18 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster E}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 42.81\% & 802.0 & 1127.0 & 1.44 \\
|
||||
25 & 5.34\% & 32247.0 & 38946.0 & 2.68 \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 0.02\% & 30603.0 & 27726.0 & 1.12 \\
|
||||
103 & 0.02\% & 76294.0 & 48552.0 & 3.16 \\
|
||||
105 & 0.4\% & 106677.0 & 64190.0 & 14.75 \\
|
||||
107 & 0.0\% & -- & -- & -- \\
|
||||
114 & 0.0\% & -- & -- & -- \\
|
||||
115 & 0.03\% & 67237.0 & 65369.0 & 1.00 \\
|
||||
116 & 0.0\% & -- & -- & -- \\
|
||||
117 & 0.0\% & -- & -- & -- \\
|
||||
118 & 0.0\% & -- & -- & -- \\
|
||||
119 & 0.46\% & 62123.0 & 83322.0 & 10.31 \\
|
||||
170 & 0.0\% & -- & -- & -- \\
|
||||
200 & 1.96\% & 231639.0 & 414149.0 & 8.54 \\
|
||||
201 & 0.0\% & -- & -- & -- \\
|
||||
205 & 0.0\% & -- & -- & -- \\
|
||||
210 & 0.0\% & -- & -- & -- \\
|
||||
215 & 0.0\% & -- & -- & -- \\
|
||||
220 & 0.0\% & -- & -- & -- \\
|
||||
360 & 37.16\% & 611504.0 & 439280.0 & 2.87 \\
|
||||
450 & 0.55\% & 803792.0 & 824467.0 & 1.11 \\
|
||||
\bottomrule
|
||||
|
@ -241,25 +178,22 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster F}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 45.21\% & 2929.0 & 2973.0 & 1.09 \\
|
||||
25 & 0.65\% & 184518.0 & 34096.0 & 2.23 \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 40.3\% & 8160.0 & 10083.0 & 323.86 \\
|
||||
103 & 0.06\% & 46444.0 & 47234.0 & 1.17 \\
|
||||
105 & 0.22\% & 1111530.0 & 1173594.0 & 1.55 \\
|
||||
107 & 0.06\% & 80151.0 & 78835.0 & 1.01 \\
|
||||
114 & 0.01\% & 677.0 & 677.0 & 1.00 \\
|
||||
115 & 3.65\% & 121345.0 & 252663.0 & 5.09 \\
|
||||
116 & 0.0\% & -- & -- & -- \\
|
||||
117 & 0.0\% & 15875.0 & 15875.0 & 1.00 \\
|
||||
118 & 0.0\% & 30045.0 & 25492.0 & 1.00 \\
|
||||
119 & 31.35\% & 154196.0 & 68833.0 & 7.61 \\
|
||||
200 & 3.65\% & 297168.0 & 492372.0 & 5.94 \\
|
||||
201 & 0.0\% & -- & -- & -- \\
|
||||
360 & 7.42\% & 963351.0 & 569428.0 & 2.17 \\
|
||||
450 & 0.99\% & 1115783.0 & 1113282.0 & 1.02 \\
|
||||
\bottomrule
|
||||
|
@ -267,24 +201,18 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster G}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 33.61\% & 3010.0 & 3317.0 & 1.14 \\
|
||||
25 & 0.23\% & 61708.0 & 12156.0 & 8.69 \\
|
||||
50 & 0.0\% & -- & -- & -- \\
|
||||
100 & 0.0\% & -- & -- & -- \\
|
||||
101 & 96.47\% & 133953.0 & 7448.0 & 19.38 \\
|
||||
103 & 0.03\% & 118310.0 & 112746.0 & 1.27 \\
|
||||
105 & 0.2\% & 8271.0 & 8214.0 & 1.00 \\
|
||||
107 & 0.0\% & -- & -- & -- \\
|
||||
114 & 0.0\% & -- & -- & -- \\
|
||||
115 & 7.63\% & 34424.0 & 56315.0 & 1.80 \\
|
||||
117 & 0.0\% & -- & -- & -- \\
|
||||
118 & 48.97\% & 608526.0 & 474729.0 & 3.88 \\
|
||||
119 & 0.09\% & 124006.0 & 231395.0 & 3.17 \\
|
||||
170 & 0.0\% & -- & -- & -- \\
|
||||
200 & 26.75\% & 115953.0 & 399050.0 & 14.57 \\
|
||||
360 & 1.62\% & 786594.0 & 488025.0 & 2.12 \\
|
||||
450 & 2.74\% & 1204747.0 & 1188251.0 & 1.04 \\
|
||||
|
@ -293,30 +221,28 @@
|
|||
|
||||
}
|
||||
\taskslowdown{Cluster H}{
|
||||
\begin{tabular}{rrp{1.5cm}p{1.5cm}p{1.5cm}}
|
||||
\begin{tabular}{rrrrr}
|
||||
\toprule
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last evt.)} & \textbf{Mean resp. (all evts.)} & \textbf{Mean slowdown} \\
|
||||
\textbf{Priority} & \textbf{\% finished} & \textbf{Mean resp. (last exec.)} & \textbf{Mean resp. (all execs.)} & \textbf{Mean slowdown} \\
|
||||
\midrule
|
||||
0 & 27.74\% & 5663.0 & 6211.0 & 1.12 \\
|
||||
19 & 0.0\% & -- & -- & -- \\
|
||||
25 & 1.04\% & 304870.0 & 283847.0 & 3.06 \\
|
||||
101 & 100.0\% & 34063.0 & 12250.0 & 76.44 \\
|
||||
103 & 0.48\% & 272635.0 & 92894.0 & 1.26 \\
|
||||
105 & 1.43\% & 611763.0 & 393762.0 & 4.21 \\
|
||||
107 & 0.0\% & -- & -- & -- \\
|
||||
115 & 5.12\% & 28907.0 & 28907.0 & 1.00 \\
|
||||
116 & 1.04\% & 633.0 & 42105.0 & 73.45 \\
|
||||
117 & 0.0\% & 656.0 & 656.0 & 1.00 \\
|
||||
118 & 1.0\% & 197687.0 & 139121.0 & 1.95 \\
|
||||
119 & 0.15\% & 139907.0 & 15558.0 & 7.30 \\
|
||||
200 & 2.7\% & 298799.0 & 470783.0 & 5.80 \\
|
||||
201 & 0.0\% & -- & -- & -- \\
|
||||
220 & 0.0\% & -- & -- & -- \\
|
||||
360 & 4.43\% & 838719.0 & 397301.0 & 2.02 \\
|
||||
450 & 0.54\% & 1470577.0 & 1411397.0 & 1.05 \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
|
||||
}
|
||||
\caption{Mean task slowdown for each cluster and each task \textbf{Priority}}\label{fig:taskslowdown-csts}
|
||||
\caption{Mean task slowdown for each cluster and each task priority for single
|
||||
clusters in the 2019 traces. Refer to \ref{fig:taskslowdown} for a legend of the
|
||||
columns}\label{fig:taskslowdown-csts}
|
||||
\end{figure}
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
to: }
|
||||
\typeout{*** Domenico Bianculli <domenico.bianculli@usi.ch>}
|
||||
%%% package loading
|
||||
\LoadClass[a4paper,10pt,twoside,onecolumn,final,titlepage,top=0.2]{article}
|
||||
\LoadClass[a4paper,10pt,twoside,onecolumn,final,titlepage]{article}
|
||||
%%% main code
|
||||
|
||||
%font settings
|
||||
|
|