diff --git a/Makefile b/Makefile
index 6b9c780debd2931ae04179af6a609815ae88c9fa..27182f3457dd96cfd6948e5fbc25728cbeefbe91 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
 SUBMAKES_REQUIRED=theme/mu logo/mu
-SUBMAKES_MISCELLANEOUS=example/mu
+SUBMAKES_MISCELLANEOUS=guide/mu example/mu
 SUBMAKES=$(SUBMAKES_REQUIRED) $(SUBMAKES_MISCELLANEOUS)
 .PHONY: all complete clean dist dist-implode implode \
-	install uninstall $(SUBMAKES)
+	install uninstall $(SUBMAKES_REQUIRED)
+
 BASETHEMEFILE=beamerthemefibeamer.sty
 OTHERTHEMEFILES=theme/mu/*.sty
 THEMEFILES=$(BASETHEMEFILE) $(OTHERTHEMEFILES)
@@ -10,33 +11,30 @@ LOGOSOURCES=logo/mu/*.svg
 LOGOS=logo/mu/*.pdf logo/mu/*.eps
 DTXFILES=*.dtx theme/mu/*.dtx
 INSFILES=*.ins theme/mu/*.ins
-MAKES=theme/mu/Makefile logo/mu/Makefile Makefile
-USEREXAMPLES=example/mu/econ-lualatex.tex \
-	example/mu/econ-pdflatex.tex example/mu/fi-lualatex.tex \
-	example/mu/fi-pdflatex.tex example/mu/fsps-lualatex.tex \
-	example/mu/fsps-pdflatex.tex  example/mu/fss-lualatex.tex \
-	example/mu/fss-pdflatex.tex example/mu/law-lualatex.tex \
-	example/mu/law-pdflatex.tex  example/mu/med-lualatex.tex \
-	example/mu/med-pdflatex.tex example/mu/ped-lualatex.tex \
-	example/mu/ped-pdflatex.tex  example/mu/phil-lualatex.tex \
-	example/mu/phil-pdflatex.tex example/mu/sci-lualatex.tex \
-	example/mu/sci-pdflatex.tex example/mu/econ-lualatex.pdf \
-	example/mu/econ-pdflatex.pdf  example/mu/fi-lualatex.pdf \
+MAKES=guide/mu/Makefile theme/mu/Makefile logo/mu/Makefile Makefile
+USEREXAMPLES=example/mu/econ-lualatex.pdf \
+	example/mu/econ-pdflatex.pdf example/mu/fi-lualatex.pdf \
 	example/mu/fi-pdflatex.pdf example/mu/fsps-lualatex.pdf \
-	example/mu/fsps-pdflatex.pdf  example/mu/fss-lualatex.pdf \
+	example/mu/fsps-pdflatex.pdf example/mu/fss-lualatex.pdf \
 	example/mu/fss-pdflatex.pdf example/mu/law-lualatex.pdf \
-	example/mu/law-pdflatex.pdf  example/mu/med-lualatex.pdf \
+	example/mu/law-pdflatex.pdf example/mu/med-lualatex.pdf \
 	example/mu/med-pdflatex.pdf example/mu/ped-lualatex.pdf \
 	example/mu/ped-pdflatex.pdf example/mu/phil-lualatex.pdf \
 	example/mu/phil-pdflatex.pdf example/mu/sci-lualatex.pdf \
-	example/mu/sci-pdflatex.pdf \
-	example/mu/resources/jabberwocky-dark.pdf \
-	example/mu/resources/jabberwocky-light.pdf
+	example/mu/sci-pdflatex.pdf
 DEVEXAMPLES=logo/EXAMPLE/DESCRIPTION logo/mu/DESCRIPTION \
 	logo/DESCRIPTION theme/EXAMPLE/DESCRIPTION theme/mu/DESCRIPTION \
 	theme/DESCRIPTION example/DESCRIPTION example/EXAMPLE/DESCRIPTION \
-	example/mu/DESCRIPTION example/mu/resources/DESCRIPTION
+	example/mu/DESCRIPTION example/mu/resources/DESCRIPTION \
+	guide/DESCRIPTION guide/EXAMPLE/DESCRIPTION \
+	guide/mu/DESCRIPTION guide/mu/resources/DESCRIPTION
 EXAMPLES=$(USEREXAMPLES) $(DEVEXAMPLES)
+MISCELLANEOUS=guide/mu/guide.bib \
+	guide/mu/guide.dtx guide/mu/*.ins guide/mu/resources/cog.pdf \
+  guide/mu/resources/vader.pdf guide/mu/resources/yoda.pdf \
+	$(USEREXAMPLES:.pdf=.tex) \
+	example/mu/resources/jabberwocky-dark.pdf \
+	example/mu/resources/jabberwocky-light.pdf
 RESOURCES=$(THEMEFILES) $(LOGOS)
 SOURCES=$(DTXFILES) $(INSFILES) LICENSE.tex
 AUXFILES=fibeamer.aux fibeamer.log fibeamer.toc fibeamer.ind \
@@ -44,8 +42,11 @@ AUXFILES=fibeamer.aux fibeamer.log fibeamer.toc fibeamer.ind \
 	fibeamer.glo fibeamer.hd
 MANUAL=fibeamer.pdf
 PDFSOURCES=fibeamer.dtx
-PDFS=$(MANUAL) $(USEREXAMPLES)
-DOCS=$(MANUAL) README
+GUIDES=guide/mu/econ.pdf guide/mu/fi.pdf guide/mu/fsps.pdf \
+	guide/mu/fss.pdf guide/mu/law.pdf guide/mu/med.pdf \
+	guide/mu/ped.pdf guide/mu/phil.pdf guide/mu/sci.pdf
+PDFS=$(MANUAL) $(GUIDES) $(USEREXAMPLES)
+DOCS=$(MANUAL) $(GUIDES) README
 VERSION=VERSION.tex
 TDSARCHIVE=fibeamer.tds.zip
 CTANARCHIVE=fibeamer.ctan.zip
@@ -65,8 +66,8 @@ all: $(SUBMAKES_REQUIRED)
 complete: all $(SUBMAKES)
 	make $(PDFS) clean
 
-# This pseudo-target calls a submakefile
-$(SUBMAKES):
+# This pseudo-target calls a submakefile.
+$(SUBMAKES_REQUIRED):
 	make -C $@ all
 
 # This pseudo-target creates the distribution archive.
@@ -77,33 +78,39 @@ dist: dist-implode complete
 $(BASETHEMEFILE): fibeamer.ins fibeamer.dtx
 	xetex $<
 
+# This target typesets the guides and user examples.
+$(GUIDES) $(USEREXAMPLES): $(RESOURCES)
+	make -BC $(dir $@)
+
 # This target typesets the technical documentation.
 $(MANUAL): $(DTXFILES)
 	pdflatex $<
-	makeindex -s gind.ist $(basename $@)
+	makeindex -s gind.ist                       $(basename $@)
 	makeindex -s gglo.ist -o $(basename $@).gls $(basename $@).glo
 	pdflatex $<
 	pdflatex $<
 
-# This target generates a TeX directory structure file
+# This target generates a TeX directory structure file.
 $(TDSARCHIVE):
 	DIR=`mktemp -d` && \
 	make install to="$$DIR" nohash=true && \
 	(cd "$$DIR" && zip -r -v -nw $@ *) && \
 	mv "$$DIR"/$@ $@ && rm -rf "$$DIR"
 
-# This target generates a distribution file
+# This target generates a distribution file.
 $(DISTARCHIVE): $(SOURCES) $(RESOURCES) $(MAKES) \
-	$(DOCS) $(PDFSOURCES) $(EXAMPLES) $(VERSION) $(LOGOSOURCES)
+	$(DOCS) $(PDFSOURCES) $(MISCELLANEOUS) $(EXAMPLES) $(VERSION) \
+	$(LOGOSOURCES)
 	DIR=`mktemp -d` && \
 	cp --verbose $(TDSARCHIVE) "$$DIR" && \
 	cp --parents --verbose $^ "$$DIR" && \
 	(cd "$$DIR" && zip -r -v -nw $@ *) && \
 	mv "$$DIR"/$@ . && rm -rf "$$DIR"
 
-# This target generates a CTAN distribution file
-$(CTANARCHIVE): $(SOURCES) $(MAKES) $(LOGOSOURCES) $(DOCS) \
-	$(EXAMPLES) $(VERSION)
+# This target generates a CTAN distribution file.
+$(CTANARCHIVE): $(SOURCES) $(MAKES) $(EXAMPLES) \
+	$(MISCELLANEOUS) $(DOCS) $(VERSION) \
+	$(LOGOSOURCES)
 	DIR=`mktemp -d` && mkdir -p "$$DIR/fibeamer" && \
 	cp --verbose $(TDSARCHIVE) "$$DIR" && \
 	cp --parents --verbose $^ "$$DIR/fibeamer" && \
diff --git a/example/mu/DESCRIPTION b/example/mu/DESCRIPTION
new file mode 100644
index 0000000000000000000000000000000000000000..d06a0f9d23f8443e800f81d42ff61dd2cf0c295c
--- /dev/null
+++ b/example/mu/DESCRIPTION
@@ -0,0 +1,2 @@
+This directory contains example documents for the various faculties
+of the Masaryk University.
diff --git a/fibeamer.dtx b/fibeamer.dtx
index a5e2908ba588554d03b377bdfecdc67c241740cf..13da1719247bab932cdbd77d294d04aa528b9b4c 100644
--- a/fibeamer.dtx
+++ b/fibeamer.dtx
@@ -14,7 +14,7 @@
 \usepackage[T1]{fontenc} % use 8bit fonts
 \emergencystretch 2dd
 \usepackage{hypdoc}
-\usepackage[protrusion]{microtype}
+\usepackage{microtype}
 \usepackage{ragged2e}
 
 % Making paragraphs numbered
@@ -49,11 +49,18 @@
 %<*class>
 \NeedsTeXFormat{LaTeX2e}
 % Define `\fibeamer@version` and store it in the `VERSION.tex` file \fi
-\def\fibeamer@version{2015/11/18 v1.0.2 fibeamer MU beamer theme}
+\def\fibeamer@version{2015/11/20 v1.0.3 fibeamer MU beamer theme}
 % {\newwrite\f\openout\f=VERSION\write\f{\fibeamer@version}\closeout\f}
 %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
+% \changes{v1.0.3} {2015/11/20}{The example documents from the
+%   \texttt{example} directory and the user guide from the
+%   \texttt{guide} directory are now a part of the CTAN archive.
+%   [VN]}
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
 % \title{The beamer theme for the typesetting of thesis defense
 %   presentations at the Masaryk University in Brno}
 % \author{VĂ­t NovotnĂ˝}
@@ -81,10 +88,9 @@
 % \subsection{The \texttt{fonts} option}
 % \begin{macro}{\iffibeamer@fonts}
 % The |fonts| option instructs the package to set up the
-% combination of the font families of Carlito, Arev, Iwona, Dsfont
-% and DejaVu Sans Mono for the typesetting of roman, italic or
-% monospaced text and mathematics. This option is enabled by
-% default.
+% combination of the font families of Carlito, Arev, Iwona, Dsfont,
+% and DejaVu for the typesetting of text and mathematics. This
+% option is enabled by default.
 %    \begin{macrocode}
 \ProvidesPackage{fibeamer/beamerthemefibeamer}[\fibeamer@version]
 \newif\iffibeamer@fonts
@@ -158,6 +164,7 @@
 %    \end{macrocode}
 % \end{macro}
 % \begin{macro}{\fibeamer@basePath}
+% \subsection{The \texttt{basePath} option}
 % The \marg{\texttt{basePath}=path} pair sets the \textit{path}
 % containing the package files. The \textit{path} is prepended to
 % every other path (|\fibeamer@logopath| and |\fibeamer@themePath|)
@@ -335,22 +342,22 @@
 %     compound conditionals.
 %   \item\textsf{ifxetex}, \textsf{ifluatex} -- These packages are
 %     used to detect the used \TeX\ engine.
-%   \item\textsf{lmodern} -- The Latin Modern font family is used
-%     as a fallback for missing glyphs.
+%   \item\textsf{lmodern} -- The Latin Modern font family is used as a
+%     fallback for missing glyphs.
 %   \item\textsf{carlito} -- The Carlito font family is used as the
 %     primary text and math font face.
-%   \item\textsf{arevmath} -- The Arev math font family is used for
+%   \item\textsf{arevmath} -- The Arev Sans math font family is used for
 %     various symbols and greek alphabet.
 %   \item\textsf{iwona} -- The Iwona font family is used for large
-%     mathAsymbols.
-%   \item\textsf{DejaVuSansMono} -- The DejaVu Sans Mono font
-%     family is used for the typesetting of monospaced text.
+%     math symbols.
+%   \item\textsf{dejavu} -- The DejaVu Sans Mono font family is
+%     used for the typesetting of monospaced text.
 %   \item\textsf{setspace} -- This package is used to adjust the
 %     leading to 115 \%.
 %   \item\textsf{fontenc} -- This package is used to set the font
 %     encoding to Cork. This package is only used outside the
 %     \Hologo{XeTeX} and \Hologo{LuaTeX} engines.
-%   \item\textsf{fontenc} -- This package is used to load fonts.
+%   \item\textsf{fontspec} -- This package is used to load fonts.
 %     This package is only used with the \Hologo{XeTeX} and
 %     \Hologo{LuaTeX} engines.
 % \end{itemize}
diff --git a/guide/DESCRIPTION b/guide/DESCRIPTION
new file mode 100644
index 0000000000000000000000000000000000000000..3ec3e9b248d38ab9c0e6f6f8f5963b757bc8983d
--- /dev/null
+++ b/guide/DESCRIPTION
@@ -0,0 +1,2 @@
+This directory can contain subdirectories with the user guides of
+various universities.
diff --git a/guide/EXAMPLE/DESCRIPTION b/guide/EXAMPLE/DESCRIPTION
new file mode 100644
index 0000000000000000000000000000000000000000..85abfadda9e8477c081145abfa1edb7d106ef457
--- /dev/null
+++ b/guide/EXAMPLE/DESCRIPTION
@@ -0,0 +1,2 @@
+This is an empty directory. You can rename it to match the name of
+your university and place the respective user guides in here.
diff --git a/guide/mu/DESCRIPTION b/guide/mu/DESCRIPTION
new file mode 100644
index 0000000000000000000000000000000000000000..e56f7ccdc2d4090e8abe4447fa8d004cb7182829
--- /dev/null
+++ b/guide/mu/DESCRIPTION
@@ -0,0 +1,2 @@
+This directory contains the user guides of the Masaryk University
+(Brno, Czech Republic).
diff --git a/guide/mu/Makefile b/guide/mu/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..71f2ad677d9481ff8476187eea20ed12e0c33a79
--- /dev/null
+++ b/guide/mu/Makefile
@@ -0,0 +1,26 @@
+PDFFILES=fi.pdf sci.pdf ped.pdf med.pdf fss.pdf fsps.pdf phil.pdf \
+	law.pdf econ.pdf
+TEX=pdflatex -shell-escape
+.PHONY: all clean
+all: clean
+	make $(PDFFILES) clean
+
+# This target typesets a PDF file.
+%.pdf: %.tex guide.bib
+	$(TEX) $(basename $@).tex
+	biber  $(basename $@)
+	$(TEX) $(basename $@).tex
+
+# This target prepares a TeX file.
+%.tex: %.ins guide.dtx
+	xetex $<
+
+# This target removes any auxiliary files.
+clean:
+	rm -f *.aux *.log *.out *.toc *.lot *.lof *.bbl *.blg *.pyg \
+		*.bcf *-blx.bib *.run.xml *.tex
+	rm -rf _minted-*
+
+# This target removes any auxiliary files and the output files.
+implode: clean
+	rm -f $(PDFFILES)
diff --git a/guide/mu/econ.ins b/guide/mu/econ.ins
new file mode 100644
index 0000000000000000000000000000000000000000..c7338030e9ef39202eae215d314df1609e30db76
--- /dev/null
+++ b/guide/mu/econ.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{econ.tex}{\from{guide.dtx}{econ}}}
+\endbatchfile
diff --git a/guide/mu/fi.ins b/guide/mu/fi.ins
new file mode 100644
index 0000000000000000000000000000000000000000..4fbb6baf6e85be10c50bde79644894404c6b166b
--- /dev/null
+++ b/guide/mu/fi.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{fi.tex}{\from{guide.dtx}{fi}}}
+\endbatchfile
diff --git a/guide/mu/fsps.ins b/guide/mu/fsps.ins
new file mode 100644
index 0000000000000000000000000000000000000000..c100f3842fe08168bfc8a5b682c692a72edca661
--- /dev/null
+++ b/guide/mu/fsps.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{fsps.tex}{\from{guide.dtx}{fsps}}}
+\endbatchfile
diff --git a/guide/mu/fss.ins b/guide/mu/fss.ins
new file mode 100644
index 0000000000000000000000000000000000000000..40ea2a348da804a1e943f48345178aadd2fe4c42
--- /dev/null
+++ b/guide/mu/fss.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{fss.tex}{\from{guide.dtx}{fss}}}
+\endbatchfile
diff --git a/guide/mu/guide.bib b/guide/mu/guide.bib
new file mode 100644
index 0000000000000000000000000000000000000000..028415a899c1fe24cb35cfca1564c4be93c1e59d
--- /dev/null
+++ b/guide/mu/guide.bib
@@ -0,0 +1,53 @@
+@book{latex,
+  title={\LaTeX},
+  month={March},
+  year={2013},
+  publisher={Wikibooks.org},
+  url={http://en.wikibooks.org/wiki/LaTeX},
+  urldate={2015-05-03}}
+@manual{veryshortlatex,
+  title={The very short guide to typesetting with \LaTeX{}},
+  month={January},
+  year={2013},
+  publisher={Silmaril Consultants},
+  url={http://tug.ctan.org/info/latex-veryshortguide/veryshortguide.pdf},
+  urldate={2015-05-03}}
+@manual{shortlatex,
+  title={A short introduction to \LaTeX{}},
+  month={December},
+  year={1995},
+  author={Allin Cottrell},
+  url={http://ricardo.ecn.wfu.edu/~cottrell/ecn297/latex_tut.pdf},
+  urldate={2015-05-03}}
+@manual{longlatex,
+  author={Tobias Oetiker and Hubert Partl and Irene Hyna and Elisabeth Schlegl},
+  title={The Not So Short Introduction to \LaTeXe\ or \LaTeXe\ in
+    157 minutes},
+  year={2014},
+  month={October},
+  url={http://tobi.oetiker.ch/lshort/lshort.pdf},
+  urldate={2015-05-03}}
+@book{rybicka03,
+  author={Jiří Rybička},
+  edition={3},
+  title={\LaTeX\ pro začátečníky},
+  publisher={Konvoj},
+  place={Brno},
+  year={2003},
+  isbn={80-7302-049-1}}
+@manual{satrapa11,
+  author={Pavel Satrapa},
+  title={\LaTeX\ pro pragmatiky},
+  place={Liberec},
+  year={2011},
+  month={June},
+  url={http://mirror.ctan.org/info/czech/latex-pro-pragmatiky/latex-pro-pragmatiky.pdf},
+  urldate={2015-05-03}}
+@manual{novotny15,
+  author={VĂ­t NovotnĂ˝},
+  title={The beamer theme for the typesetting of thesis defense
+    presentations at the Masaryk University in Brno},
+  place={Brno},
+  year={2015},
+  url={http://mirrors.ctan.org/macros/latex/contrib/beamer-contrib/fibeamer/fibeamer.pdf},
+  urldate={2015-11-20}}
diff --git a/guide/mu/guide.dtx b/guide/mu/guide.dtx
new file mode 100644
index 0000000000000000000000000000000000000000..cb9bdb8ab88b033247e118cb6b872a68de09114c
--- /dev/null
+++ b/guide/mu/guide.dtx
@@ -0,0 +1,401 @@
+%    \begin{macrocode}
+\documentclass[color,table,nolot,nolof]{fithesis3}
+\usepackage[english]{babel}
+\usepackage{hologo}
+\usepackage{fancyvrb}
+\usepackage{minted}
+\usepackage{ltxcmds}
+\usepackage{tabularx}
+\usepackage[
+  backend=biber,
+  style=numeric,
+  citestyle=numeric-comp,
+  sorting=none,
+  sortlocale=auto
+]{biblatex}
+\addbibresource{guide.bib}
+\usepackage[os=win]{menukeys}
+\makeatletter
+\thesissetup{
+  title=A fibeamer user guide for the \thesis@english@facultyName,
+  TeXtitle=A \textit{fibeamer} user guide\medskip\\\Large for the
+    \thesis@english@facultyName,
+  type=bc,
+  department=Department of Computer Graphics and Design,
+  programme=Applied Informatics,
+  field=Typesetting,
+  titleEn=\thesis@title,
+  departmentEn=\thesis@department,
+  programmeEn=\thesis@programme,
+  fieldEn=\thesis@field,
+  author=VĂ­t NovotnĂ˝,
+  advisor={Doc.\ RNDr.\ Petr Sojka, Ph.D.},
+  assignment={},
+  abstract={\textsf{Fibeamer} is a theme for the \textsf{beamer}
+    \LaTeX{} document class and is intended to be used for the
+    preparation of thesis defense presentations across the
+    faculties of the \thesis@english@universityName. This document
+    describes the installation of the \textsf{fibeamer} theme, its
+    configuration, and its use.},
+  keywords={thesis, typesetting, LaTeX},
+  TeXkeywords={thesis, typesetting, \LaTeX{}},
+  keywordsEn=\thesis@keywords,
+  TeXkeywordsEn=\thesis@TeXkeywords,
+  abstractEn=\thesis@abstract,
+  faculty=\jobname,
+  autoLayout=false}
+\makeatother
+\begin{document}
+  \makeatletter\thesis@preamble\makeatother
+  \chapter{Introduction}
+  To use the \textsf{fibeamer} beamer theme, you can use an online
+  \LaTeX{} editor, such as Overleaf%
+  \footnote{Overleaf \textsf{fibeamer} templates are located at
+  \url{http://www.overleaf.com/gallery/tagged/muni}.},
+  which allows you to skip the installation described in Section
+  \ref{sec:install} completely.
+  
+%<*fi>
+  {\makeatletter\newcount\thguide@tl\expandafter\thguide@tl\the
+  \year\if\month<7\advance\thguide@tl-1\fi\makeatother
+  Another way to avoid installation is to use any public-access
+  computer at the \makeatletter\thesis@english@facultyName
+  \makeatother\ that runs Microsoft Windows. By running
+  \begin{center}
+    \makeatletter\menu[,]{Start,Programs,Document Tools,TeXLive%
+    \the\thguide@tl\ namapovani na T}\makeatother
+  \end{center} you can mount the faculty \TeX\ Live installation to
+  drive \verb'T:\'. Consequently, you can either use the command
+  line to run commands from the \TeX{} distribution by running
+  \begin{center}
+    \makeatletter\menu[,]{Start,Programs,Document Tools,TeXLive%
+    \the\thguide@tl\ CMD}\makeatother
+  \end{center}
+  or you can use the graphical \TeX\ editor \TeX Works by running
+  \begin{center}
+    \makeatletter\menu[,]{Start,Programs,Document Tools,TeXWorks+%
+    TeXLive\the\thguide@tl}\makeatother
+  \end{center}}
+
+  Yet another way to avoid installation is to either connect to the
+  Linux server at \url{aisa.fi.muni.cz} over SSH, or use any
+  public-access computer at the
+  \makeatletter\thesis@english@facultyName\makeatother\ that runs
+  Linux or Mac OS, and load the faculty \TeX\ Live installation by
+  issuing the \texttt{module add texlive} command on the command
+  line. If you choose this approach, you can also skip the entire
+  Section \ref{sec:install}, although a certain degree of
+  proficiency in working with a Unix operating system is required
+  compared to the other methods.
+%</fi>
+  \makeatletter
+    % This macro kerns an icon next to a word.
+    \def\thguide@iconkern{\kern.2ex}
+  \makeatother
+%<*sci>
+  \makeatletter
+    % This macro typesets the URL of a math.muni server.
+    \def\thguide@server#1{%
+      \includegraphics[height=.5em]{resources/#1.pdf}%
+      \thguide@iconkern\url{#1.math.muni.cz}}
+  \makeatother
+  Another way to avoid installation is to use the faculty \TeX\ Live
+  installation by connecting to the Linux server at
+  \makeatletter\thguide@server{yoda}\makeatother\ or
+  \makeatletter\thguide@server{vader}\makeatother\ over SSH
+  (through port 22222) or over the remote desktop
+  protocol\footnote{
+    For more information about connecting through the remote
+    desktip protocol, see
+    \url{http://www.math.muni.cz/aktuality/347-vzdaleny-pristup-yoda-vader.html}.}
+  (through port 13556), or to use any public-access computer at the
+  \makeatletter\thesis@english@facultyName\makeatother\ that runs
+  Linux. If you choose this approach, you can also skip this entire
+  section, although a certain degree of proficiency in working with
+  a Unix operating system is required compared to the first method.
+%</sci>
+  
+  \section{Installation}\label{sec:install}
+  \subsection{Installing a \TeX{} distribution}
+  If you decided not to use a public \TeX{} distribution, you will
+  need to install one locally before proceeding further. A \TeX{}
+  distribution contains tools and packages that are going to help
+  you with preparing and typesetting your \LaTeX\ documents.
+
+  The two major \TeX{} distributions that you can install are
+  Mik\TeX\footnote{Mik\TeX\ can be acquired from
+  \url{http://miktex.org/2.9/setup}.}, which can be used with the
+  Microsoft Windows operating system, and \TeX\ Live\footnote{%
+  \TeX\ Live can be acquired from
+  \url{http://www.tug.org/texlive}.}, which can be installed on
+  both Unix and Windows operating systems. The advantages of
+  Mik\TeX\ include refined graphical user interface and the ability
+  to install new packages on the fly.
+  
+  Along with Mik\TeX{}, you will also need to install a Perl
+  interpreter, such as Strawberry Perl\footnote{Strawberry Perl can
+  be downloaded from \url{http://strawberryperl.com/}.}. \TeX\ Live
+  installs a Perl interpreter by default.
+
+  \subsection{Installing packages}\label{sec:req-packages}
+  In order to function properly, \textsf{fibeamer} needs the
+  following packages packages to be installed in your \TeX\
+  distribution: \textsf{ifthen}, \textsf{ifxetex},
+  \textsf{ifluatex}, \textsf{lm}, \textsf{carlito}, \textsf{arev},
+  \textsf{iwona}, \textsf{dejavu}, \textsf{setspace},
+  \textsf{fontenc}, \textsf{fontspec}, \textsf{beamer},
+  \textsf{fibeamer}.
+
+  {\makeatletter %% A placeholder string macro
+  \def\thguide@placeholder#1{$\langle$\textit{#1}$\rangle$} 
+  If you performed a full installation of \TeX\ Live, you should
+  already have all the required packages installed. If you are
+  using a partial installation of \TeX\ Live, you can use the
+  \texttt{tlmgr} command-line tool by executing \texttt{tlmgr
+  install} \thguide@placeholder{pkgname}, where
+  \thguide@placeholder{pkgname} is the name of the package you wish
+  to install. In some cases, \TeX\ Live may assign a different name
+  to a package. To find out the \TeX\ Live name of a package, open
+  the
+  \texttt{http://www.ctan.org/pkg/}\thguide@placeholder{pkgname}
+  webpage in a web browser. It should contain the following text:
+  \begin{center}
+    Contained in \TeX\ Live as \thguide@placeholder{texlivename}
+  \end{center}
+  where \thguide@placeholder{texlivename} corresponds to the \TeX\
+  Live name of the package. Use this name instead of
+  \thguide@placeholder{pkgname} with \texttt{tlmgr}.
+  Alternatively, you can download the packages manually from
+  \texttt{http://www.ctan.org\discretionary{/}{/}{/}pkg/}%
+  \thguide@placeholder{pkgname} and extract them into the
+  \texttt{texmf/} directory located in your user home directory.
+  Mind that the packages themselves may depend on other
+  packages; if you are using a partial installation of \TeX\ Live,
+  you will have to resolve these dependencies manually by
+  inspecting the documentation of each package.
+
+  If you use Mik\TeX\ and you enabled the \textit{over the air
+  installation of packages} during the installation, Mik\TeX\ will
+  automatically download all the required packages, when you first
+  typeset a \textsf{fibeamer} document. If you didn't enable this
+  feature, you will need to enter the Mik\TeX\ package manager by
+  running
+  \begin{center}
+    \menu[,]{Start,MikTeX,MikTeX Package Manager (Admin)}
+  \end{center}
+  and download the packages manually through the user interface.
+  In some cases, Mik\TeX\ may assign a different name to a 
+  package. To find out the Mik\TeX\ name of a package, open the
+  \texttt{http://www.ctan.org\discretionary{/}{/}{/}pkg/}%
+  \thguide@placeholder{pkgname} webpage in a web browser,
+  where \thguide@placeholder{pkgname} is the name of the
+  package you wish to install. It should contain the following
+  text:
+  \begin{center}
+    Contained in Mik\TeX\ as \thguide@placeholder{miktexname}
+  \end{center}
+  where \thguide@placeholder{miktexname} corresponds to the
+  Mik\TeX\ name of the package. If you still can't find the
+  package, try synchronizing the package database by selecting
+  \begin{center}
+    \menu[,]{Repository,Synchronize}
+  \end{center}
+  from the menu bar of the Mik\TeX\ package manager. Mind that the
+  packages themselves may depend on other packages; if you disabled
+  the over the air installation of packages, you will have to
+  resolve these dependencies manually by inspecting the
+  documentation of each package.}
+
+  If you wish to use a newer version of \textsf{fibeamer} than the
+  one that is available in your \TeX\ distribution, you should
+  download a file named \texttt{fibeamer.tds.zip} containing the
+  version of the package you wish to use and place it in a root
+  directory that is recognized by your \TeX\ distribution. In
+  \TeX\ Live\footnote{For more information about the \TeX\ Live root
+  directories, see
+  \url{http://www.tug.org/texlive/doc/texlive-en/texlive-en.html\#x1-110002.3},
+  Chapter 2.3.}, one of such directories is the \texttt{texmf/}
+  folder in your user home directory. In Mik\TeX\footnote{
+  For more information about the \TeX\ Live root
+  directories, see 
+  \url{http://docs.miktex.org/manual/localadditions.html}.},
+  the list of recognized root directories can be gleaned by
+  running
+  \begin{center}
+    \menu[,]{Start,MikTeX,MikTeX Options (Admin),Roots}
+  \end{center}
+
+  \section{Picking a \TeX\ engine}
+  There are several programs, called \TeX\ engines, that you can
+  use to typeset \textsf{fibeamer} \LaTeX{} source files into
+  displayable PDF documents. The ones we will discuss are
+  \hologo{pdfTeX} and \Hologo{LuaTeX}.
+  
+  \Hologo{pdfTeX} is the more conservative choice and most \TeX\
+  editors use \hologo{pdfTeX} as the default \TeX\ engine. The main
+  advantage \Hologo{LuaTeX} over \hologo{pdfTeX} for a
+  \textsf{fibeamer} user is the ability to use standard OpenType
+  and TrueType fonts installed on your system, whereas
+  \hologo{pdfTeX} is confined to the fonts installed in your \TeX\
+  distribution.
+  
+  If the ability to use arbitrary fonts within your documents
+  interests you, Chapter 3 of the \textsf{fontspec} package
+  manual\footnote{The \textsf{fontspec} package manual is available
+  at \url{http://mirrors.ctan.org/macros/latex/contrib/fontspec/fontspec.pdf}.}
+  should provide you with the relevant information. If you are
+  only going to use the fonts present in the \TeX{} distribution or
+  if you do not intend to change the preset \textsf{fibeamer}
+  fonts at all, you can safely use \hologo{pdfTeX}, which is
+  currently also considerably faster than \Hologo{LuaTeX}.
+
+  \section{Creating and typesetting a \textsf{fibeamer} document}
+  Before using the \textsf{fibeamer} theme, it is useful to be
+  familiar with the \LaTeX{} typesetting system. A good way to get
+  started is to read one of the introductory texts in English
+  \cite{veryshortlatex,shortlatex,longlatex,latex} or in Czech
+  \cite{rybicka03,satrapa11}. Taking one of the \textit{FI:PB029},
+  \textit{PřF:M5751}, or \textit{FF:PLIN028} courses taught at
+  the \makeatletter\thesis@english@universityName\makeatother\ is
+  also helpful.
+
+  To become familiar with \textsf{fibeamer}, you are encouraged to
+  inspect the example \textsf{fibeamer} documents named
+  \makeatletter
+  \texttt{\thesis@university-\thesis@faculty-pdflatex.pdf} and
+  \texttt{\thesis@university-\thesis@faculty-lualatex.pdf} as well
+  as their \LaTeX{} source files that are named
+  \texttt{\thesis@university-\thesis@faculty-pdflatex.tex} and
+  \texttt{\thesis@university-\thesis@faculty-lualatex.tex} that are
+  distributed along with the package inside the \texttt{example/}
+  directory\footnote{The example \textsf{fibeamer} documents are
+  also available online at
+  \url{https://www.ctan.org/tex-archive/macros/latex/contrib/beamer-contrib/fibeamer/example/mu}.}.
+  By modifying and by typesetting these \LaTeX{} source files using
+  either the \hologo{pdfTeX} or the \Hologo{LuaTeX} engine, you can
+  quickly gain a working knowledge of \LaTeX{} and use these source
+  files as the basis for your thesis. To typeset the example
+  documents, you need to download the \texttt{resources/} directory
+  as well, as it contains vector images used in the examples.
+  
+  If you are using an online editor, such as Overleaf
+  \footnote{Overleaf \textsf{fibeamer} templates are located at
+  \url{http://www.overleaf.com/gallery/tagged/muni}.}, \LaTeX{}
+  source files will be typeset automatically, as you edit them. The
+  \TeX{} engine can be selected inside the
+  \includegraphics[height=1.3ex]{resources/cog.pdf}\makeatletter
+  \thguide@iconkern\makeatother project settings.
+
+  If you are using a graphical \TeX{} editor, such as \TeX
+  works\footnote{\TeX works can be downloaded from
+  \url{http://www.tug.org/texworks/}.}, you can typeset a \LaTeX{}
+  source file by opening the source file from within the editor and
+  running either the \hologo{pdfLaTeX} or \Hologo{LuaLaTeX}
+  (depending on your choice of \TeX\ engine) command from the task
+  bar. The command needs to be executed at least twice.
+
+  If you are using the command line, you can typeset \LaTeX{}
+  source files by running either \texttt{pdflatex
+  \textit{name.tex}} or \texttt{lualatex
+  \textit{name.tex}} (depending on your choice of \TeX\
+  engine), where \texttt{\textit{name.tex}} corresponds to the name
+  of a \LaTeX\ source file. In the case of the two aforementioned
+  example files, the corresponding commands would be:
+  \begin{center}\makeatletter
+  \texttt{pdflatex \thesis@university-\thesis@faculty-pdflatex.tex}
+\\\texttt{lualatex \thesis@university-\thesis@faculty-lualatex.tex}
+  \makeatother\end{center}
+  The command needs to be executed from within the directory, where
+  the \LaTeX\ source file is located. In Windows, the command line
+  can be opened in a directory by holding down the \keys{Shift} key
+  and by clicking the right mouse button while hovering the cursor
+  over a directory. Select the \menu{Open Command Window Here}
+  option in the context menu that opens shortly afterwards.  The
+  command also needs to be executed at least twice.
+
+  Beside Overleaf and \TeX works, any text editor can be used to
+  modify \LaTeX{} source files.
+
+  \chapter{Configuration}
+  A \textsf{fibeamer} \LaTeX{} source file should begin as follows:
+  \begin{minted}{latex}
+\documentclass{beamer}
+\usetheme[option1, option2, ..., optionN]{fibeamer}
+  \end{minted}
+  The following list summarizes the options that are recognized by
+  the \textsf{fibeamer} theme and their meaning. Options that are
+  enabled by default are \textit{set in italics}.
+
+  {\makeatletter
+  % This macro formats a default class option.
+  \def\thguide@default{\itshape}
+  % This macro formats a class option.
+  \let\thguide@itemfmt\textbf
+  \begin{description}
+    \item[faculty=$\langle${name}$\rangle$]
+      This option changes the color theme based on the selected
+      faculty. To choose the color theme of the
+      \thesis@english@facultyName, use
+      {\thguide@itemfmt\thesis@faculty} as the
+      $\langle$name$\rangle$.
+    \item[\thguide@default fonts]
+      This option sets up the combination of the font families of
+      Carlito, Arev, Iwona, Dsfont, and DejaVu for the typesetting
+      of text and mathematics.
+    \item[nofonts]
+      This option prevents \textsf{fibeamer} from setting up the
+      fonts. The user must set the fonts manually in the preamble
+      of the document.
+%<*fi>
+
+      The \thesis@english@facultyName\ has licensed the Comenia
+      font family. If you wish to use it in your thesis, you should
+      contact Doc.\ RNDr.\ Petr Sojka, Ph.D.
+      
+      If you are typesetting your thesis on a public-access
+      computer at the \thesis@english@facultyName\ or on the
+      \url{aisa.fi.muni.cz} Linux server, you can use the
+      commercial Math Time mathematical font family,
+%</fi>
+%<*sci>
+
+      If you are typesetting your thesis on a public-access
+      computer at the \thesis@english@facultyName\ that runs Linux
+      or on either the \thguide@server{yoda} or
+      \thguide@server{vader} Linux server, you can also use the
+      commercial Math Time mathematical font family,
+%</sci>
+%<*sci,fi> 
+      which goes well with the \TeX\ Gyre Termes text font family.
+      To use Math Time and \TeX\ Gyre Termes within your thesis,
+      the preamble of your document should look as follows:
+      \begin{minted}{latex}
+\documentclass{beamer}
+\usetheme[nofonts, ...]{fibeamer}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{tgtermes}
+\usepackage{mathtime}
+%% Here goes the rest of the document.
+      \end{minted}
+%</sci,fi>
+    \item[\thguide@default microtype]
+      This option sets up microtypographic extensions\footnote{
+        For more information about the \TeX\ engine
+        microtypographic extensions, see
+        \url{http://mirrors.ctan.org/macros/latex/contrib/microtype/microtype.pdf}.
+      }, which results in visually more pleasing paragraphs of
+      text.
+    \item[nomicrotype]
+      This option prevents \textsf{fibeamer} from setting up
+      microtypographic extensions. 
+  \end{description}
+  The complete list of the package options can be found in Section
+  2 of the technical documentation of the \textsf{fibeamer}
+  class \cite{novotny15}.}
+
+  \makeatletter\thesis@postamble\makeatother
+  \tolerance=300\emergencystretch=1em
+  \printbibliography[heading=bibintoc]
+\end{document}
+%    \end{macrocode}
diff --git a/guide/mu/law.ins b/guide/mu/law.ins
new file mode 100644
index 0000000000000000000000000000000000000000..b75a931359022e13bf1bac0b32f324b56b4a352d
--- /dev/null
+++ b/guide/mu/law.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{law.tex}{\from{guide.dtx}{law}}}
+\endbatchfile
diff --git a/guide/mu/med.ins b/guide/mu/med.ins
new file mode 100644
index 0000000000000000000000000000000000000000..585c696a66c3b970067e397ed08a302e850e2797
--- /dev/null
+++ b/guide/mu/med.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{med.tex}{\from{guide.dtx}{med}}}
+\endbatchfile
diff --git a/guide/mu/ped.ins b/guide/mu/ped.ins
new file mode 100644
index 0000000000000000000000000000000000000000..e211754cba78c3ce36b754d153ad1653d8686fb9
--- /dev/null
+++ b/guide/mu/ped.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{ped.tex}{\from{guide.dtx}{ped}}}
+\endbatchfile
diff --git a/guide/mu/phil.ins b/guide/mu/phil.ins
new file mode 100644
index 0000000000000000000000000000000000000000..320a91f2f82afae1f9946d4b113582be767d12fa
--- /dev/null
+++ b/guide/mu/phil.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{phil.tex}{\from{guide.dtx}{phil}}}
+\endbatchfile
diff --git a/guide/mu/resources/DESCRIPTION b/guide/mu/resources/DESCRIPTION
new file mode 100644
index 0000000000000000000000000000000000000000..d46c78aded76de9e5020b935861d68709cb31d09
--- /dev/null
+++ b/guide/mu/resources/DESCRIPTION
@@ -0,0 +1 @@
+This directory contains resources for the guides.
diff --git a/guide/mu/resources/cog.pdf b/guide/mu/resources/cog.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ddbc9227c50df8c5760cc488219a7a3769106168
Binary files /dev/null and b/guide/mu/resources/cog.pdf differ
diff --git a/guide/mu/resources/vader.pdf b/guide/mu/resources/vader.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5bae022308845a0968937f591049ffd3121a63cc
Binary files /dev/null and b/guide/mu/resources/vader.pdf differ
diff --git a/guide/mu/resources/yoda.pdf b/guide/mu/resources/yoda.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..992c19da70c8a965ead588fb1392f82a87056872
--- /dev/null
+++ b/guide/mu/resources/yoda.pdf
@@ -0,0 +1,69 @@
+%PDF-1.5
+%µí®ű
+3 0 obj
+<< /Length 4 0 R
+   /Filter /FlateDecode
+>>
+stream
+xś=OKŽBAÜ÷)XO"Ă·cxc˘+:÷O†nőmTAUń„N\“ŕu‡ßÁýŻaG‡0M0Ěę͈č6D@«ş÷H¸‚"ëb,­+ŃŞĺ
+Ă‘XÖ ˝ĺëabć÷ 0Ĺ©B1ů˜$NÖí=€	I>©®Í¤e3JŢĽZ±Ů0Ąt•%Hî+©TΘpZ"6ŕëD;şşŔµWsȬţ»4)ęŚŰD­y{ #ŇígśÇ?–@<
+endstream
+endobj
+4 0 obj
+   192
+endobj
+2 0 obj
+<<
+   /ExtGState <<
+      /a0 << /CA 1 /ca 1 >>
+   >>
+>>
+endobj
+5 0 obj
+<< /Type /Page
+   /Parent 1 0 R
+   /MediaBox [ 0 0 10.020276 5.124841 ]
+   /Contents 3 0 R
+   /Group <<
+      /Type /Group
+      /S /Transparency
+      /I true
+      /CS /DeviceRGB
+   >>
+   /Resources 2 0 R
+>>
+endobj
+1 0 obj
+<< /Type /Pages
+   /Kids [ 5 0 R ]
+   /Count 1
+>>
+endobj
+6 0 obj
+<< /Creator (cairo 1.14.4 (http://cairographics.org))
+   /Producer (cairo 1.14.4 (http://cairographics.org))
+>>
+endobj
+7 0 obj
+<< /Type /Catalog
+   /Pages 1 0 R
+>>
+endobj
+xref
+0 8
+0000000000 65535 f 
+0000000603 00000 n 
+0000000306 00000 n 
+0000000015 00000 n 
+0000000284 00000 n 
+0000000378 00000 n 
+0000000668 00000 n 
+0000000795 00000 n 
+trailer
+<< /Size 8
+   /Root 7 0 R
+   /Info 6 0 R
+>>
+startxref
+847
+%%EOF
diff --git a/guide/mu/sci.ins b/guide/mu/sci.ins
new file mode 100644
index 0000000000000000000000000000000000000000..75a8c61087a1f8a63989b3e865e04abbc0cfac6e
--- /dev/null
+++ b/guide/mu/sci.ins
@@ -0,0 +1,3 @@
+\input ../../LICENSE
+\generate{\file{sci.tex}{\from{guide.dtx}{sci}}}
+\endbatchfile
diff --git a/logo/mu/fibeamer-mu-fi-light.svg b/logo/mu/fibeamer-mu-fi-light.svg
index 9d0714c5b6deae9b4ee90440071e275fc8a68301..59f4ec00a3fd90bdd1e4be94f692ddb45e061176 100644
--- a/logo/mu/fibeamer-mu-fi-light.svg
+++ b/logo/mu/fibeamer-mu-fi-light.svg
@@ -11,14 +11,14 @@
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    id="svg2"
    version="1.1"
-   inkscape:version="0.48.5 r10040"
+   inkscape:version="0.91 r13725"
    width="369.64999"
    height="487.39999"
    xml:space="preserve"
-   sodipodi:docname="fibeamer-mu-fi-light.pdf"><metadata
+   sodipodi:docname="fibeamer-mu-fi-light.svg"><metadata
      id="metadata8"><rdf:RDF><cc:Work
          rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
      id="defs6"><clipPath
        id="clipPath3044"
        clipPathUnits="userSpaceOnUse"><path
@@ -41,8 +41,8 @@
      id="namedview4"
      showgrid="false"
      inkscape:zoom="0.85630196"
-     inkscape:cx="29.558994"
-     inkscape:cy="256.16354"
+     inkscape:cx="102.5866"
+     inkscape:cy="196.8361"
      inkscape:window-x="0"
      inkscape:window-y="29"
      inkscape:window-maximized="1"
@@ -61,186 +61,186 @@
        d="m 168.28743,50.098969 -0.75072,-0.367178 -20.71132,0 -7.14311,12.801132 19.94424,0 0.75072,0.367178 88.82243,154.695789 6.77593,-13.91903 -87.68817,-153.577891 z m 9.41266,112.538781 0.75175,-0.3682 2.63673,-12.80011 -7.9102,-15.43786 -2.63775,14.30258 -0.75072,0.38354 -49.30113,0 8.27839,13.92005 48.93293,0 z M 156.98877,66.671199 88.495245,185.98581 l 16.555455,0 17.69126,-31.2429 -3.771,-6.40875 8.29373,-15.4215 10.16338,-0.38354 27.47191,-51.187043 -7.91121,-14.670878 z m 38.01883,119.314611 6.0252,10.91512 1.50247,-10.91512 7.15947,0 -51.95423,-89.206075 -19.19351,35.749385 34.63137,0 8.66092,16.94032 -3.02028,13.9354 -50.80359,0 -4.52274,-7.54301 -17.30649,30.12398 88.82141,0 z m 23.71625,16.17222 -8.27839,-15.05432 -6.77593,0 -2.26955,15.05432 17.32387,0 z m -16.57212,4.52274 -2.25319,-3.771 0.75072,-4.5074 -5.64166,-10.54692 -2.25319,16.18859 7.14413,12.80113 2.25319,-10.1644 z m -135.870376,11.29866 132.865436,0 -7.1431,-13.18467 -134.000933,0 8.278597,13.18467 z m 69.628916,-151.308231 4.90628,0 -2.26955,-3.387555 7.91121,-14.302575 21.82922,0 88.82243,154.695791 c -1.13426,2.62036 -7.52665,15.4215 -7.52665,15.4215 l -40.27201,0 -6.39239,-11.28333 -2.63673,11.28333 c -44.79476,0 -89.95761,0 -134.751448,0 L 56.500598,204.79476 135.91027,66.671199 z m 33.87963,82.046501 0.75072,-0.38354 7.91122,13.93539 -0.75175,0.3682 -7.91019,-13.92005 z m -1.50247,-98.618731 -0.75072,-0.367178 -7.91019,12.801132 0.75072,0.367178 7.91019,-12.801132 z M 12.840995,144.5785 c 0,-2.25318 1.886152,-4.13919 4.139064,-4.13919 1.886172,0 3.755919,1.88601 3.755919,4.13919 0,1.88601 -1.869747,3.75566 -3.755919,3.75566 -2.252912,0 -4.139064,-1.86965 -4.139064,-3.75566 z m 276.646035,0 c 0,-2.25318 1.86964,-4.13919 4.1392,-4.13919 1.86964,0 3.75565,1.88601 3.75565,4.13919 0,1.88601 -1.88601,3.75566 -3.75565,3.75566 -2.26956,0 -4.1392,-1.86965 -4.1392,-3.75566 z m -280.4179422,10.16441 0,1.886 c 0,0.36718 0,1.1179 1.1350442,1.1179 l 13.918991,0 c 1.135492,0 1.135492,-0.75072 1.135492,-1.1179 l 0,-1.886 0.750721,0 0,8.27839 -0.750721,0 0,-1.88601 c 0,-0.3682 -0.383543,-1.11892 -1.502671,-1.11892 l -6.408717,0 0,1.50246 c 0,1.50247 1.519004,2.63673 3.388751,3.00391 l 0,0.75175 -7.527825,0 0,-0.75175 c 1.886152,-0.36718 3.020407,-1.50144 3.020407,-3.00391 l 0,-1.50246 -6.024428,0 c -1.1350442,0 -1.1350442,0 -1.1350442,1.11892 l 0,2.63673 c 0,1.13426 0.3835451,2.25319 1.1350442,3.38745 0.750711,0.38354 2.25332,1.13529 4.139472,1.50247 l 0,0.75174 -6.0252216,-0.3682 0,-14.30257 0.7507054,0 z m 0.7515009,24.83415 c 9.7963643,-6.39238 14.6860773,-9.41266 15.0544833,-9.77984 0.383543,-0.38354 0.767086,-0.75174 0.383543,-1.886 l 0.750721,0 1.134265,6.40772 -0.750722,0.3682 c -0.750721,-3.38847 -0.383543,-4.13919 -4.889815,-0.75174 l 1.1179,6.77592 3.388372,0.75175 c 0.383543,0 1.502569,-0.38354 1.134265,-2.25319 l 0.751847,-0.38354 1.134264,7.15947 -0.767086,0 c 0,-1.13529 -0.367178,-1.51883 -1.502568,-1.88601 L 9.8205887,180.71132 c -0.7515009,-0.38354 -0.7515009,-0.75072 0,-1.13426 z m 11.6824753,0.75072 -1.13539,-6.00884 -7.526679,4.1392 8.662069,1.86964 z m -4.906549,22.96554 c -1.50221,-1.88601 -2.252911,-2.63776 -2.636454,-4.1392 -1.502609,-4.52274 1.517787,-9.02912 7.15946,-10.53158 4.889815,-1.51883 9.028807,1.50246 10.531478,5.64064 1.134264,3.38847 -0.751949,6.39238 -4.139094,8.27839 -0.368304,0 -0.751847,-0.38354 -0.368304,-0.75072 3.004727,-1.88601 4.890941,-4.1392 3.755449,-7.52767 -0.367179,-3.02028 -4.138992,-4.13818 -9.028808,-2.63673 -6.025225,1.50246 -7.910181,4.52274 -6.775937,7.14413 0.383543,1.13426 1.134255,2.26853 2.252922,3.02027 1.135441,0.36718 3.020447,0.75072 4.906558,0.75072 l 0.367179,0.3682 -7.143116,2.26853 0,-0.75072 1.118667,-1.13426 z m 1.517798,5.64063 c 1.50264,3.02028 0,3.77202 7.527845,-0.36717 3.754733,-1.88601 6.008841,-2.63673 7.143105,-2.63673 1.886111,0 7.910191,3.38745 6.025205,9.77983 -0.383543,1.13529 -1.50267,2.26955 -3.388372,3.02028 l -7.910191,3.75565 c -1.502569,1.13529 -1.869747,1.88601 -0.751847,3.77202 l -1.1179,0.75072 -3.021194,-6.40875 1.13498,-0.75072 c 1.119128,2.63673 1.119128,2.63673 3.755961,1.13426 12.049285,-4.88992 10.91502,-6.77592 9.41235,-9.77983 -1.118616,-2.63673 -1.885702,-3.02028 -3.755449,-3.02028 -0.750721,0 -3.020478,0.75072 -6.775927,2.63673 -3.388372,1.88601 -5.273358,2.63673 -5.656901,3.00391 0,0.38355 0.383543,1.13529 1.134264,2.63776 l -0.750721,0.75072 -3.772294,-7.89485 0.767086,-0.38355 z m 9.397592,19.57706 c 1.517807,2.63673 0.383543,3.00391 8.293734,-1.88601 8.645264,-4.88991 7.143105,-4.13919 5.641662,-6.77592 l 0.367179,-0.36718 7.910191,12.41657 -5.640946,4.13919 -0.383543,-0.75072 c 3.387656,-3.00493 4.139503,-4.88992 2.636935,-7.52767 -2.636935,-4.13817 -0.750722,-4.13817 -9.412862,0.75174 -7.894543,4.88992 -6.775927,4.1392 -4.889713,7.15947 l -0.751949,0.36718 -4.522535,-7.1431 0.751847,-0.38355 z m 13.551853,10.53158 0.383543,0.76709 c -4.139503,7.52665 -0.751847,8.27737 0,7.52665 7.143105,-6.02521 10.915021,-9.41266 10.915021,-9.7962 0.367178,-0.36718 0,-0.75072 -1.135492,-1.86965 l 0.751949,-0.76708 4.889713,6.02418 -0.751437,0.75174 c -0.750722,-1.11892 -1.501443,-1.86964 -1.869747,-1.86964 -0.383543,0.36718 -3.7712,3.38745 -10.915021,9.39629 -1.517807,1.51883 0,5.27346 7.143821,0.75175 l 0.383543,1.13426 -5.273256,4.1392 -9.030035,-11.2823 4.507398,-4.90629 z m 11.298564,23.71524 c 4.889713,-10.53158 7.143105,-16.17222 6.775927,-16.93931 0,-0.3682 -0.383543,-1.11892 -0.751949,-1.50247 l 0.751949,-0.36717 4.50617,4.50637 -0.367894,0.75072 c -2.636833,-3.38745 -3.387555,-0.75072 -3.771098,0.38355 l -0.750721,1.886 4.889713,4.88992 c 6.024489,-3.02027 4.523046,-2.25319 2.636935,-4.13919 l 0.750722,-0.38355 5.274483,4.89094 -0.751949,0.38355 c -0.750721,-0.75175 -1.502159,-1.13529 -2.25288,-0.75175 l -15.821508,7.14413 c -0.750722,0.38354 -1.501443,0.38354 -1.1179,-0.75174 z m 10.163481,-6.02419 -4.523046,-4.50739 -3.387145,7.89485 7.910191,-3.38746 z m 9.028807,19.95958 c -1.885702,0 -10.546615,-1.88601 -5.640435,-9.04548 1.501444,-1.86964 3.754733,-1.86964 7.143106,-0.75072 5.273256,1.88601 5.273256,1.88601 6.775927,0.38355 1.502568,-1.50247 0.750721,-3.771 -1.134265,-5.27347 -2.621286,-1.50246 -5.641662,-1.50246 -8.646492,1.50247 l -0.750721,-0.75174 3.755551,-5.64064 1.134264,0.75072 0.368304,2.25319 c 5.656902,-1.86965 8.293734,6.0252 6.407623,8.66193 -2.268529,3.02027 -3.771199,2.63673 -8.660913,0.75072 -2.637651,-0.75072 -7.527875,-1.50246 -6.392384,2.63673 0.750722,3.38848 4.889714,4.52274 9.396395,1.13529 l 0.767087,0.36718 -4.154641,4.88992 -0.368406,-0.36718 0,-1.50247 z m 21.446908,-2.26955 c 0,-1.86964 -0.367178,-3.00391 -1.50267,-3.38745 l 0,-0.75072 5.641662,2.63673 -0.367895,0.75072 c -1.501443,-1.11892 -2.636832,-2.25319 -2.636832,3.77202 l 6.025207,3.00391 c 4.52253,-3.38746 4.52253,-3.38746 1.88611,-4.50638 l 0,-0.76709 6.39238,3.02028 -0.38354,0.36718 c -1.11903,-0.36718 -1.86975,-0.36718 -2.6217,0.38354 l -12.432722,11.66687 c -0.750721,0.75072 -1.119127,0.75072 -1.119127,-0.3682 l 1.119127,-15.82141 z m 6.408748,6.77593 -5.641662,-2.63673 -0.767086,8.66193 6.408748,-6.0252 z m 4.138274,13.18467 c 2.63765,1.11893 2.63765,2.25319 5.64166,-6.40875 3.02018,-8.64557 2.63663,-7.52664 0,-8.64557 l 0,-0.76708 7.91009,2.63673 -0.38354,0.75174 c -2.63673,-0.3682 -2.25319,-2.25319 -5.27346,6.77593 3.77202,1.13426 5.27346,0.75072 6.40875,-3.00493 1.11892,-3.38746 6.77592,-5.64064 6.02418,1.88601 0,0.36717 -0.75072,1.11892 -0.75072,0 0.75072,-2.63673 -0.76709,-3.771 -3.02027,-0.75073 -1.50247,3.38746 -1.88601,2.62037 -5.27347,3.38746 3.771,1.86964 4.90629,3.75565 4.1392,5.64166 -1.11892,3.00391 -3.75565,3.75565 -7.14413,2.25319 l -8.66183,-3.00494 0.38354,-0.75072 z m 7.89475,-4.90628 c -3.38735,7.91121 -3.38735,6.77593 0.76709,7.91121 1.86964,0.38355 3.38847,0 4.13919,-1.50246 1.50247,-3.02028 -0.38354,-4.88992 -3.38745,-6.02521 l -1.51883,-0.38354 z m 12.43293,4.90628 0.75174,0.36718 c 0.75073,6.02521 3.38746,7.52767 4.50638,6.40875 0.38354,0 0.76709,-2.26955 1.51781,-7.15947 1.11892,-4.88992 1.50246,-7.52665 1.11892,-7.91019 0,-0.3682 -0.75072,-0.3682 -2.25319,-0.75175 l 0,-0.75072 7.91019,1.13427 0,0.75174 c -3.02027,-0.38354 -2.63673,-1.50246 -4.52171,7.91019 -0.75175,4.88992 -1.13529,7.14311 -1.13529,7.52665 0.38354,0.3682 3.77202,2.63775 6.40875,-4.90526 l 1.11892,0 -1.50246,6.77593 -14.3036,-2.62139 0.38354,-6.77593 z m 18.44279,9.02912 c 3.00391,0.3682 3.00391,0.3682 3.00391,-1.13427 0.75175,-9.02911 0.75175,-13.92005 0.38355,-14.3036 -0.38355,-0.36717 -1.13427,-0.36717 -2.63673,-0.75072 l 0,-0.75072 8.27839,0.75072 0,0.75072 c -1.50247,0 -2.63673,0 -3.00493,0.38355 -0.38355,0.3682 -0.38355,4.89094 -0.76709,13.92005 0,1.50247 0,1.50247 3.02027,1.88601 l 0,0.75072 -8.27737,-0.75072 0,-0.75174 z m 20.32778,0 c -1.886,1.13528 -3.02027,1.88601 -4.52273,1.88601 -3.02028,0 -5.27347,-2.26956 -5.27347,-5.65701 0,-1.11892 0.38355,-2.25319 1.50145,-3.38847 0.75174,-0.36718 1.88601,-1.11893 3.77202,-1.50247 4.88991,-1.1179 5.64063,-1.50144 5.64063,-3.75463 0,-1.88601 -1.50144,-3.38847 -4.13817,-3.38847 -3.00493,0 -5.64166,1.86964 -6.0252,6.0252 l -1.11893,0 0,-6.77593 1.11893,0 1.50246,1.50145 c 1.13427,-1.13427 2.63673,-1.88499 4.52274,-1.88499 3.38745,0 6.02418,2.63673 6.02418,5.64064 0,3.02027 -1.50246,4.1392 -6.77592,5.27448 -4.1392,1.50145 -4.52274,1.50145 -4.52274,3.771 0,1.50247 1.88601,3.00493 3.77202,3.00493 2.63673,0 4.13919,-1.50246 5.64063,-5.64166 l 0.75175,0 -0.3682,6.39238 -0.75072,0 -0.75073,-1.50246 z m 15.4215,-0.75072 c 3.38745,-1.13529 3.02028,0.36717 1.50247,-9.02912 -1.11892,-9.04548 -1.50247,-7.54301 -4.5074,-7.15947 l 0,-0.75174 8.27839,-1.50145 0,0.75073 c -3.02027,0.36717 -3.38745,-0.75073 -1.88601,8.27839 1.50247,9.41266 0.75175,9.02911 4.89095,7.91019 l 0,0.75072 -8.2784,1.50247 0,-0.75072 z m 10.54692,-2.26956 c 1.11893,-0.36718 1.86965,-0.36718 2.25319,-0.75072 0.3682,-0.3682 -0.75072,-4.5074 -3.38745,-12.78477 -0.38354,-1.51883 -1.88601,-2.26955 -3.38847,-1.886 l -0.38355,-0.75073 7.15947,-1.88601 0,0.38355 c -1.88498,1.11892 -2.25319,2.25319 -1.88498,3.75565 l 3.02027,10.16338 6.39238,-16.55576 1.13427,-0.38355 c 2.62139,10.16338 4.13919,15.0533 4.88992,15.43684 0.75174,0.36821 1.50246,0.36821 2.25421,0 l 0.38354,0.75175 -6.40875,1.88601 0,-0.76709 c 0.75072,-0.3682 1.13426,-0.75174 1.50247,-1.50246 0.38354,-0.36821 -0.36821,-4.50638 -2.62139,-12.03405 l -6.77593,16.55678 -4.1392,1.13427 0,-0.76709 z m 19.19352,-6.00884 c 3.00391,-1.13426 4.1392,0 0,-9.04548 -3.38847,-8.64557 -3.02027,-7.1431 -5.657,-6.00884 l -0.36821,-0.76708 7.52768,-3.00391 0.38354,0.75072 c -3.02027,1.13529 -4.15556,-0.36718 0,8.27839 3.37211,-1.50246 3.37211,-2.63673 3.00391,-5.25812 l 0.3682,0 3.02027,7.14413 -0.75174,0.38354 c -1.13427,-1.886 -2.26853,-3.02027 -5.27346,-1.51883 l 2.25319,6.02521 c 2.26955,1.13426 8.66193,-1.50247 6.77592,-7.14311 l 0.38354,-0.38354 1.88601,5.64064 -13.18467,5.657 -0.36718,-0.75072 z m 25.2177,-10.91512 c -3.02028,2.25319 -9.02912,0 -11.29867,-3.771 -2.63673,-5.27448 -1.1179,-10.1644 2.63673,-12.41758 3.77202,-2.25319 9.03014,-0.75073 11.66687,4.13919 2.63673,4.52274 1.50144,9.77984 -3.00493,12.04939 z m 0,-1.13427 c 2.25319,-1.50246 3.38847,-3.77201 0.3682,-9.78085 -3.38848,-5.65701 -6.39238,-6.02419 -8.64659,-4.52274 -2.63673,1.50246 -3.38746,4.52274 -0.38355,10.1644 3.00493,4.52274 6.02521,5.64166 8.66194,4.13919 z m 10.1644,-6.77592 c 1.50144,-1.13529 1.86964,-2.25319 1.1179,-3.38848 -5.2571,-7.1431 -8.27737,-10.53158 -8.64557,-10.91512 -0.38354,0 -1.13427,0.38354 -2.26853,1.50247 l -0.3682,-0.75073 6.39238,-4.88991 0.38355,0.38354 c -1.88601,1.86964 -3.38746,0.75072 2.63673,7.89383 3.75565,-2.25319 3.38847,-3.38746 1.50246,-6.02419 -1.88601,-3.00493 -1.88601,-4.89094 -0.75072,-6.0252 1.86964,-1.11892 3.38745,-0.36718 5.2571,1.51781 0.38354,0.3682 0.75174,1.50246 -0.36718,0.3682 -3.02028,-2.25319 -3.77202,-0.75175 -2.25319,1.50246 1.86964,3.38746 1.50247,4.13818 -0.38354,7.15947 4.13919,-4.52274 12.80011,-0.38354 5.27346,6.77593 l -7.15947,5.27346 -0.36718,-0.38354 z m 0,-9.41266 c 4.50637,6.40773 3.75565,6.40773 6.77593,3.771 1.86964,-1.13427 2.25318,-2.26956 1.86964,-3.38746 -0.75174,-2.63673 -3.38847,-4.89094 -8.64557,-0.38354 z m 17.30751,-5.27448 c 1.13426,-1.1179 1.50144,-1.86965 1.13426,-2.25319 0,-0.36718 -3.38847,-3.00391 -9.7962,-8.66091 -1.50246,-1.11893 -2.25319,-1.11893 -3.75565,0 l -0.75072,-0.3682 4.50637,-4.88992 0.75072,0.36718 c -1.11892,1.51883 -1.50246,2.63673 -1.11892,3.02027 0.3682,0.3682 4.1392,3.75565 11.28332,9.78086 l -8.64557,-15.80504 0.36718,-0.38355 16.93931,6.02419 c -7.52665,-6.39239 -11.66585,-9.77984 -12.41657,-9.77984 -0.38354,0 -1.13529,0.75072 -1.88601,1.88601 l -0.75072,-0.38354 5.27346,-6.39239 0.75072,0.36718 c -1.88498,2.63673 -3.38745,1.50247 4.1392,7.52665 7.89485,6.40875 6.39238,4.89094 7.52767,3.38847 l 0.75072,0.38355 -3.38847,4.13919 -13.91903,-5.27346 7.1431,13.55186 -3.38745,4.13817 -0.75072,-0.38354 z m 22.21276,-27.47089 c -11.29866,-1.88601 -17.32285,-2.63673 -18.07459,-2.63673 -0.36718,0.38354 -1.13426,0.75072 -1.50144,1.51781 l -0.75175,-0.38354 3.38848,-5.64064 0.75072,0.36717 c -1.13427,2.63674 -2.63673,3.02028 3.38847,3.77202 l 3.75566,-6.0252 c -3.00493,-4.52274 -3.00493,-4.52274 -4.5074,-1.88601 l -0.75072,-0.36718 3.75565,-6.02521 0.38354,0.36821 c -0.38354,1.13426 -0.38354,1.88498 0,2.26853 l 10.53158,13.92005 c 0.38355,0.75072 0.38355,0.75072 -0.3682,0.75072 z m -8.29373,-8.27839 -3.37211,5.64166 8.27839,1.51781 -4.90628,-7.15947 z m 7.15947,-3.38745 0.38354,-0.75175 c 1.86965,0.38355 3.37211,0.38355 4.50638,0 3.02027,-1.13426 3.02027,-2.63673 2.63673,-3.00391 0,-0.38354 -4.52274,-2.26955 -13.91904,-6.0252 -0.38354,0 -0.38354,-0.38354 -1.5178,2.25319 l -0.75175,-0.38355 3.02028,-7.1431 0.75174,0.38354 c -0.38354,1.86964 -2.63673,2.25319 6.39238,5.64166 4.52274,1.88499 6.77593,2.63673 7.15947,2.25319 0.36718,0 3.75566,-2.63673 -3.38847,-6.77593 l 0.3682,-0.75174 6.40773,2.63775 -5.65701,13.16831 -6.39238,-1.50246 z m 18.82531,-39.88848 c 1.11893,1.86965 1.11893,3.38745 1.11893,4.88992 -0.75073,4.1392 -4.88992,7.52665 -10.91513,6.77593 -4.50637,-0.75072 -8.27839,-4.88992 -7.52665,-9.04548 0.38355,-4.1392 3.02028,-6.00884 7.15947,-6.00884 0.75073,0 0.75073,0.75174 0,0.75174 -3.38847,0.36718 -6.0252,1.86965 -6.40874,5.2571 -0.36718,3.02027 2.26955,5.65802 7.15947,6.0252 6.39238,1.13427 9.02911,-1.11892 9.41265,-4.13919 0,-1.11893 -0.38354,-2.25319 -1.13426,-3.38745 -1.13529,-1.11893 -2.25319,-1.88601 -4.1392,-3.00494 l 0,-0.38354 7.14311,1.13426 -0.36718,0.75175 -1.50247,0.38354 z m -5.657,23.69989 c 0.38354,-3.00493 0.75072,-3.00493 -0.75072,-3.38847 l -13.16831,-3.75566 c -0.38355,0 -0.75175,-0.38354 -1.88601,2.63674 l -0.75175,0 2.25421,-8.27737 0.75073,0.36717 c -0.36718,3.02028 -1.86965,3.02028 7.15947,5.64167 9.41265,2.63673 7.52664,1.5178 8.66193,-1.11893 l 0.75072,0 -2.26955,8.2784 -0.75072,-0.38355 z m 7.91019,-33.49609 c 0,-3.38847 -0.38354,-3.00493 -0.75072,-3.00493 -0.38354,0 -2.63673,1.11892 -7.52665,3.00493 -9.41368,4.1392 -8.66193,3.771 -8.66193,5.27346 l -0.75175,0 0.3682,-4.88992 0.76709,0 c 0,3.00391 0,2.25319 7.1431,-0.75174 l 0,-4.90628 c -7.52664,-0.36718 -6.77592,-0.75072 -6.77592,2.26955 l -0.75072,0 1.13426,-14.30257 6.77593,0.36717 -0.38355,0.75175 c -4.88991,0.76708 -5.64064,1.13426 -6.39238,5.27346 0,3.02027 -1.13426,3.38745 7.89485,3.38745 0,-4.1392 -0.75072,-4.50637 -3.38848,-4.50637 l 0,-0.38355 8.2784,0.38355 0,0.36717 c -2.62037,0.38355 -3.75566,1.50247 -4.1392,4.1392 l 6.40875,0.38354 c 0.36718,0 1.11892,0.75175 1.11892,-4.13919 0.38354,-2.26853 -1.50246,-3.771 -4.89094,-4.13818 l 0.38354,-0.76708 5.64167,0.76708 -0.75073,15.4215 -0.75174,0 z m -8.27737,-5.27448 0,4.52274 7.89383,-3.38745 c 0,-0.75175 -0.75072,-0.75175 -1.50145,-0.75175 l -6.39238,-0.38354 z M 25.642158,137.41903 c 0.367178,-3.38745 1.501443,-3.00391 -6.408748,-4.88991 -3.755562,-0.75073 -6.025257,-1.50247 -6.775958,-2.25319 -1.502609,-1.50247 -1.869777,-3.77202 -1.502609,-6.77593 0.383543,-1.88601 1.502609,-3.38847 3.005218,-4.52274 1.134244,-0.75072 3.770709,-0.36718 7.910181,0.75072 4.139094,1.13529 6.775927,1.51883 7.15947,1.13529 0.367179,-0.3682 0.750722,-1.50246 1.118616,-2.63673 l 1.134265,0.38354 -1.885702,7.14311 -0.750722,-0.36718 c 0,-1.50247 0,-2.26955 -1.134264,-2.63673 -0.368304,-0.38354 -11.283345,-3.77202 -13.168301,-2.63775 -2.636863,2.63775 -2.636863,6.77592 -0.383543,8.27839 0.383543,0.38354 2.636454,0.75174 6.407613,1.88601 3.755449,1.13426 5.641662,1.88601 6.025205,1.50246 0.367179,-0.3682 0.750722,-1.11892 1.119026,-2.63673 l 1.134264,0 -2.25329,8.66092 -0.750721,-0.38355 z m 5.256892,-19.56069 c 0.383543,-0.75072 0.383543,-1.50144 0,-2.26853 0,-0.3682 -4.138992,-2.25421 -12.032819,-4.89094 -1.519004,-0.36718 -3.021214,0.38354 -3.388383,1.88601 l -0.750701,-0.38354 2.62008,-6.75957 0.767086,0.36718 c -0.383543,1.13427 -0.767086,1.88622 -0.383543,2.25329 0.383543,0.75154 4.523015,2.63663 12.049664,5.27336 L 19.984131,97.89876 c -0.367178,-0.751846 0,-0.751846 0.383543,-0.751846 9.41276,3.388786 14.670879,4.906486 15.437965,4.522946 0.750721,-0.38355 1.118616,-0.75062 1.502159,-1.13416 l 0.750721,0 -2.25288,6.02397 -0.767086,-0.36718 c 0.383543,-0.38354 0.383543,-1.13426 0,-1.88611 -0.367179,-0.75072 -4.139503,-2.25298 -11.666152,-4.889812 l 9.412862,15.054322 -1.134264,3.75565 -0.751949,-0.3682 z m 6.408748,-17.32264 c 1.50267,-2.63694 2.253392,-3.005243 -5.273256,-6.392388 -7.15947,-3.388782 -7.527876,-3.772325 -9.030035,-1.135492 l -0.750722,-0.367179 3.755551,-7.15947 0.750722,0.383543 c -1.501443,2.636833 -1.1179,3.00483 5.274484,6.392384 7.143105,3.388373 7.526648,3.771916 9.029216,1.134265 l 0.750722,0.368406 -4.139504,7.526541 -0.367178,-0.75061 z m 4.139503,-7.895059 c 0.367179,-0.750721 0.750722,-1.502568 0.367179,-1.886111 0,-0.383543 -3.387555,-5.640537 -10.163481,-15.053297 0,0 -0.368406,-0.751539 0.383543,-0.383543 11.297745,2.636833 17.306586,3.771098 17.690129,3.387555 0.751437,-0.367179 1.13498,-0.750722 1.502159,-1.119025 l 0.383543,0.368303 -3.387145,5.656902 -0.751847,-0.383543 c 1.502568,-2.636424 1.869747,-3.00483 0.751847,-3.388373 -0.383543,-0.383543 -4.890941,-1.134264 -12.801132,-2.636832 4.889815,7.159469 7.526648,10.548251 7.910191,10.548251 0.367895,0.367076 0.367895,0.367076 0.751438,0.367076 0.367178,0 0.750721,-0.750619 1.50267,-1.886111 l 0.750722,0.383543 -4.139094,6.392384 -0.750722,-0.367179 z M 51.978779,76.835498 c 1.501443,-1.517808 1.134264,-2.636424 -4.890941,-7.526648 -5.640537,-4.522637 -6.02408,-4.90618 -7.526648,-3.021194 l -0.750722,-0.367179 9.41276,-11.298564 5.256994,3.771916 -0.367179,0.750721 c -6.392383,-4.522637 -10.164299,3.00483 -10.164299,3.00483 0,0.383543 1.885702,1.884986 6.025205,5.273768 1.885702,-3.020478 1.502159,-4.139504 -0.383543,-5.657311 l 0.383543,-0.75154 6.392384,5.656902 -0.367178,0.368406 c -1.886112,-1.502671 -3.020376,-1.886214 -5.658027,0.750619 l 4.90618,4.139094 c 2.621184,0.383543 7.894952,-6.008841 2.25329,-9.029217 l 0.367894,-0.367178 4.906589,3.754733 -9.412759,10.915021 -0.383543,-0.367179 z M 62.892981,64.034366 c 3.021194,-3.020069 1.50216,-3.020069 -3.387554,-9.02891 -4.889815,-5.657208 -5.258119,-4.906487 -7.143105,-3.020375 l -0.751949,-0.367179 6.392384,-5.658027 0.383543,0.383543 c -2.636424,2.637651 -2.269245,2.254108 3.388781,7.894952 l 1.1179,-1.119025 c 1.50216,-1.501443 1.50216,-2.636833 0,-4.889815 -3.004011,-4.522944 -2.253289,-5.273666 -1.501443,-6.024387 1.501443,-1.502159 3.387146,-1.135083 5.273359,1.1179 0.367179,0.383543 0.367179,0.767086 -0.383543,0.383543 -7.895054,-4.139094 3.387554,5.641662 -1.886213,8.278495 3.772324,-2.636833 5.65731,-2.25329 7.159469,-0.750722 1.886214,1.884986 1.502671,4.522637 -1.134264,7.15947 l -6.775927,6.392384 -0.751438,-0.751847 z M 62.14226,54.621913 c 5.641662,6.392384 4.522637,6.392384 7.15947,3.771916 3.388372,-3.388373 1.502159,-5.274484 -0.383543,-6.408748 -1.502568,-0.367179 -2.636833,-0.750722 -6.775927,2.636832 z m 23.33261,-9.029216 c -1.502671,1.886213 -1.502671,3.004829 -3.00483,4.139094 -2.636832,1.502568 -5.641662,1.119025 -7.526648,-1.502261 -0.751847,-1.134163 -0.751847,-2.636833 -0.383543,-3.771098 0.383543,-1.135389 1.134264,-2.253289 2.268529,-3.388372 3.00483,-3.755858 3.755551,-4.50658 2.254108,-6.392384 -1.135492,-1.502568 -2.637651,-1.886111 -5.274484,-0.383543 -2.636935,1.502261 -3.387656,4.889816 -1.501443,8.278188 l -0.751949,0.750722 -3.770688,-5.640537 0.767086,-0.751847 2.252881,0.383543 c 0,-1.517808 0.750721,-3.020069 2.636935,-4.139094 8.645673,-3.020376 12.417589,4.507398 5.258119,9.780756 -2.621286,3.387554 -3.00483,3.75596 -1.50267,5.641662 1.134264,1.134265 3.020478,1.501443 4.890224,0.383543 1.885702,-1.502159 2.636424,-3.771915 1.517808,-7.911009 l 0.367894,-0.367076 3.387657,5.256891 -0.750722,0.383543 -1.134264,-0.750721 z m 3.771097,-1.886111 c 1.134265,-0.383543 1.885702,-1.134265 1.885702,-2.252983 0,-0.750619 -2.269245,-4.890123 -6.408748,-12.049592 -0.367179,-0.750722 -1.502159,-0.750722 -3.387145,0.383543 l -0.368304,-0.767086 7.527773,-3.755551 0.367179,0.750721 c -1.869747,0.383543 -2.636833,1.135492 -2.25329,2.254108 l 6.392384,12.049695 c 0.383543,1.134162 0.767086,1.134162 3.387554,-0.383543 l 0.383543,0.767086 -7.159469,3.755448 -0.367179,-0.751846 z m 6.392384,-10.531478 0.750721,-0.383543 c 3.388373,5.641662 6.775928,4.522637 6.775928,3.004829 0.38354,-0.367178 -0.36718,-2.621286 -2.25329,-6.775926 -1.501444,-4.139094 -2.636936,-6.759563 -3.004114,-7.143106 -0.383543,-0.383543 -1.518524,0 -2.636424,0.750722 l -0.383543,-0.750722 7.159471,-3.004829 0.36718,0.750721 c -3.004014,1.119025 -2.636835,1.119025 0.38354,9.030035 1.8857,4.138276 2.63642,6.024387 3.00483,6.392384 1.13426,0.383543 4.88992,0.750721 3.02038,-7.143924 l 1.1179,-0.383543 1.8859,6.408851 -13.168513,5.256892 -3.019966,-6.008841 z M 120.10523,31.6573 c -7.14311,-9.029216 -10.91503,-13.551853 -11.2822,-13.919001 -0.38355,-0.383543 -1.13539,-0.383543 -1.88612,0 l -0.38354,-0.751898 6.77593,-1.884955 0,0.750701 c -3.75555,0.750711 -3.00483,1.502609 -0.36718,5.273675 l 6.77593,-2.253289 c 1.1179,-4.906139 0,-4.906139 -1.88601,-4.522596 l -0.38355,-0.750701 6.77593,-1.886153 0.38354,0.750702 c -1.13528,0.383543 -1.886,0.751908 -1.886,1.886152 L 121.23949,31.6573 c -0.38354,0.750722 -0.75072,0.383543 -1.13426,0 z m -0.36718,-11.66564 -6.02521,1.885702 4.88992,6.775927 1.13529,-8.661629 z m 20.69496,5.640435 c -1.88601,2.269654 -7.9102,5.658027 -10.16441,-2.25329 -0.36717,-1.1179 0,-2.252983 0.75175,-3.387145 0.75072,-0.751949 1.88601,-1.50267 3.77099,-2.253361 4.5074,-1.886152 4.89094,-1.886152 4.89094,-4.522606 0,-1.869778 -1.886,-3.005219 -4.52274,-2.636864 -3.00493,0.383543 -5.25811,2.636864 -5.25811,6.775927 l -1.13427,0 -0.75174,-6.392384 1.11892,-0.383543 1.51781,1.517797 c 1.11892,-1.517797 2.62139,-2.2696946 4.50739,-2.6368629 6.02419,-1.1342482 7.15947,5.2581399 6.02419,7.1430949 -0.36718,1.502589 -1.88499,2.269675 -5.27346,3.772345 -4.1392,2.252881 -4.1392,1.885702 -4.1392,4.506171 0.38354,1.517807 2.26955,2.636832 4.1392,2.269756 2.63673,-0.383543 3.77201,-1.886213 4.90628,-6.408851 l 0.75072,0 0.3682,6.408851 -0.75174,0 -0.75072,-1.519035 z m 13.16831,0 c 3.02027,0 2.63673,0 2.63673,-1.1179 l 0.75072,-12.417569 c 0,-1.886152 -0.36718,-2.6368629 -2.25319,-2.6368629 l 0,-0.7507011 6.77593,0.367158 0,0.7507114 c -2.63673,0 -3.38745,1.1354406 -3.38745,3.0203966 l -0.75175,13.16831 7.52767,-16.5558749 0.75072,0 4.52274,17.3078239 1.11893,-15.054504 c 0,-0.367168 -0.36821,-1.134254 -1.50247,-1.134254 l -1.50247,0 0.36821,-0.7518976 8.29373,0.3835426 -0.38354,0.751898 -1.50247,0 c -1.13426,0 -1.50144,0 -1.50144,1.134254 l -0.76709,13.535469 c 0,1.135492 -0.3682,1.519035 2.63673,1.519035 l 0,0.750619 -6.0252,-0.383543 -3.75566,-14.670878 -6.77592,13.920259 -5.64064,-0.368406 0.36718,-0.767086 z m 30.10761,4.522637 c -2.25319,-11.665742 -3.38745,-17.690947 -3.75463,-18.058106 0,-0.383543 -0.38354,-0.383543 -1.50246,-0.750711 l 0,-0.767086 6.39238,1.134254 0,0.750702 c -2.63673,-0.367159 -4.1392,-0.750702 -2.63673,4.522616 l 6.77593,1.119046 c 3.77099,-5.258119 2.63673,-4.506211 0.38354,-4.889754 l 0,-0.751908 7.1431,1.502609 -0.36717,0.751509 c -1.13529,-0.367966 -1.88601,0 -2.26956,0.767086 l -9.02911,14.669743 c -0.75174,0.751847 -0.75174,0.383543 -1.13529,0 z m 4.90628,-10.915021 -6.40772,-1.134264 1.50144,8.293734 4.90628,-7.15947 z m 15.4215,15.054422 c -1.50144,0.383543 -10.9141,0.75154 -7.52665,-7.143003 1.13427,-2.636935 3.02028,-3.020478 6.40875,-2.636935 5.2571,1.1179 5.64064,0.750722 6.39239,-1.886111 1.13426,-1.502262 0.38354,-3.00483 -2.25319,-4.139094 -3.0213,-1.134234 -6.40875,0 -7.91122,3.388372 l -1.13426,-0.383543 2.26955,-6.392373 0.75072,0.383543 1.50247,2.25331 c 1.13426,-1.135441 3.00391,-1.135441 4.88992,-0.383543 6.0252,1.884955 4.13919,8.660882 1.88601,9.412831 -1.13529,1.134162 -2.25319,1.134162 -6.39239,0.750619 -4.90628,-0.750619 -6.77592,0.75154 -5.65802,3.771916 1.886,4.139094 4.89094,3.004011 9.79722,-1.13539 l 0.75072,0.383543 -2.63673,5.641662 -0.75174,-0.383543 -0.38355,-1.502261 z m 9.03014,5.641765 c 1.13426,-11.282609 1.51781,-17.307814 1.13426,-17.674993 -0.36717,-0.383543 -0.75072,-1.135083 -1.50246,-1.518626 l 0.3682,-0.367076 6.02418,3.003602 -0.36718,0.751847 c -1.88601,-1.502568 -3.38847,-1.119025 -3.38847,3.387554 l 6.0252,3.020069 c 5.64167,-3.770688 4.1392,-3.387145 1.50247,-4.522637 l 0.36718,-0.750721 6.40875,3.004829 -0.38355,0.750722 -0.75174,-0.367179 c -0.36718,-0.383543 -1.13427,0 -1.88499,0.367179 l -12.78476,11.682516 c -0.38355,0.367076 -0.76709,0.367076 -0.76709,-0.767086 z m 7.54301,-8.645776 -5.65802,-2.636833 -0.75073,8.27737 6.40875,-5.640537 z m 1.1179,12.032921 c 2.63673,1.518932 3.02028,1.135389 3.38848,0.767086 4.88991,-7.15947 7.52665,-11.298564 7.52665,-12.049286 0.38354,-0.383543 -0.36718,-1.134264 -1.50247,-1.886111 l 0.38354,-0.750721 6.76059,4.523046 -0.3682,0.750619 c -2.63673,-1.886111 -2.63673,-1.134162 -3.00391,-0.750619 l -3.77202,5.640435 c 3.77202,2.254108 3.77202,2.254108 6.39238,-0.383543 3.38848,-4.138276 3.77202,-3.387555 5.27449,-2.620469 1.88498,1.119026 1.88498,2.620469 0.38354,5.25812 -0.38354,0.383543 -0.38354,0 -0.38354,-0.367997 1.13426,-7.526546 -4.52274,3.755551 -9.02912,0.367997 2.63673,2.636832 4.50638,4.890224 2.25319,7.159469 -1.11892,1.869747 -3.75565,1.869747 -7.14413,0 l -7.52665,-4.89094 0.36718,-0.767086 z m 9.02912,-3.003602 c -4.50638,6.392383 -4.50638,5.640434 -1.86965,7.159469 6.39239,3.755449 9.39732,-2.269756 1.86965,-7.159469 z m 7.15947,13.551853 c 1.13528,0.750619 1.50246,1.134162 1.88601,1.134162 0.3682,0.367997 4.13919,-0.767086 10.53158,-3.020375 l 3.38847,-4.139094 c 0.38354,-0.367077 0.38354,-0.75062 -1.50247,-2.636833 l 0.36718,-0.750722 6.40875,5.640537 -0.75174,0.751847 c -1.88499,-1.869747 -2.26853,-4.138992 -6.77593,3.020478 -3.02027,11.66564 -2.26853,10.163072 -0.75072,11.66564 l -0.75072,0.383543 -4.52274,-4.15464 0.38354,-0.75154 0.75072,0.75154 c 0.3682,0.383543 1.50247,0.383543 1.86965,0 0.38354,-0.367997 0.75174,-3.00483 1.88601,-7.894543 -10.91513,2.636424 -8.66194,3.387145 -7.14311,4.889713 l -0.38354,0.750722 -5.64167,-4.889816 0.75073,-0.750619 z m 14.30359,13.168311 c 1.50247,1.885702 1.88601,1.502159 2.25319,1.134162 6.77593,-5.640844 10.16338,-9.029217 10.54692,-9.41276 0.3682,-0.367178 0.3682,-1.134264 -0.75072,-2.253289 l 0.75072,-0.383543 5.25812,6.025205 -0.75072,0.750721 c -1.86964,-3.004829 -1.86964,-2.25288 -6.0252,1.134265 l -0.36718,3.755858 c 10.91512,0 9.77983,-1.502568 7.91019,-3.387554 l 0.75072,-0.368304 4.89094,6.025205 -0.75174,0.367179 c -0.38355,-0.367179 -0.75073,-0.750722 -1.51781,-1.1179 -0.36718,0 -4.50638,0.367178 -11.66585,1.1179 -1.11892,7.527773 -0.75174,8.278495 0.38355,9.796302 l -0.75175,0.368406 -4.52274,-5.273768 0.75175,-0.751539 c 1.13426,1.502261 1.88601,1.885804 2.26955,0.383543 0.36718,-0.383543 1.1179,-3.771098 1.50144,-10.163481 -8.66091,7.143105 -7.15947,6.392383 -5.27346,8.277369 l -0.36718,0.751949 -5.27448,-6.392383 0.75174,-0.383543 z m 11.66585,14.686015 c 1.50246,2.636526 1.50246,2.636526 3.00493,1.502262 7.52665,-4.522637 11.29764,-7.15947 11.68119,-7.526649 0.3682,-0.383543 0,-1.502159 -1.13427,-2.637651 l 0.75072,-0.383543 4.52274,6.775927 -0.75072,0.383543 c -1.51781,-2.636832 -0.38354,-3.771097 -13.93539,5.274484 -1.50247,1.1179 -1.50247,0.750721 0.38354,3.387554 l -0.75072,0.367997 -4.52274,-6.775927 0.75072,-0.367997 z m 7.15947,15.054115 c 7.89485,-7.910191 11.66584,-12.049285 12.03404,-13.16831 0.38355,-0.767086 0.38355,-1.517808 0,-2.269348 l 0.75073,0 3.02027,6.025308 -0.75072,0.383543 c -1.51883,-3.388782 -1.88601,-3.020478 -5.27346,0.750619 l 3.00391,6.025308 c 4.88991,0 5.27346,-0.767086 4.13919,-2.636935 l 0.75072,-0.383543 3.02028,6.392383 -0.75072,0.383543 c -0.38355,-0.751846 -0.75073,-1.135389 -1.88601,-1.502568 l -17.69105,1.119025 c -0.36718,0 -1.13427,0 -0.36718,-1.119025 z m 11.66584,-2.25288 -2.63673,-5.657311 -6.02418,6.024387 8.66091,-0.367076 z m -6.77592,9.395985 c 1.11892,2.63683 0,3.77233 13.55185,-1.86944 1.50247,-0.38354 2.25319,-2.269653 1.86964,-3.387554 l 0.75175,-0.383543 2.26955,6.775927 -0.75174,0.38354 c -0.38355,-1.88611 0.3682,-3.38837 -13.55186,1.50145 l 16.94033,5.64166 0.36718,0.75072 c -9.41266,3.38847 -14.30258,5.27448 -14.67078,5.64166 -0.38354,0.38355 -0.75072,1.13427 -0.38354,2.63673 l -0.75072,0.38355 -1.88601,-6.02419 0.75174,-0.38354 c 0.38355,1.88499 0,3.771 13.18366,-1.87067 l -16.93931,-5.6569 -1.50247,-3.75586 0.75073,-0.38354 z m 19.94423,14.68724 c 1.50247,-1.13528 1.88601,-1.88601 1.50247,-3.38847 l 0.75072,0 1.50247,6.39238 -0.75072,0.38355 c -0.75175,-3.38746 -0.75175,-3.771 -4.88992,-0.75073 l 1.50144,6.77593 c 6.77593,1.86965 4.90628,0 4.52274,-1.88601 l 0.75174,0 1.50145,6.77593 -0.75072,0.36718 c -0.36718,-1.1179 -0.75073,-1.50145 -1.50247,-1.86965 l -17.30751,-2.63673 c -0.38354,0 -1.13426,0 -0.38354,-0.75072 l 13.55185,-9.41266 z m -1.50144,9.41266 -1.50247,-6.40875 -7.15946,4.88992 8.66193,1.51883 z"
        inkscape:connector-curvature="0" /><path
        id="path3895"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:1;fill-rule:nonzero;stroke:none"
        d="m 255.9756,203.67686 -6.77593,13.91903 -88.82243,-154.695789 7.91019,-12.801132 87.68817,153.577891 z m -127.20844,-41.03911 -8.27839,-13.92005 49.30113,0 7.91019,13.92005 -48.93293,0 z m 36.13282,-81.295673 -27.47191,51.187043 -10.16338,0.38354 -8.29373,15.4215 3.771,6.40875 -17.69126,31.2429 -16.555455,0 68.493525,-119.314611 7.91121,14.670878 z m 8.27839,52.689503 7.9102,15.43786 -2.63673,12.80011 -7.91122,-13.93539 2.63775,-14.30258 z m -26.35298,-84.299789 20.71132,0 -7.91019,12.801132 -19.94424,0 7.14311,-12.801132 z m 54.57459,152.426239 2.26955,-15.05432 6.77593,0 8.27839,15.05432 -17.32387,0 z m -1.50144,14.68714 -7.14413,-12.80113 2.25319,-16.18859 5.64166,10.54692 -0.75072,4.5074 2.25319,3.771 -2.25319,10.1644 z m -141.895783,-12.05041 134.000933,0 7.1431,13.18467 -132.865436,0 -8.278597,-13.18467 z"
        inkscape:connector-curvature="0" /><path
        id="path3003"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 293.1901,68.779563 c -0.71004,-1.139801 -1.43834,-2.278686 -2.17465,-3.398706 0.27669,-0.665541 0.42874,-1.403342 0.42874,-2.175099 0,-3.054902 -2.38957,-5.458098 -5.37255,-5.458098 -0.1212,0 -0.2504,0.01829 -0.37045,0.02722 -0.80035,-1.076801 -1.60411,-2.170983 -2.43075,-3.229948 0.88494,-0.290295 1.82706,-0.454594 2.8012,-0.454594 4.98383,0 9.0347,4.108837 9.0347,9.115428 0,2.090148 -0.73289,4.023658 -1.91624,5.573805 z"
        inkscape:connector-curvature="0" /><path
        id="path3005"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 17.929786,68.493726 c -1.066525,-1.501097 -1.687326,-3.323245 -1.687326,-5.287968 0,-5.006591 4.077178,-9.115428 9.061897,-9.115428 0.853038,0 1.673926,0.142918 2.455916,0.370214 -0.839158,1.075888 -1.670312,2.188362 -2.483162,3.287116 -2.970454,0.01383 -5.377285,2.411314 -5.377285,5.458098 0,0.62884 0.09826,1.240757 0.285836,1.799853 -0.763721,1.155921 -1.52297,2.3131 -2.255876,3.488115 z"
        inkscape:connector-curvature="0" /><path
        id="path3007"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 16.228615,39.575115 0,-18.079478 18.258182,0 0,18.079478 -18.258182,0 z m 3.644856,-3.644753 10.932786,0 0,-10.754184 -10.932786,0 0,10.754184 z"
        inkscape:connector-curvature="0" /><path
        id="path3009"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 49.001555,32.049622 c -0.09387,-0.523424 -0.173788,-1.049591 -0.173788,-1.59931 0,-5.011051 4.077165,-9.119544 9.061918,-9.119544 1.31256,0 2.559148,0.28938 3.688658,0.799426 -1.312673,0.932969 -2.608311,1.888805 -3.889657,2.858361 -2.371525,0.08941 -4.341622,1.687348 -4.971261,3.916869 -1.255507,1.031754 -2.497066,2.081231 -3.71587,3.144198 z"
        inkscape:connector-curvature="0" /><path
        id="path3011"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 262.31979,32.392625 c -1.17879,-1.031182 -2.36672,-2.05802 -3.57295,-3.058447 -0.49963,-2.505981 -2.65256,-4.345623 -5.26054,-4.345623 -0.0765,0 -0.15206,0 -0.22867,0 -1.22794,-0.929425 -2.46047,-1.849017 -3.71586,-2.743112 1.19708,-0.588594 2.53252,-0.914675 3.94453,-0.914675 4.98385,0 9.03471,4.108493 9.03471,9.119544 0,0.665426 -0.0675,1.313473 -0.20123,1.942313 z"
        inkscape:connector-curvature="0" /><path
        id="path3013"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 276.98203,39.575115 0,-18.079478 18.25807,0 0,18.079478 -18.25807,0 z m 3.64498,-3.644753 10.93266,0 0,-10.754184 -10.93266,0 0,10.754184 z"
        inkscape:connector-curvature="0" /><path
        id="path3015"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 48.778602,7.1685026 0,-18.0800486 18.25784,0 0,18.0800486 -18.25784,0 z m 3.680197,-3.6453246 10.932775,0 0,-10.75407 -10.932775,0 0,10.75407 z"
        inkscape:connector-curvature="0" /><path
        id="path3017"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 88.044486,6.8102933 c -3.809629,-1.0848052 -6.631403,-4.613167 -6.631403,-8.7751691 0,-5.0065912 4.077167,-9.1154282 9.061921,-9.1154282 4.98384,0 9.030136,4.108837 9.030136,9.1154282 0,1.6248063 -0.4515,3.1571168 -1.196846,4.4876268 -3.4792,1.3139312 -6.90478,2.7520299 -10.263808,4.2875423 z M 90.475004,3.523178 c 2.97853,0 5.37281,-2.4340664 5.37281,-5.4880538 0,-3.0549026 -2.39429,-5.4580982 -5.37281,-5.4580982 -2.983906,0 -5.404591,2.4031956 -5.404591,5.4580982 0,3.0539874 2.420685,5.4880538 5.404591,5.4880538 z"
        inkscape:connector-curvature="0" /><path
        id="path3019"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 113.91357,-2.4517119 0,-8.4598341 18.26618,0 0,4.7439647 c -1.22795,0.1782477 -2.44334,0.3703287 -3.66224,0.5716718 l 0,-1.6256065 -10.91529,0 0,3.8274591 c -1.23275,0.2938399 -2.46984,0.6199221 -3.68865,0.942345 z"
        inkscape:connector-curvature="0" /><path
        id="path3021"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 162.81795,-7.650271 c -2.42961,-0.112161 -4.88551,-0.201457 -7.34256,-0.201457 -2.27755,0 -4.52421,0.07546 -6.77546,0.17013 1.66128,-2.072769 4.22123,-3.398706 7.0613,-3.398706 2.84921,0 5.40459,1.335312 7.05672,3.430033 z"
        inkscape:connector-curvature="0" /><path
        id="path3023"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 197.35039,-2.3623028 c -1.21881,-0.3260811 -2.42961,-0.6485051 -3.66215,-0.9469174 l 0,-3.9122958 -10.9155,0 0,1.6836885 c -1.22337,-0.205459 -2.4559,-0.3929677 -3.68843,-0.5716718 l 0,-4.8020467 18.26608,0 0,8.5492432 z"
        inkscape:connector-curvature="0" /><path
        id="path3025"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="M 223.01733,6.8688317 C 219.72106,5.3552724 216.38936,3.9305506 212.98218,2.63983 c -0.79462,-1.3630956 -1.28626,-2.9307351 -1.28626,-4.6047058 0,-5.0065912 4.07718,-9.1154282 9.06216,-9.1154282 4.98384,0 9.03471,4.108837 9.03471,9.1154282 0,4.2250009 -2.88008,7.8113295 -6.77546,8.8337075 z M 220.75808,3.523178 c 2.98298,0 5.37257,-2.4340664 5.37257,-5.4880538 0,-3.0549026 -2.38959,-5.4580982 -5.37257,-5.4580982 -2.97956,0 -5.40001,2.4031956 -5.40001,5.4580982 0,3.0539874 2.42045,5.4880538 5.40001,5.4880538 z"
        inkscape:connector-curvature="0" /><path
        id="path3027"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 244.21836,7.1685026 0,-18.0800486 18.25806,0 0,18.0800486 -18.25806,0 z m 3.68042,-3.6453246 10.93381,0 0,-10.75407 -10.93381,0 0,10.75407 z"
        inkscape:connector-curvature="0" /><path
        id="path3029"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 286.06247,7.1774212 c -4.98383,0 -9.06215,-4.1401653 -9.06215,-9.1467563 0,-5.0065909 4.07832,-9.1203439 9.06215,-9.1203439 4.97928,0 9.03015,4.113753 9.03015,9.1203439 0,5.006591 -4.05087,9.1467563 -9.03015,9.1467563 z m 0,-3.6587025 c 2.97843,0 5.37258,-2.4340664 5.37258,-5.4880538 0,-3.0549015 -2.39416,-5.4580969 -5.37258,-5.4580969 -2.98298,0 -5.40457,2.4031954 -5.40457,5.4580969 0,3.0539874 2.42159,5.4880538 5.40457,5.4880538 z"
        inkscape:connector-curvature="0" /><path
        id="path3031"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 25.299887,7.1774212 c -4.985154,0 -9.06234,-4.1401653 -9.06234,-9.1467563 0,-5.0065909 4.077186,-9.1203439 9.06234,-9.1203439 4.979402,0 9.030158,4.113753 9.030158,9.1203439 0,5.006591 -4.050756,9.1467563 -9.030158,9.1467563 z m 0,-3.6587025 c 2.97855,0 5.37237,-2.4340664 5.37237,-5.4880538 0,-3.0549015 -2.39382,-5.4580969 -5.37237,-5.4580969 -2.984301,0 -5.404533,2.4031954 -5.404533,5.4580969 0,3.0539874 2.420232,5.4880538 5.404533,5.4880538 z"
        inkscape:connector-curvature="0" /><path
        id="path3033"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 16.228615,346.2409 0,-18.07857 18.258182,0 0,18.07857 -18.258182,0 z m 3.644856,-3.64384 10.932786,0 0,-10.79088 -10.932786,0 0,10.79088 z"
        inkscape:connector-curvature="0" /><path
        id="path3035"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 57.893231,346.2409 c -4.97938,0 -9.056547,-4.14005 -9.056547,-9.14675 0,-5.00671 4.077167,-9.11932 9.056547,-9.11932 4.985209,0 9.035964,4.11261 9.035964,9.11932 0,5.0067 -4.050755,9.14675 -9.035964,9.14675 z m 0,-3.65756 c 2.984357,0 5.378177,-2.43418 5.378177,-5.48919 0,-3.05502 -2.39382,-5.45719 -5.378177,-5.45719 -2.978527,0 -5.398759,2.40217 -5.398759,5.45719 0,3.05501 2.420232,5.48919 5.398759,5.48919 z"
        inkscape:connector-curvature="0" /><path
        id="path3037"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 81.36392,346.2409 0,-18.07857 18.25785,0 0,18.07857 -18.25785,0 z m 3.643609,-3.64384 10.934035,0 0,-10.79088 -10.934035,0 0,10.79088 z"
        inkscape:connector-curvature="0" /><path
        id="path3039"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 123.18495,346.2409 c -4.98384,0 -9.06192,-4.14005 -9.06192,-9.14675 0,-5.00671 4.07808,-9.11932 9.06192,-9.11932 4.98384,0 9.03024,4.11261 9.03024,9.11932 0,5.0067 -4.0464,9.14675 -9.03024,9.14675 z m 0,-3.65756 c 2.97852,0 5.37279,-2.43418 5.37279,-5.48919 0,-3.05502 -2.39428,-5.45719 -5.37279,-5.45719 -2.98298,0 -5.40459,2.40217 -5.40459,5.45719 0,3.05501 2.42161,5.48919 5.40459,5.48919 z"
        inkscape:connector-curvature="0" /><path
        id="path3041"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 146.53443,346.2409 0,-18.07857 18.25808,0 0,18.07857 -18.25808,0 z m 3.64384,-3.64384 10.9338,0 0,-10.79088 -10.9338,0 0,10.79088 z"
        inkscape:connector-curvature="0" /><path
        id="path3043"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 188.20363,346.2409 c -4.98384,0 -9.06215,-4.14005 -9.06215,-9.14675 0,-5.00671 4.07831,-9.11932 9.06215,-9.11932 4.98383,0 9.03012,4.11261 9.03012,9.11932 0,5.0067 -4.04629,9.14675 -9.03012,9.14675 z m 0,-3.65756 c 2.97956,0 5.37258,-2.43418 5.37258,-5.48919 0,-3.05502 -2.39302,-5.45719 -5.37258,-5.45719 -2.98298,0 -5.40344,2.40217 -5.40344,5.45719 0,3.05501 2.42046,5.48919 5.40344,5.48919 z"
        inkscape:connector-curvature="0" /><path
        id="path3045"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 211.66964,346.2409 0,-18.07857 18.25692,0 0,18.07857 -18.25692,0 z m 3.64382,-3.64384 10.93382,0 0,-10.79088 -10.93382,0 0,10.79088 z"
        inkscape:connector-curvature="0" /><path
        id="path3047"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 253.49088,346.2409 c -4.98041,0 -9.05758,-4.14005 -9.05758,-9.14675 0,-5.00671 4.07717,-9.11932 9.05758,-9.11932 4.98383,0 9.0347,4.11261 9.0347,9.11932 0,5.0067 -4.05087,9.14675 -9.0347,9.14675 z m 0,-3.65756 c 2.98298,0 5.37715,-2.43418 5.37715,-5.48919 0,-3.05502 -2.39417,-5.45719 -5.37715,-5.45719 -2.97956,0 -5.40002,2.40217 -5.40002,5.45719 0,3.05501 2.42046,5.48919 5.40002,5.48919 z"
        inkscape:connector-curvature="0" /><path
        id="path3049"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 276.98203,346.2409 0,-18.07857 18.25807,0 0,18.07857 -18.25807,0 z m 3.64498,-3.64384 10.93266,0 0,-10.79088 -10.93266,0 0,10.79088 z"
        inkscape:connector-curvature="0" /><path
        id="path3051"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 48.778602,313.83509 0,-18.07971 18.25784,0 0,18.07971 -18.25784,0 z m 3.680197,-3.68043 10.932775,0 0,-10.75429 -10.932775,0 0,10.75429 z"
        inkscape:connector-curvature="0" /><path
        id="path3053"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 90.475004,313.82594 c -4.984754,0 -9.061921,-4.13547 -9.061921,-9.14675 0,-2.01915 0.656051,-3.88623 1.772185,-5.40002 1.117047,0.55795 2.241983,1.09418 3.372866,1.63041 -0.924967,0.97299 -1.487721,2.29126 -1.487721,3.76961 0,3.05958 2.420685,5.4892 5.404591,5.4892 2.89849,0 5.24235,-2.29584 5.3728,-5.23081 1.15581,0.46077 2.31756,0.88496 3.488126,1.3137 -0.74182,4.27383 -4.413096,7.57466 -8.860926,7.57466 z"
        inkscape:connector-curvature="0" /><path
        id="path3055"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 113.91357,313.82594 0,-2.97041 c 4.43846,1.17422 8.96725,2.17464 13.54999,2.97041 l -13.54999,0 z"
        inkscape:connector-curvature="0" /><path
        id="path3057"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 183.51362,313.82594 c 4.69,-0.81749 9.29426,-1.84535 13.83675,-3.05502 l 0,3.05502 -13.83675,0 z"
        inkscape:connector-curvature="0" /><path
        id="path3059"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 220.75807,313.82594 c -4.47047,0 -8.19549,-3.32713 -8.91923,-7.62839 1.18794,-0.44247 2.345,-0.90668 3.51922,-1.37544 0.072,2.98756 2.46504,5.34628 5.40001,5.34628 2.98298,0 5.37258,-2.42962 5.37258,-5.4892 0,-1.52752 -0.57168,-2.87666 -1.54123,-3.85879 1.12162,-0.52708 2.23296,-1.07246 3.34542,-1.62583 1.15706,1.53207 1.85794,3.42088 1.85794,5.48462 0,5.01128 -4.05087,9.14675 -9.03471,9.14675 z"
        inkscape:connector-curvature="0" /><path
        id="path3061"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 244.21836,313.83509 0,-18.07971 18.25806,0 0,18.07971 -18.25806,0 z m 3.68042,-3.68043 10.93381,0 0,-10.75429 -10.93381,0 0,10.75429 z"
        inkscape:connector-curvature="0" /><path
        id="path3063"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 286.06247,313.83051 c -4.98383,0 -9.06215,-4.13662 -9.06215,-9.14675 0,-5.0067 4.07832,-9.11588 9.06215,-9.11588 4.97928,0 9.03015,4.10918 9.03015,9.11588 0,5.01013 -4.05087,9.14675 -9.03015,9.14675 z m 0,-3.6587 c 2.97843,0 5.37258,-2.43304 5.37258,-5.48805 0,-3.05501 -2.39416,-5.45833 -5.37258,-5.45833 -2.98298,0 -5.40457,2.40332 -5.40457,5.45833 0,3.05501 2.42159,5.48805 5.40457,5.48805 z"
        inkscape:connector-curvature="0" /><path
        id="path3065"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 25.299887,313.83051 c -4.985154,0 -9.06234,-4.13662 -9.06234,-9.14675 0,-5.0067 4.077186,-9.11588 9.06234,-9.11588 4.979402,0 9.030158,4.10918 9.030158,9.11588 0,5.01013 -4.050756,9.14675 -9.030158,9.14675 z m 0,-3.6587 c 2.97855,0 5.37237,-2.43304 5.37237,-5.48805 0,-3.05501 -2.39382,-5.45833 -5.37237,-5.45833 -2.984301,0 -5.404533,2.40332 -5.404533,5.45833 0,3.05501 2.420232,5.48805 5.404533,5.48805 z"
        inkscape:connector-curvature="0" /><path
        id="path3067"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 16.228615,281.07026 0,-18.07855 18.258182,0 0,18.07855 -18.258182,0 z m 3.644856,-3.67928 10.932786,0 0,-10.75544 -10.932786,0 0,10.75544 z"
        inkscape:connector-curvature="0" /><path
        id="path3069"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 276.98203,281.07026 0,-18.07855 18.25807,0 0,18.07855 -18.25807,0 z m 3.64498,-3.67928 10.93266,0 0,-10.75544 -10.93266,0 0,10.75544 z"
        inkscape:connector-curvature="0" /><path
        id="path3071"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 287.24584,248.5707 c 2.66629,-3.71587 5.16334,-7.54836 7.51634,-11.49175 0.21037,0.77289 0.34415,1.59382 0.34415,2.4296 0,4.60882 -3.43918,8.46762 -7.86049,9.06215 z"
        inkscape:connector-curvature="0" /><path
        id="path3073"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 23.6742,248.48495 c -4.216975,-0.78091 -7.43174,-4.52421 -7.43174,-8.9764 0,-0.69744 0.07994,-1.37544 0.227329,-2.02829 2.263916,3.76961 4.653324,7.44545 7.204411,11.00469 z"
        inkscape:connector-curvature="0" /><path
        id="path3075"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 16.228615,-25.416814 0,-18.080037 18.258182,0 0,18.080037 -18.258182,0 z m 3.644856,-3.645325 10.932786,0 0,-10.78941 -10.932786,0 0,10.78941 z"
        inkscape:connector-curvature="0" /><path
        id="path3077"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 57.893231,-25.412355 c -4.97938,0 -9.056547,-4.140165 -9.056547,-9.146756 0,-5.006603 4.077167,-9.120405 9.056547,-9.120405 4.985209,0 9.035964,4.113802 9.035964,9.120405 0,5.006591 -4.050755,9.146756 -9.035964,9.146756 z m 0,-3.658702 c 2.984357,0 5.378177,-2.433151 5.378177,-5.488054 0,-3.054879 -2.39382,-5.458131 -5.378177,-5.458131 -2.978527,0 -5.398759,2.403252 -5.398759,5.458131 0,3.054903 2.420232,5.488054 5.398759,5.488054 z"
        inkscape:connector-curvature="0" /><path
        id="path3079"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 81.36392,-25.416814 0,-18.080037 18.25785,0 0,18.080037 -18.25785,0 z m 3.643609,-3.645325 10.934035,0 0,-10.78941 -10.934035,0 0,10.78941 z"
        inkscape:connector-curvature="0" /><path
        id="path3081"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 123.18495,-25.412355 c -4.98384,0 -9.06192,-4.140165 -9.06192,-9.146756 0,-5.006603 4.07808,-9.120405 9.06192,-9.120405 4.98384,0 9.03024,4.113802 9.03024,9.120405 0,5.006591 -4.0464,9.146756 -9.03024,9.146756 z m 0,-3.658702 c 2.97852,0 5.37279,-2.433151 5.37279,-5.488054 0,-3.054879 -2.39428,-5.458131 -5.37279,-5.458131 -2.98298,0 -5.40459,2.403252 -5.40459,5.458131 0,3.054903 2.42161,5.488054 5.40459,5.488054 z"
        inkscape:connector-curvature="0" /><path
        id="path3083"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 146.53443,-25.416814 0,-18.080037 18.25808,0 0,18.080037 -18.25808,0 z m 3.64384,-3.645325 10.9338,0 0,-10.78941 -10.9338,0 0,10.78941 z"
        inkscape:connector-curvature="0" /><path
        id="path3085"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 188.20363,-25.412355 c -4.98384,0 -9.06215,-4.140165 -9.06215,-9.146756 0,-5.006603 4.07831,-9.120405 9.06215,-9.120405 4.98383,0 9.03012,4.113802 9.03012,9.120405 0,5.006591 -4.04629,9.146756 -9.03012,9.146756 z m 0,-3.658702 c 2.97956,0 5.37258,-2.433151 5.37258,-5.488054 0,-3.054879 -2.39302,-5.458131 -5.37258,-5.458131 -2.98298,0 -5.40344,2.403252 -5.40344,5.458131 0,3.054903 2.42046,5.488054 5.40344,5.488054 z"
        inkscape:connector-curvature="0" /><path
        id="path3087"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 211.66964,-25.416814 0,-18.080037 18.25692,0 0,18.080037 -18.25692,0 z m 3.64382,-3.645325 10.93382,0 0,-10.78941 -10.93382,0 0,10.78941 z"
        inkscape:connector-curvature="0" /><path
        id="path3089"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 253.49088,-25.412355 c -4.98041,0 -9.05758,-4.140165 -9.05758,-9.146756 0,-5.006603 4.07717,-9.120405 9.05758,-9.120405 4.98383,0 9.0347,4.113802 9.0347,9.120405 0,5.006591 -4.05087,9.146756 -9.0347,9.146756 z m 0,-3.658702 c 2.98298,0 5.37715,-2.433151 5.37715,-5.488054 0,-3.054879 -2.39417,-5.458131 -5.37715,-5.458131 -2.97956,0 -5.40002,2.403252 -5.40002,5.458131 0,3.054903 2.42046,5.488054 5.40002,5.488054 z"
        inkscape:connector-curvature="0" /><path
        id="path3091"
-       style="fill:#f2d45c;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       style="fill:#e9bc09;fill-opacity:0.85666668;fill-rule:nonzero;stroke:none"
        d="m 276.98203,-25.416814 0,-18.080037 18.25807,0 0,18.080037 -18.25807,0 z m 3.64498,-3.645325 10.93266,0 0,-10.78941 -10.93266,0 0,10.78941 z"
        inkscape:connector-curvature="0" /></g></svg>
\ No newline at end of file