diff --git a/doc/macroprocessor/Makefile.am b/doc/macroprocessor/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..5d06b17d7e4d9ff8a80575a540386337d9c14e93
--- /dev/null
+++ b/doc/macroprocessor/Makefile.am
@@ -0,0 +1,16 @@
+if HAVE_PDFLATEX
+if HAVE_BEAMER
+pdf-local: macroprocessor.pdf
+endif
+endif
+
+SRC = macroprocessor.tex new-design.pdf
+
+EXTRA_DIST = $(SRC)
+
+macroprocessor.pdf: $(SRC)
+	$(PDFLATEX) macroprocessor
+	$(PDFLATEX) macroprocessor
+
+clean-local:
+	rm -f macroprocessor.pdf *.toc *.aux *.log *.nav *.snm *.vrb *.out *~
diff --git a/doc/macroprocessor/macroprocessor.tex b/doc/macroprocessor/macroprocessor.tex
new file mode 100644
index 0000000000000000000000000000000000000000..552779af2de5698db9deb06f0d4788d805e0fb00
--- /dev/null
+++ b/doc/macroprocessor/macroprocessor.tex
@@ -0,0 +1,624 @@
+\documentclass{beamer}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{lmodern}
+\usepackage{amsmath}
+\usepackage[copyright]{ccicons}
+
+\usetheme{Boadilla}
+
+\title{The Dynare Macro-processor}
+\subtitle{Dynare Summer School 2017}
+\author{Sébastien Villemot}
+%\pgfdeclareimage[height=0.6cm]{logo}{logo-ofce}
+\institute{OFCE}
+\date{June 13, 2017}
+
+\AtBeginSection[]
+{
+  \begin{frame}
+    \frametitle{Outline}
+    \tableofcontents[currentsection]
+  \end{frame}
+}
+
+\begin{document}
+
+\begin{frame}
+  \titlepage
+\end{frame}
+
+\begin{frame}
+  \frametitle{Outline}
+  \tableofcontents
+\end{frame}
+
+\section{Overview}
+
+\begin{frame}
+  \frametitle{Motivation}
+  \begin{itemize}
+  \item The \textbf{Dynare language} (used in MOD files) is well suited for many economic models
+  \item However, as such, it lacks some useful features, such as:
+    \begin{itemize}
+    \item a loop mechanism for automatically repeating similar blocks of equations (such as in multi-country models)
+    \item an operator for indexed sums or products inside equations
+    \item a mechanism for splitting large MOD files in smaller modular files
+    \item the possibility of conditionally including some equations or some runtime commands
+  \end{itemize}
+  \item The \textbf{Dynare Macro-language} was specifically designed to address these issues
+  \item Being flexible and fairly general, it can also be helpful in other situations
+  \end{itemize}
+\end{frame}
+
+\begin{frame}
+  \frametitle{Design of the macro-language}
+  \begin{itemize}
+  \item The Dynare Macro-language provides a new set of \textbf{macro-commands} which can be inserted inside MOD files
+  \item Language features include:
+    \begin{itemize}
+    \item file inclusion
+    \item loops (\textit{for} structure)
+    \item conditional inclusion (\textit{if/else} structures)
+    \item expression substitution
+    \end{itemize}
+  \item The macro-processor transforms a MOD file with macro-commands into a MOD file without macro-commands (doing text expansions/inclusions) and then feeds it to the Dynare parser
+  \item The key point to understand is that the macro-processor only does \textbf{text substitution} (like the C preprocessor or the PHP language)
+  \end{itemize}
+\end{frame}
+
+\begin{frame}
+  \frametitle{Design of Dynare}
+  \includegraphics[width=0.95\linewidth]{new-design.pdf}
+\end{frame}
+
+\section{Syntax}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Macro Directives}
+  \begin{itemize}
+  \item Directives begin with an at-sign followed by a pound sign (\verb+@#+)
+  \item A directive produces no output, but gives instructions to the macro-processor
+  \item Main directives are:
+    \begin{itemize}
+    \item file inclusion: \verb+@#include+
+    \item definition a variable of the macro-processor: \verb+@#define+
+    \item conditional statements (\verb+@#if/@#ifdef/@#ifndef/@#else/@#endif+)
+    \item loop statements (\verb+@#for/@#endfor+)
+    \end{itemize}
+  \item In most cases, directives occupy exactly one line of text. In case of need, two anti-slashes (\verb+\\+) at the end of the line indicates that the directive is continued on the next line.
+  \end{itemize}
+\end{frame}
+
+
+\begin{frame}
+\frametitle{Variables}
+\begin{itemize}
+\item The macro processor maintains its own list of variables (distinct of model variables and of MATLAB/Octave variables)
+\item Macro-variables can be of four types:
+  \begin{itemize}
+  \item integer
+  \item character string (declared between \textit{double} quotes)
+  \item array of integers
+  \item array of strings
+  \end{itemize}
+\item No boolean type:
+  \begin{itemize}
+  \item false is represented by integer zero
+  \item true is any non-null integer
+  \end{itemize}
+\end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Macro-expressions (1/2)}
+  It is possible to construct macro-expressions, using standard operators.
+  \begin{block}{Operators on integers}
+    \begin{itemize}
+    \item arithmetic operators: \texttt{+ - * /}
+    \item comparison operators: \texttt{< > <= >= == !=}
+    \item logical operators: \verb+&& || !+
+    \item integer ranges: \texttt{1:4} is equivalent to integer array \texttt{[1,2,3,4]}
+    \end{itemize}
+  \end{block}
+
+  \begin{block}{Operators on character strings}
+    \begin{itemize}
+    \item comparison operators: \texttt{== !=}
+    \item concatenation: \texttt{+}
+    \item extraction of substrings: if \texttt{s} is a string, then one can write \texttt{s[3]} or \texttt{s[4:6]}
+    \end{itemize}
+  \end{block}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Macro-expressions (2/2)}
+  \begin{block}{Operators on arrays}
+    \begin{itemize}
+    \item dereferencing: if \texttt{v} is an array, then \texttt{v[2]} is its $2^{\textrm{nd}}$ element
+    \item concatenation: \texttt{+}
+    \item difference \texttt{-}: returns the first operand from which the elements of the second operand have been removed
+    \item extraction of sub-arrays: \textit{e.g.} \texttt{v[4:6]}
+    \item testing membership of an array: \texttt{in} operator \\ (example:
+      \texttt{"b" in ["a", "b", "c"]} returns \texttt{1})
+    \end{itemize}
+  \end{block}
+
+  Macro-expressions can be used at two places:
+  \begin{itemize}
+  \item inside macro directives, directly
+  \item in the body of the MOD file, between an at-sign and curly braces (like \verb+@{expr}+): the macro processor will substitute the expression with its value
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Define directive}
+
+  The value of a macro-variable can be defined with the \verb+@#define+ directive.
+
+  \begin{block}{Syntax}
+    \verb+@#define +\textit{variable\_name}\verb+ = +\textit{expression}
+  \end{block}
+
+  \begin{block}{Examples}
+\begin{verbatim}
+@#define x = 5              // Integer
+@#define y = "US"           // String
+@#define v = [ 1, 2, 4 ]    // Integer array
+@#define w = [ "US", "EA" ] // String array
+@#define z = 3 + v[2]       // Equals 5
+@#define t = ("US" in w)    // Equals 1 (true)
+\end{verbatim}
+  \end{block}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Expression substitution}
+  \framesubtitle{Dummy example}
+  \begin{block}{Before macro-processing}
+\begin{verbatim}
+@#define x = [ "B", "C" ]
+@#define i = 2
+
+model;
+  A = @{x[i]};
+end;
+\end{verbatim}
+  \end{block}
+  \begin{block}{After macro-processing}
+\begin{verbatim}
+model;
+  A = C;
+end;
+\end{verbatim}
+  \end{block}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Inclusion directive (1/2)}
+  \begin{itemize}
+  \item This directive simply includes the content of another file at the place where it is inserted.
+    \begin{block}{Syntax}
+      \verb+@#include "+\textit{filename}\verb+"+
+    \end{block}
+    \begin{block}{Example}
+\begin{verbatim}
+@#include "modelcomponent.mod"
+\end{verbatim}
+    \end{block}
+  \item Exactly equivalent to a copy/paste of the content of the included file
+  \item Note that it is possible to nest includes (\textit{i.e.} to include a
+    file from an included file)
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Inclusion directive (2/2)}
+  \begin{itemize}
+\item The filename can be given by a macro-variable (useful in loops):
+    \begin{block}{Example with variable}
+\begin{verbatim}
+@#define fname = "modelcomponent.mod"
+@#include fname
+\end{verbatim}
+    \end{block}
+  \item Files to include are searched for in current directory. Other directories can
+    be added with
+    \texttt{@includepath} directive, \texttt{-I} command line option or
+    \texttt{[paths]} section in config file.
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Loop directive}
+  \begin{block}{Syntax}
+\verb+@#for +\textit{variable\_name}\verb+ in +\textit{array\_expr} \\
+\verb+   +\textit{loop\_body} \\
+\verb+@#endfor+
+  \end{block}
+  \begin{block}{Example: before macro-processing}
+    \small
+\begin{verbatim}
+model;
+@#for country in [ "home", "foreign" ]
+  GDP_@{country} = A * K_@{country}^a * L_@{country}^(1-a);
+@#endfor
+end;
+\end{verbatim}
+    \normalsize
+  \end{block}
+
+  \begin{block}{Example: after macro-processing}
+    \small
+\begin{verbatim}
+model;
+  GDP_home = A * K_home^a * L_home^(1-a);
+  GDP_foreign = A * K_foreign^a * L_foreign^(1-a);
+end;
+\end{verbatim}
+    \normalsize
+  \end{block}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Conditional inclusion directives (1/2)}
+
+  \begin{columns}[T]
+    \column{0.47\linewidth}
+    \begin{block}{Syntax 1}
+\verb+@#if +\textit{integer\_expr} \\
+\verb+   +\textit{body included if expr != 0} \\
+\verb+@#endif+
+    \end{block}
+
+    \column{0.47\linewidth}
+    \begin{block}{Syntax 2}
+\verb+@#if +\textit{integer\_expr} \\
+\verb+   +\textit{body included if expr != 0} \\
+\verb+@#else+ \\
+\verb+   +\textit{body included if expr == 0} \\
+\verb+@#endif+
+    \end{block}
+  \end{columns}
+
+  \begin{block}{Example: alternative monetary policy rules}
+    \scriptsize
+\begin{verbatim}
+@#define linear_mon_pol = 0 // or 1
+...
+model;
+@#if linear_mon_pol
+  i = w*i(-1) + (1-w)*i_ss + w2*(pie-piestar);
+@#else
+  i = i(-1)^w * i_ss^(1-w) * (pie/piestar)^w2;
+@#endif
+...
+end;
+\end{verbatim}
+    \scriptsize
+  \end{block}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Conditional inclusion directives (2/2)}
+
+  \begin{columns}[T]
+    \column{0.47\linewidth}
+    \begin{block}{Syntax 1}
+\verb+@#ifdef +\textit{variable\_name} \\
+\verb+   +\textit{body included if variable defined} \\
+\verb+@#endif+
+    \end{block}
+
+    \column{0.47\linewidth}
+    \begin{block}{Syntax 2}
+\verb+@#ifdef +\textit{variable\_name} \\
+\verb+   +\textit{body included if variable defined} \\
+\verb+@#else+ \\
+\verb+   +\textit{body included if variable not defined} \\
+\verb+@#endif+
+    \end{block}
+  \end{columns}
+
+\bigskip
+
+There is also \verb+@#ifndef+, which is the opposite of \verb+@#ifdef+
+(\textit{i.e.} it tests whether a variable is \emph{not} defined).
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Echo and error directives}
+
+  \begin{itemize}
+  \item The echo directive will simply display a message on standard output
+  \item The error directive will display the message and make Dynare stop (only makes sense inside a conditional inclusion directive)
+  \end{itemize}
+
+  \begin{block}{Syntax}
+\verb+@#echo +\textit{string\_expr} \\
+\verb+@#error +\textit{string\_expr}
+  \end{block}
+
+  \begin{block}{Examples}
+\begin{verbatim}
+@#echo "Information message."
+@#error "Error message!"
+\end{verbatim}
+  \end{block}
+\end{frame}
+
+\begin{frame}
+  \frametitle{Saving the macro-expanded MOD file}
+  \begin{itemize}
+  \item For \textbf{debugging or learning} purposes, it is possible to save the output of the macro-processor
+  \item This output is a valid MOD file, obtained after processing the macro-commands of the original MOD file
+%  \item Useful to understand how the macro-processor works
+  \item Just add the \texttt{savemacro} option on the Dynare command line (after the name of your MOD file)
+  \item If MOD file is \texttt{filename.mod}, then the macro-expanded version will be saved in \texttt{filename-macroexp.mod}
+  \item You can specify the filename for the macro-expanded version with the syntax \texttt{savemacro=mymacroexp.mod}
+  \end{itemize}
+\end{frame}
+
+% \begin{frame}
+%   \frametitle{Note on error messages}
+% \end{frame}
+
+\section{Typical usages}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Modularization}
+  \begin{itemize}
+  \item The \verb+@#include+ directive can be used to split MOD files into several modular components
+  \item Example setup:
+    \begin{description}
+    \item[\texttt{modeldesc.mod}:] contains variable declarations, model equations and shocks declarations
+    \item[\texttt{simulate.mod}:] includes \texttt{modeldesc.mod}, calibrates parameters and runs stochastic simulations
+    \item[\texttt{estim.mod}:] includes \texttt{modeldesc.mod}, declares priors on parameters and runs bayesian estimation
+    \end{description}
+  \item Dynare can be called on \texttt{simulate.mod} and \texttt{estim.mod}
+  \item But it makes no sense to run it on \texttt{modeldesc.mod}
+  \item Advantage: no need to manually copy/paste the whole model (at the beginning) or changes to the model (during development)
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Indexed sums or products}
+  \framesubtitle{Example: moving average}
+  \begin{columns}[T]
+    \column{0.47\linewidth}
+    \begin{block}{Before macro-processing}
+\begin{verbatim}
+@#define window = 2
+
+var x MA_x;
+...
+model;
+...
+MA_x = 1/@{2*window+1}*(
+@#for i in -window:window
+        +x(@{i})
+@#endfor
+       );
+...
+end;
+\end{verbatim}
+    \end{block}
+    \column{0.47\linewidth}
+    \begin{block}{After macro-processing}
+\begin{verbatim}
+var x MA_x;
+...
+model;
+...
+MA_x = 1/5*(
+        +x(-2)
+        +x(-1)
+        +x(0)
+        +x(1)
+        +x(2)
+       );
+...
+end;
+\end{verbatim}
+    \end{block}
+  \end{columns}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Multi-country models}
+  \framesubtitle{MOD file skeleton example}
+  \scriptsize
+\begin{verbatim}
+@#define countries = [ "US", "EA", "AS", "JP", "RC" ]
+@#define nth_co = "US"
+
+@#for co in countries
+var Y_@{co} K_@{co} L_@{co} i_@{co} E_@{co} ...;
+parameters a_@{co} ...;
+varexo ...;
+@#endfor
+
+model;
+@#for co in countries
+ Y_@{co} = K_@{co}^a_@{co} * L_@{co}^(1-a_@{co});
+...
+@# if co != nth_co
+ (1+i_@{co}) = (1+i_@{nth_co}) * E_@{co}(+1) / E_@{co}; // UIP relation
+@# else
+ E_@{co} = 1;
+@# endif
+@#endfor
+end;
+\end{verbatim}
+  \normalsize
+\end{frame}
+
+\begin{frame}
+  \frametitle{Endogeneizing parameters (1/4)}
+  \begin{itemize}
+  \item When doing the steady-state calibration of the model, it may be useful to consider a parameter as an endogenous (and vice-versa)
+  \item Example:
+    \begin{gather*}
+      y = \left(\alpha^{\frac{1}{\xi}} \ell^{1-\frac{1}{\xi}} + (1-\alpha)^{\frac{1}{\xi}}k^{1-\frac{1}{\xi}}\right)^{\frac{\xi}{\xi - 1}} \\
+      lab\_rat = \frac{w \ell}{p y}
+    \end{gather*}
+  \item In the model, $\alpha$ is a (share) parameter, and $lab\_rat$ is an endogenous variable
+  \item We observe that:
+    \begin{itemize}
+    \item calibrating $\alpha$ is not straigthforward!
+    \item on the contrary, we have real world data for $lab\_rat$
+    \item it is clear that these two variables are economically linked
+    \end{itemize}
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Endogeneizing parameters (2/4)}
+  \begin{itemize}
+  \item Therefore, when computing the steady state:
+    \begin{itemize}
+    \item we make $\alpha$ an endogenous variable and $lab\_rat$ a parameter
+    \item we impose an economically relevant value for $lab\_rat$
+    \item the solution algorithm deduces the implied value for $\alpha$
+    \end{itemize}
+  \item We call this method ``variable flipping''
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Endogeneizing parameters (3/4)}
+  \framesubtitle{Example implementation}
+  \begin{itemize}
+  \item File \texttt{modeqs.mod}:
+    \begin{itemize}
+    \item contains variable declarations and model equations
+    \item For declaration of \texttt{alpha} and \texttt{lab\_rat}:
+    \footnotesize
+\begin{verbatim}
+@#if steady
+ var alpha;
+ parameter lab_rat;
+@#else
+ parameter alpha;
+ var lab_rat;
+@#endif
+\end{verbatim}
+    \normalsize
+    \end{itemize}
+
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{Endogeneizing parameters (4/4)}
+  \framesubtitle{Example implementation}
+  \begin{itemize}
+  \item File \texttt{steadystate.mod}:
+    \begin{itemize}
+    \item begins with \verb+@#define steady = 1+
+    \item then with \verb+@#include "modeqs.mod"+
+    \item initializes parameters (including \texttt{lab\_rat}, excluding \texttt{alpha})
+    \item computes steady state (using guess values for endogenous, including \texttt{alpha})
+    \item saves values of parameters and endogenous at steady-state in a file, using the \texttt{save\_params\_and\_steady\_state} command
+    \end{itemize}
+  \item File \texttt{simulate.mod}:
+    \begin{itemize}
+    \item begins with \verb+@#define steady = 0+
+    \item then with \verb+@#include "modeqs.mod"+
+    \item loads values of parameters and endogenous at steady-state from file, using the \texttt{load\_params\_and\_steady\_state} command
+    \item computes simulations
+    \end{itemize}
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{MATLAB/Octave loops vs macro-processor loops (1/3)}
+  Suppose you have a model with a parameter $\rho$, and you want to make
+  simulations for three values: $\rho = 0.8, 0.9, 1$. There are
+  several ways of doing this:
+  \begin{block}{With a MATLAB/Octave loop}
+\begin{verbatim}
+rhos = [ 0.8, 0.9, 1];
+for i = 1:length(rhos)
+  rho = rhos(i);
+  stoch_simul(order=1);
+end
+\end{verbatim}
+  \end{block}
+  \begin{itemize}
+  \item The loop is not unrolled
+  \item MATLAB/Octave manages the iterations
+  \item Interesting when there are a lot of iterations
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{MATLAB/Octave loops vs macro-processor loops (2/3)}
+  \begin{block}{With a macro-processor loop (case 1)}
+\begin{verbatim}
+rhos = [ 0.8, 0.9, 1];
+@#for i in 1:3
+  rho = rhos(@{i});
+  stoch_simul(order=1);
+@#endfor
+\end{verbatim}
+  \end{block}
+  \begin{itemize}
+  \item Very similar to previous example
+  \item Loop is unrolled
+  \item Dynare macro-processor manages the loop index but not the data array (\texttt{rhos})
+  \end{itemize}
+\end{frame}
+
+\begin{frame}[fragile=singleslide]
+  \frametitle{MATLAB/Octave loops vs macro-processor loops (3/3)}
+  \begin{block}{With a macro-processor loop (case 2)}
+\begin{verbatim}
+@#for rho_val in [ "0.8", "0.9", "1"]
+  rho = @{rho_val};
+  stoch_simul(order=1);
+@#endfor
+\end{verbatim}
+  \end{block}
+  \begin{itemize}
+  \item Advantage: shorter syntax, since list of values directly given in the loop construct
+  \item Note that values are given as character strings (the macro-processor does not
+    know floating point values)
+  \item Inconvenient: can not reuse an array stored in a MATLAB/Octave variable
+  \end{itemize}
+\end{frame}
+
+% \begin{frame}[fragile=singleslide]
+%   \frametitle{Possible future developments}
+%   \begin{itemize}
+%   \item Find a nicer syntax for indexed sums/products
+%   \item Implement other control structures: \texttt{elsif}, \texttt{switch/case}, \texttt{while/until} loops
+%   \item Implement macro-functions (or templates), with a syntax like:
+%     \small
+%     \verb+@#define QUADRATIC_COST(x, x_ss, phi) = phi/2*(x/x_ss-1)^2+
+%     \normalsize
+%   \end{itemize}
+% \end{frame}
+
+\begin{frame}
+  \begin{center}
+    \vfill {\LARGE Thanks for your attention!} \vfill
+    {\LARGE Questions?}
+    \vfill
+  \end{center}
+  \vfill
+  \begin{columns}[T]
+    \column{0.2\textwidth}
+    \column{0.09\textwidth}
+
+    \ccbysa
+    \column{0.71\textwidth}
+    \tiny
+    Copyright © 2008--2017 Dynare Team \\
+    Licence: \href{http://creativecommons.org/licenses/by-sa/4.0/}{Creative
+      Commons Attribution-ShareAlike 4.0}
+    \end{columns}
+  \end{frame}
+
+
+\end{document}
diff --git a/doc/macroprocessor/new-design.pdf b/doc/macroprocessor/new-design.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9811093ed58467b5d27baae979c8d766e9c91551
--- /dev/null
+++ b/doc/macroprocessor/new-design.pdf
@@ -0,0 +1,5535 @@
+%PDF-1.4
+%���
+3 0 obj
+<<
+  /Type /Catalog
+  /Pages 2 0 R
+>>
+endobj
+4 0 obj
+<<
+  /Type /Page
+  /Parent 2 0 R
+  /MediaBox [ 0 0 689.68566895 306.25714111 ]
+  /Resources 5 0 R
+  /Contents 6 0 R
+  /Group
+  << /Type /Group
+     /S /Transparency
+     /CS /DeviceRGB
+  >>
+>>
+endobj
+6 0 obj
+<<
+  /Length 7 0 R
+>>
+stream
+0.8 0 0 -0.8 0 307 cm
+q
+1 0 0 1 0 0 cm
+q
+1 0 0 1 -78.642861 -39.058769 cm
+q
+1 0 0 1 467.50002 289.64286 cm
+q
+0 0 0 rg
+312.30752563 56.64789963 m
+312.30752563 42.33149338 l
+315.15908813 42.33149338 l
+318.54776001 52.46821213 l
+318.86025197 53.41222578 319.08811633 54.11860528 319.23135376 54.58735275 c
+319.39410561 54.066522 319.6480116 53.30154881 319.99307251 52.29243088 c
+323.42080688 42.33149338 l
+325.96963501 42.33149338 l
+325.96963501 56.64789963 l
+324.14346313 56.64789963 l
+324.14346313 44.66547775 l
+319.98330688 56.64789963 l
+318.27432251 56.64789963 l
+314.13369751 44.46039963 l
+314.13369751 56.64789963 l
+312.30752563 56.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+335.58877563 55.36860275 m
+334.93772653 55.9219889 334.31109956 56.3126135 333.70889282 56.54047775 c
+333.10667368 56.76834222 332.46051547 56.88227439 331.77041626 56.88227463 c
+330.63109021 56.88227439 329.75544005 56.60395436 329.14346313 56.04731369 c
+328.53148294 55.49067422 328.22549366 54.77941191 328.22549438 53.91352463 c
+328.22549366 53.40571537 328.34105344 52.94184865 328.57217407 52.52192307 c
+328.80329256 52.10200574 329.10602664 51.76509201 329.4803772 51.51118088 c
+329.8547238 51.25728002 330.27627286 51.06522292 330.74502563 50.935009 c
+331.09007413 50.84386897 331.61090694 50.75597844 332.30752563 50.67133713 c
+333.72679024 50.50207244 334.77171107 50.30024973 335.44229126 50.06586838 c
+335.44879373 49.82498978 335.45204894 49.67199515 335.45205688 49.606884 c
+335.45204894 48.89074593 335.28603348 48.38618914 334.95401001 48.09321213 c
+334.50478426 47.69608566 333.83746722 47.49751815 332.95205688 47.497509 c
+332.12522935 47.49751815 331.51487839 47.64237478 331.1210022 47.93207932 c
+330.72711876 48.22180128 330.43577791 48.73449608 330.24697876 49.47016525 c
+328.52822876 49.23579025 l
+328.68447758 48.50012132 328.94163878 47.90604639 329.29971313 47.45356369 c
+329.6577839 47.00109938 330.1753615 46.65279244 330.85244751 46.40864182 c
+331.52952682 46.16451167 332.31403124 46.04244148 333.20596313 46.04243088 c
+334.09137321 46.04244148 334.81077354 46.14660805 335.36416626 46.35493088 c
+335.91754326 46.5632743 336.3244439 46.8253183 336.58486938 47.14106369 c
+336.84527671 47.45682809 337.02756819 47.85559071 337.13174438 48.33735275 c
+337.19032845 48.63683993 337.21962529 49.17720397 337.21963501 49.9584465 c
+337.21963501 52.3021965 l
+337.21962529 53.9363138 337.25706015 54.96984141 337.3319397 55.40278244 c
+337.40679958 55.83572596 337.55491142 56.25076461 337.77627563 56.64789963 c
+335.94033813 56.64789963 l
+335.75803821 56.28331666 335.64085083 55.85688479 335.58877563 55.36860275 c
+335.58877563 55.36860275 l
+h
+335.44229126 51.4428215 m
+334.80426312 51.70324311 333.84723283 51.92459706 332.57119751 52.106884 c
+331.84853691 52.21105511 331.33746972 52.32824249 331.03799438 52.4584465 c
+330.73851198 52.5886589 330.50739242 52.77908839 330.34463501 53.02973557 c
+330.18187191 53.28038997 330.10049179 53.55871001 330.10049438 53.8646965 c
+330.10049179 54.33344882 330.27790046 54.72407343 330.63272095 55.0365715 c
+330.98753517 55.3490728 331.50674038 55.50532265 332.19033813 55.5053215 c
+332.8674161 55.50532265 333.46962904 55.35721081 333.99697876 55.06098557 c
+334.52431549 54.76476349 334.91168489 54.35949046 335.15908813 53.84516525 c
+335.34788237 53.44803304 335.44228332 52.86209612 335.44229126 52.08735275 c
+335.44229126 51.4428215 l
+h
+f
+Q
+q
+0 0 0 rg
+343.79190063 55.075634 m
+344.04580688 56.62836838 l
+343.5510103 56.73253496 343.10830241 56.78461824 342.71768188 56.78461838 c
+342.07965761 56.78461824 341.58486644 56.68370688 341.23330688 56.481884 c
+340.88174214 56.28006145 340.63434655 56.01476224 340.49111938 55.68598557 c
+340.34788851 55.35721081 340.27627399 54.66547974 340.27627563 53.61079025 c
+340.27627563 47.64399338 l
+338.98721313 47.64399338 l
+338.98721313 46.27680588 l
+340.27627563 46.27680588 l
+340.27627563 43.7084465 l
+342.02432251 42.653759 l
+342.02432251 46.27680588 l
+343.79190063 46.27680588 l
+343.79190063 47.64399338 l
+342.02432251 47.64399338 l
+342.02432251 53.7084465 l
+342.02431912 54.20975102 342.05524357 54.53201633 342.11709595 54.67524338 c
+342.17894136 54.81847437 342.27985272 54.93240655 342.41983032 55.01704025 c
+342.55980036 55.10167722 342.75999547 55.14399488 343.02041626 55.14399338 c
+343.21572418 55.14399488 343.47288538 55.12120845 343.79190063 55.075634 c
+343.79190063 55.075634 l
+h
+f
+Q
+q
+0 0 0 rg
+345.46182251 56.64789963 m
+345.46182251 42.33149338 l
+347.21963501 42.33149338 l
+347.21963501 56.64789963 l
+345.46182251 56.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+356.72158813 55.36860275 m
+356.07053903 55.9219889 355.44391206 56.3126135 354.84170532 56.54047775 c
+354.23948618 56.76834222 353.59332797 56.88227439 352.90322876 56.88227463 c
+351.76390271 56.88227439 350.88825255 56.60395436 350.27627563 56.04731369 c
+349.66429544 55.49067422 349.35830616 54.77941191 349.35830688 53.91352463 c
+349.35830616 53.40571537 349.47386594 52.94184865 349.70498657 52.52192307 c
+349.93610506 52.10200574 350.23883914 51.76509201 350.6131897 51.51118088 c
+350.9875363 51.25728002 351.40908536 51.06522292 351.87783813 50.935009 c
+352.22288663 50.84386897 352.74371944 50.75597844 353.44033813 50.67133713 c
+354.85960274 50.50207244 355.90452357 50.30024973 356.57510376 50.06586838 c
+356.58160623 49.82498978 356.58486144 49.67199515 356.58486938 49.606884 c
+356.58486144 48.89074593 356.41884598 48.38618914 356.08682251 48.09321213 c
+355.63759676 47.69608566 354.97027972 47.49751815 354.08486938 47.497509 c
+353.25804185 47.49751815 352.64769089 47.64237478 352.2538147 47.93207932 c
+351.85993126 48.22180128 351.56859041 48.73449608 351.37979126 49.47016525 c
+349.66104126 49.23579025 l
+349.81729008 48.50012132 350.07445128 47.90604639 350.43252563 47.45356369 c
+350.7905964 47.00109938 351.308174 46.65279244 351.98526001 46.40864182 c
+352.66233932 46.16451167 353.44684374 46.04244148 354.33877563 46.04243088 c
+355.22418571 46.04244148 355.94358604 46.14660805 356.49697876 46.35493088 c
+357.05035576 46.5632743 357.4572564 46.8253183 357.71768188 47.14106369 c
+357.97808921 47.45682809 358.16038069 47.85559071 358.26455688 48.33735275 c
+358.32314095 48.63683993 358.35243779 49.17720397 358.35244751 49.9584465 c
+358.35244751 52.3021965 l
+358.35243779 53.9363138 358.38987265 54.96984141 358.4647522 55.40278244 c
+358.53961208 55.83572596 358.68772392 56.25076461 358.90908813 56.64789963 c
+357.07315063 56.64789963 l
+356.89085071 56.28331666 356.77366333 55.85688479 356.72158813 55.36860275 c
+356.72158813 55.36860275 l
+h
+356.57510376 51.4428215 m
+355.93707562 51.70324311 354.98004533 51.92459706 353.70401001 52.106884 c
+352.98134941 52.21105511 352.47028222 52.32824249 352.17080688 52.4584465 c
+351.87132448 52.5886589 351.64020492 52.77908839 351.47744751 53.02973557 c
+351.31468441 53.28038997 351.23330429 53.55871001 351.23330688 53.8646965 c
+351.23330429 54.33344882 351.41071296 54.72407343 351.76553345 55.0365715 c
+352.12034767 55.3490728 352.63955288 55.50532265 353.32315063 55.5053215 c
+354.0002286 55.50532265 354.60244154 55.35721081 355.12979126 55.06098557 c
+355.65712799 54.76476349 356.04449739 54.35949046 356.29190063 53.84516525 c
+356.48069487 53.44803304 356.57509582 52.86209612 356.57510376 52.08735275 c
+356.57510376 51.4428215 l
+h
+f
+Q
+q
+0 0 0 rg
+362.70791626 56.64789963 m
+361.07705688 56.64789963 l
+361.07705688 42.33149338 l
+362.83486938 42.33149338 l
+362.83486938 47.43891525 l
+363.57705308 46.50793581 364.52431775 46.04244148 365.67666626 46.04243088 c
+366.31468055 46.04244148 366.91852109 46.17102208 367.4881897 46.42817307 c
+368.05784287 46.68534449 368.5265924 47.04667225 368.8944397 47.51215744 c
+369.26226875 47.9776609 369.55035439 48.53918378 369.75869751 49.19672775 c
+369.96702064 49.85428663 370.07118721 50.55741093 370.07119751 51.30610275 c
+370.07118721 53.08345007 369.63173452 54.45714661 368.75283813 55.4271965 c
+367.87392378 56.39724884 366.81923733 56.88227439 365.58877563 56.88227463 c
+364.36481271 56.88227439 363.40452721 56.3712072 362.70791626 55.3490715 c
+362.70791626 56.64789963 l
+h
+362.68838501 51.38422775 m
+362.68838209 52.62772136 362.85765275 53.52615796 363.19619751 54.07954025 c
+363.74957895 54.98448983 364.49827611 55.43696334 365.44229126 55.43696213 c
+366.21051398 55.43696334 366.87457582 55.10330482 367.43447876 54.43598557 c
+367.99436637 53.76867074 368.274314 52.77420558 368.27432251 51.45258713 c
+368.274314 50.09842701 368.00575958 49.09907905 367.46865845 48.45454025 c
+366.93154191 47.81001784 366.2821285 47.48775254 365.52041626 47.48774338 c
+364.75218211 47.48775254 364.08812027 47.82141106 363.52822876 48.48871994 c
+362.96832973 49.15604514 362.68838209 50.12121345 362.68838501 51.38422775 c
+362.68838501 51.38422775 l
+h
+f
+Q
+q
+0 0 0 rg
+378.18643188 56.64789963 m
+378.18643188 47.64399338 l
+376.63369751 47.64399338 l
+376.63369751 46.27680588 l
+378.18643188 46.27680588 l
+378.18643188 45.17329025 l
+378.18643015 44.47668784 378.24827904 43.95911023 378.37197876 43.62055588 c
+378.5412475 43.16484019 378.83909876 42.79537442 379.26553345 42.51215744 c
+379.6919625 42.22896873 380.28929263 42.08736731 381.05752563 42.08735275 c
+381.5523122 42.08736731 382.09918665 42.145961 382.69815063 42.263134 c
+382.43447876 43.79633713 l
+382.0698898 43.73124588 381.72483807 43.69869383 381.39932251 43.69868088 c
+380.86546393 43.69869383 380.48786014 43.812626 380.26651001 44.04047775 c
+380.04515225 44.26835472 379.93447527 44.69478658 379.93447876 45.31977463 c
+379.93447876 46.27680588 l
+381.95596313 46.27680588 l
+381.95596313 47.64399338 l
+379.93447876 47.64399338 l
+379.93447876 56.64789963 l
+378.18643188 56.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+383.32315063 44.35297775 m
+383.32315063 42.33149338 l
+385.08096313 42.33149338 l
+385.08096313 44.35297775 l
+383.32315063 44.35297775 l
+h
+383.32315063 56.64789963 m
+383.32315063 46.27680588 l
+385.08096313 46.27680588 l
+385.08096313 56.64789963 l
+383.32315063 56.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+387.72744751 56.64789963 m
+387.72744751 42.33149338 l
+389.48526001 42.33149338 l
+389.48526001 56.64789963 l
+387.72744751 56.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+399.31924438 53.30805588 m
+401.13565063 53.53266525 l
+400.84918235 54.59386522 400.31858393 55.41743211 399.54385376 56.00336838 c
+398.76910631 56.58930594 397.77952396 56.88227439 396.57510376 56.88227463 c
+395.05817252 56.88227439 393.85537424 56.41515246 392.96670532 55.48090744 c
+392.07803227 54.54666475 391.63369678 53.23644471 391.63369751 51.55024338 c
+391.63369678 49.80545855 392.08291508 48.45129324 392.98135376 47.48774338 c
+393.87978828 46.52421183 395.0451517 46.04244148 396.47744751 46.04243088 c
+397.8641593 46.04244148 398.99697066 46.51444622 399.87588501 47.4584465 c
+400.75478141 48.40246516 401.19423409 49.73058884 401.19424438 51.4428215 c
+401.19423409 51.54699327 401.19097889 51.70324311 401.18447876 51.9115715 c
+393.45010376 51.9115715 l
+393.51520531 53.05089802 393.83747062 53.92329298 394.41690063 54.528759 c
+394.99632362 55.13422927 395.71897915 55.43696334 396.58486938 55.43696213 c
+397.22939431 55.43696334 397.77952396 55.26769267 398.23526001 54.92914963 c
+398.69098139 54.59061002 399.05230915 54.05024598 399.31924438 53.30805588 c
+399.31924438 53.30805588 l
+h
+393.54776001 50.466259 m
+399.33877563 50.466259 l
+399.26064228 49.59387022 399.03928833 48.939574 398.67471313 48.50336838 c
+398.11481009 47.82629387 397.38889936 47.48775254 396.49697876 47.48774338 c
+395.6896823 47.48775254 395.01097205 47.75793456 394.46084595 48.29829025 c
+393.91071273 48.83866265 393.60635105 49.56131817 393.54776001 50.466259 c
+393.54776001 50.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+402.64932251 53.5521965 m
+404.38760376 53.278759 l
+404.48525756 53.97537626 404.75706718 54.50922989 405.20303345 54.8803215 c
+405.64899337 55.25141665 406.27236515 55.43696334 407.07315063 55.43696213 c
+407.88043646 55.43696334 408.47939419 55.27257548 408.87002563 54.94379807 c
+409.26064341 54.61502406 409.45595571 54.22928225 409.45596313 53.7865715 c
+409.45595571 53.38943934 409.28342984 53.07693966 408.93838501 52.8490715 c
+408.69749293 52.69282546 408.0985352 52.49425795 407.14151001 52.25336838 c
+405.85244369 51.92785226 404.9588899 51.64627703 404.46084595 51.40864182 c
+403.96279714 51.17101708 403.58519335 50.84224137 403.32803345 50.42231369 c
+403.07087095 50.00239846 402.94229035 49.53853174 402.94229126 49.03071213 c
+402.94229035 48.56848062 403.04808452 48.14042116 403.25967407 47.74653244 c
+403.47126118 47.35266153 403.75934683 47.02551342 404.12393188 46.76508713 c
+404.39736702 46.5632743 404.770088 46.39237603 405.24209595 46.25239182 c
+405.71409748 46.11242839 406.22028187 46.04244148 406.76065063 46.04243088 c
+407.57444718 46.04244148 408.28896469 46.15962887 408.90420532 46.39399338 c
+409.51943221 46.6283784 409.97353332 46.94576089 410.26651001 47.34614182 c
+410.55947023 47.74654134 410.76129295 48.28202258 410.87197876 48.95258713 c
+409.15322876 49.18696213 l
+409.07509672 48.65311596 408.84885997 48.23644971 408.47451782 47.93696213 c
+408.1001628 47.63749197 407.57119197 47.48775254 406.88760376 47.48774338 c
+406.08030805 47.48775254 405.50413675 47.62121595 405.15908813 47.888134 c
+404.81403327 48.15506958 404.6415074 48.46756927 404.64151001 48.825634 c
+404.6415074 49.05350618 404.71312191 49.2585841 404.85635376 49.44086838 c
+404.99957996 49.62967748 405.22418911 49.78592732 405.53018188 49.90961838 c
+405.70595946 49.97472922 406.22353707 50.12446865 407.08291626 50.35883713 c
+408.32639955 50.69087433 409.1939117 50.96268396 409.68545532 51.17426682 c
+410.17698364 51.38586062 410.56272544 51.6934775 410.84268188 52.09711838 c
+411.12262071 52.50076836 411.26259453 53.00206994 411.26260376 53.60102463 c
+411.26259453 54.18696459 411.09169626 54.73872185 410.74990845 55.25629807 c
+410.4081032 55.77387706 409.91493963 56.17426729 409.27041626 56.45746994 c
+408.62587842 56.74067297 407.89671248 56.88227439 407.08291626 56.88227463 c
+405.73525631 56.88227439 404.70823911 56.60232676 404.00186157 56.04243088 c
+403.2954801 55.48253621 402.8446342 54.65245891 402.64932251 53.5521965 c
+402.64932251 53.5521965 l
+h
+f
+Q
+q
+0 0 0 rg
+307.08291626 81.64789963 m
+307.08291626 71.27680588 l
+308.66494751 71.27680588 l
+308.66494751 72.8490715 l
+309.06859006 72.11340395 309.44131104 71.6283784 309.78311157 71.39399338 c
+310.12490411 71.15962887 310.50088029 71.04244148 310.91104126 71.04243088 c
+311.50348346 71.04244148 312.1056964 71.23124338 312.71768188 71.60883713 c
+312.11221313 73.2396965 l
+311.68251974 72.98579891 311.25283267 72.85884592 310.82315063 72.85883713 c
+310.4390314 72.85884592 310.09397966 72.9744057 309.78799438 73.20551682 c
+309.4820011 73.43664482 309.26390236 73.75728252 309.13369751 74.16743088 c
+308.93838186 74.79243773 308.8407257 75.4760308 308.84072876 76.21821213 c
+308.84072876 81.64789963 l
+307.08291626 81.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+320.88174438 78.30805588 m
+322.69815063 78.53266525 l
+322.41168235 79.59386522 321.88108393 80.41743211 321.10635376 81.00336838 c
+320.33160631 81.58930594 319.34202396 81.88227439 318.13760376 81.88227463 c
+316.62067252 81.88227439 315.41787424 81.41515246 314.52920532 80.48090744 c
+313.64053227 79.54666475 313.19619678 78.23644471 313.19619751 76.55024338 c
+313.19619678 74.80545855 313.64541508 73.45129324 314.54385376 72.48774338 c
+315.44228828 71.52421183 316.6076517 71.04244148 318.03994751 71.04243088 c
+319.4266593 71.04244148 320.55947066 71.51444622 321.43838501 72.4584465 c
+322.31728141 73.40246516 322.75673409 74.73058884 322.75674438 76.4428215 c
+322.75673409 76.54699327 322.75347889 76.70324311 322.74697876 76.9115715 c
+315.01260376 76.9115715 l
+315.07770531 78.05089802 315.39997062 78.92329298 315.97940063 79.528759 c
+316.55882362 80.13422927 317.28147915 80.43696334 318.14736938 80.43696213 c
+318.79189431 80.43696334 319.34202396 80.26769267 319.79776001 79.92914963 c
+320.25348139 79.59061002 320.61480915 79.05024598 320.88174438 78.30805588 c
+320.88174438 78.30805588 l
+h
+315.11026001 75.466259 m
+320.90127563 75.466259 l
+320.82314228 74.59387022 320.60178833 73.939574 320.23721313 73.50336838 c
+319.67731009 72.82629387 318.95139936 72.48775254 318.05947876 72.48774338 c
+317.2521823 72.48775254 316.57347205 72.75793456 316.02334595 73.29829025 c
+315.47321273 73.83866265 315.16885105 74.56131817 315.11026001 75.466259 c
+315.11026001 75.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+324.91494751 85.622509 m
+324.91494751 71.27680588 l
+326.51651001 71.27680588 l
+326.51651001 72.62446213 l
+326.89411088 72.09712793 327.32054274 71.70162051 327.79580688 71.43793869 c
+328.27106263 71.17427729 328.84723393 71.04244148 329.52432251 71.04243088 c
+330.40973236 71.04244148 331.19098158 71.27030584 331.86807251 71.72602463 c
+332.54514689 72.18176326 333.05621409 72.82466626 333.40127563 73.65473557 c
+333.74631757 74.48482085 333.91884344 75.39465067 333.91885376 76.38422775 c
+333.91884344 77.44542987 333.72841394 78.40083256 333.3475647 79.25043869 c
+332.96669595 80.10004961 332.41331109 80.75109063 331.68740845 81.20356369 c
+330.96148962 81.65603764 330.19814403 81.88227439 329.39736938 81.88227463 c
+328.81142667 81.88227439 328.28571105 81.7585766 327.82022095 81.51118088 c
+327.3547224 81.26378543 326.9722358 80.95128574 326.67276001 80.57368088 c
+326.67276001 85.622509 l
+324.91494751 85.622509 l
+h
+326.50674438 76.5209465 m
+326.50674147 77.85558571 326.7769235 78.84191285 327.31729126 79.47993088 c
+327.85765158 80.11795324 328.5119478 80.43696334 329.28018188 80.43696213 c
+330.06142542 80.43696334 330.73037006 80.10656002 331.28701782 79.44575119 c
+331.8436502 78.78494676 332.12197023 77.76118476 332.12197876 76.37446213 c
+332.12197023 75.05285414 331.85016061 74.0632718 331.30654907 73.40571213 c
+330.76292211 72.74816894 330.1135087 72.41939323 329.35830688 72.419384 c
+328.60960396 72.41939323 327.94716972 72.76932778 327.3710022 73.46918869 c
+326.79482712 74.16906596 326.50674147 75.18631755 326.50674438 76.5209465 c
+326.50674438 76.5209465 l
+h
+f
+Q
+q
+0 0 0 rg
+336.02822876 81.64789963 m
+336.02822876 71.27680588 l
+337.61026001 71.27680588 l
+337.61026001 72.8490715 l
+338.01390256 72.11340395 338.38662354 71.6283784 338.72842407 71.39399338 c
+339.07021661 71.15962887 339.44619279 71.04244148 339.85635376 71.04243088 c
+340.44879596 71.04244148 341.0510089 71.23124338 341.66299438 71.60883713 c
+341.05752563 73.2396965 l
+340.62783224 72.98579891 340.19814517 72.85884592 339.76846313 72.85883713 c
+339.3843439 72.85884592 339.03929216 72.9744057 338.73330688 73.20551682 c
+338.4273136 73.43664482 338.20921486 73.75728252 338.07901001 74.16743088 c
+337.88369436 74.79243773 337.7860382 75.4760308 337.78604126 76.21821213 c
+337.78604126 81.64789963 l
+336.02822876 81.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+349.82705688 78.30805588 m
+351.64346313 78.53266525 l
+351.35699485 79.59386522 350.82639643 80.41743211 350.05166626 81.00336838 c
+349.27691881 81.58930594 348.28733646 81.88227439 347.08291626 81.88227463 c
+345.56598502 81.88227439 344.36318674 81.41515246 343.47451782 80.48090744 c
+342.58584477 79.54666475 342.14150928 78.23644471 342.14151001 76.55024338 c
+342.14150928 74.80545855 342.59072758 73.45129324 343.48916626 72.48774338 c
+344.38760078 71.52421183 345.5529642 71.04244148 346.98526001 71.04243088 c
+348.3719718 71.04244148 349.50478316 71.51444622 350.38369751 72.4584465 c
+351.26259391 73.40246516 351.70204659 74.73058884 351.70205688 76.4428215 c
+351.70204659 76.54699327 351.69879139 76.70324311 351.69229126 76.9115715 c
+343.95791626 76.9115715 l
+344.02301781 78.05089802 344.34528312 78.92329298 344.92471313 79.528759 c
+345.50413612 80.13422927 346.22679165 80.43696334 347.09268188 80.43696213 c
+347.73720681 80.43696334 348.28733646 80.26769267 348.74307251 79.92914963 c
+349.19879389 79.59061002 349.56012165 79.05024598 349.82705688 78.30805588 c
+349.82705688 78.30805588 l
+h
+344.05557251 75.466259 m
+349.84658813 75.466259 l
+349.76845478 74.59387022 349.54710083 73.939574 349.18252563 73.50336838 c
+348.62262259 72.82629387 347.89671186 72.48775254 347.00479126 72.48774338 c
+346.1974948 72.48775254 345.51878455 72.75793456 344.96865845 73.29829025 c
+344.41852523 73.83866265 344.11416355 74.56131817 344.05557251 75.466259 c
+344.05557251 75.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+353.15713501 78.5521965 m
+354.89541626 78.278759 l
+354.99307006 78.97537626 355.26487968 79.50922989 355.71084595 79.8803215 c
+356.15680587 80.25141665 356.78017765 80.43696334 357.58096313 80.43696213 c
+358.38824896 80.43696334 358.98720669 80.27257548 359.37783813 79.94379807 c
+359.76845591 79.61502406 359.96376821 79.22928225 359.96377563 78.7865715 c
+359.96376821 78.38943934 359.79124234 78.07693966 359.44619751 77.8490715 c
+359.20530543 77.69282546 358.6063477 77.49425795 357.64932251 77.25336838 c
+356.36025619 76.92785226 355.4667024 76.64627703 354.96865845 76.40864182 c
+354.47060964 76.17101708 354.09300585 75.84224137 353.83584595 75.42231369 c
+353.57868345 75.00239846 353.45010285 74.53853174 353.45010376 74.03071213 c
+353.45010285 73.56848062 353.55589702 73.14042116 353.76748657 72.74653244 c
+353.97907368 72.35266153 354.26715933 72.02551342 354.63174438 71.76508713 c
+354.90517952 71.5632743 355.2779005 71.39237603 355.74990845 71.25239182 c
+356.22190998 71.11242839 356.72809437 71.04244148 357.26846313 71.04243088 c
+358.08225968 71.04244148 358.79677719 71.15962887 359.41201782 71.39399338 c
+360.02724471 71.6283784 360.48134582 71.94576089 360.77432251 72.34614182 c
+361.06728273 72.74654134 361.26910545 73.28202258 361.37979126 73.95258713 c
+359.66104126 74.18696213 l
+359.58290922 73.65311596 359.35667247 73.23644971 358.98233032 72.93696213 c
+358.6079753 72.63749197 358.07900447 72.48775254 357.39541626 72.48774338 c
+356.58812055 72.48775254 356.01194925 72.62121595 355.66690063 72.888134 c
+355.32184577 73.15506958 355.1493199 73.46756927 355.14932251 73.825634 c
+355.1493199 74.05350618 355.22093441 74.2585841 355.36416626 74.44086838 c
+355.50739246 74.62967748 355.73200161 74.78592732 356.03799438 74.90961838 c
+356.21377196 74.97472922 356.73134957 75.12446865 357.59072876 75.35883713 c
+358.83421205 75.69087433 359.7017242 75.96268396 360.19326782 76.17426682 c
+360.68479614 76.38586062 361.07053794 76.6934775 361.35049438 77.09711838 c
+361.63043321 77.50076836 361.77040703 78.00206994 361.77041626 78.60102463 c
+361.77040703 79.18696459 361.59950876 79.73872185 361.25772095 80.25629807 c
+360.9159157 80.77387706 360.42275213 81.17426729 359.77822876 81.45746994 c
+359.13369092 81.74067297 358.40452498 81.88227439 357.59072876 81.88227463 c
+356.24306881 81.88227439 355.21605161 81.60232676 354.50967407 81.04243088 c
+353.8032926 80.48253621 353.3524467 79.65245891 353.15713501 78.5521965 c
+353.15713501 78.5521965 l
+h
+f
+Q
+q
+0 0 0 rg
+370.95986938 78.30805588 m
+372.77627563 78.53266525 l
+372.48980735 79.59386522 371.95920893 80.41743211 371.18447876 81.00336838 c
+370.40973131 81.58930594 369.42014896 81.88227439 368.21572876 81.88227463 c
+366.69879752 81.88227439 365.49599924 81.41515246 364.60733032 80.48090744 c
+363.71865727 79.54666475 363.27432178 78.23644471 363.27432251 76.55024338 c
+363.27432178 74.80545855 363.72354008 73.45129324 364.62197876 72.48774338 c
+365.52041328 71.52421183 366.6857767 71.04244148 368.11807251 71.04243088 c
+369.5047843 71.04244148 370.63759566 71.51444622 371.51651001 72.4584465 c
+372.39540641 73.40246516 372.83485909 74.73058884 372.83486938 76.4428215 c
+372.83485909 76.54699327 372.83160389 76.70324311 372.82510376 76.9115715 c
+365.09072876 76.9115715 l
+365.15583031 78.05089802 365.47809562 78.92329298 366.05752563 79.528759 c
+366.63694862 80.13422927 367.35960415 80.43696334 368.22549438 80.43696213 c
+368.87001931 80.43696334 369.42014896 80.26769267 369.87588501 79.92914963 c
+370.33160639 79.59061002 370.69293415 79.05024598 370.95986938 78.30805588 c
+370.95986938 78.30805588 l
+h
+365.18838501 75.466259 m
+370.97940063 75.466259 l
+370.90126728 74.59387022 370.67991333 73.939574 370.31533813 73.50336838 c
+369.75543509 72.82629387 369.02952436 72.48775254 368.13760376 72.48774338 c
+367.3303073 72.48775254 366.65159705 72.75793456 366.10147095 73.29829025 c
+365.55133773 73.83866265 365.24697605 74.56131817 365.18838501 75.466259 c
+365.18838501 75.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+374.99307251 81.64789963 m
+374.99307251 71.27680588 l
+376.57510376 71.27680588 l
+376.57510376 72.75141525 l
+377.33681885 71.61210237 378.43707816 71.04244148 379.87588501 71.04243088 c
+380.50087818 71.04244148 381.07542188 71.15474606 381.59951782 71.37934494 c
+382.12359792 71.60396436 382.51585013 71.89856042 382.77627563 72.263134 c
+383.03668294 72.62772636 383.21897442 73.06066863 383.32315063 73.56196213 c
+383.38824509 73.88749072 383.42079714 74.45715161 383.42080688 75.2709465 c
+383.42080688 81.64789963 l
+381.66299438 81.64789963 l
+381.66299438 75.33930588 l
+381.6629864 74.62316707 381.59462709 74.08768583 381.45791626 73.73286057 c
+381.32118986 73.37805113 381.07867708 73.09484828 380.7303772 72.88325119 c
+380.3820632 72.67167162 379.97353496 72.56587746 379.50479126 72.56586838 c
+378.75608826 72.56587746 378.10993005 72.80350743 377.5663147 73.278759 c
+377.02269156 73.75402731 376.75088193 74.65571912 376.75088501 75.98383713 c
+376.75088501 81.64789963 l
+374.99307251 81.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+389.96377563 80.075634 m
+390.21768188 81.62836838 l
+389.7228853 81.73253496 389.28017741 81.78461824 388.88955688 81.78461838 c
+388.25153261 81.78461824 387.75674144 81.68370688 387.40518188 81.481884 c
+387.05361714 81.28006145 386.80622155 81.01476224 386.66299438 80.68598557 c
+386.51976351 80.35721081 386.44814899 79.66547974 386.44815063 78.61079025 c
+386.44815063 72.64399338 l
+385.15908813 72.64399338 l
+385.15908813 71.27680588 l
+386.44815063 71.27680588 l
+386.44815063 68.7084465 l
+388.19619751 67.653759 l
+388.19619751 71.27680588 l
+389.96377563 71.27680588 l
+389.96377563 72.64399338 l
+388.19619751 72.64399338 l
+388.19619751 78.7084465 l
+388.19619412 79.20975102 388.22711857 79.53201633 388.28897095 79.67524338 c
+388.35081636 79.81847437 388.45172772 79.93240655 388.59170532 80.01704025 c
+388.73167536 80.10167722 388.93187047 80.14399488 389.19229126 80.14399338 c
+389.38759918 80.14399488 389.64476038 80.12120845 389.96377563 80.075634 c
+389.96377563 80.075634 l
+h
+f
+Q
+q
+0 0 0 rg
+391.68252563 69.35297775 m
+391.68252563 67.33149338 l
+393.44033813 67.33149338 l
+393.44033813 69.35297775 l
+391.68252563 69.35297775 l
+h
+391.68252563 81.64789963 m
+391.68252563 71.27680588 l
+393.44033813 71.27680588 l
+393.44033813 81.64789963 l
+391.68252563 81.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+396.12588501 81.64789963 m
+396.12588501 71.27680588 l
+397.70791626 71.27680588 l
+397.70791626 72.75141525 l
+398.46963135 71.61210237 399.56989066 71.04244148 401.00869751 71.04243088 c
+401.63369068 71.04244148 402.20823438 71.15474606 402.73233032 71.37934494 c
+403.25641042 71.60396436 403.64866263 71.89856042 403.90908813 72.263134 c
+404.16949544 72.62772636 404.35178692 73.06066863 404.45596313 73.56196213 c
+404.52105759 73.88749072 404.55360964 74.45715161 404.55361938 75.2709465 c
+404.55361938 81.64789963 l
+402.79580688 81.64789963 l
+402.79580688 75.33930588 l
+402.7957989 74.62316707 402.72743959 74.08768583 402.59072876 73.73286057 c
+402.45400236 73.37805113 402.21148958 73.09484828 401.8631897 72.88325119 c
+401.5148757 72.67167162 401.10634746 72.56587746 400.63760376 72.56586838 c
+399.88890076 72.56587746 399.24274255 72.80350743 398.6991272 73.278759 c
+398.15550406 73.75402731 397.88369443 74.65571912 397.88369751 75.98383713 c
+397.88369751 81.64789963 l
+396.12588501 81.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+406.93643188 82.50727463 m
+408.64541626 82.76118088 l
+408.71702807 83.28852299 408.91559558 83.67263719 409.24111938 83.91352463 c
+409.67731356 84.23904287 410.27301609 84.40180312 411.02822876 84.40180588 c
+411.84202494 84.40180312 412.47027952 84.23904287 412.91299438 83.91352463 c
+413.3556953 83.58800185 413.65517417 83.13227314 413.81143188 82.54633713 c
+413.90256976 82.18826367 413.94488742 81.4363113 413.93838501 80.29047775 c
+413.17014861 81.19542612 412.21311832 81.64789963 411.06729126 81.64789963 c
+409.64150631 81.64789963 408.53799179 81.13357723 407.75674438 80.10493088 c
+406.97549335 79.07628762 406.58486874 77.84256489 406.58486938 76.403759 c
+406.58486874 75.4141819 406.76390502 74.50109688 407.12197876 73.66450119 c
+407.48005014 72.82792147 407.99925535 72.18176326 408.67959595 71.72602463 c
+409.35993107 71.27030584 410.15908392 71.04244148 411.07705688 71.04243088 c
+412.30100886 71.04244148 413.31012243 71.53723266 414.10440063 72.52680588 c
+414.10440063 71.27680588 l
+415.72549438 71.27680588 l
+415.72549438 80.24164963 l
+415.7254846 81.85623275 415.56109674 83.00043734 415.23233032 83.67426682 c
+414.90354532 84.34809224 414.3827125 84.88031827 413.66983032 85.2709465 c
+412.95693268 85.66156749 412.07965491 85.85687979 411.03799438 85.856884 c
+409.80101136 85.85687979 408.8016634 85.57855976 408.03994751 85.02192307 c
+407.27822742 84.46527962 406.91038925 83.62706432 406.93643188 82.50727463 c
+406.93643188 82.50727463 l
+h
+408.39151001 76.27680588 m
+408.39150756 77.63748697 408.66168958 78.63032452 409.20205688 79.2553215 c
+409.74241767 79.88032327 410.41950032 80.19282296 411.23330688 80.1928215 c
+412.04059245 80.19282296 412.71767511 79.88195087 413.26455688 79.26020432 c
+413.81142401 78.63846253 414.08486124 77.66352861 414.08486938 76.33539963 c
+414.08486124 75.06587496 413.803286 74.10884467 413.24014282 73.46430588 c
+412.67698504 72.81978346 411.99827479 72.49751815 411.20401001 72.497509 c
+410.42275553 72.49751815 409.75869369 72.81490065 409.21182251 73.44965744 c
+408.66494479 74.08443063 408.39150756 75.0268125 408.39151001 76.27680588 c
+408.39151001 76.27680588 l
+h
+f
+Q
+q
+0 0 0 rg
+322.63955688 105.075634 m
+322.89346313 106.62836838 l
+322.39866655 106.73253496 321.95595866 106.78461824 321.56533813 106.78461838 c
+320.92731386 106.78461824 320.43252269 106.68370688 320.08096313 106.481884 c
+319.72939839 106.28006145 319.4820028 106.01476224 319.33877563 105.68598557 c
+319.19554476 105.35721081 319.12393024 104.66547974 319.12393188 103.61079025 c
+319.12393188 97.64399338 l
+317.83486938 97.64399338 l
+317.83486938 96.27680588 l
+319.12393188 96.27680588 l
+319.12393188 93.7084465 l
+320.87197876 92.653759 l
+320.87197876 96.27680588 l
+322.63955688 96.27680588 l
+322.63955688 97.64399338 l
+320.87197876 97.64399338 l
+320.87197876 103.7084465 l
+320.87197537 104.20975102 320.90289982 104.53201633 320.9647522 104.67524338 c
+321.02659761 104.81847437 321.12750897 104.93240655 321.26748657 105.01704025 c
+321.40745661 105.10167722 321.60765172 105.14399488 321.86807251 105.14399338 c
+322.06338043 105.14399488 322.32054163 105.12120845 322.63955688 105.075634 c
+322.63955688 105.075634 l
+h
+f
+Q
+q
+0 0 0 rg
+324.34854126 106.64789963 m
+324.34854126 92.33149338 l
+326.10635376 92.33149338 l
+326.10635376 97.46821213 l
+326.92666236 96.51770142 327.96181758 96.04244148 329.21182251 96.04243088 c
+329.98004473 96.04244148 330.64736177 96.19380852 331.21377563 96.49653244 c
+331.78017313 96.79927666 332.18544617 97.21757052 332.42959595 97.75141525 c
+332.67372693 98.28527778 332.79579712 99.06001659 332.79580688 100.075634 c
+332.79580688 106.64789963 l
+331.03799438 106.64789963 l
+331.03799438 100.075634 l
+331.03798638 99.1967352 330.84755688 98.55708741 330.46670532 98.15668869 c
+330.08583889 97.75630696 329.54710245 97.55611184 328.85049438 97.55610275 c
+328.32965575 97.55611184 327.83974739 97.69120286 327.38076782 97.96137619 c
+326.92177956 98.2315669 326.59463145 98.59777747 326.39932251 99.060009 c
+326.20400684 99.52225571 326.10635068 100.16027591 326.10635376 100.9740715 c
+326.10635376 106.64789963 l
+324.34854126 106.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+342.58096313 103.30805588 m
+344.39736938 103.53266525 l
+344.1109011 104.59386522 343.58030268 105.41743211 342.80557251 106.00336838 c
+342.03082506 106.58930594 341.04124271 106.88227439 339.83682251 106.88227463 c
+338.31989127 106.88227439 337.11709299 106.41515246 336.22842407 105.48090744 c
+335.33975102 104.54666475 334.89541553 103.23644471 334.89541626 101.55024338 c
+334.89541553 99.80545855 335.34463383 98.45129324 336.24307251 97.48774338 c
+337.14150703 96.52421183 338.30687045 96.04244148 339.73916626 96.04243088 c
+341.12587805 96.04244148 342.25868941 96.51444622 343.13760376 97.4584465 c
+344.01650016 98.40246516 344.45595284 99.73058884 344.45596313 101.4428215 c
+344.45595284 101.54699327 344.45269764 101.70324311 344.44619751 101.9115715 c
+336.71182251 101.9115715 l
+336.77692406 103.05089802 337.09918937 103.92329298 337.67861938 104.528759 c
+338.25804237 105.13422927 338.9806979 105.43696334 339.84658813 105.43696213 c
+340.49111306 105.43696334 341.04124271 105.26769267 341.49697876 104.92914963 c
+341.95270014 104.59061002 342.3140279 104.05024598 342.58096313 103.30805588 c
+342.58096313 103.30805588 l
+h
+336.80947876 100.466259 m
+342.60049438 100.466259 l
+342.52236103 99.59387022 342.30100708 98.939574 341.93643188 98.50336838 c
+341.37652884 97.82629387 340.65061811 97.48775254 339.75869751 97.48774338 c
+338.95140105 97.48775254 338.2726908 97.75793456 337.7225647 98.29829025 c
+337.17243148 98.83866265 336.8680698 99.56131817 336.80947876 100.466259 c
+336.80947876 100.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+352.16104126 106.64789963 m
+352.16104126 96.27680588 l
+353.73330688 96.27680588 l
+353.73330688 97.731884 l
+354.0588245 97.22408093 354.49176678 96.81555269 355.03213501 96.50629807 c
+355.57249486 96.19706372 356.18772862 96.04244148 356.87783813 96.04243088 c
+357.6460605 96.04244148 358.27594268 96.20194653 358.76748657 96.5209465 c
+359.25901461 96.83996673 359.60569396 97.28592982 359.80752563 97.85883713 c
+360.62782835 96.64790963 361.69553562 96.04244148 363.01065063 96.04243088 c
+364.03928327 96.04244148 364.83029811 96.32727193 365.38369751 96.89692307 c
+365.93706783 97.4665937 366.21376026 98.34387147 366.21377563 99.528759 c
+366.21377563 106.64789963 l
+364.46572876 106.64789963 l
+364.46572876 100.1146965 l
+364.46571514 99.41157874 364.40874905 98.90539435 364.29483032 98.59614182 c
+364.18088469 98.28690538 363.97417917 98.0378822 363.67471313 97.8490715 c
+363.37522144 97.66027841 363.02365929 97.56587746 362.62002563 97.56586838 c
+361.89084792 97.56587746 361.28537978 97.80839024 360.80361938 98.29340744 c
+360.32183907 98.77844135 360.0809539 99.55480776 360.08096313 100.622509 c
+360.08096313 106.64789963 l
+358.32315063 106.64789963 l
+358.32315063 99.90961838 l
+358.32314315 99.1283759 358.17991413 98.54243898 357.89346313 98.15180588 c
+357.60699804 97.76118976 357.13824851 97.56587746 356.48721313 97.56586838 c
+355.99241632 97.56587746 355.53506 97.69608566 355.11514282 97.95649338 c
+354.69521709 98.21691848 354.39085542 98.59777747 354.20205688 99.0990715 c
+354.01325163 99.60038063 353.91885068 100.32303616 353.91885376 101.26704025 c
+353.91885376 106.64789963 l
+352.16104126 106.64789963 l
+h
+f
+Q
+q
+0 0 0 rg
+368.18643188 101.46235275 m
+368.18643122 99.54178694 368.72028485 98.11926232 369.78799438 97.19477463 c
+370.67991831 96.42655568 371.76715681 96.04244148 373.04971313 96.04243088 c
+374.47548743 96.04244148 375.64085085 96.50956341 376.54580688 97.44379807 c
+377.45074487 98.37805113 377.90321838 99.66873994 377.90322876 101.31586838 c
+377.90321838 102.65050779 377.70302327 103.70031143 377.30264282 104.46528244 c
+376.90224282 105.23025782 376.31956111 105.82433274 375.55459595 106.247509 c
+374.78961472 106.67068606 373.95465462 106.88227439 373.04971313 106.88227463 c
+371.59788614 106.88227439 370.42438471 106.41678007 369.52920532 105.48579025 c
+368.63402192 104.55480276 368.18643122 103.21365827 368.18643188 101.46235275 c
+368.18643188 101.46235275 l
+h
+369.99307251 101.46235275 m
+369.99307004 102.79048161 370.28278329 103.78494676 370.86221313 104.44575119 c
+371.4416363 105.10656002 372.17080224 105.43696334 373.04971313 105.43696213 c
+373.92210257 105.43696334 374.6480133 105.10493242 375.22744751 104.44086838 c
+375.80686631 103.77680875 376.09657956 102.76443997 376.09658813 101.403759 c
+376.09657956 100.12121345 375.80523871 99.14953473 375.2225647 98.48871994 c
+374.63987529 97.82792147 373.91559216 97.49751815 373.04971313 97.497509 c
+372.17080224 97.49751815 371.4416363 97.82629387 370.86221313 98.48383713 c
+370.28278329 99.14139672 369.99307004 100.13423427 369.99307251 101.46235275 c
+369.99307251 101.46235275 l
+h
+f
+Q
+q
+0 0 0 rg
+386.70205688 106.64789963 m
+386.70205688 105.33930588 l
+386.04449741 106.36795199 385.0777015 106.88227439 383.80166626 106.88227463 c
+382.97483902 106.88227439 382.21474864 106.65441004 381.52139282 106.19868088 c
+380.82803127 105.74295262 380.29092244 105.10656002 379.9100647 104.28950119 c
+379.52920445 103.47244707 379.33877495 102.53332041 379.33877563 101.47211838 c
+379.33877495 100.43696834 379.51130082 99.49784167 379.85635376 98.65473557 c
+380.2014043 97.81164544 380.7189819 97.16548724 381.40908813 96.716259 c
+382.09918886 96.26705063 382.87067246 96.04244148 383.72354126 96.04243088 c
+384.34853557 96.04244148 384.90517563 96.17427729 385.39346313 96.43793869 c
+385.88173716 96.70162051 386.27887218 97.04504465 386.58486938 97.46821213 c
+386.58486938 92.33149338 l
+388.33291626 92.33149338 l
+388.33291626 106.64789963 l
+386.70205688 106.64789963 l
+h
+381.14541626 101.47211838 m
+381.14541377 102.80024723 381.42536141 103.79308477 381.98526001 104.450634 c
+382.54515195 105.10818763 383.20595858 105.43696334 383.96768188 105.43696213 c
+384.73590497 105.43696334 385.38857359 105.12283605 385.9256897 104.49457932 c
+386.46279126 103.86632689 386.73134568 102.90766899 386.73135376 101.61860275 c
+386.73134568 100.19933837 386.45790846 99.15767274 385.91104126 98.49360275 c
+385.36415955 97.82954907 384.6903321 97.49751815 383.88955688 97.497509 c
+383.10830243 97.49751815 382.45563381 97.81652825 381.93154907 98.45454025 c
+381.40745778 99.09256864 381.14541377 100.09842701 381.14541626 101.47211838 c
+381.14541626 101.47211838 l
+h
+f
+Q
+q
+0 0 0 rg
+398.20596313 103.30805588 m
+400.02236938 103.53266525 l
+399.7359011 104.59386522 399.20530268 105.41743211 398.43057251 106.00336838 c
+397.65582506 106.58930594 396.66624271 106.88227439 395.46182251 106.88227463 c
+393.94489127 106.88227439 392.74209299 106.41515246 391.85342407 105.48090744 c
+390.96475102 104.54666475 390.52041553 103.23644471 390.52041626 101.55024338 c
+390.52041553 99.80545855 390.96963383 98.45129324 391.86807251 97.48774338 c
+392.76650703 96.52421183 393.93187045 96.04244148 395.36416626 96.04243088 c
+396.75087805 96.04244148 397.88368941 96.51444622 398.76260376 97.4584465 c
+399.64150016 98.40246516 400.08095284 99.73058884 400.08096313 101.4428215 c
+400.08095284 101.54699327 400.07769764 101.70324311 400.07119751 101.9115715 c
+392.33682251 101.9115715 l
+392.40192406 103.05089802 392.72418937 103.92329298 393.30361938 104.528759 c
+393.88304237 105.13422927 394.6056979 105.43696334 395.47158813 105.43696213 c
+396.11611306 105.43696334 396.66624271 105.26769267 397.12197876 104.92914963 c
+397.57770014 104.59061002 397.9390279 104.05024598 398.20596313 103.30805588 c
+398.20596313 103.30805588 l
+h
+392.43447876 100.466259 m
+398.22549438 100.466259 l
+398.14736103 99.59387022 397.92600708 98.939574 397.56143188 98.50336838 c
+397.00152884 97.82629387 396.27561811 97.48775254 395.38369751 97.48774338 c
+394.57640105 97.48775254 393.8976908 97.75793456 393.3475647 98.29829025 c
+392.79743148 98.83866265 392.4930698 99.56131817 392.43447876 100.466259 c
+392.43447876 100.466259 l
+h
+f
+Q
+q
+0 0 0 rg
+402.20010376 106.64789963 m
+402.20010376 92.33149338 l
+403.95791626 92.33149338 l
+403.95791626 106.64789963 l
+402.20010376 106.64789963 l
+h
+f
+Q
+q
+1.0528522 0 0 1.0682674 -22.862484 -9.0197689 cm
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+431.42857361 79.80876923 m
+431.42857361 108.19733975 401.66857263 131.23733902 365 131.23733902 c
+328.33142737 131.23733902 298.57142639 108.19733975 298.57142639 79.80876923 c
+298.57142639 51.4201987 328.33142737 28.38019943 365 28.38019943 c
+401.66857263 28.38019943 431.42857361 51.4201987 431.42857361 79.80876923 c
+h
+S
+Q
+Q
+Q
+q
+1 0 0 1 -555.35711 282.49999 cm
+q
+0 0 0 rg
+659.60241699 58.24667358 m
+659.60241603 55.87038085 660.24043622 54.01003115 661.51647949 52.6656189 c
+662.792517 51.32123175 664.43965077 50.6490319 666.45788574 50.64901733 c
+667.77949118 50.6490319 668.97089624 50.9647868 670.03210449 51.59628296 c
+671.09328995 52.22780637 671.90220841 53.10833934 672.4588623 54.23788452 c
+673.01548855 55.36745167 673.29380858 56.64837486 673.29382324 58.08065796 c
+673.29380858 59.53248656 673.00084013 60.83131339 672.41491699 61.97714233 c
+671.8289663 63.12297776 670.998889 63.99048992 669.92468262 64.5796814 c
+668.85045365 65.16887416 667.69160064 65.46347021 666.44812012 65.46347046 c
+665.1004574 65.46347021 663.89603152 65.13794971 662.83483887 64.48690796 c
+661.77363781 63.83586768 660.96960216 62.94719669 660.42272949 61.82089233 c
+659.87585325 60.69459478 659.60241603 59.50318972 659.60241699 58.24667358 c
+659.60241699 58.24667358 l
+h
+661.55554199 58.27597046 m
+661.55553907 60.00123609 662.0194058 61.36028421 662.94714355 62.3531189 c
+663.87487269 63.34595931 665.03860851 63.84237809 666.43835449 63.84237671 c
+667.86412651 63.84237809 669.03762794 63.3410765 669.9588623 62.33847046 c
+670.88007402 61.33587018 671.34068554 59.91334556 671.34069824 58.07089233 c
+671.34068554 56.90553606 671.14374563 55.88828448 670.74987793 55.01913452 c
+670.355986 54.15000497 669.7798147 53.47617751 669.0213623 52.99765015 c
+668.26288914 52.51914722 667.41165301 52.27988965 666.46765137 52.27987671 c
+665.12649904 52.27988965 663.97252884 52.74050117 663.0057373 53.66171265 c
+662.03893703 54.58294724 661.55553907 56.12103164 661.55554199 58.27597046 c
+661.55554199 58.27597046 l
+h
+f
+Q
+q
+0 0 0 rg
+682.29772949 65.21932983 m
+682.29772949 63.69589233 l
+681.49043052 64.86776769 680.39342641 65.4537046 679.00671387 65.45370483 c
+678.39473049 65.4537046 677.823442 65.33651722 677.29284668 65.10214233 c
+676.76224514 64.86776769 676.36836533 64.57317163 676.11120605 64.21835327 c
+675.85404292 63.86353692 675.67337904 63.42896704 675.56921387 62.91464233 c
+675.49759797 62.5695929 675.46179071 62.02271845 675.46179199 61.27401733 c
+675.46179199 54.84823608 l
+677.21960449 54.84823608 l
+677.21960449 60.60018921 l
+677.21960146 61.51816166 677.25540871 62.13665063 677.32702637 62.45565796 c
+677.4377002 62.91789984 677.67207496 63.28085521 678.03015137 63.54452515 c
+678.38822008 63.80819843 678.83092797 63.94003424 679.35827637 63.94003296 c
+679.88561441 63.94003424 680.38040559 63.80494323 680.84265137 63.53475952 c
+681.30488383 63.26457918 681.63203194 62.89674101 681.82409668 62.4312439 c
+682.01614614 61.96575236 682.11217469 61.2902973 682.11218262 60.40487671 c
+682.11218262 54.84823608 l
+683.86999512 54.84823608 l
+683.86999512 65.21932983 l
+682.29772949 65.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+690.47155762 63.64706421 m
+690.72546387 65.19979858 l
+690.23066729 65.30396517 689.78795939 65.35604845 689.39733887 65.35604858 c
+688.75931459 65.35604845 688.26452342 65.25513709 687.91296387 65.05331421 c
+687.56139912 64.85149166 687.31400354 64.58619245 687.17077637 64.25741577 c
+687.02754549 63.92864102 686.95593098 63.23690994 686.95593262 62.18222046 c
+686.95593262 56.21542358 l
+685.66687012 56.21542358 l
+685.66687012 54.84823608 l
+686.95593262 54.84823608 l
+686.95593262 52.27987671 l
+688.70397949 51.22518921 l
+688.70397949 54.84823608 l
+690.47155762 54.84823608 l
+690.47155762 56.21542358 l
+688.70397949 56.21542358 l
+688.70397949 62.27987671 l
+688.7039761 62.78118123 688.73490055 63.10344653 688.79675293 63.24667358 c
+688.85859834 63.38990458 688.9595097 63.50383676 689.0994873 63.58847046 c
+689.23945734 63.67310742 689.43965245 63.71542509 689.70007324 63.71542358 c
+689.89538116 63.71542509 690.15254236 63.69263865 690.47155762 63.64706421 c
+690.47155762 63.64706421 l
+h
+f
+Q
+q
+0 0 0 rg
+692.18054199 69.19393921 m
+692.18054199 54.84823608 l
+693.78210449 54.84823608 l
+693.78210449 56.19589233 l
+694.15970536 55.66855813 694.58613723 55.27305072 695.06140137 55.0093689 c
+695.53665711 54.7457075 696.11282841 54.61387169 696.78991699 54.61386108 c
+697.67532685 54.61387169 698.45657606 54.84173604 699.13366699 55.29745483 c
+699.81074138 55.75319347 700.32180857 56.39609647 700.66687012 57.22616577 c
+701.01191205 58.05625106 701.18443792 58.96608088 701.18444824 59.95565796 c
+701.18443792 61.01686008 700.99400842 61.97226277 700.61315918 62.8218689 c
+700.23229043 63.67147982 699.67890557 64.32252083 698.95300293 64.7749939 c
+698.22708411 65.22746785 697.46373852 65.4537046 696.66296387 65.45370483 c
+696.07702115 65.4537046 695.55130553 65.33000681 695.08581543 65.08261108 c
+694.62031688 64.83521563 694.23783028 64.52271595 693.93835449 64.14511108 c
+693.93835449 69.19393921 l
+692.18054199 69.19393921 l
+h
+693.77233887 60.09237671 m
+693.77233596 61.42701592 694.04251798 62.41334306 694.58288574 63.05136108 c
+695.12324606 63.68938345 695.77754229 64.00839354 696.54577637 64.00839233 c
+697.3270199 64.00839354 697.99596455 63.67799023 698.5526123 63.0171814 c
+699.10924468 62.35637697 699.38756472 61.33261497 699.38757324 59.94589233 c
+699.38756472 58.62428435 699.11575509 57.634702 698.57214355 56.97714233 c
+698.0285166 56.31959915 697.37910318 55.99082344 696.62390137 55.99081421 c
+695.87519844 55.99082344 695.2127642 56.34075798 694.63659668 57.0406189 c
+694.06042161 57.74049617 693.77233596 58.75774775 693.77233887 60.09237671 c
+693.77233887 60.09237671 l
+h
+f
+Q
+q
+0 0 0 rg
+710.11022949 65.21932983 m
+710.11022949 63.69589233 l
+709.30293052 64.86776769 708.20592641 65.4537046 706.81921387 65.45370483 c
+706.20723049 65.4537046 705.635942 65.33651722 705.10534668 65.10214233 c
+704.57474514 64.86776769 704.18086533 64.57317163 703.92370605 64.21835327 c
+703.66654292 63.86353692 703.48587904 63.42896704 703.38171387 62.91464233 c
+703.31009797 62.5695929 703.27429071 62.02271845 703.27429199 61.27401733 c
+703.27429199 54.84823608 l
+705.03210449 54.84823608 l
+705.03210449 60.60018921 l
+705.03210146 61.51816166 705.06790871 62.13665063 705.13952637 62.45565796 c
+705.2502002 62.91789984 705.48457496 63.28085521 705.84265137 63.54452515 c
+706.20072008 63.80819843 706.64342797 63.94003424 707.17077637 63.94003296 c
+707.69811441 63.94003424 708.19290559 63.80494323 708.65515137 63.53475952 c
+709.11738383 63.26457918 709.44453194 62.89674101 709.63659668 62.4312439 c
+709.82864614 61.96575236 709.92467469 61.2902973 709.92468262 60.40487671 c
+709.92468262 54.84823608 l
+711.68249512 54.84823608 l
+711.68249512 65.21932983 l
+710.11022949 65.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+718.28405762 63.64706421 m
+718.53796387 65.19979858 l
+718.04316729 65.30396517 717.60045939 65.35604845 717.20983887 65.35604858 c
+716.57181459 65.35604845 716.07702342 65.25513709 715.72546387 65.05331421 c
+715.37389912 64.85149166 715.12650354 64.58619245 714.98327637 64.25741577 c
+714.84004549 63.92864102 714.76843098 63.23690994 714.76843262 62.18222046 c
+714.76843262 56.21542358 l
+713.47937012 56.21542358 l
+713.47937012 54.84823608 l
+714.76843262 54.84823608 l
+714.76843262 52.27987671 l
+716.51647949 51.22518921 l
+716.51647949 54.84823608 l
+718.28405762 54.84823608 l
+718.28405762 56.21542358 l
+716.51647949 56.21542358 l
+716.51647949 62.27987671 l
+716.5164761 62.78118123 716.54740055 63.10344653 716.60925293 63.24667358 c
+716.67109834 63.38990458 716.7720097 63.50383676 716.9119873 63.58847046 c
+717.05195734 63.67310742 717.25215245 63.71542509 717.51257324 63.71542358 c
+717.70788116 63.71542509 717.96504236 63.69263865 718.28405762 63.64706421 c
+718.28405762 63.64706421 l
+h
+f
+Q
+q
+0 0 0 rg
+720.48132324 56.85018921 m
+720.48132324 54.84823608 l
+722.48327637 54.84823608 l
+722.48327637 56.85018921 l
+720.48132324 56.85018921 l
+h
+720.48132324 65.21932983 m
+720.48132324 63.21737671 l
+722.48327637 63.21737671 l
+722.48327637 65.21932983 l
+720.48132324 65.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+656.86804199 90.21932983 m
+656.86804199 75.90292358 l
+663.21569824 75.90292358 l
+664.49173071 75.9029379 665.46178183 76.0315185 666.12585449 76.28866577 c
+666.7899055 76.5458409 667.32050393 76.99994201 667.71765137 77.65097046 c
+668.11477396 78.30202404 668.31334147 79.02142437 668.31335449 79.80917358 c
+668.31334147 80.82480798 667.98456576 81.68092691 667.32702637 82.37753296 c
+666.66946291 83.07415469 665.65383893 83.51686258 664.28015137 83.70565796 c
+664.78144396 83.94654965 665.16230296 84.18417962 665.42272949 84.41854858 c
+665.97610423 84.92636638 666.50019225 85.56113137 666.99499512 86.32284546 c
+669.48522949 90.21932983 l
+667.10241699 90.21932983 l
+665.20788574 87.24081421 l
+664.65449097 86.38144305 664.19876226 85.72389162 663.84069824 85.26815796 c
+663.48261714 84.8124342 663.16197944 84.4934241 662.87878418 84.31112671 c
+662.59557375 84.12884113 662.30748811 84.00188813 662.01452637 83.93026733 c
+661.79967611 83.88470075 661.44811396 83.86191432 660.95983887 83.86190796 c
+658.76257324 83.86190796 l
+658.76257324 90.21932983 l
+656.86804199 90.21932983 l
+h
+658.76257324 82.22128296 m
+662.83483887 82.22128296 l
+663.70071588 82.22129096 664.37779854 82.13177282 664.86608887 81.95272827 c
+665.35436006 81.77370026 665.72545344 81.48724221 665.97937012 81.09335327 c
+666.23326543 80.69948258 666.36021843 80.27142312 666.36022949 79.80917358 c
+666.36021843 79.13210134 666.11445044 78.57546127 665.6229248 78.13925171 c
+665.13137851 77.70306631 664.3550121 77.48496757 663.29382324 77.48495483 c
+658.76257324 77.48495483 l
+658.76257324 82.22128296 l
+h
+f
+Q
+q
+0 0 0 rg
+678.16687012 86.87948608 m
+679.98327637 87.10409546 l
+679.69680809 88.16529543 679.16620966 88.98886231 678.39147949 89.57479858 c
+677.61673204 90.16073614 676.6271497 90.4537046 675.42272949 90.45370483 c
+673.90579825 90.4537046 672.70299998 89.98658267 671.81433105 89.05233765 c
+670.925658 88.11809496 670.48132251 86.80787491 670.48132324 85.12167358 c
+670.48132251 83.37688876 670.93054081 82.02272345 671.82897949 81.05917358 c
+672.72741401 80.09564204 673.89277743 79.61387169 675.32507324 79.61386108 c
+676.71178503 79.61387169 677.8445964 80.08587643 678.72351074 81.02987671 c
+679.60240714 81.97389537 680.04185982 83.30201904 680.04187012 85.01425171 c
+680.04185982 85.11842348 680.03860462 85.27467332 680.03210449 85.48300171 c
+672.29772949 85.48300171 l
+672.36283104 86.62232822 672.68509635 87.49472318 673.26452637 88.10018921 c
+673.84394936 88.70565947 674.56660488 89.00839354 675.43249512 89.00839233 c
+676.07702004 89.00839354 676.6271497 88.83912288 677.08288574 88.50057983 c
+677.53860712 88.16204022 677.89993488 87.62167618 678.16687012 86.87948608 c
+678.16687012 86.87948608 l
+h
+672.39538574 84.03768921 m
+678.18640137 84.03768921 l
+678.10826801 83.16530043 677.88691406 82.51100421 677.52233887 82.07479858 c
+676.96243582 81.39772407 676.23652509 81.05918274 675.34460449 81.05917358 c
+674.53730804 81.05918274 673.85859778 81.32936477 673.30847168 81.86972046 c
+672.75833846 82.41009285 672.45397679 83.13274838 672.39538574 84.03768921 c
+672.39538574 84.03768921 l
+h
+f
+Q
+q
+0 0 0 rg
+681.49694824 87.12362671 m
+683.23522949 86.85018921 l
+683.33288329 87.54680646 683.60469292 88.0806601 684.05065918 88.45175171 c
+684.49661911 88.82284686 685.11999088 89.00839354 685.92077637 89.00839233 c
+686.72806219 89.00839354 687.32701992 88.84400569 687.71765137 88.51522827 c
+688.10826914 88.18645426 688.30358145 87.80071246 688.30358887 87.35800171 c
+688.30358145 86.96086955 688.13105558 86.64836986 687.78601074 86.42050171 c
+687.54511866 86.26425566 686.94616093 86.06568815 685.98913574 85.82479858 c
+684.70006942 85.49928247 683.80651563 85.21770723 683.30847168 84.98007202 c
+682.81042288 84.74244729 682.43281909 84.41367158 682.17565918 83.9937439 c
+681.91849668 83.57382867 681.78991608 83.10996194 681.78991699 82.60214233 c
+681.78991608 82.13991083 681.89571025 81.71185136 682.1072998 81.31796265 c
+682.31888691 80.92409173 682.60697256 80.59694362 682.97155762 80.33651733 c
+683.24499275 80.1347045 683.61771374 79.96380624 684.08972168 79.82382202 c
+684.56172321 79.6838586 685.0679076 79.61387169 685.60827637 79.61386108 c
+686.42207291 79.61387169 687.13659042 79.73105907 687.75183105 79.96542358 c
+688.36705794 80.1998086 688.82115905 80.5171911 689.11413574 80.91757202 c
+689.40709597 81.31797155 689.60891868 81.85345278 689.71960449 82.52401733 c
+688.00085449 82.75839233 l
+687.92272245 82.22454616 687.6964857 81.80787991 687.32214355 81.50839233 c
+686.94778853 81.20892218 686.41881771 81.05918274 685.73522949 81.05917358 c
+684.92793378 81.05918274 684.35176248 81.19264615 684.00671387 81.45956421 c
+683.661659 81.72649979 683.48913313 82.03899947 683.48913574 82.39706421 c
+683.48913313 82.62493639 683.56074765 82.83001431 683.70397949 83.01229858 c
+683.84720569 83.20110769 684.07181484 83.35735753 684.37780762 83.48104858 c
+684.5535852 83.54615942 685.0711628 83.69589886 685.93054199 83.93026733 c
+687.17402528 84.26230454 688.04153744 84.53411417 688.53308105 84.74569702 c
+689.02460937 84.95729083 689.41035117 85.26490771 689.69030762 85.66854858 c
+689.97024645 86.07219856 690.11022026 86.57350015 690.11022949 87.17245483 c
+690.11022026 87.75839479 689.939322 88.31015206 689.59753418 88.82772827 c
+689.25572893 89.34530727 688.76256536 89.7456975 688.11804199 90.02890015 c
+687.47350415 90.31210318 686.74433821 90.4537046 685.93054199 90.45370483 c
+684.58288204 90.4537046 683.55586484 90.17375696 682.8494873 89.61386108 c
+682.14310583 89.05396642 681.69225993 88.22388912 681.49694824 87.12362671 c
+681.49694824 87.12362671 l
+h
+f
+Q
+q
+0 0 0 rg
+698.99694824 90.21932983 m
+698.99694824 88.69589233 l
+698.18964927 89.86776769 697.09264516 90.4537046 695.70593262 90.45370483 c
+695.09394924 90.4537046 694.52266075 90.33651722 693.99206543 90.10214233 c
+693.46146389 89.86776769 693.06758408 89.57317163 692.8104248 89.21835327 c
+692.55326167 88.86353692 692.37259779 88.42896704 692.26843262 87.91464233 c
+692.19681672 87.5695929 692.16100946 87.02271845 692.16101074 86.27401733 c
+692.16101074 79.84823608 l
+693.91882324 79.84823608 l
+693.91882324 85.60018921 l
+693.91882021 86.51816166 693.95462746 87.13665063 694.02624512 87.45565796 c
+694.13691895 87.91789984 694.37129371 88.28085521 694.72937012 88.54452515 c
+695.08743883 88.80819843 695.53014672 88.94003424 696.05749512 88.94003296 c
+696.58483316 88.94003424 697.07962434 88.80494323 697.54187012 88.53475952 c
+698.00410258 88.26457918 698.33125069 87.89674101 698.52331543 87.4312439 c
+698.71536489 86.96575236 698.81139344 86.2902973 698.81140137 85.40487671 c
+698.81140137 79.84823608 l
+700.56921387 79.84823608 l
+700.56921387 90.21932983 l
+698.99694824 90.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+703.29382324 90.21932983 m
+703.29382324 75.90292358 l
+705.05163574 75.90292358 l
+705.05163574 90.21932983 l
+703.29382324 90.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+711.62390137 88.64706421 m
+711.87780762 90.19979858 l
+711.38301104 90.30396517 710.94030314 90.35604845 710.54968262 90.35604858 c
+709.91165834 90.35604845 709.41686717 90.25513709 709.06530762 90.05331421 c
+708.71374287 89.85149166 708.46634729 89.58619245 708.32312012 89.25741577 c
+708.17988924 88.92864102 708.10827473 88.23690994 708.10827637 87.18222046 c
+708.10827637 81.21542358 l
+706.81921387 81.21542358 l
+706.81921387 79.84823608 l
+708.10827637 79.84823608 l
+708.10827637 77.27987671 l
+709.85632324 76.22518921 l
+709.85632324 79.84823608 l
+711.62390137 79.84823608 l
+711.62390137 81.21542358 l
+709.85632324 81.21542358 l
+709.85632324 87.27987671 l
+709.85631985 87.78118123 709.8872443 88.10344653 709.94909668 88.24667358 c
+710.01094209 88.38990458 710.11185345 88.50383676 710.25183105 88.58847046 c
+710.39180109 88.67310742 710.5919962 88.71542509 710.85241699 88.71542358 c
+711.04772491 88.71542509 711.30488611 88.69263865 711.62390137 88.64706421 c
+711.62390137 88.64706421 l
+h
+f
+Q
+q
+0 0 0 rg
+712.62976074 87.12362671 m
+714.36804199 86.85018921 l
+714.46569579 87.54680646 714.73750542 88.0806601 715.18347168 88.45175171 c
+715.62943161 88.82284686 716.25280338 89.00839354 717.05358887 89.00839233 c
+717.86087469 89.00839354 718.45983242 88.84400569 718.85046387 88.51522827 c
+719.24108164 88.18645426 719.43639395 87.80071246 719.43640137 87.35800171 c
+719.43639395 86.96086955 719.26386808 86.64836986 718.91882324 86.42050171 c
+718.67793116 86.26425566 718.07897343 86.06568815 717.12194824 85.82479858 c
+715.83288192 85.49928247 714.93932813 85.21770723 714.44128418 84.98007202 c
+713.94323538 84.74244729 713.56563159 84.41367158 713.30847168 83.9937439 c
+713.05130918 83.57382867 712.92272858 83.10996194 712.92272949 82.60214233 c
+712.92272858 82.13991083 713.02852275 81.71185136 713.2401123 81.31796265 c
+713.45169941 80.92409173 713.73978506 80.59694362 714.10437012 80.33651733 c
+714.37780525 80.1347045 714.75052624 79.96380624 715.22253418 79.82382202 c
+715.69453571 79.6838586 716.2007201 79.61387169 716.74108887 79.61386108 c
+717.55488541 79.61387169 718.26940292 79.73105907 718.88464355 79.96542358 c
+719.49987044 80.1998086 719.95397155 80.5171911 720.24694824 80.91757202 c
+720.53990847 81.31797155 720.74173118 81.85345278 720.85241699 82.52401733 c
+719.13366699 82.75839233 l
+719.05553495 82.22454616 718.8292982 81.80787991 718.45495605 81.50839233 c
+718.08060103 81.20892218 717.55163021 81.05918274 716.86804199 81.05917358 c
+716.06074628 81.05918274 715.48457498 81.19264615 715.13952637 81.45956421 c
+714.7944715 81.72649979 714.62194563 82.03899947 714.62194824 82.39706421 c
+714.62194563 82.62493639 714.69356015 82.83001431 714.83679199 83.01229858 c
+714.98001819 83.20110769 715.20462734 83.35735753 715.51062012 83.48104858 c
+715.6863977 83.54615942 716.2039753 83.69589886 717.06335449 83.93026733 c
+718.30683778 84.26230454 719.17434994 84.53411417 719.66589355 84.74569702 c
+720.15742187 84.95729083 720.54316367 85.26490771 720.82312012 85.66854858 c
+721.10305895 86.07219856 721.24303276 86.57350015 721.24304199 87.17245483 c
+721.24303276 87.75839479 721.0721345 88.31015206 720.73034668 88.82772827 c
+720.38854143 89.34530727 719.89537786 89.7456975 719.25085449 90.02890015 c
+718.60631665 90.31210318 717.87715071 90.4537046 717.06335449 90.45370483 c
+715.71569454 90.4537046 714.68867734 90.17375696 713.9822998 89.61386108 c
+713.27591833 89.05396642 712.82507243 88.22388912 712.62976074 87.12362671 c
+712.62976074 87.12362671 l
+h
+f
+Q
+q
+0 0 0 rg
+723.79187012 90.21932983 m
+723.79187012 88.21737671 l
+725.79382324 88.21737671 l
+725.79382324 90.21932983 l
+725.79381946 90.95500618 725.66361126 91.54908111 725.40319824 92.0015564 c
+725.14277845 92.45402812 724.7293674 92.80396267 724.16296387 93.05136108 c
+723.67468262 92.29940796 l
+724.04577434 92.13664563 724.31921156 91.89738805 724.49499512 91.58163452 c
+724.67077371 91.26587827 724.76842986 90.81177716 724.78796387 90.21932983 c
+723.79187012 90.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+659.63171387 109.60409546 m
+659.63171387 107.92440796 l
+665.69616699 107.91464233 l
+665.69616699 113.22714233 l
+664.76516403 113.96933108 663.80487854 114.52759875 662.81530762 114.90194702 c
+661.82571385 115.27629592 660.81008986 115.46347021 659.76843262 115.46347046 c
+658.36217564 115.46347021 657.08450765 115.16236375 655.9354248 114.56015015 c
+654.78633287 113.95793787 653.91882071 113.08717051 653.33288574 111.94784546 c
+652.74694688 110.80852695 652.45397843 109.53574177 652.45397949 108.12948608 c
+652.45397843 106.7362654 652.74531928 105.43581097 653.32800293 104.2281189 c
+653.9106827 103.0204488 654.74889801 102.1236398 655.84265137 101.53768921 c
+656.93639582 100.95176598 658.19616019 100.65879752 659.62194824 100.65878296 c
+660.65709522 100.65879752 661.59296668 100.82644058 662.42956543 101.16171265 c
+663.26614209 101.49701283 663.92206592 101.96413476 664.39733887 102.56307983 c
+664.8725858 103.16205022 665.23391356 103.94329944 665.48132324 104.90682983 c
+663.77233887 105.37557983 l
+663.55748295 104.64642374 663.29055613 104.07350765 662.97155762 103.65682983 c
+662.65253594 103.24017515 662.19680723 102.90651663 661.60437012 102.65585327 c
+661.01191258 102.40521504 660.35436115 102.27988965 659.63171387 102.27987671 c
+658.76582107 102.27988965 658.01712391 102.41172545 657.38562012 102.67538452 c
+656.75410434 102.93906868 656.24466474 103.28574802 655.8572998 103.71542358 c
+655.46992593 104.14512216 655.16881946 104.61712689 654.95397949 105.13143921 c
+654.58939296 106.01686508 654.40710147 106.97715058 654.40710449 108.01229858 c
+654.40710147 109.28834618 654.62682782 110.35605345 655.06628418 111.21542358 c
+655.50573319 112.07480173 656.14538099 112.71282192 656.98522949 113.12948608 c
+657.82506681 113.54615442 658.716993 113.75448755 659.66101074 113.75448608 c
+660.48131415 113.75448755 661.2820946 113.5966101 662.06335449 113.28085327 c
+662.84459304 112.96510032 663.43704036 112.62818659 663.84069824 112.27011108 c
+663.84069824 109.60409546 l
+659.63171387 109.60409546 l
+h
+f
+Q
+q
+0 0 0 rg
+668.23522949 115.21932983 m
+668.23522949 104.84823608 l
+669.81726074 104.84823608 l
+669.81726074 106.42050171 l
+670.22090329 105.68483416 670.59362427 105.1998086 670.9354248 104.96542358 c
+671.27721734 104.73105907 671.65319353 104.61387169 672.06335449 104.61386108 c
+672.65579669 104.61387169 673.25800963 104.80267358 673.86999512 105.18026733 c
+673.26452637 106.81112671 l
+672.83483297 106.55722912 672.4051459 106.43027612 671.97546387 106.43026733 c
+671.59134463 106.43027612 671.24629289 106.5458359 670.94030762 106.77694702 c
+670.63431434 107.00807502 670.4162156 107.32871272 670.28601074 107.73886108 c
+670.09069509 108.36386794 669.99303894 109.04746101 669.99304199 109.78964233 c
+669.99304199 115.21932983 l
+668.23522949 115.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+681.70202637 113.94003296 m
+681.05097727 114.4934191 680.42435029 114.88404371 679.82214355 115.11190796 c
+679.21992441 115.33977242 678.5737662 115.4537046 677.88366699 115.45370483 c
+676.74434095 115.4537046 675.86869078 115.17538457 675.25671387 114.6187439 c
+674.64473367 114.06210443 674.33874439 113.35084212 674.33874512 112.48495483 c
+674.33874439 111.97714558 674.45430417 111.51327885 674.6854248 111.09335327 c
+674.9165433 110.67343594 675.21927737 110.33652222 675.59362793 110.08261108 c
+675.96797454 109.82871022 676.38952359 109.63665313 676.85827637 109.50643921 c
+677.20332486 109.41529918 677.72415768 109.32740864 678.42077637 109.24276733 c
+679.84004098 109.07350265 680.88496181 108.87167993 681.55554199 108.63729858 c
+681.56204446 108.39641999 681.56529967 108.24342535 681.56530762 108.17831421 c
+681.56529967 107.46217613 681.39928421 106.95761935 681.06726074 106.66464233 c
+680.61803499 106.26751587 679.95071795 106.06894836 679.06530762 106.06893921 c
+678.23848008 106.06894836 677.62812913 106.21380499 677.23425293 106.50350952 c
+676.8403695 106.79323149 676.54902864 107.30592629 676.36022949 108.04159546 c
+674.64147949 107.80722046 l
+674.79772831 107.07155152 675.05488951 106.4774766 675.41296387 106.0249939 c
+675.77103463 105.57252958 676.28861224 105.22422264 676.96569824 104.98007202 c
+677.64277755 104.73594188 678.42728197 104.61387169 679.31921387 104.61386108 c
+680.20462395 104.61387169 680.92402427 104.71803825 681.47741699 104.92636108 c
+682.03079399 105.1347045 682.43769463 105.39674851 682.69812012 105.7124939 c
+682.95852744 106.0282583 683.14081893 106.42702092 683.24499512 106.90878296 c
+683.30357918 107.20827014 683.33287603 107.74863418 683.33288574 108.52987671 c
+683.33288574 110.87362671 l
+683.33287603 112.507744 683.37031088 113.54127162 683.44519043 113.97421265 c
+683.52005032 114.40715617 683.66816215 114.82219481 683.88952637 115.21932983 c
+682.05358887 115.21932983 l
+681.87128895 114.85474687 681.75410156 114.428315 681.70202637 113.94003296 c
+681.70202637 113.94003296 l
+h
+681.55554199 110.01425171 m
+680.91751386 110.27467332 679.96048356 110.49602727 678.68444824 110.67831421 c
+677.96178765 110.78248531 677.45072045 110.8996727 677.15124512 111.02987671 c
+676.85176271 111.1600891 676.62064315 111.3505186 676.45788574 111.60116577 c
+676.29512265 111.85182018 676.21374252 112.13014021 676.21374512 112.43612671 c
+676.21374252 112.90487902 676.3911512 113.29550363 676.74597168 113.60800171 c
+677.1007859 113.92050301 677.61999111 114.07675285 678.30358887 114.07675171 c
+678.98066684 114.07675285 679.58287978 113.92864102 680.11022949 113.63241577 c
+680.63756622 113.3361937 681.02493563 112.93092066 681.27233887 112.41659546 c
+681.46113311 112.01946324 681.55553405 111.43352633 681.55554199 110.65878296 c
+681.55554199 110.01425171 l
+h
+f
+Q
+q
+0 0 0 rg
+686.06726074 119.19393921 m
+686.06726074 104.84823608 l
+687.66882324 104.84823608 l
+687.66882324 106.19589233 l
+688.04642411 105.66855813 688.47285598 105.27305072 688.94812012 105.0093689 c
+689.42337586 104.7457075 689.99954716 104.61387169 690.67663574 104.61386108 c
+691.5620456 104.61387169 692.34329481 104.84173604 693.02038574 105.29745483 c
+693.69746013 105.75319347 694.20852732 106.39609647 694.55358887 107.22616577 c
+694.8986308 108.05625106 695.07115667 108.96608088 695.07116699 109.95565796 c
+695.07115667 111.01686008 694.88072717 111.97226277 694.49987793 112.8218689 c
+694.11900918 113.67147982 693.56562432 114.32252083 692.83972168 114.7749939 c
+692.11380286 115.22746785 691.35045727 115.4537046 690.54968262 115.45370483 c
+689.9637399 115.4537046 689.43802428 115.33000681 688.97253418 115.08261108 c
+688.50703563 114.83521563 688.12454903 114.52271595 687.82507324 114.14511108 c
+687.82507324 119.19393921 l
+686.06726074 119.19393921 l
+h
+687.65905762 110.09237671 m
+687.65905471 111.42701592 687.92923673 112.41334306 688.46960449 113.05136108 c
+689.00996481 113.68938345 689.66426104 114.00839354 690.43249512 114.00839233 c
+691.21373865 114.00839354 691.8826833 113.67799023 692.43933105 113.0171814 c
+692.99596343 112.35637697 693.27428347 111.33261497 693.27429199 109.94589233 c
+693.27428347 108.62428435 693.00247384 107.634702 692.4588623 106.97714233 c
+691.91523535 106.31959915 691.26582193 105.99082344 690.51062012 105.99081421 c
+689.76191719 105.99082344 689.09948295 106.34075798 688.52331543 107.0406189 c
+687.94714036 107.74049617 687.65905471 108.75774775 687.65905762 110.09237671 c
+687.65905762 110.09237671 l
+h
+f
+Q
+q
+0 0 0 rg
+697.20007324 115.21932983 m
+697.20007324 100.90292358 l
+698.95788574 100.90292358 l
+698.95788574 106.03964233 l
+699.77819435 105.08913163 700.81334956 104.61387169 702.06335449 104.61386108 c
+702.83157671 104.61387169 703.49889375 104.76523873 704.06530762 105.06796265 c
+704.63170512 105.37070687 705.03697815 105.78900072 705.28112793 106.32284546 c
+705.52525891 106.85670799 705.6473291 107.6314468 705.64733887 108.64706421 c
+705.64733887 115.21932983 l
+703.88952637 115.21932983 l
+703.88952637 108.64706421 l
+703.88951836 107.76816541 703.69908886 107.12851761 703.3182373 106.7281189 c
+702.93737087 106.32773716 702.39863443 106.12754205 701.70202637 106.12753296 c
+701.18118773 106.12754205 700.69127937 106.26263306 700.2322998 106.5328064 c
+699.77331154 106.8029971 699.44616343 107.16920768 699.25085449 107.63143921 c
+699.05553882 108.09368592 698.95788267 108.73170611 698.95788574 109.54550171 c
+698.95788574 115.21932983 l
+697.20007324 115.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+708.34265137 102.92440796 m
+708.34265137 100.90292358 l
+710.10046387 100.90292358 l
+710.10046387 102.92440796 l
+708.34265137 102.92440796 l
+h
+708.34265137 115.21932983 m
+708.34265137 104.84823608 l
+710.10046387 104.84823608 l
+710.10046387 115.21932983 l
+708.34265137 115.21932983 l
+h
+f
+Q
+q
+0 0 0 rg
+719.55358887 111.42050171 m
+721.28210449 111.64511108 l
+721.09329278 112.83651972 720.60989483 113.76913597 719.83190918 114.44296265 c
+719.0539068 115.11679087 718.09850411 115.4537046 716.96569824 115.45370483 c
+715.54642333 115.4537046 714.40547395 114.98983788 713.54284668 114.06210327 c
+712.68021526 113.13437098 712.24890059 111.80461971 712.24890137 110.07284546 c
+712.24890059 108.95306006 712.43444728 107.97324333 712.80554199 107.13339233 c
+713.17663403 106.29355751 713.74141211 105.66367533 714.49987793 105.2437439 c
+715.25833768 104.82383242 716.08353217 104.61387169 716.97546387 104.61386108 c
+718.10175932 104.61387169 719.02298235 104.89870213 719.73913574 105.46835327 c
+720.45527259 106.03802391 720.9142565 106.84694237 721.11608887 107.89511108 c
+719.40710449 108.15878296 l
+719.2443363 107.46217613 718.95625065 106.93808812 718.54284668 106.58651733 c
+718.12942856 106.23496382 717.62975458 106.05918274 717.04382324 106.05917358 c
+716.15840188 106.05918274 715.43900156 106.37656524 714.88562012 107.01132202 c
+714.33223184 107.64609522 714.0555394 108.65032599 714.05554199 110.02401733 c
+714.0555394 111.4172503 714.32246622 112.42961908 714.85632324 113.06112671 c
+715.39017349 113.69263865 716.08678737 114.00839354 716.94616699 114.00839233 c
+717.63626499 114.00839354 718.21243629 113.79680521 718.67468262 113.37362671 c
+719.13691453 112.95045189 719.42988299 112.29941088 719.55358887 111.42050171 c
+719.55358887 111.42050171 l
+h
+f
+Q
+q
+0 0 0 rg
+722.08288574 112.12362671 m
+723.82116699 111.85018921 l
+723.91882079 112.54680646 724.19063042 113.0806601 724.63659668 113.45175171 c
+725.08255661 113.82284686 725.70592838 114.00839354 726.50671387 114.00839233 c
+727.31399969 114.00839354 727.91295742 113.84400569 728.30358887 113.51522827 c
+728.69420664 113.18645426 728.88951895 112.80071246 728.88952637 112.35800171 c
+728.88951895 111.96086955 728.71699308 111.64836986 728.37194824 111.42050171 c
+728.13105616 111.26425566 727.53209843 111.06568815 726.57507324 110.82479858 c
+725.28600692 110.49928247 724.39245313 110.21770723 723.89440918 109.98007202 c
+723.39636038 109.74244729 723.01875659 109.41367158 722.76159668 108.9937439 c
+722.50443418 108.57382867 722.37585358 108.10996194 722.37585449 107.60214233 c
+722.37585358 107.13991083 722.48164775 106.71185136 722.6932373 106.31796265 c
+722.90482441 105.92409173 723.19291006 105.59694362 723.55749512 105.33651733 c
+723.83093025 105.1347045 724.20365124 104.96380624 724.67565918 104.82382202 c
+725.14766071 104.6838586 725.6538451 104.61387169 726.19421387 104.61386108 c
+727.00801041 104.61387169 727.72252792 104.73105907 728.33776855 104.96542358 c
+728.95299544 105.1998086 729.40709655 105.5171911 729.70007324 105.91757202 c
+729.99303347 106.31797155 730.19485618 106.85345278 730.30554199 107.52401733 c
+728.58679199 107.75839233 l
+728.50865995 107.22454616 728.2824232 106.80787991 727.90808105 106.50839233 c
+727.53372603 106.20892218 727.00475521 106.05918274 726.32116699 106.05917358 c
+725.51387128 106.05918274 724.93769998 106.19264615 724.59265137 106.45956421 c
+724.2475965 106.72649979 724.07507063 107.03899947 724.07507324 107.39706421 c
+724.07507063 107.62493639 724.14668515 107.83001431 724.28991699 108.01229858 c
+724.43314319 108.20110769 724.65775234 108.35735753 724.96374512 108.48104858 c
+725.1395227 108.54615942 725.6571003 108.69589886 726.51647949 108.93026733 c
+727.75996278 109.26230454 728.62747494 109.53411417 729.11901855 109.74569702 c
+729.61054687 109.95729083 729.99628867 110.26490771 730.27624512 110.66854858 c
+730.55618395 111.07219856 730.69615776 111.57350015 730.69616699 112.17245483 c
+730.69615776 112.75839479 730.5252595 113.31015206 730.18347168 113.82772827 c
+729.84166643 114.34530727 729.34850286 114.7456975 728.70397949 115.02890015 c
+728.05944165 115.31210318 727.33027571 115.4537046 726.51647949 115.45370483 c
+725.16881954 115.4537046 724.14180234 115.17375696 723.4354248 114.61386108 c
+722.72904333 114.05396642 722.27819743 113.22388912 722.08288574 112.12362671 c
+722.08288574 112.12362671 l
+h
+f
+Q
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+747.1428299 85.52305603 m
+747.1428299 113.91162656 722.82283038 136.95162582 692.8571167 136.95162582 c
+662.89140302 136.95162582 638.5714035 113.91162656 638.5714035 85.52305603 c
+638.5714035 57.1344855 662.89140302 34.09448624 692.8571167 34.09448624 c
+722.82283038 34.09448624 747.1428299 57.1344855 747.1428299 85.52305603 c
+h
+S
+Q
+Q
+q
+1 0 0 1 -25.357118 291.07143 cm
+q
+0 0 0 rg
+494.99169922 68.07646179 m
+494.99169922 53.76005554 l
+499.92333984 53.76005554 l
+501.03661351 53.76006986 501.88622203 53.82842917 502.47216797 53.96513367 c
+503.29247063 54.15394967 503.99233972 54.49574621 504.57177734 54.99052429 c
+505.3269738 55.62855757 505.89175188 56.44398645 506.26611328 57.43681335 c
+506.64044905 58.42966154 506.82762334 59.56410051 506.82763672 60.84013367 c
+506.82762334 61.9273794 506.70067034 62.8909201 506.44677734 63.73075867 c
+506.19285835 64.57060592 505.86733784 65.26559221 505.47021484 65.8157196 c
+505.0730678 66.36585152 504.63849792 66.7987938 504.16650391 67.11454773 c
+503.69448845 67.43030358 503.12482756 67.66956116 502.45751953 67.83232117 c
+501.79019348 67.99508167 501.02359269 68.07646179 500.15771484 68.07646179 c
+494.99169922 68.07646179 l
+h
+496.88623047 66.38700867 m
+499.94287109 66.38700867 l
+500.88687407 66.38701036 501.62743323 66.29911982 502.16455078 66.12333679 c
+502.7016509 65.94755767 503.12971037 65.70016208 503.44873047 65.38114929 c
+503.89793877 64.93193369 504.24787332 64.32809314 504.49853516 63.56962585 c
+504.7491749 62.81116758 504.87450029 61.89157214 504.87451172 60.81083679 c
+504.87450029 59.31344972 504.62873231 58.16273473 504.13720703 57.35868835 c
+503.64566038 56.55466342 503.04833024 56.01592698 502.34521484 55.74247742 c
+501.83739396 55.54717745 501.02033748 55.44952129 499.89404297 55.44950867 c
+496.88623047 55.44950867 l
+496.88623047 66.38700867 l
+h
+f
+Q
+q
+0 0 0 rg
+509.14208984 72.07060242 m
+508.94677734 70.42021179 l
+509.3308905 70.52437601 509.66617662 70.57645929 509.95263672 70.57646179 c
+510.34325928 70.57645929 510.65575896 70.51135519 510.89013672 70.38114929 c
+511.1245085 70.25093878 511.3165656 70.0686473 511.46630859 69.83427429 c
+511.576982 69.65849146 511.75601828 69.22229398 512.00341797 68.52568054 c
+512.03596592 68.42802394 512.0880492 68.28479492 512.15966797 68.09599304 c
+508.22412109 57.70536804 l
+510.11865234 57.70536804 l
+512.27685547 63.71122742 l
+512.55679873 64.47294977 512.80744952 65.27373022 513.02880859 66.11357117 c
+513.23062618 65.30628227 513.47151136 64.51852264 513.75146484 63.75028992 c
+515.96826172 57.70536804 l
+517.72607422 57.70536804 l
+513.78076172 68.25224304 l
+513.35757918 69.39156464 513.02880347 70.17606907 512.79443359 70.60575867 c
+512.48192901 71.18518264 512.12385646 71.6099869 511.72021484 71.88017273 c
+511.3165656 72.15035095 510.83479524 72.28544196 510.27490234 72.28544617 c
+509.93635864 72.28544196 509.55875485 72.21382745 509.14208984 72.07060242 c
+509.14208984 72.07060242 l
+h
+f
+Q
+q
+0 0 0 rg
+519.22021484 68.07646179 m
+519.22021484 57.70536804 l
+520.80224609 57.70536804 l
+520.80224609 59.17997742 l
+521.56396118 58.04066454 522.6642205 57.47100365 524.10302734 57.47099304 c
+524.72802052 57.47100365 525.30256421 57.58330822 525.82666016 57.8079071 c
+526.35074025 58.03252652 526.74299246 58.32712258 527.00341797 58.69169617 c
+527.26382527 59.05628852 527.44611676 59.4892308 527.55029297 59.99052429 c
+527.61538742 60.31605289 527.64793947 60.88571377 527.64794922 61.69950867 c
+527.64794922 68.07646179 l
+525.89013672 68.07646179 l
+525.89013672 61.76786804 l
+525.89012873 61.05172923 525.82176942 60.516248 525.68505859 60.16142273 c
+525.5483322 59.80661329 525.30581942 59.52341045 524.95751953 59.31181335 c
+524.60920553 59.10023379 524.20067729 58.99443962 523.73193359 58.99443054 c
+522.9832306 58.99443962 522.33707239 59.23206959 521.79345703 59.70732117 c
+521.24983389 60.18258948 520.97802427 61.08428128 520.97802734 62.41239929 c
+520.97802734 68.07646179 l
+519.22021484 68.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+537.12060547 66.79716492 m
+536.46955637 67.35055106 535.84292939 67.74117567 535.24072266 67.96903992 c
+534.63850351 68.19690438 533.9923453 68.31083656 533.30224609 68.31083679 c
+532.16292005 68.31083656 531.28726988 68.03251652 530.67529297 67.47587585 c
+530.06331277 66.91923639 529.7573235 66.20797408 529.75732422 65.34208679 c
+529.7573235 64.83427753 529.87288328 64.37041081 530.10400391 63.95048523 c
+530.3351224 63.5305679 530.63785647 63.19365417 531.01220703 62.93974304 c
+531.38655364 62.68584218 531.8081027 62.49378508 532.27685547 62.36357117 c
+532.62190396 62.27243114 533.14273678 62.1845406 533.83935547 62.09989929 c
+535.25862008 61.9306346 536.30354091 61.72881189 536.97412109 61.49443054 c
+536.98062356 61.25355195 536.98387877 61.10055731 536.98388672 61.03544617 c
+536.98387877 60.31930809 536.81786331 59.8147513 536.48583984 59.52177429 c
+536.03661409 59.12464783 535.36929705 58.92608032 534.48388672 58.92607117 c
+533.65705918 58.92608032 533.04670823 59.07093694 532.65283203 59.36064148 c
+532.2589486 59.65036345 531.96760774 60.16305825 531.77880859 60.89872742 c
+530.06005859 60.66435242 l
+530.21630741 59.92868348 530.47346861 59.33460855 530.83154297 58.88212585 c
+531.18961373 58.42966154 531.70719134 58.0813546 532.38427734 57.83720398 c
+533.06135665 57.59307384 533.84586107 57.47100365 534.73779297 57.47099304 c
+535.62320305 57.47100365 536.34260337 57.57517021 536.89599609 57.78349304 c
+537.4493731 57.99183646 537.85627373 58.25388047 538.11669922 58.56962585 c
+538.37710654 58.88539025 538.55939803 59.28415288 538.66357422 59.76591492 c
+538.72215828 60.06540209 538.75145513 60.60576614 538.75146484 61.38700867 c
+538.75146484 63.73075867 l
+538.75145513 65.36487596 538.78888999 66.39840357 538.86376953 66.8313446 c
+538.93862942 67.26428812 539.08674125 67.67932677 539.30810547 68.07646179 c
+537.47216797 68.07646179 l
+537.28986805 67.71187882 537.17268066 67.28544696 537.12060547 66.79716492 c
+537.12060547 66.79716492 l
+h
+536.97412109 62.87138367 m
+536.33609296 63.13180528 535.37906267 63.35315922 534.10302734 63.53544617 c
+533.38036675 63.63961727 532.86929955 63.75680465 532.56982422 63.88700867 c
+532.27034182 64.01722106 532.03922226 64.20765056 531.87646484 64.45829773 c
+531.71370175 64.70895214 531.63232162 64.98727217 531.63232422 65.29325867 c
+531.63232162 65.76201098 531.8097303 66.15263559 532.16455078 66.46513367 c
+532.519365 66.77763497 533.03857021 66.93388481 533.72216797 66.93388367 c
+534.39924594 66.93388481 535.00145888 66.78577298 535.52880859 66.48954773 c
+536.05614532 66.19332565 536.44351473 65.78805262 536.69091797 65.27372742 c
+536.87971221 64.8765952 536.97411315 64.29065829 536.97412109 63.51591492 c
+536.97412109 62.87138367 l
+h
+f
+Q
+q
+0 0 0 rg
+541.46630859 68.07646179 m
+541.46630859 57.70536804 l
+543.04833984 57.70536804 l
+543.04833984 59.27763367 l
+543.45198239 58.54196612 543.82470337 58.05694056 544.16650391 57.82255554 c
+544.50829644 57.58819103 544.88427263 57.47100365 545.29443359 57.47099304 c
+545.88687579 57.47100365 546.48908873 57.65980554 547.10107422 58.03739929 c
+546.49560547 59.66825867 l
+546.06591207 59.41436108 545.636225 59.28740808 545.20654297 59.28739929 c
+544.82242373 59.28740808 544.47737199 59.40296786 544.17138672 59.63407898 c
+543.86539344 59.86520698 543.6472947 60.18584468 543.51708984 60.59599304 c
+543.32177419 61.2209999 543.22411804 61.90459296 543.22412109 62.64677429 c
+543.22412109 68.07646179 l
+541.46630859 68.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+555.26513672 64.73661804 m
+557.08154297 64.96122742 l
+556.79507469 66.02242739 556.26447626 66.84599427 555.48974609 67.43193054 c
+554.71499864 68.0178681 553.7254163 68.31083656 552.52099609 68.31083679 c
+551.00406485 68.31083656 549.80126658 67.84371463 548.91259766 66.9094696 c
+548.0239246 65.97522691 547.57958911 64.66500687 547.57958984 62.97880554 c
+547.57958911 61.23402072 548.02880741 59.87985541 548.92724609 58.91630554 c
+549.82568062 57.952774 550.99104403 57.47100365 552.42333984 57.47099304 c
+553.81005163 57.47100365 554.942863 57.94300838 555.82177734 58.88700867 c
+556.70067374 59.83102733 557.14012643 61.159151 557.14013672 62.87138367 c
+557.14012643 62.97555543 557.13687122 63.13180528 557.13037109 63.34013367 c
+549.39599609 63.34013367 l
+549.46109765 64.47946018 549.78336295 65.35185514 550.36279297 65.95732117 c
+550.94221596 66.56279143 551.66487148 66.8655255 552.53076172 66.86552429 c
+553.17528664 66.8655255 553.7254163 66.69625484 554.18115234 66.35771179 c
+554.63687372 66.01917218 554.99820148 65.47880814 555.26513672 64.73661804 c
+555.26513672 64.73661804 l
+h
+549.49365234 61.89482117 m
+555.28466797 61.89482117 l
+555.20653461 61.02243239 554.98518066 60.36813617 554.62060547 59.93193054 c
+554.06070242 59.25485603 553.33479169 58.9163147 552.44287109 58.91630554 c
+551.63557464 58.9163147 550.95686438 59.18649672 550.40673828 59.72685242 c
+549.85660506 60.26722481 549.55224339 60.98988034 549.49365234 61.89482117 c
+549.49365234 61.89482117 l
+h
+f
+Q
+q
+0 0 0 rg
+458.78076172 93.07646179 m
+458.78076172 78.76005554 l
+461.63232422 78.76005554 l
+465.02099609 88.89677429 l
+465.33348806 89.84078794 465.56135241 90.54716745 465.70458984 91.01591492 c
+465.86734169 90.49508417 466.12124769 89.73011097 466.46630859 88.72099304 c
+469.89404297 78.76005554 l
+472.44287109 78.76005554 l
+472.44287109 93.07646179 l
+470.61669922 93.07646179 l
+470.61669922 81.09403992 l
+466.45654297 93.07646179 l
+464.74755859 93.07646179 l
+460.60693359 80.88896179 l
+460.60693359 93.07646179 l
+458.78076172 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+482.06201172 91.79716492 m
+481.41096262 92.35055106 480.78433564 92.74117567 480.18212891 92.96903992 c
+479.57990976 93.19690438 478.93375155 93.31083656 478.24365234 93.31083679 c
+477.1043263 93.31083656 476.22867613 93.03251652 475.61669922 92.47587585 c
+475.00471902 91.91923639 474.69872975 91.20797408 474.69873047 90.34208679 c
+474.69872975 89.83427753 474.81428953 89.37041081 475.04541016 88.95048523 c
+475.27652865 88.5305679 475.57926272 88.19365417 475.95361328 87.93974304 c
+476.32795989 87.68584218 476.74950895 87.49378508 477.21826172 87.36357117 c
+477.56331021 87.27243114 478.08414303 87.1845406 478.78076172 87.09989929 c
+480.20002633 86.9306346 481.24494716 86.72881189 481.91552734 86.49443054 c
+481.92202981 86.25355195 481.92528502 86.10055731 481.92529297 86.03544617 c
+481.92528502 85.31930809 481.75926956 84.8147513 481.42724609 84.52177429 c
+480.97802034 84.12464783 480.3107033 83.92608032 479.42529297 83.92607117 c
+478.59846543 83.92608032 477.98811448 84.07093694 477.59423828 84.36064148 c
+477.20035485 84.65036345 476.90901399 85.16305825 476.72021484 85.89872742 c
+475.00146484 85.66435242 l
+475.15771366 84.92868348 475.41487486 84.33460855 475.77294922 83.88212585 c
+476.13101998 83.42966154 476.64859759 83.0813546 477.32568359 82.83720398 c
+478.0027629 82.59307384 478.78726732 82.47100365 479.67919922 82.47099304 c
+480.5646093 82.47100365 481.28400962 82.57517021 481.83740234 82.78349304 c
+482.39077935 82.99183646 482.79767998 83.25388047 483.05810547 83.56962585 c
+483.31851279 83.88539025 483.50080428 84.28415288 483.60498047 84.76591492 c
+483.66356453 85.06540209 483.69286138 85.60576614 483.69287109 86.38700867 c
+483.69287109 88.73075867 l
+483.69286138 90.36487596 483.73029624 91.39840357 483.80517578 91.8313446 c
+483.88003567 92.26428812 484.0281475 92.67932677 484.24951172 93.07646179 c
+482.41357422 93.07646179 l
+482.2312743 92.71187882 482.11408691 92.28544696 482.06201172 91.79716492 c
+482.06201172 91.79716492 l
+h
+481.91552734 87.87138367 m
+481.27749921 88.13180528 480.32046892 88.35315922 479.04443359 88.53544617 c
+478.321773 88.63961727 477.8107058 88.75680465 477.51123047 88.88700867 c
+477.21174807 89.01722106 476.98062851 89.20765056 476.81787109 89.45829773 c
+476.655108 89.70895214 476.57372787 89.98727217 476.57373047 90.29325867 c
+476.57372787 90.76201098 476.75113655 91.15263559 477.10595703 91.46513367 c
+477.46077125 91.77763497 477.97997646 91.93388481 478.66357422 91.93388367 c
+479.34065219 91.93388481 479.94286513 91.78577298 480.47021484 91.48954773 c
+480.99755157 91.19332565 481.38492098 90.78805262 481.63232422 90.27372742 c
+481.82111846 89.8765952 481.9155194 89.29065829 481.91552734 88.51591492 c
+481.91552734 87.87138367 l
+h
+f
+Q
+q
+0 0 0 rg
+490.26513672 91.50419617 m
+490.51904297 93.05693054 l
+490.02424639 93.16109712 489.5815385 93.21318041 489.19091797 93.21318054 c
+488.55289369 93.21318041 488.05810252 93.11226905 487.70654297 92.91044617 c
+487.35497822 92.70862362 487.10758264 92.4433244 486.96435547 92.11454773 c
+486.82112459 91.78577298 486.74951008 91.0940419 486.74951172 90.03935242 c
+486.74951172 84.07255554 l
+485.46044922 84.07255554 l
+485.46044922 82.70536804 l
+486.74951172 82.70536804 l
+486.74951172 80.13700867 l
+488.49755859 79.08232117 l
+488.49755859 82.70536804 l
+490.26513672 82.70536804 l
+490.26513672 84.07255554 l
+488.49755859 84.07255554 l
+488.49755859 90.13700867 l
+488.49755521 90.63831319 488.52847965 90.96057849 488.59033203 91.10380554 c
+488.65217745 91.24703654 488.7530888 91.36096872 488.89306641 91.44560242 c
+489.03303644 91.53023938 489.23323155 91.57255705 489.49365234 91.57255554 c
+489.68896026 91.57255705 489.94612146 91.54977061 490.26513672 91.50419617 c
+490.26513672 91.50419617 l
+h
+f
+Q
+q
+0 0 0 rg
+491.93505859 93.07646179 m
+491.93505859 78.76005554 l
+493.69287109 78.76005554 l
+493.69287109 93.07646179 l
+491.93505859 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+503.19482422 91.79716492 m
+502.54377512 92.35055106 501.91714814 92.74117567 501.31494141 92.96903992 c
+500.71272226 93.19690438 500.06656405 93.31083656 499.37646484 93.31083679 c
+498.2371388 93.31083656 497.36148863 93.03251652 496.74951172 92.47587585 c
+496.13753152 91.91923639 495.83154225 91.20797408 495.83154297 90.34208679 c
+495.83154225 89.83427753 495.94710203 89.37041081 496.17822266 88.95048523 c
+496.40934115 88.5305679 496.71207522 88.19365417 497.08642578 87.93974304 c
+497.46077239 87.68584218 497.88232145 87.49378508 498.35107422 87.36357117 c
+498.69612271 87.27243114 499.21695553 87.1845406 499.91357422 87.09989929 c
+501.33283883 86.9306346 502.37775966 86.72881189 503.04833984 86.49443054 c
+503.05484231 86.25355195 503.05809752 86.10055731 503.05810547 86.03544617 c
+503.05809752 85.31930809 502.89208206 84.8147513 502.56005859 84.52177429 c
+502.11083284 84.12464783 501.4435158 83.92608032 500.55810547 83.92607117 c
+499.73127793 83.92608032 499.12092698 84.07093694 498.72705078 84.36064148 c
+498.33316735 84.65036345 498.04182649 85.16305825 497.85302734 85.89872742 c
+496.13427734 85.66435242 l
+496.29052616 84.92868348 496.54768736 84.33460855 496.90576172 83.88212585 c
+497.26383248 83.42966154 497.78141009 83.0813546 498.45849609 82.83720398 c
+499.1355754 82.59307384 499.92007982 82.47100365 500.81201172 82.47099304 c
+501.6974218 82.47100365 502.41682212 82.57517021 502.97021484 82.78349304 c
+503.52359185 82.99183646 503.93049248 83.25388047 504.19091797 83.56962585 c
+504.45132529 83.88539025 504.63361678 84.28415288 504.73779297 84.76591492 c
+504.79637703 85.06540209 504.82567388 85.60576614 504.82568359 86.38700867 c
+504.82568359 88.73075867 l
+504.82567388 90.36487596 504.86310874 91.39840357 504.93798828 91.8313446 c
+505.01284817 92.26428812 505.16096 92.67932677 505.38232422 93.07646179 c
+503.54638672 93.07646179 l
+503.3640868 92.71187882 503.24689941 92.28544696 503.19482422 91.79716492 c
+503.19482422 91.79716492 l
+h
+503.04833984 87.87138367 m
+502.41031171 88.13180528 501.45328142 88.35315922 500.17724609 88.53544617 c
+499.4545855 88.63961727 498.9435183 88.75680465 498.64404297 88.88700867 c
+498.34456057 89.01722106 498.11344101 89.20765056 497.95068359 89.45829773 c
+497.7879205 89.70895214 497.70654037 89.98727217 497.70654297 90.29325867 c
+497.70654037 90.76201098 497.88394905 91.15263559 498.23876953 91.46513367 c
+498.59358375 91.77763497 499.11278896 91.93388481 499.79638672 91.93388367 c
+500.47346469 91.93388481 501.07567763 91.78577298 501.60302734 91.48954773 c
+502.13036407 91.19332565 502.51773348 90.78805262 502.76513672 90.27372742 c
+502.95393096 89.8765952 503.0483319 89.29065829 503.04833984 88.51591492 c
+503.04833984 87.87138367 l
+h
+f
+Q
+q
+0 0 0 rg
+509.18115234 93.07646179 m
+507.55029297 93.07646179 l
+507.55029297 78.76005554 l
+509.30810547 78.76005554 l
+509.30810547 83.86747742 l
+510.05028916 82.93649797 510.99755384 82.47100365 512.14990234 82.47099304 c
+512.78791663 82.47100365 513.39175717 82.59958425 513.96142578 82.85673523 c
+514.53107895 83.11390665 514.99982848 83.47523441 515.36767578 83.9407196 c
+515.73550483 84.40622307 516.02359048 84.96774594 516.23193359 85.62528992 c
+516.44025673 86.28284879 516.54442329 86.98597309 516.54443359 87.73466492 c
+516.54442329 89.51201223 516.10497061 90.88570877 515.22607422 91.85575867 c
+514.34715986 92.825811 513.29247342 93.31083656 512.06201172 93.31083679 c
+510.83804879 93.31083656 509.87776329 92.79976936 509.18115234 91.77763367 c
+509.18115234 93.07646179 l
+h
+509.16162109 87.81278992 m
+509.16161817 89.05628352 509.33088884 89.95472012 509.66943359 90.50810242 c
+510.22281503 91.413052 510.9715122 91.8655255 511.91552734 91.86552429 c
+512.68375007 91.8655255 513.3478119 91.53186698 513.90771484 90.86454773 c
+514.46760245 90.1972329 514.74755009 89.20276775 514.74755859 87.88114929 c
+514.74755009 86.52698917 514.47899567 85.52764122 513.94189453 84.88310242 c
+513.40477799 84.23858 512.75536458 83.9163147 511.99365234 83.91630554 c
+511.22541819 83.9163147 510.56135636 84.24997322 510.00146484 84.9172821 c
+509.44156581 85.5846073 509.16161817 86.54977561 509.16162109 87.81278992 c
+509.16162109 87.81278992 l
+h
+f
+Q
+q
+0 0 0 rg
+524.22021484 93.07646179 m
+524.22021484 82.70536804 l
+525.80224609 82.70536804 l
+525.80224609 84.27763367 l
+526.20588864 83.54196612 526.57860962 83.05694056 526.92041016 82.82255554 c
+527.26220269 82.58819103 527.63817888 82.47100365 528.04833984 82.47099304 c
+528.64078204 82.47100365 529.24299498 82.65980554 529.85498047 83.03739929 c
+529.24951172 84.66825867 l
+528.81981832 84.41436108 528.39013125 84.28740808 527.96044922 84.28739929 c
+527.57632998 84.28740808 527.23127824 84.40296786 526.92529297 84.63407898 c
+526.61929969 84.86520698 526.40120095 85.18584468 526.27099609 85.59599304 c
+526.07568044 86.2209999 525.97802429 86.90459296 525.97802734 87.64677429 c
+525.97802734 93.07646179 l
+524.22021484 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+530.26513672 87.89091492 m
+530.26513605 85.97034911 530.79898969 84.54782449 531.86669922 83.62333679 c
+532.75862314 82.85511785 533.84586164 82.47100365 535.12841797 82.47099304 c
+536.55419227 82.47100365 537.71955568 82.93812558 538.62451172 83.87236023 c
+539.52944971 84.80661329 539.98192321 86.0973021 539.98193359 87.74443054 c
+539.98192321 89.07906996 539.7817281 90.12887359 539.38134766 90.8938446 c
+538.98094765 91.65881998 538.39826594 92.25289491 537.63330078 92.67607117 c
+536.86831956 93.09924823 536.03335945 93.31083656 535.12841797 93.31083679 c
+533.67659098 93.31083656 532.50308955 92.84534223 531.60791016 91.91435242 c
+530.71272675 90.98336493 530.26513605 89.64222043 530.26513672 87.89091492 c
+530.26513672 87.89091492 l
+h
+532.07177734 87.89091492 m
+532.07177487 89.21904377 532.36148813 90.21350893 532.94091797 90.87431335 c
+533.52034113 91.53512219 534.24950707 91.8655255 535.12841797 91.86552429 c
+536.0008074 91.8655255 536.72671813 91.53349458 537.30615234 90.86943054 c
+537.88557114 90.20537091 538.17528439 89.19300213 538.17529297 87.83232117 c
+538.17528439 86.54977561 537.88394354 85.57809689 537.30126953 84.9172821 c
+536.71858012 84.25648363 535.99429699 83.92608032 535.12841797 83.92607117 c
+534.24950707 83.92608032 533.52034113 84.25485603 532.94091797 84.91239929 c
+532.36148813 85.56995888 532.07177487 86.56279643 532.07177734 87.89091492 c
+532.07177734 87.89091492 l
+h
+f
+Q
+q
+0 0 0 rg
+548.84912109 93.07646179 m
+548.84912109 91.55302429 l
+548.04182212 92.72489964 546.94481801 93.31083656 545.55810547 93.31083679 c
+544.94612209 93.31083656 544.3748336 93.19364917 543.84423828 92.95927429 c
+543.31363674 92.72489964 542.91975693 92.43030358 542.66259766 92.07548523 c
+542.40543453 91.72066888 542.22477064 91.286099 542.12060547 90.77177429 c
+542.04898957 90.42672486 542.01318231 89.87985041 542.01318359 89.13114929 c
+542.01318359 82.70536804 l
+543.77099609 82.70536804 l
+543.77099609 88.45732117 l
+543.77099306 89.37529362 543.80680031 89.99378258 543.87841797 90.31278992 c
+543.9890918 90.7750318 544.22346656 91.13798717 544.58154297 91.4016571 c
+544.93961168 91.66533039 545.38231957 91.7971662 545.90966797 91.79716492 c
+546.43700602 91.7971662 546.93179719 91.66207519 547.39404297 91.39189148 c
+547.85627543 91.12171114 548.18342354 90.75387297 548.37548828 90.28837585 c
+548.56753774 89.82288432 548.66356629 89.14742926 548.66357422 88.26200867 c
+548.66357422 82.70536804 l
+550.42138672 82.70536804 l
+550.42138672 93.07646179 l
+548.84912109 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+557.02294922 91.50419617 m
+557.27685547 93.05693054 l
+556.78205889 93.16109712 556.339351 93.21318041 555.94873047 93.21318054 c
+555.31070619 93.21318041 554.81591502 93.11226905 554.46435547 92.91044617 c
+554.11279072 92.70862362 553.86539514 92.4433244 553.72216797 92.11454773 c
+553.57893709 91.78577298 553.50732258 91.0940419 553.50732422 90.03935242 c
+553.50732422 84.07255554 l
+552.21826172 84.07255554 l
+552.21826172 82.70536804 l
+553.50732422 82.70536804 l
+553.50732422 80.13700867 l
+555.25537109 79.08232117 l
+555.25537109 82.70536804 l
+557.02294922 82.70536804 l
+557.02294922 84.07255554 l
+555.25537109 84.07255554 l
+555.25537109 90.13700867 l
+555.25536771 90.63831319 555.28629215 90.96057849 555.34814453 91.10380554 c
+555.40998995 91.24703654 555.5109013 91.36096872 555.65087891 91.44560242 c
+555.79084894 91.53023938 555.99104405 91.57255705 556.25146484 91.57255554 c
+556.44677276 91.57255705 556.70393396 91.54977061 557.02294922 91.50419617 c
+557.02294922 91.50419617 l
+h
+f
+Q
+q
+0 0 0 rg
+558.74169922 80.78153992 m
+558.74169922 78.76005554 l
+560.49951172 78.76005554 l
+560.49951172 80.78153992 l
+558.74169922 80.78153992 l
+h
+558.74169922 93.07646179 m
+558.74169922 82.70536804 l
+560.49951172 82.70536804 l
+560.49951172 93.07646179 l
+558.74169922 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+563.18505859 93.07646179 m
+563.18505859 82.70536804 l
+564.76708984 82.70536804 l
+564.76708984 84.17997742 l
+565.52880493 83.04066454 566.62906425 82.47100365 568.06787109 82.47099304 c
+568.69286427 82.47100365 569.26740796 82.58330822 569.79150391 82.8079071 c
+570.315584 83.03252652 570.70783621 83.32712258 570.96826172 83.69169617 c
+571.22866902 84.05628852 571.41096051 84.4892308 571.51513672 84.99052429 c
+571.58023117 85.31605289 571.61278322 85.88571377 571.61279297 86.69950867 c
+571.61279297 93.07646179 l
+569.85498047 93.07646179 l
+569.85498047 86.76786804 l
+569.85497248 86.05172923 569.78661317 85.516248 569.64990234 85.16142273 c
+569.51317595 84.80661329 569.27066317 84.52341045 568.92236328 84.31181335 c
+568.57404928 84.10023379 568.16552104 83.99443962 567.69677734 83.99443054 c
+566.94807435 83.99443962 566.30191614 84.23206959 565.75830078 84.70732117 c
+565.21467764 85.18258948 564.94286802 86.08428128 564.94287109 87.41239929 c
+564.94287109 93.07646179 l
+563.18505859 93.07646179 l
+h
+f
+Q
+q
+0 0 0 rg
+581.41748047 89.73661804 m
+583.23388672 89.96122742 l
+582.94741844 91.02242739 582.41682001 91.84599427 581.64208984 92.43193054 c
+580.86734239 93.0178681 579.87776005 93.31083656 578.67333984 93.31083679 c
+577.1564086 93.31083656 575.95361033 92.84371463 575.06494141 91.9094696 c
+574.17626835 90.97522691 573.73193286 89.66500687 573.73193359 87.97880554 c
+573.73193286 86.23402072 574.18115116 84.87985541 575.07958984 83.91630554 c
+575.97802437 82.952774 577.14338778 82.47100365 578.57568359 82.47099304 c
+579.96239538 82.47100365 581.09520675 82.94300838 581.97412109 83.88700867 c
+582.85301749 84.83102733 583.29247018 86.159151 583.29248047 87.87138367 c
+583.29247018 87.97555543 583.28921497 88.13180528 583.28271484 88.34013367 c
+575.54833984 88.34013367 l
+575.6134414 89.47946018 575.9357067 90.35185514 576.51513672 90.95732117 c
+577.09455971 91.56279143 577.81721523 91.8655255 578.68310547 91.86552429 c
+579.32763039 91.8655255 579.87776005 91.69625484 580.33349609 91.35771179 c
+580.78921747 91.01917218 581.15054523 90.47880814 581.41748047 89.73661804 c
+581.41748047 89.73661804 l
+h
+575.64599609 86.89482117 m
+581.43701172 86.89482117 l
+581.35887836 86.02243239 581.13752441 85.36813617 580.77294922 84.93193054 c
+580.21304617 84.25485603 579.48713544 83.9163147 578.59521484 83.91630554 c
+577.78791839 83.9163147 577.10920813 84.18649672 576.55908203 84.72685242 c
+576.00894881 85.26722481 575.70458714 85.98988034 575.64599609 86.89482117 c
+575.64599609 86.89482117 l
+h
+f
+Q
+q
+0 0 0 rg
+584.74755859 89.98075867 m
+586.48583984 89.70732117 l
+586.58349364 90.40393842 586.85530327 90.93779206 587.30126953 91.30888367 c
+587.74722946 91.67997881 588.37060123 91.8655255 589.17138672 91.86552429 c
+589.97867254 91.8655255 590.57763027 91.70113765 590.96826172 91.37236023 c
+591.35887949 91.04358622 591.5541918 90.65784442 591.55419922 90.21513367 c
+591.5541918 89.81800151 591.38166593 89.50550182 591.03662109 89.27763367 c
+590.79572901 89.12138762 590.19677128 88.92282011 589.23974609 88.68193054 c
+587.95067978 88.35641443 587.05712598 88.07483919 586.55908203 87.83720398 c
+586.06103323 87.59957925 585.68342944 87.27080354 585.42626953 86.85087585 c
+585.16910704 86.43096062 585.04052644 85.9670939 585.04052734 85.45927429 c
+585.04052644 84.99704279 585.1463206 84.56898332 585.35791016 84.1750946 c
+585.56949726 83.78122369 585.85758291 83.45407558 586.22216797 83.19364929 c
+586.49560311 82.99183646 586.86832409 82.82093819 587.34033203 82.68095398 c
+587.81233356 82.54099056 588.31851795 82.47100365 588.85888672 82.47099304 c
+589.67268326 82.47100365 590.38720078 82.58819103 591.00244141 82.82255554 c
+591.6176683 83.05694056 592.0717694 83.37432306 592.36474609 83.77470398 c
+592.65770632 84.17510351 592.85952903 84.71058474 592.97021484 85.38114929 c
+591.25146484 85.61552429 l
+591.1733328 85.08167812 590.94709605 84.66501187 590.57275391 84.36552429 c
+590.19839888 84.06605414 589.66942806 83.9163147 588.98583984 83.91630554 c
+588.17854413 83.9163147 587.60237283 84.04977811 587.25732422 84.31669617 c
+586.91226936 84.58363174 586.73974349 84.89613143 586.73974609 85.25419617 c
+586.73974349 85.48206834 586.811358 85.68714626 586.95458984 85.86943054 c
+587.09781604 86.05823964 587.3224252 86.21448949 587.62841797 86.33818054 c
+587.80419555 86.40329138 588.32177315 86.55303082 589.18115234 86.78739929 c
+590.42463563 87.1194365 591.29214779 87.39124612 591.78369141 87.60282898 c
+592.27521972 87.81442278 592.66096152 88.12203966 592.94091797 88.52568054 c
+593.2208568 88.92933052 593.36083062 89.4306321 593.36083984 90.02958679 c
+593.36083062 90.61552675 593.18993235 91.16728401 592.84814453 91.68486023 c
+592.50633928 92.20243923 592.01317571 92.60282945 591.36865234 92.8860321 c
+590.7241145 93.16923514 589.99494856 93.31083656 589.18115234 93.31083679 c
+587.83349239 93.31083656 586.80647519 93.03088892 586.10009766 92.47099304 c
+585.39371619 91.91109837 584.94287028 91.08102108 584.74755859 89.98075867 c
+584.74755859 89.98075867 l
+h
+f
+Q
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+448.57144165 36.95162582 m
+601.42858887 36.95162582 l
+601.42858887 112.66591263 l
+448.57144165 112.66591263 l
+448.57144165 36.95162582 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+757.92859 365.8802 m
+577.07147 365.8802 l
+S
+Q
+q
+1.2 -0 0 1.2 592.07147 365.8802 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+422.21432 366.33835 m
+192.78572 367.69591 l
+S
+Q
+q
+1.19997899 -0.00710044 0.00710044 1.19997899 207.78545741 367.60715453 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 rg
+106.50669861 117.30876923 m
+106.50669861 102.99236298 l
+109.35826111 102.99236298 l
+112.74693298 113.12908173 l
+113.05942495 114.07309538 113.2872893 114.77947488 113.43052673 115.24822235 c
+113.59327858 114.7273916 113.84718458 113.96241841 114.19224548 112.95330048 c
+117.61997986 102.99236298 l
+120.16880798 102.99236298 l
+120.16880798 117.30876923 l
+118.34263611 117.30876923 l
+118.34263611 105.32634735 l
+114.18247986 117.30876923 l
+112.47349548 117.30876923 l
+108.33287048 105.12126923 l
+108.33287048 117.30876923 l
+106.50669861 117.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+122.66880798 110.33611298 m
+122.66880702 107.95982024 123.30682721 106.09947054 124.58287048 104.75505829 c
+125.85890799 103.41067115 127.50604176 102.7384713 129.52427673 102.73845673 c
+130.84588217 102.7384713 132.03728723 103.05422619 133.09849548 103.68572235 c
+134.15968094 104.31724576 134.9685994 105.19777873 135.5252533 106.32732391 c
+136.08187954 107.45689106 136.36019958 108.73781426 136.36021423 110.17009735 c
+136.36019958 111.62192595 136.06723112 112.92075278 135.48130798 114.06658173 c
+134.89535729 115.21241716 134.06528 116.07992931 132.99107361 116.66912079 c
+131.91684464 117.25831355 130.75799164 117.55290961 129.51451111 117.55290985 c
+128.16684839 117.55290961 126.96242251 117.2273891 125.90122986 116.57634735 c
+124.8400288 115.92530707 124.03599315 115.03663608 123.48912048 113.91033173 c
+122.94224424 112.78403417 122.66880702 111.59262911 122.66880798 110.33611298 c
+122.66880798 110.33611298 l
+h
+124.62193298 110.36540985 m
+124.62193006 112.09067549 125.08579679 113.44972361 126.01353455 114.44255829 c
+126.94126368 115.4353987 128.1049995 115.93181748 129.50474548 115.9318161 c
+130.9305175 115.93181748 132.10401894 115.4305159 133.0252533 114.42790985 c
+133.94646501 113.42530957 134.40707653 112.00278495 134.40708923 110.16033173 c
+134.40707653 108.99497546 134.21013662 107.97772387 133.81626892 107.10857391 c
+133.42237699 106.23944436 132.84620569 105.56561691 132.0877533 105.08708954 c
+131.32928013 104.60858661 130.478044 104.36932904 129.53404236 104.3693161 c
+128.19289003 104.36932904 127.03891983 104.82994056 126.0721283 105.75115204 c
+125.10532802 106.67238663 124.62193006 108.21047103 124.62193298 110.36540985 c
+124.62193298 110.36540985 l
+h
+f
+Q
+q
+0 0 0 rg
+138.79185486 117.30876923 m
+138.79185486 102.99236298 l
+143.72349548 102.99236298 l
+144.83676915 102.99237729 145.68637767 103.0607366 146.27232361 103.1974411 c
+147.09262626 103.38625711 147.79249536 103.72805364 148.37193298 104.22283173 c
+149.12712944 104.86086501 149.69190752 105.67629388 150.06626892 106.66912079 c
+150.44060469 107.66196898 150.62777898 108.79640795 150.62779236 110.0724411 c
+150.62777898 111.15968683 150.50082598 112.12322754 150.24693298 112.9630661 c
+149.99301399 113.80291336 149.66749348 114.49789964 149.27037048 115.04802704 c
+148.87322344 115.59815896 148.43865356 116.03110123 147.96665955 116.34685516 c
+147.49464409 116.66261102 146.9249832 116.90186859 146.25767517 117.0646286 c
+145.59034912 117.2273891 144.82374833 117.30876923 143.95787048 117.30876923 c
+138.79185486 117.30876923 l
+h
+140.68638611 115.6193161 m
+143.74302673 115.6193161 l
+144.68702971 115.61931779 145.42758887 115.53142725 145.96470642 115.35564423 c
+146.50180654 115.1798651 146.92986601 114.93246952 147.24888611 114.61345673 c
+147.69809441 114.16424112 148.04802896 113.56040058 148.2986908 112.80193329 c
+148.54933054 112.04347501 148.67465593 111.12387958 148.67466736 110.04314423 c
+148.67465593 108.54575716 148.42888795 107.39504216 147.93736267 106.59099579 c
+147.44581602 105.78697085 146.84848588 105.24823441 146.14537048 104.97478485 c
+145.63754959 104.77948488 144.82049312 104.68182873 143.69419861 104.6818161 c
+140.68638611 104.6818161 l
+140.68638611 115.6193161 l
+h
+f
+Q
+q
+0 0 0 rg
+158.98716736 117.30876923 m
+158.98716736 108.30486298 l
+157.43443298 108.30486298 l
+157.43443298 106.93767548 l
+158.98716736 106.93767548 l
+158.98716736 105.83415985 l
+158.98716562 105.13755744 159.04901452 104.61997983 159.17271423 104.28142548 c
+159.34198297 103.82570979 159.63983424 103.45624402 160.06626892 103.17302704 c
+160.49269797 102.88983833 161.0900281 102.74823691 161.85826111 102.74822235 c
+162.35304767 102.74823691 162.89992212 102.8068306 163.49888611 102.9240036 c
+163.23521423 104.45720673 l
+162.87062528 104.39211548 162.52557354 104.35956343 162.20005798 104.35955048 c
+161.6661994 104.35956343 161.28859561 104.4734956 161.06724548 104.70134735 c
+160.84588772 104.92922431 160.73521075 105.35565618 160.73521423 105.98064423 c
+160.73521423 106.93767548 l
+162.75669861 106.93767548 l
+162.75669861 108.30486298 l
+160.73521423 108.30486298 l
+160.73521423 117.30876923 l
+158.98716736 117.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+164.12388611 105.01384735 m
+164.12388611 102.99236298 l
+165.88169861 102.99236298 l
+165.88169861 105.01384735 l
+164.12388611 105.01384735 l
+h
+164.12388611 117.30876923 m
+164.12388611 106.93767548 l
+165.88169861 106.93767548 l
+165.88169861 117.30876923 l
+164.12388611 117.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+168.52818298 117.30876923 m
+168.52818298 102.99236298 l
+170.28599548 102.99236298 l
+170.28599548 117.30876923 l
+168.52818298 117.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+180.11997986 113.96892548 m
+181.93638611 114.19353485 l
+181.64991783 115.25473482 181.1193194 116.07830171 180.34458923 116.66423798 c
+179.56984178 117.25017553 178.58025944 117.54314399 177.37583923 117.54314423 c
+175.85890799 117.54314399 174.65610972 117.07602206 173.7674408 116.14177704 c
+172.87876774 115.20753435 172.43443225 113.8973143 172.43443298 112.21111298 c
+172.43443225 110.46632815 172.88365055 109.11216284 173.78208923 108.14861298 c
+174.68052375 107.18508143 175.84588717 106.70331108 177.27818298 106.70330048 c
+178.66489477 106.70331108 179.79770614 107.17531582 180.67662048 108.1193161 c
+181.55551688 109.06333476 181.99496957 110.39145844 181.99497986 112.1036911 c
+181.99496957 112.20786287 181.99171436 112.36411271 181.98521423 112.5724411 c
+174.25083923 112.5724411 l
+174.31594079 113.71176761 174.63820609 114.58416258 175.21763611 115.1896286 c
+175.7970591 115.79509886 176.51971462 116.09783294 177.38560486 116.09783173 c
+178.03012978 116.09783294 178.58025944 115.92856227 179.03599548 115.59001923 c
+179.49171686 115.25147962 179.85304462 114.71111557 180.11997986 113.96892548 c
+180.11997986 113.96892548 l
+h
+174.34849548 111.1271286 m
+180.13951111 111.1271286 l
+180.06137775 110.25473982 179.8400238 109.6004436 179.47544861 109.16423798 c
+178.91554556 108.48716346 178.18963483 108.14862214 177.29771423 108.14861298 c
+176.49041778 108.14862214 175.81170752 108.41880416 175.26158142 108.95915985 c
+174.7114482 109.49953224 174.40708653 110.22218777 174.34849548 111.1271286 c
+174.34849548 111.1271286 l
+h
+f
+Q
+q
+0 0 0 rg
+98.78208923 142.30876923 m
+95.60826111 131.93767548 l
+97.42466736 131.93767548 l
+99.07505798 137.9240036 l
+99.69029236 140.1505661 l
+99.71632986 140.03989129 99.89536614 139.32700137 100.22740173 138.01189423 c
+101.87779236 131.93767548 l
+103.68443298 131.93767548 l
+105.23716736 137.95330048 l
+105.75474548 139.93572235 l
+106.35044861 137.93376923 l
+108.12779236 131.93767548 l
+109.83677673 131.93767548 l
+106.59458923 142.30876923 l
+104.76841736 142.30876923 l
+103.11802673 136.09783173 l
+102.71763611 134.3302536 l
+100.61802673 142.30876923 l
+98.78208923 142.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+111.33091736 130.01384735 m
+111.33091736 127.99236298 l
+113.08872986 127.99236298 l
+113.08872986 130.01384735 l
+111.33091736 130.01384735 l
+h
+111.33091736 142.30876923 m
+111.33091736 131.93767548 l
+113.08872986 131.93767548 l
+113.08872986 142.30876923 l
+111.33091736 142.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+119.61216736 140.7365036 m
+119.86607361 142.28923798 l
+119.37127703 142.39340456 118.92856914 142.44548784 118.53794861 142.44548798 c
+117.89992433 142.44548784 117.40513316 142.34457648 117.05357361 142.1427536 c
+116.70200886 141.94093105 116.45461328 141.67563184 116.31138611 141.34685516 c
+116.16815523 141.01808041 116.09654072 140.32634933 116.09654236 139.27165985 c
+116.09654236 133.30486298 l
+114.80747986 133.30486298 l
+114.80747986 131.93767548 l
+116.09654236 131.93767548 l
+116.09654236 129.3693161 l
+117.84458923 128.3146286 l
+117.84458923 131.93767548 l
+119.61216736 131.93767548 l
+119.61216736 133.30486298 l
+117.84458923 133.30486298 l
+117.84458923 139.3693161 l
+117.84458584 139.87062062 117.87551029 140.19288593 117.93736267 140.33611298 c
+117.99920809 140.47934397 118.10011944 140.59327615 118.24009705 140.67790985 c
+118.38006708 140.76254681 118.58026219 140.80486448 118.84068298 140.80486298 c
+119.0359909 140.80486448 119.2931521 140.78207804 119.61216736 140.7365036 c
+119.61216736 140.7365036 l
+h
+f
+Q
+q
+0 0 0 rg
+121.32115173 142.30876923 m
+121.32115173 127.99236298 l
+123.07896423 127.99236298 l
+123.07896423 133.12908173 l
+123.89927284 132.17857102 124.93442805 131.70331108 126.18443298 131.70330048 c
+126.9526552 131.70331108 127.61997224 131.85467812 128.18638611 132.15740204 c
+128.75278361 132.46014626 129.15805664 132.87844011 129.40220642 133.41228485 c
+129.6463374 133.94614738 129.76840759 134.72088619 129.76841736 135.7365036 c
+129.76841736 142.30876923 l
+128.01060486 142.30876923 l
+128.01060486 135.7365036 l
+128.01059685 134.8576048 127.82016735 134.217957 127.4393158 133.81755829 c
+127.05844937 133.41717656 126.51971292 133.21698144 125.82310486 133.21697235 c
+125.30226623 133.21698144 124.81235786 133.35207245 124.3533783 133.62224579 c
+123.89439003 133.8924365 123.56724192 134.25864707 123.37193298 134.7208786 c
+123.17661731 135.18312531 123.07896116 135.82114551 123.07896423 136.6349411 c
+123.07896423 142.30876923 l
+121.32115173 142.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+138.00083923 142.30876923 m
+138.00083923 131.93767548 l
+139.57310486 131.93767548 l
+139.57310486 133.3927536 l
+139.89862248 132.88495052 140.33156475 132.47642229 140.87193298 132.16716766 c
+141.41229284 131.85793332 142.0275266 131.70331108 142.71763611 131.70330048 c
+143.48585847 131.70331108 144.11574065 131.86281613 144.60728455 132.1818161 c
+145.09881259 132.50083633 145.44549193 132.94679942 145.64732361 133.51970673 c
+146.46762632 132.30877923 147.53533359 131.70331108 148.85044861 131.70330048 c
+149.87908125 131.70331108 150.67009608 131.98814153 151.22349548 132.55779266 c
+151.77686581 133.1274633 152.05355824 134.00474107 152.05357361 135.1896286 c
+152.05357361 142.30876923 l
+150.30552673 142.30876923 l
+150.30552673 135.7755661 l
+150.30551311 135.07244834 150.24854702 134.56626395 150.1346283 134.25701141 c
+150.02068267 133.94777498 149.81397714 133.69875179 149.51451111 133.5099411 c
+149.21501941 133.32114801 148.86345726 133.22674706 148.45982361 133.22673798 c
+147.73064589 133.22674706 147.12517775 133.46925984 146.64341736 133.95427704 c
+146.16163705 134.43931095 145.92075187 135.21567736 145.92076111 136.2833786 c
+145.92076111 142.30876923 l
+144.16294861 142.30876923 l
+144.16294861 135.57048798 l
+144.16294113 134.7892455 144.0197121 134.20330858 143.73326111 133.81267548 c
+143.44679601 133.42205936 142.97804648 133.22674706 142.32701111 133.22673798 c
+141.83221429 133.22674706 141.37485798 133.35695526 140.9549408 133.61736298 c
+140.53501507 133.87778807 140.23065339 134.25864707 140.04185486 134.7599411 c
+139.8530496 135.26125023 139.75864866 135.98390576 139.75865173 136.92790985 c
+139.75865173 142.30876923 l
+138.00083923 142.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+161.44810486 141.02947235 m
+160.79705576 141.58285849 160.17042878 141.9734831 159.56822205 142.20134735 c
+158.9660029 142.42921181 158.31984469 142.54314399 157.62974548 142.54314423 c
+156.49041944 142.54314399 155.61476927 142.26482396 155.00279236 141.70818329 c
+154.39081216 141.15154382 154.08482289 140.44028151 154.08482361 139.57439423 c
+154.08482289 139.06658497 154.20038267 138.60271824 154.4315033 138.18279266 c
+154.66262179 137.76287533 154.96535586 137.42596161 155.33970642 137.17205048 c
+155.71405303 136.91814962 156.13560208 136.72609252 156.60435486 136.5958786 c
+156.94940335 136.50473857 157.47023617 136.41684803 158.16685486 136.33220673 c
+159.58611947 136.16294204 160.6310403 135.96111932 161.30162048 135.72673798 c
+161.30812295 135.48585938 161.31137816 135.33286474 161.31138611 135.2677536 c
+161.31137816 134.55161552 161.1453627 134.04705874 160.81333923 133.75408173 c
+160.36411348 133.35695526 159.69679644 133.15838775 158.81138611 133.1583786 c
+157.98455857 133.15838775 157.37420762 133.30324438 156.98033142 133.59294891 c
+156.58644799 133.88267088 156.29510713 134.39536568 156.10630798 135.13103485 c
+154.38755798 134.89665985 l
+154.5438068 134.16099092 154.800968 133.56691599 155.15904236 133.11443329 c
+155.51711312 132.66196898 156.03469073 132.31366203 156.71177673 132.06951141 c
+157.38885604 131.82538127 158.17336046 131.70331108 159.06529236 131.70330048 c
+159.95070244 131.70331108 160.67010276 131.80747764 161.22349548 132.01580048 c
+161.77687249 132.22414389 162.18377312 132.4861879 162.44419861 132.80193329 c
+162.70460593 133.11769769 162.88689742 133.51646031 162.99107361 133.99822235 c
+163.04965767 134.29770953 163.07895452 134.83807357 163.07896423 135.6193161 c
+163.07896423 137.9630661 l
+163.07895452 139.5971834 163.11638938 140.63071101 163.19126892 141.06365204 c
+163.26612881 141.49659556 163.41424064 141.91163421 163.63560486 142.30876923 c
+161.79966736 142.30876923 l
+161.61736744 141.94418626 161.50018005 141.51775439 161.44810486 141.02947235 c
+161.44810486 141.02947235 l
+h
+161.30162048 137.1036911 m
+160.66359235 137.36411271 159.70656206 137.58546666 158.43052673 137.7677536 c
+157.70786614 137.8719247 157.19679894 137.98911209 156.89732361 138.1193161 c
+156.59784121 138.24952849 156.36672165 138.43995799 156.20396423 138.69060516 c
+156.04120114 138.94125957 155.95982101 139.21957961 155.95982361 139.5255661 c
+155.95982101 139.99431842 156.13722969 140.38494302 156.49205017 140.6974411 c
+156.84686439 141.0099424 157.3660696 141.16619224 158.04966736 141.1661911 c
+158.72674533 141.16619224 159.32895827 141.01808041 159.85630798 140.72185516 c
+160.38364471 140.42563309 160.77101412 140.02036006 161.01841736 139.50603485 c
+161.2072116 139.10890263 161.30161254 138.52296572 161.30162048 137.74822235 c
+161.30162048 137.1036911 l
+h
+f
+Q
+q
+0 0 0 rg
+172.58091736 138.5099411 m
+174.30943298 138.73455048 l
+174.12062127 139.92595911 173.63722332 140.85857536 172.85923767 141.53240204 c
+172.08123529 142.20623027 171.1258326 142.54314399 169.99302673 142.54314423 c
+168.57375182 142.54314399 167.43280244 142.07927727 166.57017517 141.15154266 c
+165.70754375 140.22381037 165.27622908 138.8940591 165.27622986 137.16228485 c
+165.27622908 136.04249945 165.46177577 135.06268272 165.83287048 134.22283173 c
+166.20396252 133.3829969 166.76874061 132.75311472 167.52720642 132.33318329 c
+168.28566617 131.91327181 169.11086066 131.70331108 170.00279236 131.70330048 c
+171.12908781 131.70331108 172.05031084 131.98814153 172.76646423 132.55779266 c
+173.48260108 133.1274633 173.941585 133.93638177 174.14341736 134.98455048 c
+172.43443298 135.24822235 l
+172.27166479 134.55161552 171.98357914 134.02752751 171.57017517 133.67595673 c
+171.15675705 133.32440321 170.65708307 133.14862214 170.07115173 133.14861298 c
+169.18573038 133.14862214 168.46633005 133.46600463 167.91294861 134.10076141 c
+167.35956033 134.73553461 167.0828679 135.73976538 167.08287048 137.11345673 c
+167.0828679 138.50668969 167.34979471 139.51905847 167.88365173 140.1505661 c
+168.41750198 140.78207804 169.11411586 141.09783294 169.97349548 141.09783173 c
+170.66359348 141.09783294 171.23976478 140.88624461 171.70201111 140.4630661 c
+172.16424302 140.03989129 172.45721148 139.38885027 172.58091736 138.5099411 c
+172.58091736 138.5099411 l
+h
+f
+Q
+q
+0 0 0 rg
+175.79380798 142.30876923 m
+175.79380798 131.93767548 l
+177.37583923 131.93767548 l
+177.37583923 133.5099411 l
+177.77948178 132.77427355 178.15220276 132.289248 178.4940033 132.05486298 c
+178.83579583 131.82049846 179.21177202 131.70331108 179.62193298 131.70330048 c
+180.21437518 131.70331108 180.81658812 131.89211298 181.42857361 132.26970673 c
+180.82310486 133.9005661 l
+180.39341146 133.64666851 179.96372439 133.51971552 179.53404236 133.51970673 c
+179.14992312 133.51971552 178.80487138 133.6352753 178.49888611 133.86638641 c
+178.19289283 134.09751442 177.97479409 134.41815212 177.84458923 134.82830048 c
+177.64927358 135.45330733 177.55161743 136.1369004 177.55162048 136.87908173 c
+177.55162048 142.30876923 l
+175.79380798 142.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+181.83872986 137.12322235 m
+181.83872919 135.20265654 182.37258283 133.78013192 183.44029236 132.85564423 c
+184.33221628 132.08742528 185.41945478 131.70331108 186.70201111 131.70330048 c
+188.12778541 131.70331108 189.29314882 132.17043301 190.19810486 133.10466766 c
+191.10304285 134.03892073 191.55551635 135.32960954 191.55552673 136.97673798 c
+191.55551635 138.31137739 191.35532124 139.36118103 190.9549408 140.12615204 c
+190.55454079 140.89112741 189.97185908 141.48520234 189.20689392 141.9083786 c
+188.4419127 142.33155566 187.60695259 142.54314399 186.70201111 142.54314423 c
+185.25018412 142.54314399 184.07668269 142.07764967 183.1815033 141.14665985 c
+182.28631989 140.21567236 181.83872919 138.87452787 181.83872986 137.12322235 c
+181.83872986 137.12322235 l
+h
+183.64537048 137.12322235 m
+183.64536801 138.45135121 183.93508126 139.44581636 184.51451111 140.10662079 c
+185.09393427 140.76742962 185.82310021 141.09783294 186.70201111 141.09783173 c
+187.57440054 141.09783294 188.30031127 140.76580202 188.87974548 140.10173798 c
+189.45916428 139.43767835 189.74887753 138.42530957 189.74888611 137.0646286 c
+189.74887753 135.78208304 189.45753668 134.81040433 188.87486267 134.14958954 c
+188.29217326 133.48879107 187.56789013 133.15838775 186.70201111 133.1583786 c
+185.82310021 133.15838775 185.09393427 133.48716346 184.51451111 134.14470673 c
+183.93508126 134.80226632 183.64536801 135.79510386 183.64537048 137.12322235 c
+183.64537048 137.12322235 l
+h
+f
+Q
+q
+0 0 0 rg
+103.06919861 163.5099411 m
+104.79771423 163.73455048 l
+104.60890252 164.92595911 104.12550457 165.85857536 103.34751892 166.53240204 c
+102.56951654 167.20623027 101.61411385 167.54314399 100.48130798 167.54314423 c
+99.06203307 167.54314399 97.92108369 167.07927727 97.05845642 166.15154266 c
+96.195825 165.22381037 95.76451033 163.8940591 95.76451111 162.16228485 c
+95.76451033 161.04249945 95.95005702 160.06268272 96.32115173 159.22283173 c
+96.69224377 158.3829969 97.25702186 157.75311472 98.01548767 157.33318329 c
+98.77394742 156.91327181 99.59914191 156.70331108 100.49107361 156.70330048 c
+101.61736906 156.70331108 102.53859209 156.98814153 103.25474548 157.55779266 c
+103.97088233 158.1274633 104.42986625 158.93638177 104.63169861 159.98455048 c
+102.92271423 160.24822235 l
+102.75994604 159.55161552 102.47186039 159.02752751 102.05845642 158.67595673 c
+101.6450383 158.32440321 101.14536432 158.14862214 100.55943298 158.14861298 c
+99.67401163 158.14862214 98.9546113 158.46600463 98.40122986 159.10076141 c
+97.84784158 159.73553461 97.57114915 160.73976538 97.57115173 162.11345673 c
+97.57114915 163.50668969 97.83807596 164.51905847 98.37193298 165.1505661 c
+98.90578323 165.78207804 99.60239711 166.09783294 100.46177673 166.09783173 c
+101.15187473 166.09783294 101.72804603 165.88624461 102.19029236 165.4630661 c
+102.65252427 165.03989129 102.94549273 164.38885027 103.06919861 163.5099411 c
+103.06919861 163.5099411 l
+h
+f
+Q
+q
+0 0 0 rg
+105.64732361 162.12322235 m
+105.64732294 160.20265654 106.18117658 158.78013192 107.24888611 157.85564423 c
+108.14081003 157.08742528 109.22804853 156.70331108 110.51060486 156.70330048 c
+111.93637916 156.70331108 113.10174257 157.17043301 114.00669861 158.10466766 c
+114.9116366 159.03892073 115.3641101 160.32960954 115.36412048 161.97673798 c
+115.3641101 163.31137739 115.16391499 164.36118103 114.76353455 165.12615204 c
+114.36313454 165.89112741 113.78045283 166.48520234 113.01548767 166.9083786 c
+112.25050645 167.33155566 111.41554634 167.54314399 110.51060486 167.54314423 c
+109.05877787 167.54314399 107.88527644 167.07764967 106.99009705 166.14665985 c
+106.09491364 165.21567236 105.64732294 163.87452787 105.64732361 162.12322235 c
+105.64732361 162.12322235 l
+h
+107.45396423 162.12322235 m
+107.45396176 163.45135121 107.74367501 164.44581636 108.32310486 165.10662079 c
+108.90252802 165.76742962 109.63169396 166.09783294 110.51060486 166.09783173 c
+111.38299429 166.09783294 112.10890502 165.76580202 112.68833923 165.10173798 c
+113.26775803 164.43767835 113.55747128 163.42530957 113.55747986 162.0646286 c
+113.55747128 160.78208304 113.26613043 159.81040433 112.68345642 159.14958954 c
+112.10076701 158.48879107 111.37648388 158.15838775 110.51060486 158.1583786 c
+109.63169396 158.15838775 108.90252802 158.48716346 108.32310486 159.14470673 c
+107.74367501 159.80226632 107.45396176 160.79510386 107.45396423 162.12322235 c
+107.45396423 162.12322235 l
+h
+f
+Q
+q
+0 0 0 rg
+117.43443298 167.30876923 m
+117.43443298 156.93767548 l
+119.00669861 156.93767548 l
+119.00669861 158.3927536 l
+119.33221623 157.88495052 119.7651585 157.47642229 120.30552673 157.16716766 c
+120.84588659 156.85793332 121.46112035 156.70331108 122.15122986 156.70330048 c
+122.91945222 156.70331108 123.5493344 156.86281613 124.0408783 157.1818161 c
+124.53240634 157.50083633 124.87908568 157.94679942 125.08091736 158.51970673 c
+125.90122007 157.30877923 126.96892734 156.70331108 128.28404236 156.70330048 c
+129.312675 156.70331108 130.10368983 156.98814153 130.65708923 157.55779266 c
+131.21045956 158.1274633 131.48715199 159.00474107 131.48716736 160.1896286 c
+131.48716736 167.30876923 l
+129.73912048 167.30876923 l
+129.73912048 160.7755661 l
+129.73910686 160.07244834 129.68214077 159.56626395 129.56822205 159.25701141 c
+129.45427642 158.94777498 129.24757089 158.69875179 128.94810486 158.5099411 c
+128.64861316 158.32114801 128.29705101 158.22674706 127.89341736 158.22673798 c
+127.16423964 158.22674706 126.5587715 158.46925984 126.07701111 158.95427704 c
+125.5952308 159.43931095 125.35434562 160.21567736 125.35435486 161.2833786 c
+125.35435486 167.30876923 l
+123.59654236 167.30876923 l
+123.59654236 160.57048798 l
+123.59653488 159.7892455 123.45330585 159.20330858 123.16685486 158.81267548 c
+122.88038976 158.42205936 122.41164023 158.22674706 121.76060486 158.22673798 c
+121.26580804 158.22674706 120.80845173 158.35695526 120.38853455 158.61736298 c
+119.96860882 158.87778807 119.66424714 159.25864707 119.47544861 159.7599411 c
+119.28664335 160.26125023 119.19224241 160.98390576 119.19224548 161.92790985 c
+119.19224548 167.30876923 l
+117.43443298 167.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+134.11412048 167.30876923 m
+134.11412048 156.93767548 l
+135.68638611 156.93767548 l
+135.68638611 158.3927536 l
+136.01190373 157.88495052 136.444846 157.47642229 136.98521423 157.16716766 c
+137.52557409 156.85793332 138.14080785 156.70331108 138.83091736 156.70330048 c
+139.59913972 156.70331108 140.2290219 156.86281613 140.7205658 157.1818161 c
+141.21209384 157.50083633 141.55877318 157.94679942 141.76060486 158.51970673 c
+142.58090757 157.30877923 143.64861484 156.70331108 144.96372986 156.70330048 c
+145.9923625 156.70331108 146.78337733 156.98814153 147.33677673 157.55779266 c
+147.89014706 158.1274633 148.16683949 159.00474107 148.16685486 160.1896286 c
+148.16685486 167.30876923 l
+146.41880798 167.30876923 l
+146.41880798 160.7755661 l
+146.41879436 160.07244834 146.36182827 159.56626395 146.24790955 159.25701141 c
+146.13396392 158.94777498 145.92725839 158.69875179 145.62779236 158.5099411 c
+145.32830066 158.32114801 144.97673851 158.22674706 144.57310486 158.22673798 c
+143.84392714 158.22674706 143.238459 158.46925984 142.75669861 158.95427704 c
+142.2749183 159.43931095 142.03403312 160.21567736 142.03404236 161.2833786 c
+142.03404236 167.30876923 l
+140.27622986 167.30876923 l
+140.27622986 160.57048798 l
+140.27622238 159.7892455 140.13299335 159.20330858 139.84654236 158.81267548 c
+139.56007726 158.42205936 139.09132773 158.22674706 138.44029236 158.22673798 c
+137.94549554 158.22674706 137.48813923 158.35695526 137.06822205 158.61736298 c
+136.64829632 158.87778807 136.34393464 159.25864707 136.15513611 159.7599411 c
+135.96633085 160.26125023 135.87192991 160.98390576 135.87193298 161.92790985 c
+135.87193298 167.30876923 l
+134.11412048 167.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+157.56138611 166.02947235 m
+156.91033701 166.58285849 156.28371003 166.9734831 155.6815033 167.20134735 c
+155.07928415 167.42921181 154.43312594 167.54314399 153.74302673 167.54314423 c
+152.60370069 167.54314399 151.72805052 167.26482396 151.11607361 166.70818329 c
+150.50409341 166.15154382 150.19810414 165.44028151 150.19810486 164.57439423 c
+150.19810414 164.06658497 150.31366392 163.60271824 150.54478455 163.18279266 c
+150.77590304 162.76287533 151.07863711 162.42596161 151.45298767 162.17205048 c
+151.82733428 161.91814962 152.24888333 161.72609252 152.71763611 161.5958786 c
+153.0626846 161.50473857 153.58351742 161.41684803 154.28013611 161.33220673 c
+155.69940072 161.16294204 156.74432155 160.96111932 157.41490173 160.72673798 c
+157.4214042 160.48585938 157.42465941 160.33286474 157.42466736 160.2677536 c
+157.42465941 159.55161552 157.25864395 159.04705874 156.92662048 158.75408173 c
+156.47739473 158.35695526 155.81007769 158.15838775 154.92466736 158.1583786 c
+154.09783982 158.15838775 153.48748887 158.30324438 153.09361267 158.59294891 c
+152.69972924 158.88267088 152.40838838 159.39536568 152.21958923 160.13103485 c
+150.50083923 159.89665985 l
+150.65708805 159.16099092 150.91424925 158.56691599 151.27232361 158.11443329 c
+151.63039437 157.66196898 152.14797198 157.31366203 152.82505798 157.06951141 c
+153.50213729 156.82538127 154.28664171 156.70331108 155.17857361 156.70330048 c
+156.06398369 156.70331108 156.78338401 156.80747764 157.33677673 157.01580048 c
+157.89015374 157.22414389 158.29705437 157.4861879 158.55747986 157.80193329 c
+158.81788718 158.11769769 159.00017867 158.51646031 159.10435486 158.99822235 c
+159.16293892 159.29770953 159.19223577 159.83807357 159.19224548 160.6193161 c
+159.19224548 162.9630661 l
+159.19223577 164.5971834 159.22967063 165.63071101 159.30455017 166.06365204 c
+159.37941006 166.49659556 159.52752189 166.91163421 159.74888611 167.30876923 c
+157.91294861 167.30876923 l
+157.73064869 166.94418626 157.6134613 166.51775439 157.56138611 166.02947235 c
+157.56138611 166.02947235 l
+h
+157.41490173 162.1036911 m
+156.7768736 162.36411271 155.81984331 162.58546666 154.54380798 162.7677536 c
+153.82114739 162.8719247 153.31008019 162.98911209 153.01060486 163.1193161 c
+152.71112246 163.24952849 152.4800029 163.43995799 152.31724548 163.69060516 c
+152.15448239 163.94125957 152.07310226 164.21957961 152.07310486 164.5255661 c
+152.07310226 164.99431842 152.25051094 165.38494302 152.60533142 165.6974411 c
+152.96014564 166.0099424 153.47935085 166.16619224 154.16294861 166.1661911 c
+154.84002658 166.16619224 155.44223952 166.01808041 155.96958923 165.72185516 c
+156.49692596 165.42563309 156.88429537 165.02036006 157.13169861 164.50603485 c
+157.32049285 164.10890263 157.41489379 163.52296572 157.41490173 162.74822235 c
+157.41490173 162.1036911 l
+h
+f
+Q
+q
+0 0 0 rg
+161.92662048 167.30876923 m
+161.92662048 156.93767548 l
+163.50865173 156.93767548 l
+163.50865173 158.41228485 l
+164.27036682 157.27297197 165.37062614 156.70331108 166.80943298 156.70330048 c
+167.43442616 156.70331108 168.00896985 156.81561566 168.5330658 157.04021454 c
+169.05714589 157.26483396 169.4493981 157.55943002 169.70982361 157.9240036 c
+169.97023091 158.28859595 170.1525224 158.72153823 170.25669861 159.22283173 c
+170.32179306 159.54836032 170.35434511 160.11802121 170.35435486 160.9318161 c
+170.35435486 167.30876923 l
+168.59654236 167.30876923 l
+168.59654236 161.00017548 l
+168.59653437 160.28403667 168.52817506 159.74855543 168.39146423 159.39373016 c
+168.25473784 159.03892073 168.01222506 158.75571788 167.66392517 158.54412079 c
+167.31561117 158.33254122 166.90708293 158.22674706 166.43833923 158.22673798 c
+165.68963624 158.22674706 165.04347803 158.46437703 164.49986267 158.9396286 c
+163.95623953 159.41489691 163.68442991 160.31658872 163.68443298 161.64470673 c
+163.68443298 167.30876923 l
+161.92662048 167.30876923 l
+h
+f
+Q
+q
+0 0 0 rg
+179.78794861 167.30876923 m
+179.78794861 166.00017548 l
+179.13038914 167.02882159 178.16359323 167.54314399 176.88755798 167.54314423 c
+176.06073075 167.54314399 175.30064036 167.31527964 174.60728455 166.85955048 c
+173.913923 166.40382221 173.37681416 165.76742962 172.99595642 164.95037079 c
+172.61509617 164.13331667 172.42466667 163.19419001 172.42466736 162.13298798 c
+172.42466667 161.09783794 172.59719254 160.15871127 172.94224548 159.31560516 c
+173.28729602 158.47251504 173.80487363 157.82635683 174.49497986 157.3771286 c
+175.18508058 156.92792023 175.95656418 156.70331108 176.80943298 156.70330048 c
+177.43442729 156.70331108 177.99106736 156.83514689 178.47935486 157.09880829 c
+178.96762888 157.36249011 179.3647639 157.70591425 179.67076111 158.12908173 c
+179.67076111 152.99236298 l
+181.41880798 152.99236298 l
+181.41880798 167.30876923 l
+179.78794861 167.30876923 l
+h
+174.23130798 162.13298798 m
+174.23130549 163.46111682 174.51125313 164.45395437 175.07115173 165.1115036 c
+175.63104368 165.76905722 176.29185031 166.09783294 177.05357361 166.09783173 c
+177.82179669 166.09783294 178.47446531 165.78370565 179.01158142 165.15544891 c
+179.54868299 164.52719649 179.81723741 163.56853859 179.81724548 162.27947235 c
+179.81723741 160.86020797 179.54380018 159.81854234 178.99693298 159.15447235 c
+178.45005127 158.49041867 177.77622382 158.15838775 176.97544861 158.1583786 c
+176.19419416 158.15838775 175.54152554 158.47739785 175.0174408 159.11540985 c
+174.4933495 159.75343824 174.23130549 160.75929661 174.23130798 162.13298798 c
+174.23130798 162.13298798 l
+h
+f
+Q
+q
+0 0 0 rg
+183.48912048 164.2130661 m
+185.22740173 163.9396286 l
+185.32505553 164.63624586 185.59686516 165.17009949 186.04283142 165.5411911 c
+186.48879135 165.91228625 187.11216312 166.09783294 187.91294861 166.09783173 c
+188.72023443 166.09783294 189.31919216 165.93344508 189.70982361 165.60466766 c
+190.10044138 165.27589365 190.29575369 164.89015185 190.29576111 164.4474411 c
+190.29575369 164.05030894 190.12322782 163.73780926 189.77818298 163.5099411 c
+189.5372909 163.35369506 188.93833317 163.15512755 187.98130798 162.91423798 c
+186.69224167 162.58872186 185.79868787 162.30714662 185.30064392 162.06951141 c
+184.80259512 161.83188668 184.42499133 161.50311097 184.16783142 161.08318329 c
+183.91066893 160.66326806 183.78208833 160.19940134 183.78208923 159.69158173 c
+183.78208833 159.22935022 183.88788249 158.80129075 184.09947205 158.40740204 c
+184.31105915 158.01353113 184.5991448 157.68638302 184.96372986 157.42595673 c
+185.237165 157.22414389 185.60988598 157.05324563 186.08189392 156.91326141 c
+186.55389545 156.77329799 187.06007984 156.70331108 187.60044861 156.70330048 c
+188.41424515 156.70331108 189.12876267 156.82049846 189.7440033 157.05486298 c
+190.35923019 157.289248 190.81333129 157.60663049 191.10630798 158.00701141 c
+191.39926821 158.40741094 191.60109092 158.94289218 191.71177673 159.61345673 c
+189.99302673 159.84783173 l
+189.91489469 159.31398555 189.68865794 158.8973193 189.3143158 158.59783173 c
+188.93996077 158.29836157 188.41098995 158.14862214 187.72740173 158.14861298 c
+186.92010602 158.14862214 186.34393472 158.28208554 185.99888611 158.5490036 c
+185.65383125 158.81593918 185.48130538 159.12843886 185.48130798 159.4865036 c
+185.48130538 159.71437578 185.55291989 159.9194537 185.69615173 160.10173798 c
+185.83937793 160.29054708 186.06398708 160.44679692 186.36997986 160.57048798 c
+186.54575744 160.63559882 187.06333504 160.78533825 187.92271423 161.01970673 c
+189.16619752 161.35174393 190.03370968 161.62355356 190.5252533 161.83513641 c
+191.01678161 162.04673022 191.40252341 162.3543471 191.68247986 162.75798798 c
+191.96241869 163.16163796 192.1023925 163.66293954 192.10240173 164.26189423 c
+192.1023925 164.84783419 191.93149424 165.39959145 191.58970642 165.91716766 c
+191.24790117 166.43474666 190.7547376 166.83513689 190.11021423 167.11833954 c
+189.46567639 167.40154257 188.73651045 167.54314399 187.92271423 167.54314423 c
+186.57505428 167.54314399 185.54803708 167.26319635 184.84165955 166.70330048 c
+184.13527808 166.14340581 183.68443217 165.31332851 183.48912048 164.2130661 c
+183.48912048 164.2130661 l
+h
+f
+Q
+q
+1.0725676 0 0 0.999374 99.5973 -252.25554 cm
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+98.57143021 390.52304077 m
+98.57143021 421.6716113 72.33142947 446.95161057 40 446.95161057 c
+7.66857053 446.95161057 -18.57143021 421.6716113 -18.57143021 390.52304077 c
+-18.57143021 359.37447025 7.66857053 334.09447098 40 334.09447098 c
+72.33142947 334.09447098 98.57143021 359.37447025 98.57143021 390.52304077 c
+h
+S
+Q
+Q
+q
+1 0 0 1 316.78572 -245.35715 cm
+q
+0 0 0 rg
+269.72097778 368.38018799 m
+269.72097778 354.06378174 l
+272.57254028 354.06378174 l
+275.96121216 364.20050049 l
+276.27370412 365.14451414 276.50156848 365.85089364 276.64480591 366.31964111 c
+276.80755775 365.79881036 277.06146375 365.03383717 277.40652466 364.02471924 c
+280.83425903 354.06378174 l
+283.38308716 354.06378174 l
+283.38308716 368.38018799 l
+281.55691528 368.38018799 l
+281.55691528 356.39776611 l
+277.39675903 368.38018799 l
+275.68777466 368.38018799 l
+271.54714966 356.19268799 l
+271.54714966 368.38018799 l
+269.72097778 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+285.88308716 361.40753174 m
+285.88308619 359.031239 286.52110639 357.1708893 287.79714966 355.82647705 c
+289.07318717 354.48208991 290.72032094 353.80989006 292.73855591 353.80987549 c
+294.06016135 353.80989006 295.25156641 354.12564495 296.31277466 354.75714111 c
+297.37396012 355.38866452 298.18287858 356.2691975 298.73953247 357.39874268 c
+299.29615872 358.52830982 299.57447875 359.80923302 299.57449341 361.24151611 c
+299.57447875 362.69334472 299.28151029 363.99217154 298.69558716 365.13800049 c
+298.10963646 366.28383592 297.27955917 367.15134807 296.20535278 367.74053955 c
+295.13112382 368.32973231 293.97227081 368.62432837 292.72879028 368.62432861 c
+291.38112757 368.62432837 290.17670169 368.29880786 289.11550903 367.64776611 c
+288.05430798 366.99672583 287.25027232 366.10805484 286.70339966 364.98175049 c
+286.15652342 363.85545293 285.88308619 362.66404787 285.88308716 361.40753174 c
+285.88308716 361.40753174 l
+h
+287.83621216 361.43682861 m
+287.83620924 363.16209425 288.30007596 364.52114237 289.22781372 365.51397705 c
+290.15554286 366.50681747 291.31927867 367.00323624 292.71902466 367.00323486 c
+294.14479668 367.00323624 295.31829811 366.50193466 296.23953247 365.49932861 c
+297.16074418 364.49672833 297.6213557 363.07420371 297.62136841 361.23175049 c
+297.6213557 360.06639422 297.4244158 359.04914263 297.0305481 358.17999268 c
+296.63665617 357.31086312 296.06048487 356.63703567 295.30203247 356.1585083 c
+294.5435593 355.68000538 293.69232317 355.4407478 292.74832153 355.44073486 c
+291.40716921 355.4407478 290.25319901 355.90135932 289.28640747 356.8225708 c
+288.31960719 357.7438054 287.83620924 359.28188979 287.83621216 361.43682861 c
+287.83621216 361.43682861 l
+h
+f
+Q
+q
+0 0 0 rg
+302.00613403 368.38018799 m
+302.00613403 354.06378174 l
+306.93777466 354.06378174 l
+308.05104832 354.06379605 308.90065685 354.13215536 309.48660278 354.26885986 c
+310.30690544 354.45767587 311.00677453 354.7994724 311.58621216 355.29425049 c
+312.34140861 355.93228377 312.90618669 356.74771264 313.2805481 357.74053955 c
+313.65488386 358.73338774 313.84205815 359.86782671 313.84207153 361.14385986 c
+313.84205815 362.2311056 313.71510516 363.1946463 313.46121216 364.03448486 c
+313.20729316 364.87433212 312.88177266 365.5693184 312.48464966 366.1194458 c
+312.08750262 366.66957772 311.65293274 367.10252 311.18093872 367.41827393 c
+310.70892327 367.73402978 310.13926238 367.97328735 309.47195435 368.13604736 c
+308.8046283 368.29880786 308.0380275 368.38018799 307.17214966 368.38018799 c
+302.00613403 368.38018799 l
+h
+303.90066528 366.69073486 m
+306.95730591 366.69073486 l
+307.90130889 366.69073655 308.64186804 366.60284602 309.1789856 366.42706299 c
+309.71608572 366.25128387 310.14414519 366.00388828 310.46316528 365.68487549 c
+310.91237358 365.23565988 311.26230813 364.63181934 311.51296997 363.87335205 c
+311.76360971 363.11489377 311.88893511 362.19529834 311.88894653 361.11456299 c
+311.88893511 359.61717592 311.64316712 358.46646092 311.15164185 357.66241455 c
+310.66009519 356.85838961 310.06276506 356.31965317 309.35964966 356.04620361 c
+308.85182877 355.85090364 308.03477229 355.75324749 306.90847778 355.75323486 c
+303.90066528 355.75323486 l
+303.90066528 366.69073486 l
+h
+f
+Q
+q
+0 0 0 rg
+322.20144653 368.38018799 m
+322.20144653 359.37628174 l
+320.64871216 359.37628174 l
+320.64871216 358.00909424 l
+322.20144653 358.00909424 l
+322.20144653 356.90557861 l
+322.20144479 356.2089762 322.26329369 355.69139859 322.38699341 355.35284424 c
+322.55626215 354.89712855 322.85411341 354.52766278 323.2805481 354.2444458 c
+323.70697714 353.96125709 324.30430728 353.81965567 325.07254028 353.81964111 c
+325.56732685 353.81965567 326.1142013 353.87824937 326.71316528 353.99542236 c
+326.44949341 355.52862549 l
+326.08490445 355.46353424 325.73985271 355.43098219 325.41433716 355.43096924 c
+324.88047857 355.43098219 324.50287479 355.54491437 324.28152466 355.77276611 c
+324.06016689 356.00064308 323.94948992 356.42707494 323.94949341 357.05206299 c
+323.94949341 358.00909424 l
+325.97097778 358.00909424 l
+325.97097778 359.37628174 l
+323.94949341 359.37628174 l
+323.94949341 368.38018799 l
+322.20144653 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+327.33816528 356.08526611 m
+327.33816528 354.06378174 l
+329.09597778 354.06378174 l
+329.09597778 356.08526611 l
+327.33816528 356.08526611 l
+h
+327.33816528 368.38018799 m
+327.33816528 358.00909424 l
+329.09597778 358.00909424 l
+329.09597778 368.38018799 l
+327.33816528 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+331.74246216 368.38018799 m
+331.74246216 354.06378174 l
+333.50027466 354.06378174 l
+333.50027466 368.38018799 l
+331.74246216 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+343.33425903 365.04034424 m
+345.15066528 365.26495361 l
+344.864197 366.32615358 344.33359857 367.14972047 343.55886841 367.73565674 c
+342.78412096 368.3215943 341.79453861 368.61456275 340.59011841 368.61456299 c
+339.07318717 368.61456275 337.87038889 368.14744083 336.98171997 367.2131958 c
+336.09304692 366.27895311 335.64871143 364.96873307 335.64871216 363.28253174 c
+335.64871143 361.53774691 336.09792973 360.1835816 336.99636841 359.22003174 c
+337.89480293 358.2565002 339.06016635 357.77472984 340.49246216 357.77471924 c
+341.87917395 357.77472984 343.01198531 358.24673458 343.89089966 359.19073486 c
+344.76979605 360.13475353 345.20924874 361.4628772 345.20925903 363.17510986 c
+345.20924874 363.27928163 345.20599354 363.43553147 345.19949341 363.64385986 c
+337.46511841 363.64385986 l
+337.53021996 364.78318638 337.85248526 365.65558134 338.43191528 366.26104736 c
+339.01133827 366.86651763 339.7339938 367.1692517 340.59988403 367.16925049 c
+341.24440896 367.1692517 341.79453861 366.99998104 342.25027466 366.66143799 c
+342.70599604 366.32289838 343.0673238 365.78253434 343.33425903 365.04034424 c
+343.33425903 365.04034424 l
+h
+337.56277466 362.19854736 m
+343.35379028 362.19854736 l
+343.27565692 361.32615858 343.05430298 360.67186236 342.68972778 360.23565674 c
+342.12982474 359.55858223 341.403914 359.2200409 340.51199341 359.22003174 c
+339.70469695 359.2200409 339.02598669 359.49022292 338.4758606 360.03057861 c
+337.92572738 360.57095101 337.6213657 361.29360653 337.56277466 362.19854736 c
+337.56277466 362.19854736 l
+h
+f
+Q
+q
+0 0 0 rg
+248.09011841 393.38018799 m
+244.91629028 383.00909424 l
+246.73269653 383.00909424 l
+248.38308716 388.99542236 l
+248.99832153 391.22198486 l
+249.02435903 391.11131005 249.20339531 390.39842014 249.53543091 389.08331299 c
+251.18582153 383.00909424 l
+252.99246216 383.00909424 l
+254.54519653 389.02471924 l
+255.06277466 391.00714111 l
+255.65847778 389.00518799 l
+257.43582153 383.00909424 l
+259.14480591 383.00909424 l
+255.90261841 393.38018799 l
+254.07644653 393.38018799 l
+252.42605591 387.16925049 l
+252.02566528 385.40167236 l
+249.92605591 393.38018799 l
+248.09011841 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+260.63894653 381.08526611 m
+260.63894653 379.06378174 l
+262.39675903 379.06378174 l
+262.39675903 381.08526611 l
+260.63894653 381.08526611 l
+h
+260.63894653 393.38018799 m
+260.63894653 383.00909424 l
+262.39675903 383.00909424 l
+262.39675903 393.38018799 l
+260.63894653 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+268.92019653 391.80792236 m
+269.17410278 393.36065674 l
+268.6793062 393.46482332 268.23659831 393.5169066 267.84597778 393.51690674 c
+267.20795351 393.5169066 266.71316233 393.41599524 266.36160278 393.21417236 c
+266.01003804 393.01234981 265.76264245 392.7470506 265.61941528 392.41827393 c
+265.4761844 392.08949917 265.40456989 391.3977681 265.40457153 390.34307861 c
+265.40457153 384.37628174 l
+264.11550903 384.37628174 l
+264.11550903 383.00909424 l
+265.40457153 383.00909424 l
+265.40457153 380.44073486 l
+267.15261841 379.38604736 l
+267.15261841 383.00909424 l
+268.92019653 383.00909424 l
+268.92019653 384.37628174 l
+267.15261841 384.37628174 l
+267.15261841 390.44073486 l
+267.15261502 390.94203938 267.18353947 391.26430469 267.24539185 391.40753174 c
+267.30723726 391.55076273 267.40814862 391.66469491 267.54812622 391.74932861 c
+267.68809625 391.83396558 267.88829137 391.87628324 268.14871216 391.87628174 c
+268.34402008 391.87628324 268.60118128 391.85349681 268.92019653 391.80792236 c
+268.92019653 391.80792236 l
+h
+f
+Q
+q
+0 0 0 rg
+270.62918091 393.38018799 m
+270.62918091 379.06378174 l
+272.38699341 379.06378174 l
+272.38699341 384.20050049 l
+273.20730201 383.24998979 274.24245723 382.77472984 275.49246216 382.77471924 c
+276.26068437 382.77472984 276.92800142 382.92609688 277.49441528 383.2288208 c
+278.06081278 383.53156502 278.46608582 383.94985888 278.7102356 384.48370361 c
+278.95436658 385.01756614 279.07643677 385.79230495 279.07644653 386.80792236 c
+279.07644653 393.38018799 l
+277.31863403 393.38018799 l
+277.31863403 386.80792236 l
+277.31862603 385.92902356 277.12819653 385.28937577 276.74734497 384.88897705 c
+276.36647854 384.48859532 275.8277421 384.28840021 275.13113403 384.28839111 c
+274.6102954 384.28840021 274.12038704 384.42349122 273.66140747 384.69366455 c
+273.2024192 384.96385526 272.87527109 385.33006583 272.67996216 385.79229736 c
+272.48464648 386.25454407 272.38699033 386.89256427 272.38699341 387.70635986 c
+272.38699341 393.38018799 l
+270.62918091 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+281.10769653 388.19464111 m
+281.10769587 386.2740753 281.6415495 384.85155068 282.70925903 383.92706299 c
+283.60118296 383.15884404 284.68842146 382.77472984 285.97097778 382.77471924 c
+287.39675208 382.77472984 288.5621155 383.24185177 289.46707153 384.17608643 c
+290.37200952 385.11033949 290.82448303 386.4010283 290.82449341 388.04815674 c
+290.82448303 389.38279615 290.62428792 390.43259979 290.22390747 391.1975708 c
+289.82350747 391.96254618 289.24082576 392.5566211 288.4758606 392.97979736 c
+287.71087937 393.40297442 286.87591927 393.61456275 285.97097778 393.61456299 c
+284.51915079 393.61456275 283.34564936 393.14906843 282.45046997 392.21807861 c
+281.55528657 391.28709112 281.10769587 389.94594663 281.10769653 388.19464111 c
+281.10769653 388.19464111 l
+h
+282.91433716 388.19464111 m
+282.91433469 389.52276997 283.20404794 390.51723512 283.78347778 391.17803955 c
+284.36290095 391.83884838 285.09206688 392.1692517 285.97097778 392.16925049 c
+286.84336722 392.1692517 287.56927795 391.83722078 288.14871216 391.17315674 c
+288.72813096 390.50909711 289.01784421 389.49672833 289.01785278 388.13604736 c
+289.01784421 386.85350181 288.72650335 385.88182309 288.14382935 385.2210083 c
+287.56113994 384.56020983 286.83685681 384.22980651 285.97097778 384.22979736 c
+285.09206688 384.22980651 284.36290095 384.55858223 283.78347778 385.21612549 c
+283.20404794 385.87368508 282.91433469 386.86652263 282.91433716 388.19464111 c
+282.91433716 388.19464111 l
+h
+f
+Q
+q
+0 0 0 rg
+299.69168091 393.38018799 m
+299.69168091 391.85675049 l
+298.88438193 393.02862584 297.78737782 393.61456275 296.40066528 393.61456299 c
+295.7886819 393.61456275 295.21739341 393.49737537 294.6867981 393.26300049 c
+294.15619656 393.02862584 293.76231674 392.73402978 293.50515747 392.37921143 c
+293.24799434 392.02439507 293.06733046 391.5898252 292.96316528 391.07550049 c
+292.89154938 390.73045105 292.85574213 390.1835766 292.85574341 389.43487549 c
+292.85574341 383.00909424 l
+294.61355591 383.00909424 l
+294.61355591 388.76104736 l
+294.61355287 389.67901981 294.64936013 390.29750878 294.72097778 390.61651611 c
+294.83165161 391.078758 295.06602638 391.44171336 295.42410278 391.7053833 c
+295.78217149 391.96905659 296.22487938 392.10089239 296.75222778 392.10089111 c
+297.27956583 392.10089239 297.774357 391.96580138 298.23660278 391.69561768 c
+298.69883524 391.42543734 299.02598335 391.05759917 299.2180481 390.59210205 c
+299.41009755 390.12661051 299.5061261 389.45115546 299.50613403 388.56573486 c
+299.50613403 383.00909424 l
+301.26394653 383.00909424 l
+301.26394653 393.38018799 l
+299.69168091 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+307.86550903 391.80792236 m
+308.11941528 393.36065674 l
+307.6246187 393.46482332 307.18191081 393.5169066 306.79129028 393.51690674 c
+306.15326601 393.5169066 305.65847483 393.41599524 305.30691528 393.21417236 c
+304.95535054 393.01234981 304.70795495 392.7470506 304.56472778 392.41827393 c
+304.4214969 392.08949917 304.34988239 391.3977681 304.34988403 390.34307861 c
+304.34988403 384.37628174 l
+303.06082153 384.37628174 l
+303.06082153 383.00909424 l
+304.34988403 383.00909424 l
+304.34988403 380.44073486 l
+306.09793091 379.38604736 l
+306.09793091 383.00909424 l
+307.86550903 383.00909424 l
+307.86550903 384.37628174 l
+306.09793091 384.37628174 l
+306.09793091 390.44073486 l
+306.09792752 390.94203938 306.12885197 391.26430469 306.19070435 391.40753174 c
+306.25254976 391.55076273 306.35346112 391.66469491 306.49343872 391.74932861 c
+306.63340875 391.83396558 306.83360387 391.87628324 307.09402466 391.87628174 c
+307.28933258 391.87628324 307.54649378 391.85349681 307.86550903 391.80792236 c
+307.86550903 391.80792236 l
+h
+f
+Q
+q
+0 0 0 rg
+315.12136841 393.38018799 m
+315.12136841 383.00909424 l
+316.69363403 383.00909424 l
+316.69363403 384.46417236 l
+317.01915165 383.95636929 317.45209393 383.54784105 317.99246216 383.23858643 c
+318.53282201 382.92935208 319.14805577 382.77472984 319.83816528 382.77471924 c
+320.60638765 382.77472984 321.23626983 382.93423489 321.72781372 383.25323486 c
+322.21934176 383.57225509 322.5660211 384.01821818 322.76785278 384.59112549 c
+323.5881555 383.38019799 324.65586276 382.77472984 325.97097778 382.77471924 c
+326.99961042 382.77472984 327.79062525 383.05956029 328.34402466 383.62921143 c
+328.89739498 384.19888207 329.17408741 385.07615983 329.17410278 386.26104736 c
+329.17410278 393.38018799 l
+327.42605591 393.38018799 l
+327.42605591 386.84698486 l
+327.42604229 386.1438671 327.3690762 385.63768271 327.25515747 385.32843018 c
+327.14121184 385.01919375 326.93450632 384.77017056 326.63504028 384.58135986 c
+326.33554858 384.39256677 325.98398644 384.29816582 325.58035278 384.29815674 c
+324.85117507 384.29816582 324.24570692 384.5406786 323.76394653 385.0256958 c
+323.28216622 385.51072971 323.04128104 386.28709612 323.04129028 387.35479736 c
+323.04129028 393.38018799 l
+321.28347778 393.38018799 l
+321.28347778 386.64190674 l
+321.2834703 385.86066426 321.14024128 385.27472734 320.85379028 384.88409424 c
+320.56732519 384.49347813 320.09857565 384.29816582 319.44754028 384.29815674 c
+318.95274347 384.29816582 318.49538715 384.42837402 318.07546997 384.68878174 c
+317.65554424 384.94920684 317.35118257 385.33006583 317.16238403 385.83135986 c
+316.97357878 386.33266899 316.87917783 387.05532452 316.87918091 387.99932861 c
+316.87918091 393.38018799 l
+315.12136841 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+338.56863403 392.10089111 m
+337.91758493 392.65427726 337.29095795 393.04490187 336.68875122 393.27276611 c
+336.08653208 393.50063058 335.44037387 393.61456275 334.75027466 393.61456299 c
+333.61094861 393.61456275 332.73529845 393.33624272 332.12332153 392.77960205 c
+331.51134134 392.22296258 331.20535206 391.51170027 331.20535278 390.64581299 c
+331.20535206 390.13800373 331.32091184 389.67413701 331.55203247 389.25421143 c
+331.78315096 388.8342941 332.08588503 388.49738037 332.4602356 388.24346924 c
+332.8345822 387.98956838 333.25613126 387.79751128 333.72488403 387.66729736 c
+334.06993253 387.57615733 334.59076534 387.4882668 335.28738403 387.40362549 c
+336.70664864 387.2343608 337.75156947 387.03253809 338.42214966 386.79815674 c
+338.42865213 386.55727814 338.43190733 386.40428351 338.43191528 386.33917236 c
+338.43190733 385.62303429 338.26589188 385.1184775 337.93386841 384.82550049 c
+337.48464266 384.42837402 336.81732562 384.22980651 335.93191528 384.22979736 c
+335.10508774 384.22980651 334.49473679 384.37466314 334.1008606 384.66436768 c
+333.70697716 384.95408964 333.41563631 385.46678444 333.22683716 386.20245361 c
+331.50808716 385.96807861 l
+331.66433598 385.23240968 331.92149718 384.63833475 332.27957153 384.18585205 c
+332.63764229 383.73338774 333.1552199 383.3850808 333.83230591 383.14093018 c
+334.50938521 382.89680003 335.29388964 382.77472984 336.18582153 382.77471924 c
+337.07123161 382.77472984 337.79063193 382.87889641 338.34402466 383.08721924 c
+338.89740166 383.29556266 339.30430229 383.55760667 339.56472778 383.87335205 c
+339.82513511 384.18911645 340.00742659 384.58787907 340.11160278 385.06964111 c
+340.17018685 385.36912829 340.19948369 385.90949233 340.19949341 386.69073486 c
+340.19949341 389.03448486 l
+340.19948369 390.66860216 340.23691855 391.70212977 340.3117981 392.1350708 c
+340.38665798 392.56801432 340.53476981 392.98305297 340.75613403 393.38018799 c
+338.92019653 393.38018799 l
+338.73789661 393.01560502 338.62070923 392.58917315 338.56863403 392.10089111 c
+338.56863403 392.10089111 l
+h
+338.42214966 388.17510986 m
+337.78412152 388.43553147 336.82709123 388.65688542 335.55105591 388.83917236 c
+334.82839531 388.94334347 334.31732812 389.06053085 334.01785278 389.19073486 c
+333.71837038 389.32094726 333.48725082 389.51137675 333.32449341 389.76202393 c
+333.16173031 390.01267833 333.08035019 390.29099837 333.08035278 390.59698486 c
+333.08035019 391.06573718 333.25775886 391.45636179 333.61257935 391.76885986 c
+333.96739357 392.08136116 334.48659878 392.23761101 335.17019653 392.23760986 c
+335.8472745 392.23761101 336.44948744 392.08949917 336.97683716 391.79327393 c
+337.50417389 391.49705185 337.89154329 391.09177882 338.13894653 390.57745361 c
+338.32774077 390.1803214 338.42214172 389.59438448 338.42214966 388.81964111 c
+338.42214966 388.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+349.70144653 389.58135986 m
+351.42996216 389.80596924 l
+351.24115045 390.99737787 350.7577525 391.92999413 349.97976685 392.6038208 c
+349.20176447 393.27764903 348.24636178 393.61456275 347.11355591 393.61456299 c
+345.694281 393.61456275 344.55333162 393.15069603 343.69070435 392.22296143 c
+342.82807292 391.29522914 342.39675825 389.96547786 342.39675903 388.23370361 c
+342.39675825 387.11391821 342.58230494 386.13410148 342.95339966 385.29425049 c
+343.3244917 384.45441566 343.88926978 383.82453348 344.6477356 383.40460205 c
+345.40619535 382.98469057 346.23138983 382.77472984 347.12332153 382.77471924 c
+348.24961698 382.77472984 349.17084002 383.05956029 349.88699341 383.62921143 c
+350.60313025 384.19888207 351.06211417 385.00780053 351.26394653 386.05596924 c
+349.55496216 386.31964111 l
+349.39219396 385.62303429 349.10410832 385.09894627 348.69070435 384.74737549 c
+348.27728623 384.39582197 347.77761225 384.2200409 347.19168091 384.22003174 c
+346.30625955 384.2200409 345.58685923 384.53742339 345.03347778 385.17218018 c
+344.4800895 385.80695337 344.20339707 386.81118414 344.20339966 388.18487549 c
+344.20339707 389.57810846 344.47032389 390.59047724 345.00418091 391.22198486 c
+345.53803115 391.85349681 346.23464504 392.1692517 347.09402466 392.16925049 c
+347.78412266 392.1692517 348.36029396 391.95766337 348.82254028 391.53448486 c
+349.2847722 391.11131005 349.57774065 390.46026903 349.70144653 389.58135986 c
+349.70144653 389.58135986 l
+h
+f
+Q
+q
+0 0 0 rg
+352.91433716 393.38018799 m
+352.91433716 383.00909424 l
+354.49636841 383.00909424 l
+354.49636841 384.58135986 l
+354.90001096 383.84569231 355.27273194 383.36066676 355.61453247 383.12628174 c
+355.956325 382.89191723 356.33230119 382.77472984 356.74246216 382.77471924 c
+357.33490436 382.77472984 357.93711729 382.96353174 358.54910278 383.34112549 c
+357.94363403 384.97198486 l
+357.51394063 384.71808728 357.08425356 384.59113428 356.65457153 384.59112549 c
+356.27045229 384.59113428 355.92540056 384.70669406 355.61941528 384.93780518 c
+355.313422 385.16893318 355.09532326 385.48957088 354.96511841 385.89971924 c
+354.76980275 386.52472609 354.6721466 387.20831916 354.67214966 387.95050049 c
+354.67214966 393.38018799 l
+352.91433716 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+358.95925903 388.19464111 m
+358.95925837 386.2740753 359.493112 384.85155068 360.56082153 383.92706299 c
+361.45274546 383.15884404 362.53998396 382.77472984 363.82254028 382.77471924 c
+365.24831458 382.77472984 366.413678 383.24185177 367.31863403 384.17608643 c
+368.22357202 385.11033949 368.67604553 386.4010283 368.67605591 388.04815674 c
+368.67604553 389.38279615 368.47585042 390.43259979 368.07546997 391.1975708 c
+367.67506997 391.96254618 367.09238826 392.5566211 366.3274231 392.97979736 c
+365.56244187 393.40297442 364.72748177 393.61456275 363.82254028 393.61456299 c
+362.37071329 393.61456275 361.19721186 393.14906843 360.30203247 392.21807861 c
+359.40684907 391.28709112 358.95925837 389.94594663 358.95925903 388.19464111 c
+358.95925903 388.19464111 l
+h
+360.76589966 388.19464111 m
+360.76589719 389.52276997 361.05561044 390.51723512 361.63504028 391.17803955 c
+362.21446345 391.83884838 362.94362938 392.1692517 363.82254028 392.16925049 c
+364.69492972 392.1692517 365.42084045 391.83722078 366.00027466 391.17315674 c
+366.57969346 390.50909711 366.86940671 389.49672833 366.86941528 388.13604736 c
+366.86940671 386.85350181 366.57806585 385.88182309 365.99539185 385.2210083 c
+365.41270244 384.56020983 364.68841931 384.22980651 363.82254028 384.22979736 c
+362.94362938 384.22980651 362.21446345 384.55858223 361.63504028 385.21612549 c
+361.05561044 385.87368508 360.76589719 386.86652263 360.76589966 388.19464111 c
+360.76589966 388.19464111 l
+h
+f
+Q
+q
+0 0 0 rg
+266.28347778 414.58135986 m
+268.01199341 414.80596924 l
+267.8231817 415.99737787 267.33978375 416.92999413 266.5617981 417.6038208 c
+265.78379572 418.27764903 264.82839303 418.61456275 263.69558716 418.61456299 c
+262.27631225 418.61456275 261.13536287 418.15069603 260.2727356 417.22296143 c
+259.41010417 416.29522914 258.9787895 414.96547786 258.97879028 413.23370361 c
+258.9787895 412.11391821 259.16433619 411.13410148 259.53543091 410.29425049 c
+259.90652295 409.45441566 260.47130103 408.82453348 261.22976685 408.40460205 c
+261.9882266 407.98469057 262.81342108 407.77472984 263.70535278 407.77471924 c
+264.83164823 407.77472984 265.75287127 408.05956029 266.46902466 408.62921143 c
+267.1851615 409.19888207 267.64414542 410.00780053 267.84597778 411.05596924 c
+266.13699341 411.31964111 l
+265.97422521 410.62303429 265.68613957 410.09894627 265.2727356 409.74737549 c
+264.85931748 409.39582197 264.3596435 409.2200409 263.77371216 409.22003174 c
+262.8882908 409.2200409 262.16889048 409.53742339 261.61550903 410.17218018 c
+261.06212075 410.80695337 260.78542832 411.81118414 260.78543091 413.18487549 c
+260.78542832 414.57810846 261.05235514 415.59047724 261.58621216 416.22198486 c
+262.1200624 416.85349681 262.81667629 417.1692517 263.67605591 417.16925049 c
+264.36615391 417.1692517 264.94232521 416.95766337 265.40457153 416.53448486 c
+265.86680345 416.11131005 266.1597719 415.46026903 266.28347778 414.58135986 c
+266.28347778 414.58135986 l
+h
+f
+Q
+q
+0 0 0 rg
+268.86160278 413.19464111 m
+268.86160212 411.2740753 269.39545575 409.85155068 270.46316528 408.92706299 c
+271.35508921 408.15884404 272.44232771 407.77472984 273.72488403 407.77471924 c
+275.15065833 407.77472984 276.31602175 408.24185177 277.22097778 409.17608643 c
+278.12591577 410.11033949 278.57838928 411.4010283 278.57839966 413.04815674 c
+278.57838928 414.38279615 278.37819417 415.43259979 277.97781372 416.1975708 c
+277.57741372 416.96254618 276.99473201 417.5566211 276.22976685 417.97979736 c
+275.46478562 418.40297442 274.62982552 418.61456275 273.72488403 418.61456299 c
+272.27305704 418.61456275 271.09955561 418.14906843 270.20437622 417.21807861 c
+269.30919282 416.28709112 268.86160212 414.94594663 268.86160278 413.19464111 c
+268.86160278 413.19464111 l
+h
+270.66824341 413.19464111 m
+270.66824094 414.52276997 270.95795419 415.51723512 271.53738403 416.17803955 c
+272.1168072 416.83884838 272.84597313 417.1692517 273.72488403 417.16925049 c
+274.59727347 417.1692517 275.3231842 416.83722078 275.90261841 416.17315674 c
+276.48203721 415.50909711 276.77175046 414.49672833 276.77175903 413.13604736 c
+276.77175046 411.85350181 276.4804096 410.88182309 275.8977356 410.2210083 c
+275.31504619 409.56020983 274.59076306 409.22980651 273.72488403 409.22979736 c
+272.84597313 409.22980651 272.1168072 409.55858223 271.53738403 410.21612549 c
+270.95795419 410.87368508 270.66824094 411.86652263 270.66824341 413.19464111 c
+270.66824341 413.19464111 l
+h
+f
+Q
+q
+0 0 0 rg
+280.64871216 418.38018799 m
+280.64871216 408.00909424 l
+282.22097778 408.00909424 l
+282.22097778 409.46417236 l
+282.5464954 408.95636929 282.97943768 408.54784105 283.51980591 408.23858643 c
+284.06016576 407.92935208 284.67539952 407.77472984 285.36550903 407.77471924 c
+286.1337314 407.77472984 286.76361358 407.93423489 287.25515747 408.25323486 c
+287.74668551 408.57225509 288.09336485 409.01821818 288.29519653 409.59112549 c
+289.11549925 408.38019799 290.18320651 407.77472984 291.49832153 407.77471924 c
+292.52695417 407.77472984 293.317969 408.05956029 293.87136841 408.62921143 c
+294.42473873 409.19888207 294.70143116 410.07615983 294.70144653 411.26104736 c
+294.70144653 418.38018799 l
+292.95339966 418.38018799 l
+292.95339966 411.84698486 l
+292.95338604 411.1438671 292.89641995 410.63768271 292.78250122 410.32843018 c
+292.66855559 410.01919375 292.46185007 409.77017056 292.16238403 409.58135986 c
+291.86289233 409.39256677 291.51133019 409.29816582 291.10769653 409.29815674 c
+290.37851882 409.29816582 289.77305067 409.5406786 289.29129028 410.0256958 c
+288.80950997 410.51072971 288.56862479 411.28709612 288.56863403 412.35479736 c
+288.56863403 418.38018799 l
+286.81082153 418.38018799 l
+286.81082153 411.64190674 l
+286.81081405 410.86066426 286.66758503 410.27472734 286.38113403 409.88409424 c
+286.09466894 409.49347813 285.6259194 409.29816582 284.97488403 409.29815674 c
+284.48008722 409.29816582 284.0227309 409.42837402 283.60281372 409.68878174 c
+283.18288799 409.94920684 282.87852632 410.33006583 282.68972778 410.83135986 c
+282.50092253 411.33266899 282.40652158 412.05532452 282.40652466 412.99932861 c
+282.40652466 418.38018799 l
+280.64871216 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+297.32839966 418.38018799 m
+297.32839966 408.00909424 l
+298.90066528 408.00909424 l
+298.90066528 409.46417236 l
+299.2261829 408.95636929 299.65912518 408.54784105 300.19949341 408.23858643 c
+300.73985326 407.92935208 301.35508702 407.77472984 302.04519653 407.77471924 c
+302.8134189 407.77472984 303.44330108 407.93423489 303.93484497 408.25323486 c
+304.42637301 408.57225509 304.77305235 409.01821818 304.97488403 409.59112549 c
+305.79518675 408.38019799 306.86289401 407.77472984 308.17800903 407.77471924 c
+309.20664167 407.77472984 309.9976565 408.05956029 310.55105591 408.62921143 c
+311.10442623 409.19888207 311.38111866 410.07615983 311.38113403 411.26104736 c
+311.38113403 418.38018799 l
+309.63308716 418.38018799 l
+309.63308716 411.84698486 l
+309.63307354 411.1438671 309.57610745 410.63768271 309.46218872 410.32843018 c
+309.34824309 410.01919375 309.14153757 409.77017056 308.84207153 409.58135986 c
+308.54257983 409.39256677 308.19101769 409.29816582 307.78738403 409.29815674 c
+307.05820632 409.29816582 306.45273817 409.5406786 305.97097778 410.0256958 c
+305.48919747 410.51072971 305.24831229 411.28709612 305.24832153 412.35479736 c
+305.24832153 418.38018799 l
+303.49050903 418.38018799 l
+303.49050903 411.64190674 l
+303.49050155 410.86066426 303.34727253 410.27472734 303.06082153 409.88409424 c
+302.77435644 409.49347813 302.3056069 409.29816582 301.65457153 409.29815674 c
+301.15977472 409.29816582 300.7024184 409.42837402 300.28250122 409.68878174 c
+299.86257549 409.94920684 299.55821382 410.33006583 299.36941528 410.83135986 c
+299.18061003 411.33266899 299.08620908 412.05532452 299.08621216 412.99932861 c
+299.08621216 418.38018799 l
+297.32839966 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+320.77566528 417.10089111 m
+320.12461618 417.65427726 319.4979892 418.04490187 318.89578247 418.27276611 c
+318.29356333 418.50063058 317.64740512 418.61456275 316.95730591 418.61456299 c
+315.81797986 418.61456275 314.9423297 418.33624272 314.33035278 417.77960205 c
+313.71837259 417.22296258 313.41238331 416.51170027 313.41238403 415.64581299 c
+313.41238331 415.13800373 313.52794309 414.67413701 313.75906372 414.25421143 c
+313.99018221 413.8342941 314.29291628 413.49738037 314.66726685 413.24346924 c
+315.04161345 412.98956838 315.46316251 412.79751128 315.93191528 412.66729736 c
+316.27696378 412.57615733 316.79779659 412.4882668 317.49441528 412.40362549 c
+318.91367989 412.2343608 319.95860072 412.03253809 320.62918091 411.79815674 c
+320.63568338 411.55727814 320.63893858 411.40428351 320.63894653 411.33917236 c
+320.63893858 410.62303429 320.47292313 410.1184775 320.14089966 409.82550049 c
+319.69167391 409.42837402 319.02435687 409.22980651 318.13894653 409.22979736 c
+317.31211899 409.22980651 316.70176804 409.37466314 316.30789185 409.66436768 c
+315.91400841 409.95408964 315.62266756 410.46678444 315.43386841 411.20245361 c
+313.71511841 410.96807861 l
+313.87136723 410.23240968 314.12852843 409.63833475 314.48660278 409.18585205 c
+314.84467354 408.73338774 315.36225115 408.3850808 316.03933716 408.14093018 c
+316.71641646 407.89680003 317.50092089 407.77472984 318.39285278 407.77471924 c
+319.27826286 407.77472984 319.99766318 407.87889641 320.55105591 408.08721924 c
+321.10443291 408.29556266 321.51133354 408.55760667 321.77175903 408.87335205 c
+322.03216636 409.18911645 322.21445784 409.58787907 322.31863403 410.06964111 c
+322.3772181 410.36912829 322.40651494 410.90949233 322.40652466 411.69073486 c
+322.40652466 414.03448486 l
+322.40651494 415.66860216 322.4439498 416.70212977 322.51882935 417.1350708 c
+322.59368923 417.56801432 322.74180106 417.98305297 322.96316528 418.38018799 c
+321.12722778 418.38018799 l
+320.94492786 418.01560502 320.82774048 417.58917315 320.77566528 417.10089111 c
+320.77566528 417.10089111 l
+h
+320.62918091 413.17510986 m
+319.99115277 413.43553147 319.03412248 413.65688542 317.75808716 413.83917236 c
+317.03542656 413.94334347 316.52435937 414.06053085 316.22488403 414.19073486 c
+315.92540163 414.32094726 315.69428207 414.51137675 315.53152466 414.76202393 c
+315.36876156 415.01267833 315.28738144 415.29099837 315.28738403 415.59698486 c
+315.28738144 416.06573718 315.46479011 416.45636179 315.8196106 416.76885986 c
+316.17442482 417.08136116 316.69363003 417.23761101 317.37722778 417.23760986 c
+318.05430575 417.23761101 318.65651869 417.08949917 319.18386841 416.79327393 c
+319.71120514 416.49705185 320.09857454 416.09177882 320.34597778 415.57745361 c
+320.53477202 415.1803214 320.62917297 414.59438448 320.62918091 413.81964111 c
+320.62918091 413.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+325.14089966 418.38018799 m
+325.14089966 408.00909424 l
+326.72293091 408.00909424 l
+326.72293091 409.48370361 l
+327.484646 408.34439073 328.58490531 407.77472984 330.02371216 407.77471924 c
+330.64870533 407.77472984 331.22324903 407.88703442 331.74734497 408.1116333 c
+332.27142506 408.33625272 332.66367728 408.63084878 332.92410278 408.99542236 c
+333.18451009 409.36001472 333.36680157 409.79295699 333.47097778 410.29425049 c
+333.53607224 410.61977908 333.56862429 411.18943997 333.56863403 412.00323486 c
+333.56863403 418.38018799 l
+331.81082153 418.38018799 l
+331.81082153 412.07159424 l
+331.81081354 411.35545543 331.74245424 410.81997419 331.60574341 410.46514893 c
+331.46901701 410.11033949 331.22650423 409.82713665 330.87820435 409.61553955 c
+330.52989035 409.40395999 330.12136211 409.29816582 329.65261841 409.29815674 c
+328.90391541 409.29816582 328.2577572 409.53579579 327.71414185 410.01104736 c
+327.17051871 410.48631567 326.89870908 411.38800748 326.89871216 412.71612549 c
+326.89871216 418.38018799 l
+325.14089966 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+343.00222778 418.38018799 m
+343.00222778 417.07159424 l
+342.34466831 418.10024035 341.3778724 418.61456275 340.10183716 418.61456299 c
+339.27500992 418.61456275 338.51491954 418.3866984 337.82156372 417.93096924 c
+337.12820217 417.47524098 336.59109333 416.83884838 336.2102356 416.02178955 c
+335.82937535 415.20473543 335.63894585 414.26560877 335.63894653 413.20440674 c
+335.63894585 412.1692567 335.81147172 411.23013003 336.15652466 410.38702393 c
+336.5015752 409.5439338 337.0191528 408.8977756 337.70925903 408.44854736 c
+338.39935976 407.99933899 339.17084336 407.77472984 340.02371216 407.77471924 c
+340.64870646 407.77472984 341.20534653 407.90656565 341.69363403 408.17022705 c
+342.18190806 408.43390887 342.57904308 408.77733301 342.88504028 409.20050049 c
+342.88504028 404.06378174 l
+344.63308716 404.06378174 l
+344.63308716 418.38018799 l
+343.00222778 418.38018799 l
+h
+337.44558716 413.20440674 m
+337.44558467 414.53253559 337.7255323 415.52537313 338.28543091 416.18292236 c
+338.84532285 416.84047599 339.50612948 417.1692517 340.26785278 417.16925049 c
+341.03607587 417.1692517 341.68874449 416.85512441 342.2258606 416.22686768 c
+342.76296216 415.59861525 343.03151658 414.63995735 343.03152466 413.35089111 c
+343.03151658 411.93162673 342.75807936 410.8899611 342.21121216 410.22589111 c
+341.66433045 409.56183743 340.990503 409.22980651 340.18972778 409.22979736 c
+339.40847333 409.22980651 338.75580471 409.54881661 338.23171997 410.18682861 c
+337.70762868 410.824857 337.44558467 411.83071537 337.44558716 413.20440674 c
+337.44558716 413.20440674 l
+h
+f
+Q
+q
+0 0 0 rg
+346.70339966 415.28448486 m
+348.44168091 415.01104736 l
+348.53933471 415.70766462 348.81114433 416.24151825 349.2571106 416.61260986 c
+349.70307052 416.98370501 350.32644229 417.1692517 351.12722778 417.16925049 c
+351.9345136 417.1692517 352.53347134 417.00486384 352.92410278 416.67608643 c
+353.31472056 416.34731242 353.51003286 415.96157062 353.51004028 415.51885986 c
+353.51003286 415.12172771 353.33750699 414.80922802 352.99246216 414.58135986 c
+352.75157008 414.42511382 352.15261234 414.22654631 351.19558716 413.98565674 c
+349.90652084 413.66014063 349.01296705 413.37856539 348.5149231 413.14093018 c
+348.01687429 412.90330544 347.6392705 412.57452973 347.3821106 412.15460205 c
+347.1249481 411.73468682 346.9963675 411.2708201 346.99636841 410.76300049 c
+346.9963675 410.30076898 347.10216167 409.87270952 347.31375122 409.4788208 c
+347.52533833 409.08494989 347.81342397 408.75780178 348.17800903 408.49737549 c
+348.45144417 408.29556266 348.82416515 408.12466439 349.2961731 407.98468018 c
+349.76817462 407.84471675 350.27435901 407.77472984 350.81472778 407.77471924 c
+351.62852433 407.77472984 352.34304184 407.89191723 352.95828247 408.12628174 c
+353.57350936 408.36066676 354.02761047 408.67804925 354.32058716 409.07843018 c
+354.61354738 409.4788297 354.8153701 410.01431094 354.92605591 410.68487549 c
+353.20730591 410.91925049 l
+353.12917387 410.38540432 352.90293711 409.96873807 352.52859497 409.66925049 c
+352.15423995 409.36978033 351.62526912 409.2200409 350.94168091 409.22003174 c
+350.1343852 409.2200409 349.5582139 409.35350431 349.21316528 409.62042236 c
+348.86811042 409.88735794 348.69558455 410.19985763 348.69558716 410.55792236 c
+348.69558455 410.78579454 348.76719906 410.99087246 348.91043091 411.17315674 c
+349.05365711 411.36196584 349.27826626 411.51821568 349.58425903 411.64190674 c
+349.76003661 411.70701758 350.27761422 411.85675701 351.13699341 412.09112549 c
+352.3804767 412.4231627 353.24798885 412.69497232 353.73953247 412.90655518 c
+354.23106079 413.11814898 354.61680259 413.42576586 354.89675903 413.82940674 c
+355.17669786 414.23305672 355.31667168 414.7343583 355.31668091 415.33331299 c
+355.31667168 415.91925295 355.14577341 416.47101021 354.8039856 416.98858643 c
+354.46218035 417.50616542 353.96901678 417.90655565 353.32449341 418.1897583 c
+352.67995557 418.47296133 351.95078963 418.61456275 351.13699341 418.61456299 c
+349.78933346 418.61456275 348.76231625 418.33461512 348.05593872 417.77471924 c
+347.34955725 417.21482457 346.89871135 416.38474728 346.70339966 415.28448486 c
+346.70339966 415.28448486 l
+h
+f
+Q
+q
+1 0 0 1 -8.5714286 -4.2857143 cm
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+389.99999237 391.95162964 m
+389.99999237 427.83162964 357.35999384 456.95162964 317.14285278 456.95162964 c
+276.92571173 456.95162964 244.2857132 427.83162964 244.2857132 391.95162964 c
+244.2857132 356.07162964 276.92571173 326.95162964 317.14285278 326.95162964 c
+357.35999384 326.95162964 389.99999237 356.07162964 389.99999237 391.95162964 c
+h
+S
+Q
+Q
+Q
+q
+1 0 0 1 243.92858 -236.78572 cm
+q
+0 0 0 rg
+139.38615417 372.66592407 m
+139.38615417 358.34951782 l
+142.23771667 358.34951782 l
+145.62638855 368.48623657 l
+145.93888051 369.43025022 146.16674487 370.13662973 146.3099823 370.6053772 c
+146.47273415 370.08454645 146.72664014 369.31957325 147.07170105 368.31045532 c
+150.49943542 358.34951782 l
+153.04826355 358.34951782 l
+153.04826355 372.66592407 l
+151.22209167 372.66592407 l
+151.22209167 360.6835022 l
+147.06193542 372.66592407 l
+145.35295105 372.66592407 l
+141.21232605 360.47842407 l
+141.21232605 372.66592407 l
+139.38615417 372.66592407 l
+h
+f
+Q
+q
+0 0 0 rg
+162.66740417 371.3866272 m
+162.01635507 371.94001334 161.3897281 372.33063795 160.78752136 372.5585022 c
+160.18530222 372.78636666 159.53914401 372.90029884 158.8490448 372.90029907 c
+157.70971875 372.90029884 156.83406859 372.6219788 156.22209167 372.06533813 c
+155.61011148 371.50869867 155.3041222 370.79743636 155.30412292 369.93154907 c
+155.3041222 369.42373981 155.41968198 368.95987309 155.65080261 368.53994751 c
+155.8819211 368.12003018 156.18465518 367.78311646 156.55900574 367.52920532 c
+156.93335234 367.27530446 157.3549014 367.08324736 157.82365417 366.95303345 c
+158.16870267 366.86189342 158.68953548 366.77400288 159.38615417 366.68936157 c
+160.80541878 366.52009688 161.85033961 366.31827417 162.5209198 366.08389282 c
+162.52742227 365.84301423 162.53067748 365.69001959 162.53068542 365.62490845 c
+162.53067748 364.90877037 162.36466202 364.40421358 162.03263855 364.11123657 c
+161.5834128 363.71411011 160.91609576 363.5155426 160.03068542 363.51553345 c
+159.20385789 363.5155426 158.59350693 363.66039922 158.19963074 363.95010376 c
+157.8057473 364.23982573 157.51440645 364.75252053 157.3256073 365.4881897 c
+155.6068573 365.2538147 l
+155.76310612 364.51814576 156.02026732 363.92407083 156.37834167 363.47158813 c
+156.73641244 363.01912382 157.25399004 362.67081688 157.93107605 362.42666626 c
+158.60815536 362.18253612 159.39265978 362.06046593 160.28459167 362.06045532 c
+161.17000175 362.06046593 161.88940208 362.16463249 162.4427948 362.37295532 c
+162.9961718 362.58129874 163.40307244 362.84334275 163.66349792 363.15908813 c
+163.92390525 363.47485253 164.10619673 363.87361516 164.21037292 364.3553772 c
+164.26895699 364.65486437 164.29825383 365.19522842 164.29826355 365.97647095 c
+164.29826355 368.32022095 l
+164.29825383 369.95433824 164.33568869 370.98786585 164.41056824 371.42080688 c
+164.48542813 371.85375041 164.63353996 372.26878905 164.85490417 372.66592407 c
+163.01896667 372.66592407 l
+162.83666675 372.3013411 162.71947937 371.87490924 162.66740417 371.3866272 c
+162.66740417 371.3866272 l
+h
+162.5209198 367.46084595 m
+161.88289167 367.72126756 160.92586137 367.9426215 159.64982605 368.12490845 c
+158.92716545 368.22907955 158.41609826 368.34626693 158.11662292 368.47647095 c
+157.81714052 368.60668334 157.58602096 368.79711284 157.42326355 369.04776001 c
+157.26050045 369.29841442 157.17912033 369.57673445 157.17912292 369.88272095 c
+157.17912033 370.35147326 157.356529 370.74209787 157.71134949 371.05459595 c
+158.06616371 371.36709725 158.58536892 371.52334709 159.26896667 371.52334595 c
+159.94604464 371.52334709 160.54825758 371.37523526 161.0756073 371.07901001 c
+161.60294403 370.78278793 161.99031343 370.3775149 162.23771667 369.8631897 c
+162.42651091 369.46605748 162.52091186 368.88012057 162.5209198 368.1053772 c
+162.5209198 367.46084595 l
+h
+f
+Q
+q
+0 0 0 rg
+173.80021667 368.86709595 m
+175.5287323 369.09170532 l
+175.33992059 370.28311396 174.85652264 371.21573021 174.07853699 371.88955688 c
+173.30053461 372.56338511 172.34513192 372.90029884 171.21232605 372.90029907 c
+169.79305114 372.90029884 168.65210176 372.43643211 167.78947449 371.50869751 c
+166.92684307 370.58096522 166.49552839 369.25121395 166.49552917 367.5194397 c
+166.49552839 366.3996543 166.68107508 365.41983757 167.0521698 364.57998657 c
+167.42326184 363.74015175 167.98803992 363.11026957 168.74650574 362.69033813 c
+169.50496549 362.27042666 170.33015998 362.06046593 171.22209167 362.06045532 c
+172.34838712 362.06046593 173.26961016 362.34529637 173.98576355 362.91494751 c
+174.7019004 363.48461815 175.16088431 364.29353661 175.36271667 365.34170532 c
+173.6537323 365.6053772 l
+173.49096411 364.90877037 173.20287846 364.38468235 172.78947449 364.03311157 c
+172.37605637 363.68155806 171.87638239 363.50577698 171.29045105 363.50576782 c
+170.40502969 363.50577698 169.68562937 363.82315948 169.13224792 364.45791626 c
+168.57885964 365.09268946 168.30216721 366.09692022 168.3021698 367.47061157 c
+168.30216721 368.86384454 168.56909403 369.87621332 169.10295105 370.50772095 c
+169.63680129 371.13923289 170.33341518 371.45498778 171.1927948 371.45498657 c
+171.8828928 371.45498778 172.4590641 371.24339945 172.92131042 370.82022095 c
+173.38354234 370.39704613 173.6765108 369.74600512 173.80021667 368.86709595 c
+173.80021667 368.86709595 l
+h
+f
+Q
+q
+0 0 0 rg
+177.0131073 372.66592407 m
+177.0131073 362.29483032 l
+178.59513855 362.29483032 l
+178.59513855 363.86709595 l
+178.9987811 363.1314284 179.37150208 362.64640284 179.71330261 362.41201782 c
+180.05509515 362.17765331 180.43107133 362.06046593 180.8412323 362.06045532 c
+181.4336745 362.06046593 182.03588744 362.24926782 182.64787292 362.62686157 c
+182.04240417 364.25772095 l
+181.61271078 364.00382336 181.18302371 363.87687036 180.75334167 363.87686157 c
+180.36922244 363.87687036 180.0241707 363.99243014 179.71818542 364.22354126 c
+179.41219214 364.45466926 179.1940934 364.77530696 179.06388855 365.18545532 c
+178.8685729 365.81046218 178.77091674 366.49405524 178.7709198 367.23623657 c
+178.7709198 372.66592407 l
+177.0131073 372.66592407 l
+h
+f
+Q
+q
+0 0 0 rg
+183.05802917 367.4803772 m
+183.05802851 365.55981139 183.59188214 364.13728677 184.65959167 363.21279907 c
+185.5515156 362.44458013 186.6387541 362.06046593 187.92131042 362.06045532 c
+189.34708472 362.06046593 190.51244814 362.52758786 191.41740417 363.46182251 c
+192.32234216 364.39607557 192.77481567 365.68676438 192.77482605 367.33389282 c
+192.77481567 368.66853224 192.57462056 369.71833587 192.17424011 370.48330688 c
+191.77384011 371.24828226 191.1911584 371.84235719 190.42619324 372.26553345 c
+189.66121201 372.68871051 188.82625191 372.90029884 187.92131042 372.90029907 c
+186.46948343 372.90029884 185.295982 372.43480451 184.40080261 371.5038147 c
+183.50561921 370.57282721 183.05802851 369.23168271 183.05802917 367.4803772 c
+183.05802917 367.4803772 l
+h
+184.8646698 367.4803772 m
+184.86466733 368.80850605 185.15438058 369.80297121 185.73381042 370.46377563 c
+186.31323359 371.12458447 187.04239953 371.45498778 187.92131042 371.45498657 c
+188.79369986 371.45498778 189.51961059 371.12295687 190.0990448 370.45889282 c
+190.6784636 369.79483319 190.96817685 368.78246441 190.96818542 367.42178345 c
+190.96817685 366.13923789 190.676836 365.16755917 190.09416199 364.50674438 c
+189.51147258 363.84594591 188.78718945 363.5155426 187.92131042 363.51553345 c
+187.04239953 363.5155426 186.31323359 363.84431831 185.73381042 364.50186157 c
+185.15438058 365.15942116 184.86466733 366.15225871 184.8646698 367.4803772 c
+184.8646698 367.4803772 l
+h
+f
+Q
+q
+0 0 0 rg
+122.19865417 397.66592407 m
+122.19865417 383.34951782 l
+127.5990448 383.34951782 l
+128.54955774 383.34953214 129.27546847 383.39510501 129.77677917 383.48623657 c
+130.47989435 383.60343813 131.06908647 383.82641968 131.5443573 384.15518188 c
+132.01960635 384.48397111 132.40209295 384.94458263 132.69181824 385.53701782 c
+132.98151945 386.12947728 133.12637608 386.78051829 133.12638855 387.49014282 c
+133.12637608 388.7075997 132.73900667 389.7378721 131.96427917 390.58096313 c
+131.18952906 391.42406833 129.78979087 391.84561739 127.76506042 391.84561157 c
+124.09318542 391.84561157 l
+124.09318542 397.66592407 l
+122.19865417 397.66592407 l
+h
+124.09318542 390.15615845 m
+127.7943573 390.15615845 l
+129.01830727 390.15616596 129.88744703 389.9283016 130.40177917 389.4725647 c
+130.91609183 389.01684418 131.17325303 388.37556878 131.17326355 387.54873657 c
+131.17325303 386.94978896 131.021886 386.43709416 130.71916199 386.01065063 c
+130.41641785 385.58423042 130.01765523 385.30265519 129.52287292 385.16592407 c
+129.20385396 385.08130124 128.61466184 385.03898357 127.7552948 385.03897095 c
+124.09318542 385.03897095 l
+124.09318542 390.15615845 l
+h
+f
+Q
+q
+0 0 0 rg
+135.31388855 397.66592407 m
+135.31388855 387.29483032 l
+136.8959198 387.29483032 l
+136.8959198 388.86709595 l
+137.29956235 388.1314284 137.67228333 387.64640284 138.01408386 387.41201782 c
+138.3558764 387.17765331 138.73185258 387.06046593 139.14201355 387.06045532 c
+139.73445575 387.06046593 140.33666869 387.24926782 140.94865417 387.62686157 c
+140.34318542 389.25772095 l
+139.91349203 389.00382336 139.48380496 388.87687036 139.05412292 388.87686157 c
+138.67000369 388.87687036 138.32495195 388.99243014 138.01896667 389.22354126 c
+137.71297339 389.45466926 137.49487465 389.77530696 137.3646698 390.18545532 c
+137.16935415 390.81046218 137.07169799 391.49405524 137.07170105 392.23623657 c
+137.07170105 397.66592407 l
+135.31388855 397.66592407 l
+h
+f
+Q
+q
+0 0 0 rg
+141.35881042 392.4803772 m
+141.35880976 390.55981139 141.89266339 389.13728677 142.96037292 388.21279907 c
+143.85229685 387.44458013 144.93953535 387.06046593 146.22209167 387.06045532 c
+147.64786597 387.06046593 148.81322939 387.52758786 149.71818542 388.46182251 c
+150.62312341 389.39607557 151.07559692 390.68676438 151.0756073 392.33389282 c
+151.07559692 393.66853224 150.87540181 394.71833587 150.47502136 395.48330688 c
+150.07462136 396.24828226 149.49193965 396.84235719 148.72697449 397.26553345 c
+147.96199326 397.68871051 147.12703316 397.90029884 146.22209167 397.90029907 c
+144.77026468 397.90029884 143.59676325 397.43480451 142.70158386 396.5038147 c
+141.80640046 395.57282721 141.35880976 394.23168271 141.35881042 392.4803772 c
+141.35881042 392.4803772 l
+h
+143.16545105 392.4803772 m
+143.16544858 393.80850605 143.45516183 394.80297121 144.03459167 395.46377563 c
+144.61401484 396.12458447 145.34318078 396.45498778 146.22209167 396.45498657 c
+147.09448111 396.45498778 147.82039184 396.12295687 148.39982605 395.45889282 c
+148.97924485 394.79483319 149.2689581 393.78246441 149.26896667 392.42178345 c
+149.2689581 391.13923789 148.97761725 390.16755917 148.39494324 389.50674438 c
+147.81225383 388.84594591 147.0879707 388.5155426 146.22209167 388.51553345 c
+145.34318078 388.5155426 144.61401484 388.84431831 144.03459167 389.50186157 c
+143.45516183 390.15942116 143.16544858 391.15225871 143.16545105 392.4803772 c
+143.16545105 392.4803772 l
+h
+f
+Q
+q
+0 0 0 rg
+159.91349792 393.86709595 m
+161.64201355 394.09170532 l
+161.45320184 395.28311396 160.96980389 396.21573021 160.19181824 396.88955688 c
+159.41381586 397.56338511 158.45841317 397.90029884 157.3256073 397.90029907 c
+155.90633239 397.90029884 154.76538301 397.43643211 153.90275574 396.50869751 c
+153.04012432 395.58096522 152.60880964 394.25121395 152.60881042 392.5194397 c
+152.60880964 391.3996543 152.79435633 390.41983757 153.16545105 389.57998657 c
+153.53654309 388.74015175 154.10132117 388.11026957 154.85978699 387.69033813 c
+155.61824674 387.27042666 156.44344123 387.06046593 157.33537292 387.06045532 c
+158.46166837 387.06046593 159.38289141 387.34529637 160.0990448 387.91494751 c
+160.81518165 388.48461815 161.27416556 389.29353661 161.47599792 390.34170532 c
+159.76701355 390.6053772 l
+159.60424536 389.90877037 159.31615971 389.38468235 158.90275574 389.03311157 c
+158.48933762 388.68155806 157.98966364 388.50577698 157.4037323 388.50576782 c
+156.51831094 388.50577698 155.79891062 388.82315948 155.24552917 389.45791626 c
+154.69214089 390.09268946 154.41544846 391.09692022 154.41545105 392.47061157 c
+154.41544846 393.86384454 154.68237528 394.87621332 155.2162323 395.50772095 c
+155.75008254 396.13923289 156.44669643 396.45498778 157.30607605 396.45498657 c
+157.99617405 396.45498778 158.57234535 396.24339945 159.03459167 395.82022095 c
+159.49682359 395.39704613 159.78979205 394.74600512 159.91349792 393.86709595 c
+159.91349792 393.86709595 l
+h
+f
+Q
+q
+0 0 0 rg
+170.24552917 394.32608032 m
+172.06193542 394.5506897 l
+171.77546714 395.61188967 171.24486872 396.43545655 170.47013855 397.02139282 c
+169.6953911 397.60733038 168.70580875 397.90029884 167.50138855 397.90029907 c
+165.98445731 397.90029884 164.78165903 397.43317691 163.89299011 396.49893188 c
+163.00431706 395.56468919 162.55998157 394.25446915 162.5599823 392.56826782 c
+162.55998157 390.823483 163.00919987 389.46931769 163.90763855 388.50576782 c
+164.80607307 387.54223628 165.97143649 387.06046593 167.4037323 387.06045532 c
+168.79044409 387.06046593 169.92325545 387.53247066 170.8021698 388.47647095 c
+171.6810662 389.42048961 172.12051888 390.74861328 172.12052917 392.46084595 c
+172.12051888 392.56501771 172.11726368 392.72126756 172.11076355 392.92959595 c
+164.37638855 392.92959595 l
+164.4414901 394.06892246 164.76375541 394.94131742 165.34318542 395.54678345 c
+165.92260841 396.15225371 166.64526394 396.45498778 167.51115417 396.45498657 c
+168.1556791 396.45498778 168.70580875 396.28571712 169.1615448 395.94717407 c
+169.61726618 395.60863446 169.97859394 395.06827042 170.24552917 394.32608032 c
+170.24552917 394.32608032 l
+h
+164.4740448 391.48428345 m
+170.26506042 391.48428345 l
+170.18692707 390.61189467 169.96557312 389.95759845 169.60099792 389.52139282 c
+169.04109488 388.84431831 168.31518415 388.50577698 167.42326355 388.50576782 c
+166.61596709 388.50577698 165.93725684 388.775959 165.38713074 389.3163147 c
+164.83699752 389.85668709 164.53263584 390.57934262 164.4740448 391.48428345 c
+164.4740448 391.48428345 l
+h
+f
+Q
+q
+0 0 0 rg
+173.5756073 394.57022095 m
+175.31388855 394.29678345 l
+175.41154235 394.9934007 175.68335197 395.52725434 176.12931824 395.89834595 c
+176.57527816 396.26944109 177.19864994 396.45498778 177.99943542 396.45498657 c
+178.80672125 396.45498778 179.40567898 396.29059993 179.79631042 395.96182251 c
+180.1869282 395.6330485 180.3822405 395.2473067 180.38224792 394.80459595 c
+180.3822405 394.40746379 180.20971463 394.0949641 179.8646698 393.86709595 c
+179.62377772 393.7108499 179.02481999 393.51228239 178.0677948 393.27139282 c
+176.77872848 392.94587671 175.88517469 392.66430147 175.38713074 392.42666626 c
+174.88908193 392.18904153 174.51147814 391.86026582 174.25431824 391.44033813 c
+173.99715574 391.02042291 173.86857514 390.55655618 173.86857605 390.04873657 c
+173.86857514 389.58650507 173.97436931 389.1584456 174.18595886 388.76455688 c
+174.39754597 388.37068597 174.68563162 388.04353786 175.05021667 387.78311157 c
+175.32365181 387.58129874 175.69637279 387.41040047 176.16838074 387.27041626 c
+176.64038227 387.13045284 177.14656666 387.06046593 177.68693542 387.06045532 c
+178.50073197 387.06046593 179.21524948 387.17765331 179.83049011 387.41201782 c
+180.445717 387.64640284 180.89981811 387.96378534 181.1927948 388.36416626 c
+181.48575502 388.76456579 181.68757774 389.30004702 181.79826355 389.97061157 c
+180.07951355 390.20498657 l
+180.00138151 389.6711404 179.77514476 389.25447415 179.40080261 388.95498657 c
+179.02644759 388.65551642 178.49747676 388.50577698 177.81388855 388.50576782 c
+177.00659284 388.50577698 176.43042154 388.63924039 176.08537292 388.90615845 c
+175.74031806 389.17309402 175.56779219 389.48559371 175.5677948 389.84365845 c
+175.56779219 390.07153062 175.6394067 390.27660854 175.78263855 390.45889282 c
+175.92586475 390.64770192 176.1504739 390.80395177 176.45646667 390.92764282 c
+176.63224425 390.99275366 177.14982186 391.1424931 178.00920105 391.37686157 c
+179.25268434 391.70889878 180.12019649 391.9807084 180.61174011 392.19229126 c
+181.10326843 392.40388506 181.48901023 392.71150194 181.76896667 393.11514282 c
+182.0489055 393.5187928 182.18887932 394.02009438 182.18888855 394.61904907 c
+182.18887932 395.20498903 182.01798105 395.75674629 181.67619324 396.27432251 c
+181.33438799 396.79190151 180.84122442 397.19229173 180.19670105 397.47549438 c
+179.55216321 397.75869742 178.82299727 397.90029884 178.00920105 397.90029907 c
+176.6615411 397.90029884 175.6345239 397.6203512 174.92814636 397.06045532 c
+174.22176489 396.50056065 173.77091899 395.67048336 173.5756073 394.57022095 c
+173.5756073 394.57022095 l
+h
+f
+Q
+q
+0 0 0 rg
+183.5756073 394.57022095 m
+185.31388855 394.29678345 l
+185.41154235 394.9934007 185.68335197 395.52725434 186.12931824 395.89834595 c
+186.57527816 396.26944109 187.19864994 396.45498778 187.99943542 396.45498657 c
+188.80672125 396.45498778 189.40567898 396.29059993 189.79631042 395.96182251 c
+190.1869282 395.6330485 190.3822405 395.2473067 190.38224792 394.80459595 c
+190.3822405 394.40746379 190.20971463 394.0949641 189.8646698 393.86709595 c
+189.62377772 393.7108499 189.02481999 393.51228239 188.0677948 393.27139282 c
+186.77872848 392.94587671 185.88517469 392.66430147 185.38713074 392.42666626 c
+184.88908193 392.18904153 184.51147814 391.86026582 184.25431824 391.44033813 c
+183.99715574 391.02042291 183.86857514 390.55655618 183.86857605 390.04873657 c
+183.86857514 389.58650507 183.97436931 389.1584456 184.18595886 388.76455688 c
+184.39754597 388.37068597 184.68563162 388.04353786 185.05021667 387.78311157 c
+185.32365181 387.58129874 185.69637279 387.41040047 186.16838074 387.27041626 c
+186.64038227 387.13045284 187.14656666 387.06046593 187.68693542 387.06045532 c
+188.50073197 387.06046593 189.21524948 387.17765331 189.83049011 387.41201782 c
+190.445717 387.64640284 190.89981811 387.96378534 191.1927948 388.36416626 c
+191.48575502 388.76456579 191.68757774 389.30004702 191.79826355 389.97061157 c
+190.07951355 390.20498657 l
+190.00138151 389.6711404 189.77514476 389.25447415 189.40080261 388.95498657 c
+189.02644759 388.65551642 188.49747676 388.50577698 187.81388855 388.50576782 c
+187.00659284 388.50577698 186.43042154 388.63924039 186.08537292 388.90615845 c
+185.74031806 389.17309402 185.56779219 389.48559371 185.5677948 389.84365845 c
+185.56779219 390.07153062 185.6394067 390.27660854 185.78263855 390.45889282 c
+185.92586475 390.64770192 186.1504739 390.80395177 186.45646667 390.92764282 c
+186.63224425 390.99275366 187.14982186 391.1424931 188.00920105 391.37686157 c
+189.25268434 391.70889878 190.12019649 391.9807084 190.61174011 392.19229126 c
+191.10326843 392.40388506 191.48901023 392.71150194 191.76896667 393.11514282 c
+192.0489055 393.5187928 192.18887932 394.02009438 192.18888855 394.61904907 c
+192.18887932 395.20498903 192.01798105 395.75674629 191.67619324 396.27432251 c
+191.33438799 396.79190151 190.84122442 397.19229173 190.19670105 397.47549438 c
+189.55216321 397.75869742 188.82299727 397.90029884 188.00920105 397.90029907 c
+186.6615411 397.90029884 185.6345239 397.6203512 184.92814636 397.06045532 c
+184.22176489 396.50056065 183.77091899 395.67048336 183.5756073 394.57022095 c
+183.5756073 394.57022095 l
+h
+f
+Q
+q
+0 0 0 rg
+193.62443542 392.4803772 m
+193.62443476 390.55981139 194.15828839 389.13728677 195.22599792 388.21279907 c
+196.11792185 387.44458013 197.20516035 387.06046593 198.48771667 387.06045532 c
+199.91349097 387.06046593 201.07885439 387.52758786 201.98381042 388.46182251 c
+202.88874841 389.39607557 203.34122192 390.68676438 203.3412323 392.33389282 c
+203.34122192 393.66853224 203.14102681 394.71833587 202.74064636 395.48330688 c
+202.34024636 396.24828226 201.75756465 396.84235719 200.99259949 397.26553345 c
+200.22761826 397.68871051 199.39265816 397.90029884 198.48771667 397.90029907 c
+197.03588968 397.90029884 195.86238825 397.43480451 194.96720886 396.5038147 c
+194.07202546 395.57282721 193.62443476 394.23168271 193.62443542 392.4803772 c
+193.62443542 392.4803772 l
+h
+195.43107605 392.4803772 m
+195.43107358 393.80850605 195.72078683 394.80297121 196.30021667 395.46377563 c
+196.87963984 396.12458447 197.60880578 396.45498778 198.48771667 396.45498657 c
+199.36010611 396.45498778 200.08601684 396.12295687 200.66545105 395.45889282 c
+201.24486985 394.79483319 201.5345831 393.78246441 201.53459167 392.42178345 c
+201.5345831 391.13923789 201.24324225 390.16755917 200.66056824 389.50674438 c
+200.07787883 388.84594591 199.3535957 388.5155426 198.48771667 388.51553345 c
+197.60880578 388.5155426 196.87963984 388.84431831 196.30021667 389.50186157 c
+195.72078683 390.15942116 195.43107358 391.15225871 195.43107605 392.4803772 c
+195.43107605 392.4803772 l
+h
+f
+Q
+q
+0 0 0 rg
+205.39201355 397.66592407 m
+205.39201355 387.29483032 l
+206.9740448 387.29483032 l
+206.9740448 388.86709595 l
+207.37768735 388.1314284 207.75040833 387.64640284 208.09220886 387.41201782 c
+208.4340014 387.17765331 208.80997758 387.06046593 209.22013855 387.06045532 c
+209.81258075 387.06046593 210.41479369 387.24926782 211.02677917 387.62686157 c
+210.42131042 389.25772095 l
+209.99161703 389.00382336 209.56192996 388.87687036 209.13224792 388.87686157 c
+208.74812869 388.87687036 208.40307695 388.99243014 208.09709167 389.22354126 c
+207.79109839 389.45466926 207.57299965 389.77530696 207.4427948 390.18545532 c
+207.24747915 390.81046218 207.14982299 391.49405524 207.14982605 392.23623657 c
+207.14982605 397.66592407 l
+205.39201355 397.66592407 l
+h
+f
+Q
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+110 339.80877686 m
+225.7142868 339.80877686 l
+225.7142868 412.66591644 l
+110 412.66591644 l
+110 339.80877686 l
+h
+S
+Q
+Q
+q
+1 0 0 1 372.5 -249.64286 cm
+q
+0 0 0 rg
+424.99160767 368.38018799 m
+424.99160767 354.06378174 l
+430.39199829 354.06378174 l
+431.34251123 354.06379605 432.06842196 354.10936893 432.56973267 354.20050049 c
+433.27284784 354.31770205 433.86203996 354.5406836 434.33731079 354.8694458 c
+434.81255984 355.19823502 435.19504644 355.65884654 435.48477173 356.25128174 c
+435.77447294 356.84374119 435.91932957 357.49478221 435.91934204 358.20440674 c
+435.91932957 359.42186361 435.53196017 360.45213602 434.75723267 361.29522705 c
+433.98248255 362.13833225 432.58274437 362.55988131 430.55801392 362.55987549 c
+426.88613892 362.55987549 l
+426.88613892 368.38018799 l
+424.99160767 368.38018799 l
+h
+426.88613892 360.87042236 m
+430.58731079 360.87042236 l
+431.81126076 360.87042987 432.68040052 360.64256552 433.19473267 360.18682861 c
+433.70904532 359.7311081 433.96620652 359.0898327 433.96621704 358.26300049 c
+433.96620652 357.66405287 433.81483949 357.15135807 433.51211548 356.72491455 c
+433.20937134 356.29849434 432.81060872 356.0169191 432.31582642 355.88018799 c
+431.99680745 355.79556516 431.40761533 355.75324749 430.54824829 355.75323486 c
+426.88613892 355.75323486 l
+426.88613892 360.87042236 l
+h
+f
+Q
+q
+0 0 0 rg
+444.89395142 367.10089111 m
+444.24290231 367.65427726 443.61627534 368.04490187 443.0140686 368.27276611 c
+442.41184946 368.50063058 441.76569125 368.61456275 441.07559204 368.61456299 c
+439.936266 368.61456275 439.06061583 368.33624272 438.44863892 367.77960205 c
+437.83665872 367.22296258 437.53066944 366.51170027 437.53067017 365.64581299 c
+437.53066944 365.13800373 437.64622922 364.67413701 437.87734985 364.25421143 c
+438.10846834 363.8342941 438.41120242 363.49738037 438.78555298 363.24346924 c
+439.15989958 362.98956838 439.58144864 362.79751128 440.05020142 362.66729736 c
+440.39524991 362.57615733 440.91608272 362.4882668 441.61270142 362.40362549 c
+443.03196603 362.2343608 444.07688686 362.03253809 444.74746704 361.79815674 c
+444.75396951 361.55727814 444.75722472 361.40428351 444.75723267 361.33917236 c
+444.75722472 360.62303429 444.59120926 360.1184775 444.25918579 359.82550049 c
+443.80996004 359.42837402 443.142643 359.22980651 442.25723267 359.22979736 c
+441.43040513 359.22980651 440.82005417 359.37466314 440.42617798 359.66436768 c
+440.03229455 359.95408964 439.74095369 360.46678444 439.55215454 361.20245361 c
+437.83340454 360.96807861 l
+437.98965336 360.23240968 438.24681456 359.63833475 438.60488892 359.18585205 c
+438.96295968 358.73338774 439.48053729 358.3850808 440.15762329 358.14093018 c
+440.8347026 357.89680003 441.61920702 357.77472984 442.51113892 357.77471924 c
+443.39654899 357.77472984 444.11594932 357.87889641 444.66934204 358.08721924 c
+445.22271904 358.29556266 445.62961968 358.55760667 445.89004517 358.87335205 c
+446.15045249 359.18911645 446.33274397 359.58787907 446.43692017 360.06964111 c
+446.49550423 360.36912829 446.52480107 360.90949233 446.52481079 361.69073486 c
+446.52481079 364.03448486 l
+446.52480107 365.66860216 446.56223593 366.70212977 446.63711548 367.1350708 c
+446.71197537 367.56801432 446.8600872 367.98305297 447.08145142 368.38018799 c
+445.24551392 368.38018799 l
+445.06321399 368.01560502 444.94602661 367.58917315 444.89395142 367.10089111 c
+444.89395142 367.10089111 l
+h
+444.74746704 363.17510986 m
+444.10943891 363.43553147 443.15240861 363.65688542 441.87637329 363.83917236 c
+441.1537127 363.94334347 440.6426455 364.06053085 440.34317017 364.19073486 c
+440.04368776 364.32094726 439.8125682 364.51137675 439.64981079 364.76202393 c
+439.4870477 365.01267833 439.40566757 365.29099837 439.40567017 365.59698486 c
+439.40566757 366.06573718 439.58307625 366.45636179 439.93789673 366.76885986 c
+440.29271095 367.08136116 440.81191616 367.23761101 441.49551392 367.23760986 c
+442.17259188 367.23761101 442.77480482 367.08949917 443.30215454 366.79327393 c
+443.82949127 366.49705185 444.21686067 366.09177882 444.46426392 365.57745361 c
+444.65305815 365.1803214 444.7474591 364.59438448 444.74746704 363.81964111 c
+444.74746704 363.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+449.23965454 368.38018799 m
+449.23965454 358.00909424 l
+450.82168579 358.00909424 l
+450.82168579 359.58135986 l
+451.22532834 358.84569231 451.59804932 358.36066676 451.93984985 358.12628174 c
+452.28164239 357.89191723 452.65761857 357.77472984 453.06777954 357.77471924 c
+453.66022174 357.77472984 454.26243468 357.96353174 454.87442017 358.34112549 c
+454.26895142 359.97198486 l
+453.83925802 359.71808728 453.40957095 359.59113428 452.97988892 359.59112549 c
+452.59576968 359.59113428 452.25071794 359.70669406 451.94473267 359.93780518 c
+451.63873938 360.16893318 451.42064064 360.48957088 451.29043579 360.89971924 c
+451.09512014 361.52472609 450.99746398 362.20831916 450.99746704 362.95050049 c
+450.99746704 368.38018799 l
+449.23965454 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+455.23574829 365.28448486 m
+456.97402954 365.01104736 l
+457.07168334 365.70766462 457.34349296 366.24151825 457.78945923 366.61260986 c
+458.23541916 366.98370501 458.85879093 367.1692517 459.65957642 367.16925049 c
+460.46686224 367.1692517 461.06581997 367.00486384 461.45645142 366.67608643 c
+461.84706919 366.34731242 462.04238149 365.96157062 462.04238892 365.51885986 c
+462.04238149 365.12172771 461.86985563 364.80922802 461.52481079 364.58135986 c
+461.28391871 364.42511382 460.68496098 364.22654631 459.72793579 363.98565674 c
+458.43886947 363.66014063 457.54531568 363.37856539 457.04727173 363.14093018 c
+456.54922292 362.90330544 456.17161914 362.57452973 455.91445923 362.15460205 c
+455.65729673 361.73468682 455.52871613 361.2708201 455.52871704 360.76300049 c
+455.52871613 360.30076898 455.6345103 359.87270952 455.84609985 359.4788208 c
+456.05768696 359.08494989 456.34577261 358.75780178 456.71035767 358.49737549 c
+456.9837928 358.29556266 457.35651378 358.12466439 457.82852173 357.98468018 c
+458.30052326 357.84471675 458.80670765 357.77472984 459.34707642 357.77471924 c
+460.16087296 357.77472984 460.87539047 357.89191723 461.4906311 358.12628174 c
+462.10585799 358.36066676 462.5599591 358.67804925 462.85293579 359.07843018 c
+463.14589602 359.4788297 463.34771873 360.01431094 463.45840454 360.68487549 c
+461.73965454 360.91925049 l
+461.6615225 360.38540432 461.43528575 359.96873807 461.0609436 359.66925049 c
+460.68658858 359.36978033 460.15761775 359.2200409 459.47402954 359.22003174 c
+458.66673383 359.2200409 458.09056253 359.35350431 457.74551392 359.62042236 c
+457.40045905 359.88735794 457.22793318 360.19985763 457.22793579 360.55792236 c
+457.22793318 360.78579454 457.2995477 360.99087246 457.44277954 361.17315674 c
+457.58600574 361.36196584 457.81061489 361.51821568 458.11660767 361.64190674 c
+458.29238524 361.70701758 458.80996285 361.85675701 459.66934204 362.09112549 c
+460.91282533 362.4231627 461.78033749 362.69497232 462.2718811 362.90655518 c
+462.76340942 363.11814898 463.14915122 363.42576586 463.42910767 363.82940674 c
+463.70904649 364.23305672 463.84902031 364.7343583 463.84902954 365.33331299 c
+463.84902031 365.91925295 463.67812205 366.47101021 463.33633423 366.98858643 c
+462.99452898 367.50616542 462.50136541 367.90655565 461.85684204 368.1897583 c
+461.2123042 368.47296133 460.48313826 368.61456275 459.66934204 368.61456299 c
+458.32168209 368.61456275 457.29466489 368.33461512 456.58828735 367.77471924 c
+455.88190588 367.21482457 455.43105998 366.38474728 455.23574829 365.28448486 c
+455.23574829 365.28448486 l
+h
+f
+Q
+q
+0 0 0 rg
+473.03848267 365.04034424 m
+474.85488892 365.26495361 l
+474.56842063 366.32615358 474.03782221 367.14972047 473.26309204 367.73565674 c
+472.48834459 368.3215943 471.49876225 368.61456275 470.29434204 368.61456299 c
+468.7774108 368.61456275 467.57461252 368.14744083 466.6859436 367.2131958 c
+465.79727055 366.27895311 465.35293506 364.96873307 465.35293579 363.28253174 c
+465.35293506 361.53774691 465.80215336 360.1835816 466.70059204 359.22003174 c
+467.59902656 358.2565002 468.76438998 357.77472984 470.19668579 357.77471924 c
+471.58339758 357.77472984 472.71620895 358.24673458 473.59512329 359.19073486 c
+474.47401969 360.13475353 474.91347237 361.4628772 474.91348267 363.17510986 c
+474.91347237 363.27928163 474.91021717 363.43553147 474.90371704 363.64385986 c
+467.16934204 363.64385986 l
+467.23444359 364.78318638 467.5567089 365.65558134 468.13613892 366.26104736 c
+468.7155619 366.86651763 469.43821743 367.1692517 470.30410767 367.16925049 c
+470.94863259 367.1692517 471.49876225 366.99998104 471.95449829 366.66143799 c
+472.41021967 366.32289838 472.77154743 365.78253434 473.03848267 365.04034424 c
+473.03848267 365.04034424 l
+h
+467.26699829 362.19854736 m
+473.05801392 362.19854736 l
+472.97988056 361.32615858 472.75852661 360.67186236 472.39395142 360.23565674 c
+471.83404837 359.55858223 471.10813764 359.2200409 470.21621704 359.22003174 c
+469.40892059 359.2200409 468.73021033 359.49022292 468.18008423 360.03057861 c
+467.62995101 360.57095101 467.32558934 361.29360653 467.26699829 362.19854736 c
+467.26699829 362.19854736 l
+h
+f
+Q
+q
+0 0 0 rg
+477.05215454 368.38018799 m
+477.05215454 358.00909424 l
+478.63418579 358.00909424 l
+478.63418579 359.58135986 l
+479.03782834 358.84569231 479.41054932 358.36066676 479.75234985 358.12628174 c
+480.09414239 357.89191723 480.47011857 357.77472984 480.88027954 357.77471924 c
+481.47272174 357.77472984 482.07493468 357.96353174 482.68692017 358.34112549 c
+482.08145142 359.97198486 l
+481.65175802 359.71808728 481.22207095 359.59113428 480.79238892 359.59112549 c
+480.40826968 359.59113428 480.06321794 359.70669406 479.75723267 359.93780518 c
+479.45123938 360.16893318 479.23314064 360.48957088 479.10293579 360.89971924 c
+478.90762014 361.52472609 478.80996398 362.20831916 478.80996704 362.95050049 c
+478.80996704 368.38018799 l
+477.05215454 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+484.21035767 368.38018799 m
+484.21035767 366.37823486 l
+486.21231079 366.37823486 l
+486.21231079 368.38018799 l
+486.21230701 369.11586434 486.08209881 369.70993926 485.82168579 370.16241455 c
+485.561266 370.61488627 485.14785495 370.96482082 484.58145142 371.21221924 c
+484.09317017 370.46026611 l
+484.46426188 370.29750378 484.73769911 370.05824621 484.91348267 369.74249268 c
+485.08926126 369.42673642 485.18691741 368.97263531 485.20645142 368.38018799 c
+484.21035767 368.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+412.85293579 393.38018799 m
+418.35098267 379.06378174 l
+420.39199829 379.06378174 l
+426.25137329 393.38018799 l
+424.09317017 393.38018799 l
+422.42324829 389.04425049 l
+416.43692017 389.04425049 l
+414.86465454 393.38018799 l
+412.85293579 393.38018799 l
+h
+416.98379517 387.50128174 m
+421.83731079 387.50128174 l
+420.34317017 383.53643799 l
+419.88743399 382.33202195 419.54889267 381.34243961 419.32754517 380.56768799 c
+419.14524724 381.48566863 418.88808604 382.39712605 418.55606079 383.30206299 c
+416.98379517 387.50128174 l
+h
+f
+Q
+q
+0 0 0 rg
+427.55996704 393.38018799 m
+427.55996704 383.00909424 l
+429.14199829 383.00909424 l
+429.14199829 384.48370361 l
+429.90371338 383.34439073 431.0039727 382.77472984 432.44277954 382.77471924 c
+433.06777271 382.77472984 433.64231641 382.88703442 434.16641235 383.1116333 c
+434.69049245 383.33625272 435.08274466 383.63084878 435.34317017 383.99542236 c
+435.60357747 384.36001472 435.78586896 384.79295699 435.89004517 385.29425049 c
+435.95513962 385.61977908 435.98769167 386.18943997 435.98770142 387.00323486 c
+435.98770142 393.38018799 l
+434.22988892 393.38018799 l
+434.22988892 387.07159424 l
+434.22988093 386.35545543 434.16152162 385.81997419 434.02481079 385.46514893 c
+433.88808439 385.11033949 433.64557162 384.82713665 433.29727173 384.61553955 c
+432.94895773 384.40395999 432.54042949 384.29816582 432.07168579 384.29815674 c
+431.32298279 384.29816582 430.67682458 384.53579579 430.13320923 385.01104736 c
+429.58958609 385.48631567 429.31777646 386.38800748 429.31777954 387.71612549 c
+429.31777954 393.38018799 l
+427.55996704 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+445.46035767 392.10089111 m
+444.80930856 392.65427726 444.18268159 393.04490187 443.58047485 393.27276611 c
+442.97825571 393.50063058 442.3320975 393.61456275 441.64199829 393.61456299 c
+440.50267225 393.61456275 439.62702208 393.33624272 439.01504517 392.77960205 c
+438.40306497 392.22296258 438.09707569 391.51170027 438.09707642 390.64581299 c
+438.09707569 390.13800373 438.21263547 389.67413701 438.4437561 389.25421143 c
+438.67487459 388.8342941 438.97760867 388.49738037 439.35195923 388.24346924 c
+439.72630583 387.98956838 440.14785489 387.79751128 440.61660767 387.66729736 c
+440.96165616 387.57615733 441.48248897 387.4882668 442.17910767 387.40362549 c
+443.59837228 387.2343608 444.64329311 387.03253809 445.31387329 386.79815674 c
+445.32037576 386.55727814 445.32363097 386.40428351 445.32363892 386.33917236 c
+445.32363097 385.62303429 445.15761551 385.1184775 444.82559204 384.82550049 c
+444.37636629 384.42837402 443.70904925 384.22980651 442.82363892 384.22979736 c
+441.99681138 384.22980651 441.38646042 384.37466314 440.99258423 384.66436768 c
+440.5987008 384.95408964 440.30735994 385.46678444 440.11856079 386.20245361 c
+438.39981079 385.96807861 l
+438.55605961 385.23240968 438.81322081 384.63833475 439.17129517 384.18585205 c
+439.52936593 383.73338774 440.04694354 383.3850808 440.72402954 383.14093018 c
+441.40110885 382.89680003 442.18561327 382.77472984 443.07754517 382.77471924 c
+443.96295524 382.77472984 444.68235557 382.87889641 445.23574829 383.08721924 c
+445.78912529 383.29556266 446.19602593 383.55760667 446.45645142 383.87335205 c
+446.71685874 384.18911645 446.89915022 384.58787907 447.00332642 385.06964111 c
+447.06191048 385.36912829 447.09120732 385.90949233 447.09121704 386.69073486 c
+447.09121704 389.03448486 l
+447.09120732 390.66860216 447.12864218 391.70212977 447.20352173 392.1350708 c
+447.27838162 392.56801432 447.42649345 392.98305297 447.64785767 393.38018799 c
+445.81192017 393.38018799 l
+445.62962024 393.01560502 445.51243286 392.58917315 445.46035767 392.10089111 c
+445.46035767 392.10089111 l
+h
+445.31387329 388.17510986 m
+444.67584516 388.43553147 443.71881486 388.65688542 442.44277954 388.83917236 c
+441.72011895 388.94334347 441.20905175 389.06053085 440.90957642 389.19073486 c
+440.61009401 389.32094726 440.37897445 389.51137675 440.21621704 389.76202393 c
+440.05345395 390.01267833 439.97207382 390.29099837 439.97207642 390.59698486 c
+439.97207382 391.06573718 440.1494825 391.45636179 440.50430298 391.76885986 c
+440.8591172 392.08136116 441.37832241 392.23761101 442.06192017 392.23760986 c
+442.73899813 392.23761101 443.34121107 392.08949917 443.86856079 391.79327393 c
+444.39589752 391.49705185 444.78326692 391.09177882 445.03067017 390.57745361 c
+445.2194644 390.1803214 445.31386535 389.59438448 445.31387329 388.81964111 c
+445.31387329 388.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+449.78652954 393.38018799 m
+449.78652954 379.06378174 l
+451.54434204 379.06378174 l
+451.54434204 393.38018799 l
+449.78652954 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+454.20059204 397.37432861 m
+454.00527954 395.72393799 l
+454.3893927 395.82810221 454.72467882 395.88018549 455.01113892 395.88018799 c
+455.40176147 395.88018549 455.71426116 395.81508139 455.94863892 395.68487549 c
+456.18301069 395.55466498 456.37506779 395.3723735 456.52481079 395.13800049 c
+456.6354842 394.96221766 456.81452048 394.52602018 457.06192017 393.82940674 c
+457.09446812 393.73175014 457.1465514 393.58852111 457.21817017 393.39971924 c
+453.28262329 383.00909424 l
+455.17715454 383.00909424 l
+457.33535767 389.01495361 l
+457.61530093 389.77667597 457.86595172 390.57745642 458.08731079 391.41729736 c
+458.28912838 390.61000847 458.53001355 389.82224884 458.80996704 389.05401611 c
+461.02676392 383.00909424 l
+462.78457642 383.00909424 l
+458.83926392 393.55596924 l
+458.41608138 394.69529084 458.08730566 395.47979526 457.85293579 395.90948486 c
+457.54043121 396.48890884 457.18235865 396.9137131 456.77871704 397.18389893 c
+456.37506779 397.45407714 455.89329744 397.58916815 455.33340454 397.58917236 c
+454.99486084 397.58916815 454.61725705 397.51755364 454.20059204 397.37432861 c
+454.20059204 397.37432861 l
+h
+f
+Q
+q
+0 0 0 rg
+468.11660767 391.80792236 m
+468.37051392 393.36065674 l
+467.87571733 393.46482332 467.43300944 393.5169066 467.04238892 393.51690674 c
+466.40436464 393.5169066 465.90957347 393.41599524 465.55801392 393.21417236 c
+465.20644917 393.01234981 464.95905358 392.7470506 464.81582642 392.41827393 c
+464.67259554 392.08949917 464.60098103 391.3977681 464.60098267 390.34307861 c
+464.60098267 384.37628174 l
+463.31192017 384.37628174 l
+463.31192017 383.00909424 l
+464.60098267 383.00909424 l
+464.60098267 380.44073486 l
+466.34902954 379.38604736 l
+466.34902954 383.00909424 l
+468.11660767 383.00909424 l
+468.11660767 384.37628174 l
+466.34902954 384.37628174 l
+466.34902954 390.44073486 l
+466.34902615 390.94203938 466.3799506 391.26430469 466.44180298 391.40753174 c
+466.50364839 391.55076273 466.60455975 391.66469491 466.74453735 391.74932861 c
+466.88450739 391.83396558 467.0847025 391.87628324 467.34512329 391.87628174 c
+467.54043121 391.87628324 467.79759241 391.85349681 468.11660767 391.80792236 c
+468.11660767 391.80792236 l
+h
+f
+Q
+q
+0 0 0 rg
+469.83535767 381.08526611 m
+469.83535767 379.06378174 l
+471.59317017 379.06378174 l
+471.59317017 381.08526611 l
+469.83535767 381.08526611 l
+h
+469.83535767 393.38018799 m
+469.83535767 383.00909424 l
+471.59317017 383.00909424 l
+471.59317017 393.38018799 l
+469.83535767 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+481.04629517 389.58135986 m
+482.77481079 389.80596924 l
+482.58599908 390.99737787 482.10260113 391.92999413 481.32461548 392.6038208 c
+480.5466131 393.27764903 479.59121041 393.61456275 478.45840454 393.61456299 c
+477.03912963 393.61456275 475.89818025 393.15069603 475.03555298 392.22296143 c
+474.17292156 391.29522914 473.74160688 389.96547786 473.74160767 388.23370361 c
+473.74160688 387.11391821 473.92715357 386.13410148 474.29824829 385.29425049 c
+474.66934033 384.45441566 475.23411841 383.82453348 475.99258423 383.40460205 c
+476.75104398 382.98469057 477.57623847 382.77472984 478.46817017 382.77471924 c
+479.59446562 382.77472984 480.51568865 383.05956029 481.23184204 383.62921143 c
+481.94797889 384.19888207 482.4069628 385.00780053 482.60879517 386.05596924 c
+480.89981079 386.31964111 l
+480.7370426 385.62303429 480.44895695 385.09894627 480.03555298 384.74737549 c
+479.62213486 384.39582197 479.12246088 384.2200409 478.53652954 384.22003174 c
+477.65110818 384.2200409 476.93170786 384.53742339 476.37832642 385.17218018 c
+475.82493813 385.80695337 475.5482457 386.81118414 475.54824829 388.18487549 c
+475.5482457 389.57810846 475.81517252 390.59047724 476.34902954 391.22198486 c
+476.88287979 391.85349681 477.57949367 392.1692517 478.43887329 392.16925049 c
+479.12897129 392.1692517 479.70514259 391.95766337 480.16738892 391.53448486 c
+480.62962083 391.11131005 480.92258929 390.46026903 481.04629517 389.58135986 c
+481.04629517 389.58135986 l
+h
+f
+Q
+q
+0 0 0 rg
+491.04629517 392.10089111 m
+490.39524606 392.65427726 489.76861909 393.04490187 489.16641235 393.27276611 c
+488.56419321 393.50063058 487.918035 393.61456275 487.22793579 393.61456299 c
+486.08860975 393.61456275 485.21295958 393.33624272 484.60098267 392.77960205 c
+483.98900247 392.22296258 483.68301319 391.51170027 483.68301392 390.64581299 c
+483.68301319 390.13800373 483.79857297 389.67413701 484.0296936 389.25421143 c
+484.26081209 388.8342941 484.56354617 388.49738037 484.93789673 388.24346924 c
+485.31224333 387.98956838 485.73379239 387.79751128 486.20254517 387.66729736 c
+486.54759366 387.57615733 487.06842647 387.4882668 487.76504517 387.40362549 c
+489.18430978 387.2343608 490.22923061 387.03253809 490.89981079 386.79815674 c
+490.90631326 386.55727814 490.90956847 386.40428351 490.90957642 386.33917236 c
+490.90956847 385.62303429 490.74355301 385.1184775 490.41152954 384.82550049 c
+489.96230379 384.42837402 489.29498675 384.22980651 488.40957642 384.22979736 c
+487.58274888 384.22980651 486.97239792 384.37466314 486.57852173 384.66436768 c
+486.1846383 384.95408964 485.89329744 385.46678444 485.70449829 386.20245361 c
+483.98574829 385.96807861 l
+484.14199711 385.23240968 484.39915831 384.63833475 484.75723267 384.18585205 c
+485.11530343 383.73338774 485.63288104 383.3850808 486.30996704 383.14093018 c
+486.98704635 382.89680003 487.77155077 382.77472984 488.66348267 382.77471924 c
+489.54889274 382.77472984 490.26829307 382.87889641 490.82168579 383.08721924 c
+491.37506279 383.29556266 491.78196343 383.55760667 492.04238892 383.87335205 c
+492.30279624 384.18911645 492.48508772 384.58787907 492.58926392 385.06964111 c
+492.64784798 385.36912829 492.67714482 385.90949233 492.67715454 386.69073486 c
+492.67715454 389.03448486 l
+492.67714482 390.66860216 492.71457968 391.70212977 492.78945923 392.1350708 c
+492.86431912 392.56801432 493.01243095 392.98305297 493.23379517 393.38018799 c
+491.39785767 393.38018799 l
+491.21555774 393.01560502 491.09837036 392.58917315 491.04629517 392.10089111 c
+491.04629517 392.10089111 l
+h
+490.89981079 388.17510986 m
+490.26178266 388.43553147 489.30475236 388.65688542 488.02871704 388.83917236 c
+487.30605645 388.94334347 486.79498925 389.06053085 486.49551392 389.19073486 c
+486.19603151 389.32094726 485.96491195 389.51137675 485.80215454 389.76202393 c
+485.63939145 390.01267833 485.55801132 390.29099837 485.55801392 390.59698486 c
+485.55801132 391.06573718 485.73542 391.45636179 486.09024048 391.76885986 c
+486.4450547 392.08136116 486.96425991 392.23761101 487.64785767 392.23760986 c
+488.32493563 392.23761101 488.92714857 392.08949917 489.45449829 391.79327393 c
+489.98183502 391.49705185 490.36920442 391.09177882 490.61660767 390.57745361 c
+490.8054019 390.1803214 490.89980285 389.59438448 490.89981079 388.81964111 c
+490.89981079 388.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+495.37246704 393.38018799 m
+495.37246704 379.06378174 l
+497.13027954 379.06378174 l
+497.13027954 393.38018799 l
+495.37246704 393.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+416.49551392 418.38018799 m
+416.49551392 417.07159424 l
+415.83795444 418.10024035 414.87115854 418.61456275 413.59512329 418.61456299 c
+412.76829605 418.61456275 412.00820567 418.3866984 411.31484985 417.93096924 c
+410.62148831 417.47524098 410.08437947 416.83884838 409.70352173 416.02178955 c
+409.32266148 415.20473543 409.13223198 414.26560877 409.13223267 413.20440674 c
+409.13223198 412.1692567 409.30475785 411.23013003 409.64981079 410.38702393 c
+409.99486133 409.5439338 410.51243894 408.8977756 411.20254517 408.44854736 c
+411.89264589 407.99933899 412.66412949 407.77472984 413.51699829 407.77471924 c
+414.1419926 407.77472984 414.69863267 407.90656565 415.18692017 408.17022705 c
+415.67519419 408.43390887 416.07232921 408.77733301 416.37832642 409.20050049 c
+416.37832642 404.06378174 l
+418.12637329 404.06378174 l
+418.12637329 418.38018799 l
+416.49551392 418.38018799 l
+h
+410.93887329 413.20440674 m
+410.9388708 414.53253559 411.21881844 415.52537313 411.77871704 416.18292236 c
+412.33860898 416.84047599 412.99941562 417.1692517 413.76113892 417.16925049 c
+414.529362 417.1692517 415.18203062 416.85512441 415.71914673 416.22686768 c
+416.2562483 415.59861525 416.52480271 414.63995735 416.52481079 413.35089111 c
+416.52480271 411.93162673 416.25136549 410.8899611 415.70449829 410.22589111 c
+415.15761658 409.56183743 414.48378913 409.22980651 413.68301392 409.22979736 c
+412.90175946 409.22980651 412.24909084 409.54881661 411.7250061 410.18682861 c
+411.20091481 410.824857 410.9388708 411.83071537 410.93887329 413.20440674 c
+410.93887329 413.20440674 l
+h
+f
+Q
+q
+0 0 0 rg
+427.99942017 415.04034424 m
+429.81582642 415.26495361 l
+429.52935813 416.32615358 428.99875971 417.14972047 428.22402954 417.73565674 c
+427.44928209 418.3215943 426.45969975 418.61456275 425.25527954 418.61456299 c
+423.7383483 418.61456275 422.53555002 418.14744083 421.6468811 417.2131958 c
+420.75820805 416.27895311 420.31387256 414.96873307 420.31387329 413.28253174 c
+420.31387256 411.53774691 420.76309086 410.1835816 421.66152954 409.22003174 c
+422.55996406 408.2565002 423.72532748 407.77472984 425.15762329 407.77471924 c
+426.54433508 407.77472984 427.67714645 408.24673458 428.55606079 409.19073486 c
+429.43495719 410.13475353 429.87440987 411.4628772 429.87442017 413.17510986 c
+429.87440987 413.27928163 429.87115467 413.43553147 429.86465454 413.64385986 c
+422.13027954 413.64385986 l
+422.19538109 414.78318638 422.5176464 415.65558134 423.09707642 416.26104736 c
+423.6764994 416.86651763 424.39915493 417.1692517 425.26504517 417.16925049 c
+425.90957009 417.1692517 426.45969975 416.99998104 426.91543579 416.66143799 c
+427.37115717 416.32289838 427.73248493 415.78253434 427.99942017 415.04034424 c
+427.99942017 415.04034424 l
+h
+422.22793579 412.19854736 m
+428.01895142 412.19854736 l
+427.94081806 411.32615858 427.71946411 410.67186236 427.35488892 410.23565674 c
+426.79498587 409.55858223 426.06907514 409.2200409 425.17715454 409.22003174 c
+424.36985809 409.2200409 423.69114783 409.49022292 423.14102173 410.03057861 c
+422.59088851 410.57095101 422.28652684 411.29360653 422.22793579 412.19854736 c
+422.22793579 412.19854736 l
+h
+f
+Q
+q
+0 0 0 rg
+432.01309204 418.38018799 m
+432.01309204 408.00909424 l
+433.59512329 408.00909424 l
+433.59512329 409.58135986 l
+433.99876584 408.84569231 434.37148682 408.36066676 434.71328735 408.12628174 c
+435.05507989 407.89191723 435.43105607 407.77472984 435.84121704 407.77471924 c
+436.43365924 407.77472984 437.03587218 407.96353174 437.64785767 408.34112549 c
+437.04238892 409.97198486 l
+436.61269552 409.71808728 436.18300845 409.59113428 435.75332642 409.59112549 c
+435.36920718 409.59113428 435.02415544 409.70669406 434.71817017 409.93780518 c
+434.41217688 410.16893318 434.19407814 410.48957088 434.06387329 410.89971924 c
+433.86855764 411.52472609 433.77090148 412.20831916 433.77090454 412.95050049 c
+433.77090454 418.38018799 l
+432.01309204 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+438.72207642 406.08526611 m
+438.72207642 404.06378174 l
+440.47988892 404.06378174 l
+440.47988892 406.08526611 l
+438.72207642 406.08526611 l
+h
+438.72207642 418.38018799 m
+438.72207642 408.00909424 l
+440.47988892 408.00909424 l
+440.47988892 418.38018799 l
+438.72207642 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+446.04629517 418.38018799 m
+442.10098267 408.00909424 l
+443.95645142 408.00909424 l
+446.18301392 414.22003174 l
+446.42389476 414.89060814 446.6452487 415.58722203 446.84707642 416.30987549 c
+447.00332126 415.76300311 447.22142 415.10545168 447.50137329 414.33721924 c
+449.80606079 408.00909424 l
+451.61270142 408.00909424 l
+447.68692017 418.38018799 l
+446.04629517 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+459.93301392 417.10089111 m
+459.28196481 417.65427726 458.65533784 418.04490187 458.0531311 418.27276611 c
+457.45091196 418.50063058 456.80475375 418.61456275 456.11465454 418.61456299 c
+454.9753285 418.61456275 454.09967833 418.33624272 453.48770142 417.77960205 c
+452.87572122 417.22296258 452.56973194 416.51170027 452.56973267 415.64581299 c
+452.56973194 415.13800373 452.68529172 414.67413701 452.91641235 414.25421143 c
+453.14753084 413.8342941 453.45026492 413.49738037 453.82461548 413.24346924 c
+454.19896208 412.98956838 454.62051114 412.79751128 455.08926392 412.66729736 c
+455.43431241 412.57615733 455.95514522 412.4882668 456.65176392 412.40362549 c
+458.07102853 412.2343608 459.11594936 412.03253809 459.78652954 411.79815674 c
+459.79303201 411.55727814 459.79628722 411.40428351 459.79629517 411.33917236 c
+459.79628722 410.62303429 459.63027176 410.1184775 459.29824829 409.82550049 c
+458.84902254 409.42837402 458.1817055 409.22980651 457.29629517 409.22979736 c
+456.46946763 409.22980651 455.85911667 409.37466314 455.46524048 409.66436768 c
+455.07135705 409.95408964 454.78001619 410.46678444 454.59121704 411.20245361 c
+452.87246704 410.96807861 l
+453.02871586 410.23240968 453.28587706 409.63833475 453.64395142 409.18585205 c
+454.00202218 408.73338774 454.51959979 408.3850808 455.19668579 408.14093018 c
+455.8737651 407.89680003 456.65826952 407.77472984 457.55020142 407.77471924 c
+458.43561149 407.77472984 459.15501182 407.87889641 459.70840454 408.08721924 c
+460.26178154 408.29556266 460.66868218 408.55760667 460.92910767 408.87335205 c
+461.18951499 409.18911645 461.37180647 409.58787907 461.47598267 410.06964111 c
+461.53456673 410.36912829 461.56386357 410.90949233 461.56387329 411.69073486 c
+461.56387329 414.03448486 l
+461.56386357 415.66860216 461.60129843 416.70212977 461.67617798 417.1350708 c
+461.75103787 417.56801432 461.8991497 417.98305297 462.12051392 418.38018799 c
+460.28457642 418.38018799 l
+460.10227649 418.01560502 459.98508911 417.58917315 459.93301392 417.10089111 c
+459.93301392 417.10089111 l
+h
+459.78652954 413.17510986 m
+459.14850141 413.43553147 458.19147111 413.65688542 456.91543579 413.83917236 c
+456.1927752 413.94334347 455.681708 414.06053085 455.38223267 414.19073486 c
+455.08275026 414.32094726 454.8516307 414.51137675 454.68887329 414.76202393 c
+454.5261102 415.01267833 454.44473007 415.29099837 454.44473267 415.59698486 c
+454.44473007 416.06573718 454.62213875 416.45636179 454.97695923 416.76885986 c
+455.33177345 417.08136116 455.85097866 417.23761101 456.53457642 417.23760986 c
+457.21165438 417.23761101 457.81386732 417.08949917 458.34121704 416.79327393 c
+458.86855377 416.49705185 459.25592317 416.09177882 459.50332642 415.57745361 c
+459.69212065 415.1803214 459.7865216 414.59438448 459.78652954 413.81964111 c
+459.78652954 413.17510986 l
+h
+f
+Q
+q
+0 0 0 rg
+468.13613892 416.80792236 m
+468.39004517 418.36065674 l
+467.89524858 418.46482332 467.45254069 418.5169066 467.06192017 418.51690674 c
+466.42389589 418.5169066 465.92910472 418.41599524 465.57754517 418.21417236 c
+465.22598042 418.01234981 464.97858483 417.7470506 464.83535767 417.41827393 c
+464.69212679 417.08949917 464.62051228 416.3977681 464.62051392 415.34307861 c
+464.62051392 409.37628174 l
+463.33145142 409.37628174 l
+463.33145142 408.00909424 l
+464.62051392 408.00909424 l
+464.62051392 405.44073486 l
+466.36856079 404.38604736 l
+466.36856079 408.00909424 l
+468.13613892 408.00909424 l
+468.13613892 409.37628174 l
+466.36856079 409.37628174 l
+466.36856079 415.44073486 l
+466.3685574 415.94203938 466.39948185 416.26430469 466.46133423 416.40753174 c
+466.52317964 416.55076273 466.624091 416.66469491 466.7640686 416.74932861 c
+466.90403864 416.83396558 467.10423375 416.87628324 467.36465454 416.87628174 c
+467.55996246 416.87628324 467.81712366 416.85349681 468.13613892 416.80792236 c
+468.13613892 416.80792236 l
+h
+f
+Q
+q
+0 0 0 rg
+469.19082642 413.19464111 m
+469.19082575 411.2740753 469.72467938 409.85155068 470.79238892 408.92706299 c
+471.68431284 408.15884404 472.77155134 407.77472984 474.05410767 407.77471924 c
+475.47988196 407.77472984 476.64524538 408.24185177 477.55020142 409.17608643 c
+478.4551394 410.11033949 478.90761291 411.4010283 478.90762329 413.04815674 c
+478.90761291 414.38279615 478.7074178 415.43259979 478.30703735 416.1975708 c
+477.90663735 416.96254618 477.32395564 417.5566211 476.55899048 417.97979736 c
+475.79400925 418.40297442 474.95904915 418.61456275 474.05410767 418.61456299 c
+472.60228067 418.61456275 471.42877924 418.14906843 470.53359985 417.21807861 c
+469.63841645 416.28709112 469.19082575 414.94594663 469.19082642 413.19464111 c
+469.19082642 413.19464111 l
+h
+470.99746704 413.19464111 m
+470.99746457 414.52276997 471.28717782 415.51723512 471.86660767 416.17803955 c
+472.44603083 416.83884838 473.17519677 417.1692517 474.05410767 417.16925049 c
+474.9264971 417.1692517 475.65240783 416.83722078 476.23184204 416.17315674 c
+476.81126084 415.50909711 477.10097409 414.49672833 477.10098267 413.13604736 c
+477.10097409 411.85350181 476.80963324 410.88182309 476.22695923 410.2210083 c
+475.64426982 409.56020983 474.91998669 409.22980651 474.05410767 409.22979736 c
+473.17519677 409.22980651 472.44603083 409.55858223 471.86660767 410.21612549 c
+471.28717782 410.87368508 470.99746457 411.86652263 470.99746704 413.19464111 c
+470.99746704 413.19464111 l
+h
+f
+Q
+q
+0 0 0 rg
+480.95840454 418.38018799 m
+480.95840454 408.00909424 l
+482.54043579 408.00909424 l
+482.54043579 409.58135986 l
+482.94407834 408.84569231 483.31679932 408.36066676 483.65859985 408.12628174 c
+484.00039239 407.89191723 484.37636857 407.77472984 484.78652954 407.77471924 c
+485.37897174 407.77472984 485.98118468 407.96353174 486.59317017 408.34112549 c
+485.98770142 409.97198486 l
+485.55800802 409.71808728 485.12832095 409.59113428 484.69863892 409.59112549 c
+484.31451968 409.59113428 483.96946794 409.70669406 483.66348267 409.93780518 c
+483.35748938 410.16893318 483.13939064 410.48957088 483.00918579 410.89971924 c
+482.81387014 411.52472609 482.71621398 412.20831916 482.71621704 412.95050049 c
+482.71621704 418.38018799 l
+480.95840454 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+488.15567017 418.38018799 m
+488.15567017 416.37823486 l
+490.15762329 416.37823486 l
+490.15762329 418.38018799 l
+488.15567017 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+493.70254517 418.38018799 m
+493.70254517 416.37823486 l
+495.70449829 416.37823486 l
+495.70449829 418.38018799 l
+493.70254517 418.38018799 l
+h
+f
+Q
+q
+0 0 0 rg
+499.24942017 418.38018799 m
+499.24942017 416.37823486 l
+501.25137329 416.37823486 l
+501.25137329 418.38018799 l
+499.24942017 418.38018799 l
+h
+f
+Q
+q
+0 0 0 RG
+[] 0 d
+2 w
+0 j
+0 J
+4 M
+395.71429443 339.80877686 m
+515.71429443 339.80877686 l
+515.71429443 434.09449005 l
+395.71429443 434.09449005 l
+395.71429443 339.80877686 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+206.35715 138.3618 m
+352.92858 139.13938 l
+S
+Q
+q
+-1.19998311 -0.00636606 0.00636606 -1.19998311 337.92879108 139.05980422 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+470.64287 140.23901 m
+551.5 141.32071 l
+S
+Q
+q
+-1.19989263 -0.01605206 0.01605206 -1.19989263 536.50134208 141.12005919 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+699.21428 140.48835 m
+767.21429 138.81229 l
+S
+Q
+q
+-1.19963565 0.02956854 -0.02956854 -1.19963565 752.21884433 139.18189681 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[] 0 d
+1.5 w
+0 j
+0 J
+4 M
+828.36474 185.45163 m
+828.75359 309.8802 l
+S
+Q
+q
+-0.00375009 -1.19999414 1.19999414 -0.00375009 828.70671394 294.88027325 cm
+q
+0 0 0 rg
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+f*
+Q
+q
+0 0 0 RG
+[] 0 d
+1.25 w
+0 j
+0 J
+4 M
+0 0 m
+5 -5 l
+-12.5 0 l
+5 5 l
+0 0 l
+h
+S
+Q
+Q
+q
+0 0 0 RG
+[1.5 4.5] 0 d
+1.5 w
+0 j
+0 J
+4 M
+305.71429443 39.80876923 m
+940 39.80876923 l
+940 241.23734283 l
+305.71429443 241.23734283 l
+305.71429443 39.80876923 l
+h
+S
+Q
+q
+0 0 0 rg
+312.37167358 232.66590881 m
+312.37167358 218.34950256 l
+317.30331421 218.34950256 l
+318.41658787 218.34951688 319.2661964 218.41787619 319.85214233 218.55458069 c
+320.67244499 218.74339669 321.37231408 219.08519323 321.95175171 219.57997131 c
+322.70694816 220.21800459 323.27172625 221.03343347 323.64608765 222.02626038 c
+324.02042341 223.01910856 324.20759771 224.15354753 324.20761108 225.42958069 c
+324.20759771 226.51682642 324.08064471 227.48036712 323.82675171 228.32020569 c
+323.57283271 229.16005294 323.24731221 229.85503923 322.85018921 230.40516663 c
+322.45304217 230.95529854 322.01847229 231.38824082 321.54647827 231.70399475 c
+321.07446282 232.01975061 320.50480193 232.25900818 319.8374939 232.42176819 c
+319.17016785 232.58452869 318.40356705 232.66590881 317.53768921 232.66590881 c
+312.37167358 232.66590881 l
+h
+314.26620483 230.97645569 m
+317.32284546 230.97645569 l
+318.26684844 230.97645738 319.00740759 230.88856684 319.54452515 230.71278381 c
+320.08162527 230.53700469 320.50968474 230.28960911 320.82870483 229.97059631 c
+321.27791313 229.52138071 321.62784768 228.91754017 321.87850952 228.15907288 c
+322.12914926 227.4006146 322.25447466 226.48101917 322.25448608 225.40028381 c
+322.25447466 223.90289674 322.00870667 222.75218175 321.5171814 221.94813538 c
+321.02563474 221.14411044 320.42830461 220.605374 319.72518921 220.33192444 c
+319.21736832 220.13662447 318.40031185 220.03896832 317.27401733 220.03895569 c
+314.26620483 220.03895569 l
+314.26620483 230.97645569 l
+h
+f
+Q
+q
+0 0 0 rg
+326.52206421 236.66004944 m
+326.32675171 235.00965881 l
+326.71086486 235.11382303 327.04615099 235.16590631 327.33261108 235.16590881 c
+327.72323364 235.16590631 328.03573333 235.10080221 328.27011108 234.97059631 c
+328.50448286 234.84038581 328.69653996 234.65809432 328.84628296 234.42372131 c
+328.95695637 234.24793848 329.13599265 233.811741 329.38339233 233.11512756 c
+329.41594028 233.01747096 329.46802356 232.87424194 329.53964233 232.68544006 c
+325.60409546 222.29481506 l
+327.49862671 222.29481506 l
+329.65682983 228.30067444 l
+329.9367731 229.06239679 330.18742389 229.86317724 330.40878296 230.70301819 c
+330.61060055 229.89572929 330.85148572 229.10796966 331.13143921 228.33973694 c
+333.34823608 222.29481506 l
+335.10604858 222.29481506 l
+331.16073608 232.84169006 l
+330.73755354 233.98101167 330.40877783 234.76551609 330.17440796 235.19520569 c
+329.86190338 235.77462966 329.50383082 236.19943393 329.10018921 236.46961975 c
+328.69653996 236.73979797 328.21476961 236.87488898 327.65487671 236.87489319 c
+327.31633301 236.87488898 326.93872922 236.80327447 326.52206421 236.66004944 c
+326.52206421 236.66004944 l
+h
+f
+Q
+q
+0 0 0 rg
+336.60018921 232.66590881 m
+336.60018921 222.29481506 l
+338.18222046 222.29481506 l
+338.18222046 223.76942444 l
+338.94393555 222.63011156 340.04419486 222.06045067 341.48300171 222.06044006 c
+342.10799488 222.06045067 342.68253858 222.17275524 343.20663452 222.39735413 c
+343.73071461 222.62197354 344.12296683 222.9165696 344.38339233 223.28114319 c
+344.64379964 223.64573554 344.82609112 224.07867782 344.93026733 224.57997131 c
+344.99536179 224.90549991 345.02791384 225.4751608 345.02792358 226.28895569 c
+345.02792358 232.66590881 l
+343.27011108 232.66590881 l
+343.27011108 226.35731506 l
+343.2701031 225.64117625 343.20174379 225.10569502 343.06503296 224.75086975 c
+342.92830656 224.39606031 342.68579378 224.11285747 342.3374939 223.90126038 c
+341.9891799 223.68968081 341.58065166 223.58388665 341.11190796 223.58387756 c
+340.36320496 223.58388665 339.71704675 223.82151662 339.1734314 224.29676819 c
+338.62980826 224.7720365 338.35799863 225.67372831 338.35800171 227.00184631 c
+338.35800171 232.66590881 l
+336.60018921 232.66590881 l
+h
+f
+Q
+q
+0 0 0 rg
+354.50057983 231.38661194 m
+353.84953073 231.93999808 353.22290375 232.33062269 352.62069702 232.55848694 c
+352.01847788 232.7863514 351.37231967 232.90028358 350.68222046 232.90028381 c
+349.54289441 232.90028358 348.66724425 232.62196354 348.05526733 232.06532288 c
+347.44328714 231.50868341 347.13729786 230.7974211 347.13729858 229.93153381 c
+347.13729786 229.42372456 347.25285764 228.95985783 347.48397827 228.53993225 c
+347.71509676 228.12001492 348.01783083 227.7831012 348.3921814 227.52919006 c
+348.766528 227.2752892 349.18807706 227.0832321 349.65682983 226.95301819 c
+350.00187833 226.86187816 350.52271114 226.77398762 351.21932983 226.68934631 c
+352.63859444 226.52008163 353.68351527 226.31825891 354.35409546 226.08387756 c
+354.36059793 225.84299897 354.36385313 225.69000433 354.36386108 225.62489319 c
+354.36385313 224.90875511 354.19783768 224.40419833 353.86581421 224.11122131 c
+353.41658846 223.71409485 352.74927142 223.51552734 351.86386108 223.51551819 c
+351.03703354 223.51552734 350.42668259 223.66038396 350.0328064 223.9500885 c
+349.63892296 224.23981047 349.34758211 224.75250527 349.15878296 225.48817444 c
+347.44003296 225.25379944 l
+347.59628178 224.5181305 347.85344298 223.92405558 348.21151733 223.47157288 c
+348.5695881 223.01910856 349.0871657 222.67080162 349.76425171 222.426651 c
+350.44133102 222.18252086 351.22583544 222.06045067 352.11776733 222.06044006 c
+353.00317741 222.06045067 353.72257773 222.16461723 354.27597046 222.37294006 c
+354.82934746 222.58128348 355.2362481 222.84332749 355.49667358 223.15907288 c
+355.75708091 223.47483728 355.93937239 223.8735999 356.04354858 224.35536194 c
+356.10213265 224.65484912 356.13142949 225.19521316 356.13143921 225.97645569 c
+356.13143921 228.32020569 l
+356.13142949 229.95432298 356.16886435 230.9878506 356.2437439 231.42079163 c
+356.31860378 231.85373515 356.46671562 232.26877379 356.68807983 232.66590881 c
+354.85214233 232.66590881 l
+354.66984241 232.30132584 354.55265503 231.87489398 354.50057983 231.38661194 c
+354.50057983 231.38661194 l
+h
+354.35409546 227.46083069 m
+353.71606732 227.7212523 352.75903703 227.94260625 351.48300171 228.12489319 c
+350.76034111 228.22906429 350.24927392 228.34625167 349.94979858 228.47645569 c
+349.65031618 228.60666808 349.41919662 228.79709758 349.25643921 229.04774475 c
+349.09367611 229.29839916 349.01229599 229.57671919 349.01229858 229.88270569 c
+349.01229599 230.351458 349.18970466 230.74208261 349.54452515 231.05458069 c
+349.89933937 231.36708199 350.41854458 231.52333183 351.10214233 231.52333069 c
+351.7792203 231.52333183 352.38143324 231.37522 352.90878296 231.07899475 c
+353.43611969 230.78277268 353.82348909 230.37749964 354.07089233 229.86317444 c
+354.25968657 229.46604222 354.35408752 228.88010531 354.35409546 228.10536194 c
+354.35409546 227.46083069 l
+h
+f
+Q
+q
+0 0 0 rg
+358.84628296 232.66590881 m
+358.84628296 222.29481506 l
+360.42831421 222.29481506 l
+360.42831421 223.86708069 l
+360.83195676 223.13141314 361.20467774 222.64638758 361.54647827 222.41200256 c
+361.88827081 222.17763805 362.26424699 222.06045067 362.67440796 222.06044006 c
+363.26685016 222.06045067 363.8690631 222.24925256 364.48104858 222.62684631 c
+363.87557983 224.25770569 l
+363.44588644 224.0038081 363.01619937 223.8768551 362.58651733 223.87684631 c
+362.2023981 223.8768551 361.85734636 223.99241488 361.55136108 224.223526 c
+361.2453678 224.454654 361.02726906 224.7752917 360.89706421 225.18544006 c
+360.70174855 225.81044692 360.6040924 226.49403999 360.60409546 227.23622131 c
+360.60409546 232.66590881 l
+358.84628296 232.66590881 l
+h
+f
+Q
+q
+0 0 0 rg
+372.64511108 229.32606506 m
+374.46151733 229.55067444 l
+374.17504905 230.61187441 373.64445062 231.43544129 372.86972046 232.02137756 c
+372.09497301 232.60731512 371.10539066 232.90028358 369.90097046 232.90028381 c
+368.38403922 232.90028358 367.18124094 232.43316165 366.29257202 231.49891663 c
+365.40389897 230.56467394 364.95956348 229.25445389 364.95956421 227.56825256 c
+364.95956348 225.82346774 365.40878178 224.46930243 366.30722046 223.50575256 c
+367.20565498 222.54222102 368.3710184 222.06045067 369.80331421 222.06044006 c
+371.190026 222.06045067 372.32283736 222.53245541 373.20175171 223.47645569 c
+374.08064811 224.42047435 374.52010079 225.74859802 374.52011108 227.46083069 c
+374.52010079 227.56500246 374.51684559 227.7212523 374.51034546 227.92958069 c
+366.77597046 227.92958069 l
+366.84107201 229.0689072 367.16333731 229.94130216 367.74276733 230.54676819 c
+368.32219032 231.15223845 369.04484585 231.45497252 369.91073608 231.45497131 c
+370.55526101 231.45497252 371.10539066 231.28570186 371.56112671 230.94715881 c
+372.01684809 230.6086192 372.37817585 230.06825516 372.64511108 229.32606506 c
+372.64511108 229.32606506 l
+h
+366.87362671 226.48426819 m
+372.66464233 226.48426819 l
+372.58650897 225.61187941 372.36515503 224.95758319 372.00057983 224.52137756 c
+371.44067679 223.84430305 370.71476605 223.50576172 369.82284546 223.50575256 c
+369.015549 223.50576172 368.33683875 223.77594375 367.78671265 224.31629944 c
+367.23657943 224.85667183 366.93221775 225.57932736 366.87362671 226.48426819 c
+366.87362671 226.48426819 l
+h
+f
+Q
+q
+0 0 0 rg
+382.22518921 236.64051819 m
+382.22518921 222.29481506 l
+383.82675171 222.29481506 l
+383.82675171 223.64247131 l
+384.20435258 223.11513711 384.63078444 222.7196297 385.10604858 222.45594788 c
+385.58130433 222.19228647 386.15747563 222.06045067 386.83456421 222.06044006 c
+387.71997406 222.06045067 388.50122328 222.28831502 389.17831421 222.74403381 c
+389.85538859 223.19977245 390.36645579 223.84267545 390.71151733 224.67274475 c
+391.05655927 225.50283004 391.22908514 226.41265986 391.22909546 227.40223694 c
+391.22908514 228.46343906 391.03865564 229.41884175 390.6578064 230.26844788 c
+390.27693765 231.1180588 389.72355279 231.76909981 388.99765015 232.22157288 c
+388.27173132 232.67404683 387.50838573 232.90028358 386.70761108 232.90028381 c
+386.12166837 232.90028358 385.59595275 232.77658579 385.13046265 232.52919006 c
+384.6649641 232.28179461 384.2824775 231.96929493 383.98300171 231.59169006 c
+383.98300171 236.64051819 l
+382.22518921 236.64051819 l
+h
+383.81698608 227.53895569 m
+383.81698317 228.8735949 384.0871652 229.85992204 384.62753296 230.49794006 c
+385.16789328 231.13596243 385.8221895 231.45497252 386.59042358 231.45497131 c
+387.37166712 231.45497252 388.04061176 231.12456921 388.59725952 230.46376038 c
+389.1538919 229.80295595 389.43221193 228.77919395 389.43222046 227.39247131 c
+389.43221193 226.07086333 389.16040231 225.08128098 388.61679077 224.42372131 c
+388.07316381 223.76617813 387.4237504 223.43740242 386.66854858 223.43739319 c
+385.91984565 223.43740242 385.25741142 223.78733696 384.6812439 224.48719788 c
+384.10506882 225.18707515 383.81698317 226.20432673 383.81698608 227.53895569 c
+383.81698608 227.53895569 l
+h
+f
+Q
+q
+0 0 0 rg
+393.33847046 232.66590881 m
+393.33847046 222.29481506 l
+394.92050171 222.29481506 l
+394.92050171 223.86708069 l
+395.32414426 223.13141314 395.69686524 222.64638758 396.03866577 222.41200256 c
+396.38045831 222.17763805 396.75643449 222.06045067 397.16659546 222.06044006 c
+397.75903766 222.06045067 398.3612506 222.24925256 398.97323608 222.62684631 c
+398.36776733 224.25770569 l
+397.93807394 224.0038081 397.50838687 223.8768551 397.07870483 223.87684631 c
+396.6945856 223.8768551 396.34953386 223.99241488 396.04354858 224.223526 c
+395.7375553 224.454654 395.51945656 224.7752917 395.38925171 225.18544006 c
+395.19393605 225.81044692 395.0962799 226.49403999 395.09628296 227.23622131 c
+395.09628296 232.66590881 l
+393.33847046 232.66590881 l
+h
+f
+Q
+q
+0 0 0 rg
+407.13729858 229.32606506 m
+408.95370483 229.55067444 l
+408.66723655 230.61187441 408.13663812 231.43544129 407.36190796 232.02137756 c
+406.58716051 232.60731512 405.59757816 232.90028358 404.39315796 232.90028381 c
+402.87622672 232.90028358 401.67342844 232.43316165 400.78475952 231.49891663 c
+399.89608647 230.56467394 399.45175098 229.25445389 399.45175171 227.56825256 c
+399.45175098 225.82346774 399.90096928 224.46930243 400.79940796 223.50575256 c
+401.69784248 222.54222102 402.8632059 222.06045067 404.29550171 222.06044006 c
+405.6822135 222.06045067 406.81502486 222.53245541 407.69393921 223.47645569 c
+408.57283561 224.42047435 409.01228829 225.74859802 409.01229858 227.46083069 c
+409.01228829 227.56500246 409.00903309 227.7212523 409.00253296 227.92958069 c
+401.26815796 227.92958069 l
+401.33325951 229.0689072 401.65552481 229.94130216 402.23495483 230.54676819 c
+402.81437782 231.15223845 403.53703335 231.45497252 404.40292358 231.45497131 c
+405.04744851 231.45497252 405.59757816 231.28570186 406.05331421 230.94715881 c
+406.50903559 230.6086192 406.87036335 230.06825516 407.13729858 229.32606506 c
+407.13729858 229.32606506 l
+h
+401.36581421 226.48426819 m
+407.15682983 226.48426819 l
+407.07869647 225.61187941 406.85734253 224.95758319 406.49276733 224.52137756 c
+405.93286429 223.84430305 405.20695355 223.50576172 404.31503296 223.50575256 c
+403.5077365 223.50576172 402.82902625 223.77594375 402.27890015 224.31629944 c
+401.72876693 224.85667183 401.42440525 225.57932736 401.36581421 226.48426819 c
+401.36581421 226.48426819 l
+h
+f
+Q
+q
+0 0 0 rg
+411.17050171 236.64051819 m
+411.17050171 222.29481506 l
+412.77206421 222.29481506 l
+412.77206421 223.64247131 l
+413.14966508 223.11513711 413.57609694 222.7196297 414.05136108 222.45594788 c
+414.52661683 222.19228647 415.10278813 222.06045067 415.77987671 222.06044006 c
+416.66528656 222.06045067 417.44653578 222.28831502 418.12362671 222.74403381 c
+418.80070109 223.19977245 419.31176829 223.84267545 419.65682983 224.67274475 c
+420.00187177 225.50283004 420.17439764 226.41265986 420.17440796 227.40223694 c
+420.17439764 228.46343906 419.98396814 229.41884175 419.6031189 230.26844788 c
+419.22225015 231.1180588 418.66886529 231.76909981 417.94296265 232.22157288 c
+417.21704382 232.67404683 416.45369823 232.90028358 415.65292358 232.90028381 c
+415.06698087 232.90028358 414.54126525 232.77658579 414.07577515 232.52919006 c
+413.6102766 232.28179461 413.22779 231.96929493 412.92831421 231.59169006 c
+412.92831421 236.64051819 l
+411.17050171 236.64051819 l
+h
+412.76229858 227.53895569 m
+412.76229567 228.8735949 413.0324777 229.85992204 413.57284546 230.49794006 c
+414.11320578 231.13596243 414.767502 231.45497252 415.53573608 231.45497131 c
+416.31697962 231.45497252 416.98592426 231.12456921 417.54257202 230.46376038 c
+418.0992044 229.80295595 418.37752443 228.77919395 418.37753296 227.39247131 c
+418.37752443 226.07086333 418.10571481 225.08128098 417.56210327 224.42372131 c
+417.01847631 223.76617813 416.3690629 223.43740242 415.61386108 223.43739319 c
+414.86515815 223.43740242 414.20272392 223.78733696 413.6265564 224.48719788 c
+413.05038132 225.18707515 412.76229567 226.20432673 412.76229858 227.53895569 c
+412.76229858 227.53895569 l
+h
+f
+Q
+q
+0 0 0 rg
+422.28378296 232.66590881 m
+422.28378296 222.29481506 l
+423.86581421 222.29481506 l
+423.86581421 223.86708069 l
+424.26945676 223.13141314 424.64217774 222.64638758 424.98397827 222.41200256 c
+425.32577081 222.17763805 425.70174699 222.06045067 426.11190796 222.06044006 c
+426.70435016 222.06045067 427.3065631 222.24925256 427.91854858 222.62684631 c
+427.31307983 224.25770569 l
+426.88338644 224.0038081 426.45369937 223.8768551 426.02401733 223.87684631 c
+425.6398981 223.8768551 425.29484636 223.99241488 424.98886108 224.223526 c
+424.6828678 224.454654 424.46476906 224.7752917 424.33456421 225.18544006 c
+424.13924855 225.81044692 424.0415924 226.49403999 424.04159546 227.23622131 c
+424.04159546 232.66590881 l
+422.28378296 232.66590881 l
+h
+f
+Q
+q
+0 0 0 rg
+428.32870483 227.48036194 m
+428.32870417 225.55979613 428.8625578 224.13727151 429.93026733 223.21278381 c
+430.82219126 222.44456487 431.90942976 222.06045067 433.19198608 222.06044006 c
+434.61776038 222.06045067 435.7831238 222.5275726 436.68807983 223.46180725 c
+437.59301782 224.39606031 438.04549133 225.68674913 438.04550171 227.33387756 c
+438.04549133 228.66851698 437.84529622 229.71832062 437.44491577 230.48329163 c
+437.04451577 231.248267 436.46183406 231.84234193 435.6968689 232.26551819 c
+434.93188767 232.68869525 434.09692757 232.90028358 433.19198608 232.90028381 c
+431.74015909 232.90028358 430.56665766 232.43478925 429.67147827 231.50379944 c
+428.77629487 230.57281195 428.32870417 229.23166746 428.32870483 227.48036194 c
+428.32870483 227.48036194 l
+h
+430.13534546 227.48036194 m
+430.13534299 228.8084908 430.42505624 229.80295595 431.00448608 230.46376038 c
+431.58390925 231.12456921 432.31307519 231.45497252 433.19198608 231.45497131 c
+434.06437552 231.45497252 434.79028625 231.12294161 435.36972046 230.45887756 c
+435.94913926 229.79481793 436.23885251 228.78244916 436.23886108 227.42176819 c
+436.23885251 226.13922263 435.94751166 225.16754392 435.36483765 224.50672913 c
+434.78214824 223.84593065 434.05786511 223.51552734 433.19198608 223.51551819 c
+432.31307519 223.51552734 431.58390925 223.84430305 431.00448608 224.50184631 c
+430.42505624 225.1594059 430.13534299 226.15224345 430.13534546 227.48036194 c
+430.13534546 227.48036194 l
+h
+f
+Q
+q
+0 0 0 rg
+446.88339233 228.86708069 m
+448.61190796 229.09169006 l
+448.42309625 230.2830987 447.9396983 231.21571495 447.16171265 231.88954163 c
+446.38371027 232.56336985 445.42830758 232.90028358 444.29550171 232.90028381 c
+442.8762268 232.90028358 441.73527742 232.43641686 440.87265015 231.50868225 c
+440.01001873 230.58094996 439.57870405 229.25119869 439.57870483 227.51942444 c
+439.57870405 226.39963904 439.76425074 225.41982231 440.13534546 224.57997131 c
+440.5064375 223.74013649 441.07121558 223.11025431 441.8296814 222.69032288 c
+442.58814115 222.2704114 443.41333563 222.06045067 444.30526733 222.06044006 c
+445.43156278 222.06045067 446.35278582 222.34528111 447.06893921 222.91493225 c
+447.78507605 223.48460289 448.24405997 224.29352135 448.44589233 225.34169006 c
+446.73690796 225.60536194 l
+446.57413977 224.90875511 446.28605412 224.38466709 445.87265015 224.03309631 c
+445.45923203 223.6815428 444.95955805 223.50576172 444.37362671 223.50575256 c
+443.48820535 223.50576172 442.76880503 223.82314422 442.21542358 224.457901 c
+441.6620353 225.0926742 441.38534287 226.09690497 441.38534546 227.47059631 c
+441.38534287 228.86382928 441.65226969 229.87619806 442.18612671 230.50770569 c
+442.71997695 231.13921763 443.41659084 231.45497252 444.27597046 231.45497131 c
+444.96606846 231.45497252 445.54223976 231.24338419 446.00448608 230.82020569 c
+446.466718 230.39703087 446.75968646 229.74598986 446.88339233 228.86708069 c
+446.88339233 228.86708069 l
+h
+f
+Q
+q
+0 0 0 rg
+457.21542358 229.32606506 m
+459.03182983 229.55067444 l
+458.74536155 230.61187441 458.21476312 231.43544129 457.44003296 232.02137756 c
+456.66528551 232.60731512 455.67570316 232.90028358 454.47128296 232.90028381 c
+452.95435172 232.90028358 451.75155344 232.43316165 450.86288452 231.49891663 c
+449.97421147 230.56467394 449.52987598 229.25445389 449.52987671 227.56825256 c
+449.52987598 225.82346774 449.97909428 224.46930243 450.87753296 223.50575256 c
+451.77596748 222.54222102 452.9413309 222.06045067 454.37362671 222.06044006 c
+455.7603385 222.06045067 456.89314986 222.53245541 457.77206421 223.47645569 c
+458.65096061 224.42047435 459.09041329 225.74859802 459.09042358 227.46083069 c
+459.09041329 227.56500246 459.08715809 227.7212523 459.08065796 227.92958069 c
+451.34628296 227.92958069 l
+451.41138451 229.0689072 451.73364981 229.94130216 452.31307983 230.54676819 c
+452.89250282 231.15223845 453.61515835 231.45497252 454.48104858 231.45497131 c
+455.12557351 231.45497252 455.67570316 231.28570186 456.13143921 230.94715881 c
+456.58716059 230.6086192 456.94848835 230.06825516 457.21542358 229.32606506 c
+457.21542358 229.32606506 l
+h
+451.44393921 226.48426819 m
+457.23495483 226.48426819 l
+457.15682147 225.61187941 456.93546753 224.95758319 456.57089233 224.52137756 c
+456.01098929 223.84430305 455.28507855 223.50576172 454.39315796 223.50575256 c
+453.5858615 223.50576172 452.90715125 223.77594375 452.35702515 224.31629944 c
+451.80689193 224.85667183 451.50253025 225.57932736 451.44393921 226.48426819 c
+451.44393921 226.48426819 l
+h
+f
+Q
+q
+0 0 0 rg
+460.54550171 229.57020569 m
+462.28378296 229.29676819 l
+462.38143676 229.99338544 462.65324638 230.52723908 463.09921265 230.89833069 c
+463.54517257 231.26942583 464.16854435 231.45497252 464.96932983 231.45497131 c
+465.77661565 231.45497252 466.37557339 231.29058467 466.76620483 230.96180725 c
+467.15682261 230.63303324 467.35213491 230.24729144 467.35214233 229.80458069 c
+467.35213491 229.40744853 467.17960904 229.09494884 466.83456421 228.86708069 c
+466.59367213 228.71083464 465.99471439 228.51226713 465.03768921 228.27137756 c
+463.74862289 227.94586145 462.8550691 227.66428621 462.35702515 227.426651 c
+461.85897634 227.18902627 461.48137255 226.86025056 461.22421265 226.44032288 c
+460.96705015 226.02040765 460.83846955 225.55654092 460.83847046 225.04872131 c
+460.83846955 224.58648981 460.94426372 224.15843034 461.15585327 223.76454163 c
+461.36744038 223.37067071 461.65552603 223.0435226 462.02011108 222.78309631 c
+462.29354622 222.58128348 462.6662672 222.41038521 463.13827515 222.270401 c
+463.61027667 222.13043758 464.11646106 222.06045067 464.65682983 222.06044006 c
+465.47062638 222.06045067 466.18514389 222.17763805 466.80038452 222.41200256 c
+467.41561141 222.64638758 467.86971252 222.96377008 468.16268921 223.364151 c
+468.45564943 223.76455053 468.65747215 224.30003176 468.76815796 224.97059631 c
+467.04940796 225.20497131 l
+466.97127592 224.67112514 466.74503917 224.25445889 466.37069702 223.95497131 c
+465.996342 223.65550116 465.46737117 223.50576172 464.78378296 223.50575256 c
+463.97648725 223.50576172 463.40031595 223.63922513 463.05526733 223.90614319 c
+462.71021247 224.17307876 462.5376866 224.48557845 462.53768921 224.84364319 c
+462.5376866 225.07151537 462.60930111 225.27659329 462.75253296 225.45887756 c
+462.89575916 225.64768667 463.12036831 225.80393651 463.42636108 225.92762756 c
+463.60213866 225.9927384 464.11971627 226.14247784 464.97909546 226.37684631 c
+466.22257875 226.70888352 467.0900909 226.98069314 467.58163452 227.192276 c
+468.07316284 227.4038698 468.45890464 227.71148668 468.73886108 228.11512756 c
+469.01879991 228.51877754 469.15877373 229.02007913 469.15878296 229.61903381 c
+469.15877373 230.20497377 468.98787546 230.75673104 468.64608765 231.27430725 c
+468.3042824 231.79188625 467.81111883 232.19227647 467.16659546 232.47547913 c
+466.52205762 232.75868216 465.79289168 232.90028358 464.97909546 232.90028381 c
+463.63143551 232.90028358 462.60441831 232.62033594 461.89804077 232.06044006 c
+461.1916593 231.5005454 460.7408134 230.6704681 460.54550171 229.57020569 c
+460.54550171 229.57020569 l
+h
+f
+Q
+q
+0 0 0 rg
+470.54550171 229.57020569 m
+472.28378296 229.29676819 l
+472.38143676 229.99338544 472.65324638 230.52723908 473.09921265 230.89833069 c
+473.54517257 231.26942583 474.16854435 231.45497252 474.96932983 231.45497131 c
+475.77661565 231.45497252 476.37557339 231.29058467 476.76620483 230.96180725 c
+477.15682261 230.63303324 477.35213491 230.24729144 477.35214233 229.80458069 c
+477.35213491 229.40744853 477.17960904 229.09494884 476.83456421 228.86708069 c
+476.59367213 228.71083464 475.99471439 228.51226713 475.03768921 228.27137756 c
+473.74862289 227.94586145 472.8550691 227.66428621 472.35702515 227.426651 c
+471.85897634 227.18902627 471.48137255 226.86025056 471.22421265 226.44032288 c
+470.96705015 226.02040765 470.83846955 225.55654092 470.83847046 225.04872131 c
+470.83846955 224.58648981 470.94426372 224.15843034 471.15585327 223.76454163 c
+471.36744038 223.37067071 471.65552603 223.0435226 472.02011108 222.78309631 c
+472.29354622 222.58128348 472.6662672 222.41038521 473.13827515 222.270401 c
+473.61027667 222.13043758 474.11646106 222.06045067 474.65682983 222.06044006 c
+475.47062638 222.06045067 476.18514389 222.17763805 476.80038452 222.41200256 c
+477.41561141 222.64638758 477.86971252 222.96377008 478.16268921 223.364151 c
+478.45564943 223.76455053 478.65747215 224.30003176 478.76815796 224.97059631 c
+477.04940796 225.20497131 l
+476.97127592 224.67112514 476.74503917 224.25445889 476.37069702 223.95497131 c
+475.996342 223.65550116 475.46737117 223.50576172 474.78378296 223.50575256 c
+473.97648725 223.50576172 473.40031595 223.63922513 473.05526733 223.90614319 c
+472.71021247 224.17307876 472.5376866 224.48557845 472.53768921 224.84364319 c
+472.5376866 225.07151537 472.60930111 225.27659329 472.75253296 225.45887756 c
+472.89575916 225.64768667 473.12036831 225.80393651 473.42636108 225.92762756 c
+473.60213866 225.9927384 474.11971627 226.14247784 474.97909546 226.37684631 c
+476.22257875 226.70888352 477.0900909 226.98069314 477.58163452 227.192276 c
+478.07316284 227.4038698 478.45890464 227.71148668 478.73886108 228.11512756 c
+479.01879991 228.51877754 479.15877373 229.02007913 479.15878296 229.61903381 c
+479.15877373 230.20497377 478.98787546 230.75673104 478.64608765 231.27430725 c
+478.3042824 231.79188625 477.81111883 232.19227647 477.16659546 232.47547913 c
+476.52205762 232.75868216 475.79289168 232.90028358 474.97909546 232.90028381 c
+473.63143551 232.90028358 472.60441831 232.62033594 471.89804077 232.06044006 c
+471.1916593 231.5005454 470.7408134 230.6704681 470.54550171 229.57020569 c
+470.54550171 229.57020569 l
+h
+f
+Q
+q
+0 0 0 rg
+480.59432983 227.48036194 m
+480.59432917 225.55979613 481.1281828 224.13727151 482.19589233 223.21278381 c
+483.08781626 222.44456487 484.17505476 222.06045067 485.45761108 222.06044006 c
+486.88338538 222.06045067 488.0487488 222.5275726 488.95370483 223.46180725 c
+489.85864282 224.39606031 490.31111633 225.68674913 490.31112671 227.33387756 c
+490.31111633 228.66851698 490.11092122 229.71832062 489.71054077 230.48329163 c
+489.31014077 231.248267 488.72745906 231.84234193 487.9624939 232.26551819 c
+487.19751267 232.68869525 486.36255257 232.90028358 485.45761108 232.90028381 c
+484.00578409 232.90028358 482.83228266 232.43478925 481.93710327 231.50379944 c
+481.04191987 230.57281195 480.59432917 229.23166746 480.59432983 227.48036194 c
+480.59432983 227.48036194 l
+h
+482.40097046 227.48036194 m
+482.40096799 228.8084908 482.69068124 229.80295595 483.27011108 230.46376038 c
+483.84953425 231.12456921 484.57870019 231.45497252 485.45761108 231.45497131 c
+486.33000052 231.45497252 487.05591125 231.12294161 487.63534546 230.45887756 c
+488.21476426 229.79481793 488.50447751 228.78244916 488.50448608 227.42176819 c
+488.50447751 226.13922263 488.21313666 225.16754392 487.63046265 224.50672913 c
+487.04777324 223.84593065 486.32349011 223.51552734 485.45761108 223.51551819 c
+484.57870019 223.51552734 483.84953425 223.84430305 483.27011108 224.50184631 c
+482.69068124 225.1594059 482.40096799 226.15224345 482.40097046 227.48036194 c
+482.40097046 227.48036194 l
+h
+f
+Q
+q
+0 0 0 rg
+492.36190796 232.66590881 m
+492.36190796 222.29481506 l
+493.94393921 222.29481506 l
+493.94393921 223.86708069 l
+494.34758176 223.13141314 494.72030274 222.64638758 495.06210327 222.41200256 c
+495.40389581 222.17763805 495.77987199 222.06045067 496.19003296 222.06044006 c
+496.78247516 222.06045067 497.3846881 222.24925256 497.99667358 222.62684631 c
+497.39120483 224.25770569 l
+496.96151144 224.0038081 496.53182437 223.8768551 496.10214233 223.87684631 c
+495.7180231 223.8768551 495.37297136 223.99241488 495.06698608 224.223526 c
+494.7609928 224.454654 494.54289406 224.7752917 494.41268921 225.18544006 c
+494.21737355 225.81044692 494.1197174 226.49403999 494.11972046 227.23622131 c
+494.11972046 232.66590881 l
+492.36190796 232.66590881 l
+h
+f
+Q
+Q
+Q
+endstream
+endobj
+7 0 obj
+251174
+endobj
+5 0 obj
+<<
+  /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+endobj
+1 0 obj
+<<
+  /Title(new-design.pdf)
+  /Author(e826279)
+  /Creator(www.inkscape.org)
+  /Producer(Inkscape 0.45.1)
+  /CreationDate(D:20080623162954Z)
+>>
+endobj
+2 0 obj
+<<
+  /Type /Pages
+  /Count 1
+  /Kids [
+    4 0 R
+  ]
+>>
+endobj
+xref
+0 8
+0000000000 65535 f 
+0000251595 00000 n 
+0000251753 00000 n 
+0000000015 00000 n 
+0000000068 00000 n 
+0000251526 00000 n 
+0000000276 00000 n 
+0000251504 00000 n 
+trailer
+<<
+  /Size 7
+  /Root 3 0 R
+  /Info 1 0 R
+>>
+startxref
+251824
+%%EOF
diff --git a/doc/macroprocessor/new-design.svg b/doc/macroprocessor/new-design.svg
new file mode 100644
index 0000000000000000000000000000000000000000..79714d397b251b683375c5e7b88f4fea916a2686
--- /dev/null
+++ b/doc/macroprocessor/new-design.svg
@@ -0,0 +1,346 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="862.10712"
+   height="382.82141"
+   id="svg5540"
+   sodipodi:version="0.32"
+   inkscape:version="0.45.1"
+   version="1.0"
+   sodipodi:docbase="K:\Commun\Villemot\Macroprocessor"
+   sodipodi:docname="new-design.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="K:\Commun\Villemot\Macroprocessor\new-design.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs5542">
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible">
+      <path
+         id="path3243"
+         d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
+         style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.7"
+     inkscape:cx="488.94636"
+     inkscape:cy="380.52134"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     width="1052.3622px"
+     height="744.09448px"
+     inkscape:window-width="1024"
+     inkscape:window-height="712"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4" />
+  <metadata
+     id="metadata5545">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-78.642861,-39.058769)">
+    <g
+       id="g4418"
+       transform="translate(467.50002,289.64286)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4420"
+         y="56.6479"
+         x="361.42862"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           id="tspan4422"
+           y="56.6479"
+           x="361.42862"
+           sodipodi:role="line">Matlab files</tspan><tspan
+           id="tspan4424"
+           y="81.6479"
+           x="361.42862"
+           sodipodi:role="line">representing</tspan><tspan
+           id="tspan4426"
+           y="106.6479"
+           x="361.42862"
+           sodipodi:role="line">the model</tspan></text>
+      <path
+         transform="matrix(1.0528522,0,0,1.0682674,-22.862484,-9.0197689)"
+         d="M 431.42857 79.808769 A 66.428574 51.42857 0 1 1  298.57143,79.808769 A 66.428574 51.42857 0 1 1  431.42857 79.808769 z"
+         sodipodi:ry="51.42857"
+         sodipodi:rx="66.428574"
+         sodipodi:cy="79.808769"
+         sodipodi:cx="365"
+         id="path4428"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g4430"
+       transform="translate(-555.35711,282.49999)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4432"
+         y="65.21933"
+         x="691.42859"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           y="65.21933"
+           x="691.42859"
+           id="tspan4434"
+           sodipodi:role="line">Output:</tspan><tspan
+           id="tspan4436"
+           y="90.21933"
+           x="691.42859"
+           sodipodi:role="line">Results,</tspan><tspan
+           id="tspan4438"
+           y="115.21933"
+           x="691.42859"
+           sodipodi:role="line">Graphics</tspan></text>
+      <path
+         d="M 747.14283 85.523056 A 54.285713 51.42857 0 1 1  638.5714,85.523056 A 54.285713 51.42857 0 1 1  747.14283 85.523056 z"
+         sodipodi:ry="51.42857"
+         sodipodi:rx="54.285713"
+         sodipodi:cy="85.523056"
+         sodipodi:cx="692.85712"
+         id="path4440"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g4452"
+       transform="translate(-25.357118,291.07143)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4454"
+         y="68.076462"
+         x="525.71436"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           y="68.076462"
+           x="525.71436"
+           id="tspan4456"
+           sodipodi:role="line">Dynare</tspan><tspan
+           id="tspan4458"
+           y="93.076462"
+           x="525.71436"
+           sodipodi:role="line">Matlab routines</tspan></text>
+      <rect
+         y="36.951626"
+         x="448.57144"
+         height="75.714287"
+         width="152.85715"
+         id="rect4460"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 757.92859,365.8802 L 577.07147,365.8802"
+       id="path4466"
+       inkscape:connector-type="polyline"
+       inkscape:connection-end="#g4452"
+       inkscape:connection-start="#g4418" />
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 422.21432,366.33835 L 192.78572,367.69591"
+       id="path4468"
+       inkscape:connector-type="polyline"
+       inkscape:connection-start="#g4452"
+       inkscape:connection-end="#g4430" />
+    <g
+       id="g6668">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4470"
+         y="117.30877"
+         x="143.92857"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           y="117.30877"
+           x="143.92857"
+           id="tspan4472"
+           sodipodi:role="line">MOD file</tspan><tspan
+           id="tspan4474"
+           y="142.30877"
+           x="143.92857"
+           sodipodi:role="line">with macro</tspan><tspan
+           id="tspan4482"
+           y="167.30877"
+           x="143.92857"
+           sodipodi:role="line">commands</tspan></text>
+      <path
+         transform="matrix(1.0725676,0,0,0.999374,99.5973,-252.25554)"
+         d="M 98.57143 390.52304 A 58.57143 56.42857 0 1 1  -18.57143,390.52304 A 58.57143 56.42857 0 1 1  98.57143 390.52304 z"
+         sodipodi:ry="56.42857"
+         sodipodi:rx="58.57143"
+         sodipodi:cy="390.52304"
+         sodipodi:cx="40"
+         id="path4504"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g5516"
+       transform="translate(316.78572,-245.35715)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4476"
+         y="368.38019"
+         x="307.14285"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           y="368.38019"
+           x="307.14285"
+           id="tspan4478"
+           sodipodi:role="line">MOD file</tspan><tspan
+           id="tspan4480"
+           y="393.38019"
+           x="307.14285"
+           sodipodi:role="line">without macro</tspan><tspan
+           id="tspan4484"
+           y="418.38019"
+           x="307.14285"
+           sodipodi:role="line">commands</tspan></text>
+      <path
+         transform="translate(-8.5714286,-4.2857143)"
+         d="M 389.99999 391.95163 A 72.85714 65 0 1 1  244.28571,391.95163 A 72.85714 65 0 1 1  389.99999 391.95163 z"
+         sodipodi:ry="65"
+         sodipodi:rx="72.85714"
+         sodipodi:cy="391.95163"
+         sodipodi:cx="317.14285"
+         id="path5475"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g5510"
+       transform="translate(243.92858,-236.78572)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4486"
+         y="372.66592"
+         x="165.71428"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           id="tspan4490"
+           y="372.66592"
+           x="165.71428"
+           sodipodi:role="line">Macro</tspan><tspan
+           id="tspan4492"
+           y="397.66592"
+           x="165.71428"
+           sodipodi:role="line">Processor</tspan></text>
+      <rect
+         y="339.80878"
+         x="110"
+         height="72.85714"
+         width="115.71429"
+         id="rect5477"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <g
+       id="g5523"
+       transform="translate(372.5,-249.64286)">
+      <text
+         sodipodi:linespacing="125%"
+         id="text4494"
+         y="368.38019"
+         x="455.71426"
+         style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+         xml:space="preserve"><tspan
+           y="368.38019"
+           x="455.71426"
+           id="tspan4496"
+           sodipodi:role="line">Parser,</tspan><tspan
+           id="tspan4498"
+           y="393.38019"
+           x="455.71426"
+           sodipodi:role="line">Analytical</tspan><tspan
+           id="tspan4500"
+           y="418.38019"
+           x="455.71426"
+           sodipodi:role="line">derivator...</tspan></text>
+      <rect
+         y="339.80878"
+         x="395.71429"
+         height="94.285713"
+         width="120"
+         id="rect5479"
+         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 206.35715,138.3618 L 352.92858,139.13938"
+       id="path5532"
+       inkscape:connector-type="polyline"
+       inkscape:connection-end="#g5510"
+       inkscape:connection-start="#g6668" />
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 470.64287,140.23901 L 551.5,141.32071"
+       id="path5534"
+       inkscape:connector-type="polyline"
+       inkscape:connection-start="#g5510"
+       inkscape:connection-end="#g5516" />
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 699.21428,140.48835 L 767.21429,138.81229"
+       id="path5536"
+       inkscape:connector-type="polyline"
+       inkscape:connection-start="#g5516"
+       inkscape:connection-end="#g5523" />
+    <path
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:url(#Arrow1Lend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="M 828.36474,185.45163 L 828.75359,309.8802"
+       id="path5538"
+       inkscape:connector-type="polyline"
+       inkscape:connection-end="#g4418"
+       inkscape:connection-start="#g5523" />
+    <rect
+       style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1.5, 4.5;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect5596"
+       width="634.28571"
+       height="201.42857"
+       x="305.71429"
+       y="39.808769" />
+    <text
+       xml:space="preserve"
+       style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
+       x="404.28574"
+       y="232.66591"
+       id="text6567"
+       sodipodi:linespacing="125%"><tspan
+         sodipodi:role="line"
+         id="tspan6569"
+         x="404.28574"
+         y="232.66591">Dynare preprocessor</tspan></text>
+  </g>
+</svg>