aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-02-04 08:46:44 -0500
committerBradley Taunt <bt@btxx.org>2024-02-04 08:46:44 -0500
commit236aca6c69f40dafe1459332b7769819095ce172 (patch)
treec76a066dd7169b0b621767db1051718ef37aa5ed
Initi commit on new cgit platform
-rw-r--r--.build.yml12
-rw-r--r--LICENSE21
-rw-r--r--README.md5
-rw-r--r--everyone-should-become-an-html-expert.html96
-rw-r--r--favicon.pngbin0 -> 144 bytes
-rw-r--r--index.html39
-rw-r--r--members.html85
-rw-r--r--pics/bitcoin-qr.pngbin0 -> 1158 bytes
-rw-r--r--pics/bitcoincash-qr.pngbin0 -> 1288 bytes
-rw-r--r--pics/computer.svg76
-rw-r--r--pics/eth-qr.pngbin0 -> 1255 bytes
-rw-r--r--pics/manreadingnewspaper.svg47
-rw-r--r--pics/xmr-qr.pngbin0 -> 7547 bytes
-rw-r--r--style.css3
14 files changed, 384 insertions, 0 deletions
diff --git a/.build.yml b/.build.yml
new file mode 100644
index 0000000..9739c62
--- /dev/null
+++ b/.build.yml
@@ -0,0 +1,12 @@
+image: debian/stable
+oauth: pages.sr.ht/PAGES:RW
+environment:
+ site: xhtml.club
+sources:
+ - https://git.sr.ht/~bt/xhtml-club
+tasks:
+- package: |
+ cd xhtml-club
+ tar -cvz . > ../site.tar.gz
+- upload: |
+ acurl -f https://pages.sr.ht/publish/$site -Fcontent=@site.tar.gz
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..9d88e14
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Bradley Taunt
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..fea603f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,5 @@
+# xhtml-club
+
+The official XHTML Club website
+
+Live website: [xhtml.club](https://xhtml.club)
diff --git a/everyone-should-become-an-html-expert.html b/everyone-should-become-an-html-expert.html
new file mode 100644
index 0000000..82b6136
--- /dev/null
+++ b/everyone-should-become-an-html-expert.html
@@ -0,0 +1,96 @@
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>XHTML Club - Everyone Should Become HTML Experts</title>
+ <link rel="shortcut icon" href="/favicon.png">
+ <link rel="stylesheet" href="style.css">
+</head>
+<body>
+ <p><a href="/">&larr; back to XHTML Club homepage</a></p>
+ <hr>
+ <h1>Everyone should become an HTML expert</h1>
+ <p><small>Posted on April 6th, 2021</small></p>
+ <p>No matter your profession or level of technical skill - you should master the HTML programming<sup><a href="#1">1</a></sup> language. It's used everywhere on the internet and is very simple to grasp. Since HTML uses logical standards for rendering content it becomes fairly simple to pickup and learn. More on that later.</p>
+ <h3>Why should you bother to learn HTML?</h3>
+ <ol>
+ <li><a href="#easy">Easy to pickup and easy to master</a></li>
+ <li><a href="#understanding">Better understanding of website structure</a></li>
+ <li><a href="#freedom">Ability to attain your own web freedom</a></li>
+ </ol>
+
+ <br>
+ <h2 id="easy">1. Easy to pickup and easy to master</h2>
+ <p>HTML is not a difficult language to understand. I also believe it is fairly easy to <em>master</em>, since the core concepts and structure of HTML is so intuitive. Let's look at a made-up example and you'll see what I mean.</p>
+ <p>Let's pretend that you want to display a page on the big <em>world wide web</em> showcasing your skills at baking cupcakes. Similar to creating a text or Word document on your computer using an application, you probably have a general idea of how the content should be displayed:</p>
+ <ol>
+ <li>Recipe title</li>
+ <li>Ingredients</li>
+ <li>Details</li>
+ <li>(<em>optional</em>) Picture of said cupcakes</li>
+ </ol>
+ <p>Seems simple enough, right? That's because <em>it is</em>. We can now start to work our way through these items one piece at a time.</p>
+ <h3>Recipe title</h3>
+ <p>Since this is the <u>heading</u> of our document (or web page in this context) we will use the HTML heading tag(s):</p>
+ <code>&lt;h1&gt;My Amazing Cupcakes&lt;/h1&gt;</code>
+ <p>Remember how I mentioned HTML being fairly intuitive? Using <code>h1</code> tags, you're telling the browser to render the content within this tag as a <strong>number 1 level heading</strong> &rarr; h-1. If you instead wanted to render your headings at smaller sizes (or give them less importance in the document) you can cycle through all available heading tags <code>2</code> through <code>6</code>. Feel free to <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements">learn more about HTML heading elements</a>.</p>
+ <h3>Ingredients</h3>
+ <p>A document item like a set of ingredients would normally best be rendered out into a list. HTML has us covered with that as well:</p>
+<pre><code>&lt;ul&gt;
+ &lt;li&gt;Some sugar&lt;/li&gt;
+ &lt;li&gt;Some flour&lt;/li&gt;
+ &lt;li&gt;Some butter&lt;/li&gt;
+ &lt;li&gt;Chocolate&lt;/li&gt;
+ &lt;li&gt;Frosting&lt;/li&gt;
+&lt;/ul&gt;</code></pre>
+ <p>Which would render like this in the browser:</p>
+ <ul>
+ <li>Some sugar</li>
+ <li>Some flour</li>
+ <li>Some butter</li>
+ <li>Chocolate</li>
+ <li>Frosting</li>
+ </ul>
+ <p>The <code>ul</code> tag stands for <em>unordered list</em> and the <code>li</code> elements inside reference <em>list items</em>. Starting to see a simple pattern here? If you wanted to set your list to display as a set of <em>ordered</em> items, just set the parent tag as <code>ol</code> instead of <code>ul</code>. I bet you probably already figured that out though ;) Feel free to learn more about <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul">unordered</a> and <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol">ordered</a> list items.</p>
+ <h3>Details (Instructions)</h3>
+ <p>Now, you could set the recipe details/instructions to be set as another <code>list</code> element, but for this example we are going to render them as paragraph elements:</p>
+<pre><code>&lt;p&gt;Mix all the ingredients together however you think is best. These cupcakes aren't a real recipe anyway!&lt;/p&gt;
+&lt;p&gt;Make sure you don't burn the cupcakes. That would suck.&lt;/p&gt;</code></pre>
+ <p>I know- you're probably shocked that HTML renders <code>p</code> tags as <em>paragraphs</em>.</p>
+ <h3>Picture (optional)</h3>
+ <p>The content above would be more than enough for users to read our document and understand how to bake our delicious cupcakes. But a picture is worth a thousand words:</p>
+<pre><code>&lt;img src=&quot;path/to/your/cupcakes/image&quot; alt=&quot;Delicious chocolate cupcakes&quot;&gt;</code></pre>
+ <p>Yet more intuitive greatness from the HTML gods! An image is represented within an <code>img</code> tag. You use the <code>src</code> (source) attribute to point the browser to the image's location. The <code>alt</code> (alternate text) is a helpful snippet of text that describes what the picture contains (required for those with disabilities or accessibility issues).</p>
+ <p>That's it!</p>
+
+ <br>
+ <h2 id="understanding">2. Better understanding of website structure</h2>
+ <p>By becoming fluent in HTML, you gain a much better understanding on how all websites across the web are constructed. Though a greater understanding of HTML has many benefits, I find having the ability to troubleshoot bugs or issues through a browser's <code>devtools</code> to be the most beneficial.</p>
+ <p>No matter your current job or future career path, being able to mention your expertise of HTML can only be seen as an added bonus to your skill-set. Do not underestimate the power to build website skeletons!</p>
+
+ <br>
+ <h2 id="freedom">3. Ability to attain your own web freedom</h2>
+ <p>The other benefits of learning HTML posted above are great - but I believe the best reason to become an HTML master is the <em>web freedom</em> associated with it. You gain the ability to create, edit and share your own website without the help of any 3rd party builders or locked-in content management systems. Instead, your workflow might be something like:</p>
+ <ol>
+ <li>Open a text editor</li>
+ <li>Begin writing out your content with semantic HTML</li>
+ <li>Save file as `index.html`</li>
+ <li>Upload to your web host</li>
+ </ol>
+ <p>And with free hosting services such as <a target="_blank" href="https://netlify.com">Netlify</a> or <a target="_blank" href="https://m.do.co/c/74b3fd11c07a">DigitalOcean</a> it's not like you'll be breaking the bank to have that website live on the interwebs! (You could go down the rabbit-hole of increasing your web freedom by self hosting your content etc - but I'll save that for another day)</p>
+
+ <br>
+ <h2>Wrapping up</h2>
+ <p>There can only be positives to gain from jumping into HTML and eventually mastering the language. It's the core skeleton implemented across the web (no matter how complex the framework used to get there might be) and isn't going away anytime soon. Some might advocate for becoming fluent in Markdown or a similar formatted text language but I would strongly advocate for the real deal: HTML.</p>
+
+ <br>
+ <p id="1"><small>1. This is a common debate - but for simplicity sake I'm just calling it this.</small></p>
+ <footer>
+ <h3>Support XHTML</h3>
+ <p>All content posted on this website will always remain free to everyone. No pay-walls, obtrusive ads or annoying tracking cookies. Basically zero bullshit or fluff. If you feel like you would like to support my efforts in continuously posting free (<em>and hopefully interesting</em>) content, then please consider <a href="https://www.buymeacoffee.com/WQTMtn7ir">donating</a>.</p>
+
+ <h3>Colophon</h3>
+ <p>This website is hand-coded with vanilla HTML and hosted on <a href="https://sourcehut.org">Sourcehut</a>. Reach out on <a rel="me" href="https://fosstodon.org/@tdarb">Mastodon</a></p>
+ </footer>
+</body>
+</html> \ No newline at end of file
diff --git a/favicon.png b/favicon.png
new file mode 100644
index 0000000..884d6bd
--- /dev/null
+++ b/favicon.png
Binary files differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..28c6e29
--- /dev/null
+++ b/index.html
@@ -0,0 +1,39 @@
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>XHTML Club - Extreme HyperText Movement for Luddites</title>
+ <link rel="shortcut icon" href="/favicon.png">
+ <link rel="stylesheet" href="style.css">
+</head>
+<body>
+ <h1>XHTML Club</h1>
+ <h2>E<u>x</u>treme <u>H</u>yper<u>T</u>ext <u>M</u>ovement for <u>L</u>uddites</h2>
+ <nav>
+ <ul>
+ <li><a href="/"><b>Home</b></a></li>
+ <li><a href="./members.html">Members</a></li>
+ </ul>
+ </nav>
+ <p>Greetings, this is the official <u title="Extreme HyperText Movement for Luddites">XHTML</u> club (and blog)! This website is both a collection of HTML-focused websites and a simple blog; a <a href="https://bt.ht">lonely web designer</a> screaming out into the abyss of the internet. Ranting and raving about the ever increasing bloat that is the "modern" web.</p>
+ <h2>The Purpose of XHTML</h2>
+ <p>I feel as though I get more and more extreme in my efforts to combat <em>excessive web bloat</em> across the internet. It started off with the creation of the <a href="https://1mb.club">1MB Club project</a> but has since expanded further - as you might have noticed.</p>
+ <p>This isn't due to a hatred towards CSS and JavaScript, but instead a hatred towards how horrible they are being used on the web today. What was once used for flourish or improving a user's experience is now used to directly attack and harm that user. I do not wish to be a part of that growing problem.</p>
+ <h2>The Goal of XHTML</h2>
+ <p>Simply put: <em>there isn't one</em>. I don't expect to change any minds on the subject of web bloat - especially "designers" since they tend to dig their heels in the hardest. It would be pretty incredible if tomorrow the world woke up and every website only used pure, semantic HTML and nothing else...but I'm a realist. Things will probably need to get much worse before they get better.</p>
+ <h2>Slightly Hypocritical</h2>
+ <p>I understand how strange this website/project might seem - considering my entire career is based upon being a web <em>designer</em>. Personally, I believe that heavily relying on styles and scripts for web page content was and continues to be a huge mistake. Maybe that puts me out of a job in the future. Maybe that creates <em>new</em> jobs based on this methodology down the line. Who can truly say? All I know is that people need to stick to their principles and I can't pretend that dumping a bunch of web shit on regular users is justified just so designers can get paid. There has to be <strong>a better way</strong>.</p>
+ <h2>Articles</h2>
+ <ul>
+ <li>WIP / Why you need a personal website (and how to make one)</li>
+ <li>2021-04-06 / <a href="everyone-should-become-an-html-expert.html">Everyone should become an HTML expert</a></li>
+ </ul>
+ <footer>
+ <h3>Support XHTML</h3>
+ <p>All content posted on this website will always remain free to everyone. No pay-walls, obtrusive ads or annoying tracking cookies. Basically zero bullshit or fluff. If you feel like you would like to support my efforts in continuously posting free (<em>and hopefully interesting</em>) content, then please consider <a href="https://www.buymeacoffee.com/WQTMtn7ir">donating</a>.</p>
+
+ <h3>Colophon</h3>
+ <p>This website is hand-coded with vanilla HTML and hosted on <a href="https://sourcehut.org">Sourcehut</a>. Reach out on <a rel="me" href="https://fosstodon.org/@tdarb">Mastodon</a></p>
+ </footer>
+</body>
+</html> \ No newline at end of file
diff --git a/members.html b/members.html
new file mode 100644
index 0000000..c74a96e
--- /dev/null
+++ b/members.html
@@ -0,0 +1,85 @@
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>XHTML Club - Member List</title>
+ <link rel="shortcut icon" href="/favicon.png">
+ <link rel="stylesheet" href="style.css">
+</head>
+<body>
+ <h1>XHTML Club</h1>
+ <h2>E<u>x</u>treme <u>H</u>yper<u>T</u>ext <u>M</u>ovement for <u>L</u>uddites</h2>
+ <nav>
+ <ul>
+ <li><a href="/"><b>Home</b></a></li>
+ <li><a href="./members.html">Members</a></li>
+ </ul>
+ </nav>
+ <h2>XHTML Members:</h2>
+ <p><strong>How to submit:</strong>
+ <ol>
+ <li>Just <a href="mailto:brad@bt.ht">shoot me an email</a> with "[XHTML Club] submitted URL" as the subject line.<br> (<small>Multiple website submissions can just be included within the email body.</small>)</li><br>
+ <li>Feel free to toss a small <a href="https://www.buymeacoffee.com/WQTMtn7ir">donation</a> my way if you feel like it was worth it <br> (<small>This is entirely optional - only do so if you're feeling generous!</small>)</li>
+ </ol>
+ <p>Current websites that are <em>fairly</em> close to being pure HTML (the rules are a little loose here):</p>
+ <ul>
+ <li><a href="https://xhtml.club">xhtml.club</a> (<em>this site</em>)</li>
+ <li><a href="https://1mb.club">1mb.club</a></li>
+ <li><a href="https://bt.ht">bt.ht</a></li>
+ <li><a href="https://nocss.club">nocss.club</a></li>
+ <li><a href="https://bellard.org">bellard.org</a></li>
+ <li><a href="http://hex.m-chrzan.xyz/">hex.m-chrzan.xyz</a></li>
+ <li><a href="https://libreboot.org/">libreboot.org</a></li>
+ <li><a href="https://www.matthewgraybosch.com/">matthewgraybosch.com</a></li>
+ <li><a href="https://blog.steve.fi/">blog.steve.fi</a></li>
+ <li><a href="https://danluu.com/">danluu.com</a></li>
+ <li><a href="https://based.cooking/">based.cooking</a></li>
+ <li><a href="https://davcloud.xyz/">davcloud.xyz</a></li>
+ <li><a href="https://huginn.uk/">huginn.uk</a></li>
+ <li><a href="https://seirdy.one/">seirdy.one</a></li>
+ <li><a href="http://dyremyhr.no/">dyremyhr.no</a></li>
+ <li><a href="https://mijndertstuij.nl/">mijndertstuij.nl</a></li>
+ <li><a href="http://retrotechnology.com/">retrotechnology.com</a></li>
+ <li><a href="https://stroobants.dev/">stroobants.dev</a></li>
+ <li><a href="https://phreedom.club">phreedom.club</a></li>
+ <li><a href="https://fedi.life/nocss/">fedi.life/nocss/</a></li>
+ <li><a href="https://www.justuseemail.com">justuseemail.com</a></li>
+ <li><a href="https://bernsteinbear.com">bernsteinbear.com</a></li>
+ <li><a href="https://si3t.ch/">si3t.ch</a></li>
+ <li><a href="https://html.haus/">html.haus</a></li>
+ <li><a href="http://www.distasis.com/">distasis.com</a></li>
+ <li><a href="https://www.stroustrup.com/">stroustrup.com</a></li>
+ <li><a href="https://bunbun.de/">bunbun.de</a></li>
+ <li><a href="https://blog.fefe.de/">blog.fefe.de</a></li>
+ <li><a href="https://exozy.me">exozy.me</a></li>
+ <li><a href="https://hamblingreen.gitlab.io/index.html">hamblingreen.gitlab.io</a></li>
+ <li><a href="https://baturin.org">baturin.org</a></li>
+ <li><a href="https://thinkmoult.com">thinkmoult.com</a></li>
+ <li><a href="https://masysma.lima-city.de">masysma.lima-city.de</a></li>
+ <li><a href="http://bkeithropemaker.com">bkeithropemaker.com</a></li>
+ <li><a href="https://manavp.com">manavp.com</a></li>
+ <li><a href="https://frendu.nl/">frendu.nl</a></li>
+ <li><a href="http://jaxson.neocities.org">jaxson.neocities.org</a></li>
+ <li><a href="https://loang.net">loang.net</a></li>
+ <li><a href="https://ctrl-c.club/~loghead/">ctrl-c.club/~loghead</a></li>
+ <li><a href="https://px.cnx.gdn">px.cnx.gdn</a></li>
+ <li><a href="https://ploum.net">ploum.net</a></li>
+ <li><a href="https://iqbalrifai.eu.org">iqbalrifai.eu.org</a></li>
+ <li><a href="https://drewdevault.com/">drewdevault.com</a></li>
+ <li><a href="https://jacksonchen666.com/">jacksonchen666.com</a></li>
+ <li><a href="https://www.devever.net/~hl/">devever.net/~hl</a></li>
+ <li><a href="https://blog.darylsun.page">blog.darylsun.page</a></li>
+ <li><a href="https://libre.town/">libre.town</a></li>
+ <li><a href="https://adamski.gdn">adamski.gdn</a></li>
+ <li><a href="https://myr.sh/">myr.sh</a></li>
+ <li><a href="https://robertblinov.net/">robertblinov.net</a></li>
+ </ul>
+ <footer>
+ <h3>Support XHTML</h3>
+ <p>All content posted on this website will always remain free to everyone. No pay-walls, obtrusive ads or annoying tracking cookies. Basically zero bullshit or fluff. If you feel like you would like to support my efforts in continuously posting free (<em>and hopefully interesting</em>) content, then please consider <a href="https://www.buymeacoffee.com/WQTMtn7ir">donating</a>.</p>
+
+ <h3>Colophon</h3>
+ <p>This website is hand-coded with vanilla HTML and hosted on <a href="https://sourcehut.org">Sourcehut</a>. Reach out on <a rel="me" href="https://fosstodon.org/@tdarb">Mastodon</a></p>
+ </footer>
+</body>
+</html>
diff --git a/pics/bitcoin-qr.png b/pics/bitcoin-qr.png
new file mode 100644
index 0000000..eb2dd9a
--- /dev/null
+++ b/pics/bitcoin-qr.png
Binary files differ
diff --git a/pics/bitcoincash-qr.png b/pics/bitcoincash-qr.png
new file mode 100644
index 0000000..24d4707
--- /dev/null
+++ b/pics/bitcoincash-qr.png
Binary files differ
diff --git a/pics/computer.svg b/pics/computer.svg
new file mode 100644
index 0000000..8955207
--- /dev/null
+++ b/pics/computer.svg
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="320.96869mm" height="227.67096mm" viewBox="0 0 320.96869 227.67096" version="1.1" id="svg83821" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="Desktop_Computer.svg">
+ <defs id="defs83815"/>
+ <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#ff0000" borderopacity="1" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="1202.8111" inkscape:cy="39.410455" inkscape:document-units="mm" inkscape:current-layer="layer1" showgrid="false" borderlayer="true" inkscape:showpageshadow="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1907" inkscape:window-height="912" inkscape:window-x="0" inkscape:window-y="23" inkscape:window-maximized="0" inkscape:pagecheckerboard="true"/>
+ <metadata id="metadata83818">
+ <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/>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(156.73644,46.199682)">
+ <path style="fill:#000000;stroke-width:1.00000012" d="m 738.16406,0 c -1.02951,0.01681051 -2.96752,0.54155801 -4.97656,1.3925781 -8.22064,3.4822224 -67.49009,22.6134419 -92.86914,29.9765629 -30.47552,8.841739 -73.81401,24.034706 -76.64844,26.86914 -0.73924,0.739234 -0.68129,3.788526 0.19531,10.203125 0.75417,5.518711 0.88859,9.5118 0.33789,10.0625 -0.95036,0.950381 -5.02196,2.189336 -39.88476,12.128906 -19.97606,5.695272 -79.11089,23.376858 -107,31.994138 -33.45672,10.33757 -134.35005,44.66618 -145.55078,49.52344 l -12.54883,5.44336 2.27734,17.19727 c 1.25292,9.45891 2.5559,18.46642 2.89453,20.01562 0.52314,2.39322 -0.006,3.38883 -3.51562,6.62891 -2.27189,2.09741 -6.83195,5.25524 -10.13477,7.01562 -4.44715,2.37031 -5.874,3.63305 -5.49609,4.86914 0.28067,0.91801 2.05801,8.64492 3.94922,17.16992 5.32431,24.00044 6.74484,34.38536 15.66797,114.5 1.16392,10.45001 2.51195,22.79168 2.99414,27.42774 1.04028,10.00177 1.82646,11.03835 12.2168,16.07226 8.92351,4.32327 10.27886,6.49246 11.78515,18.88086 1.45082,11.9323 1.1304,12.33913 -10.28906,13.08203 l -8.25,0.53711 -0.55469,4.81836 c -0.58931,5.12966 -1.92729,6.63393 -5.94531,6.67774 -1.375,0.015 -7.9,1.30736 -14.5,2.87305 l -12,2.84765 -16.26172,11.95313 c -14.47321,10.63886 -37.01746,25.393 -58.41016,38.22656 -4.03094,2.41819 -12.2187,7.51785 -18.19531,11.33398 -5.97664,3.81614 -19.38779,11.22183 -29.80273,16.45703 C 82.583113,553.80378 56.511367,573.4183 31.318359,601.125 8.7485333,625.94678 1.1336403,641.89636 0.11328125,666.49023 c -0.87065196,20.98568 3.15795045,32.8052 15.22265675,44.67579 17.545586,17.26329 38.216451,26.20611 67.982421,29.4082 13.042621,1.40311 47.063991,0.64323 71.000001,-1.58594 8.79999,-0.81955 22.97501,-1.49072 31.5,-1.49023 l 15.5,0.002 -2.61328,2.24414 c -3.93347,3.37913 -8.85045,12.27409 -9.92969,17.96484 -2.38231,12.56202 -0.63552,20.98155 5.35938,25.83594 2.14076,1.73348 2.11515,1.7583 -2.82813,2.59766 -2.74401,0.46575 -12.52576,0.76132 -21.73828,0.65625 l -16.75,-0.19141 v 36.94141 h -0.002 v 36.93945 h 867.51374 192.7793 v -72.50976 c -1.4367,-0.0171 -4.0588,-0.0337 -4.8848,-0.0508 l -32.0937,-0.66211 2.8261,-5.21679 c 3.7401,-6.90524 6.2655,-9.06055 10.625,-9.06055 3.154,0 3.6962,-0.39184 4.8184,-3.49805 0.6955,-1.92502 1.2881,-5.75196 1.3184,-8.50195 0.051,-4.67902 -0.1528,-5.09437 -3.1739,-6.49805 -3.17,-1.47284 -3.234,-1.63702 -3.5273,-9 -0.1644,-4.12437 -0.6957,-7.89687 -1.1817,-8.38281 -0.4859,-0.48593 -5.3491,-1.027 -10.8066,-1.20312 -5.4575,-0.1762 -14.1512,-1.18475 -19.3184,-2.24219 -5.1672,-1.05744 -11.8695,-1.98741 -14.8945,-2.06641 -3.025,-0.079 -8.875,-0.55632 -13,-1.06054 -4.125,-0.50427 -16.725,-2.05416 -28,-3.44336 -11.275,-1.38921 -27.475,-3.23868 -36,-4.11133 -8.525,-0.87262 -22.7,-2.74562 -31.5,-4.16211 -8.8,-1.41649 -17.8,-2.7179 -20,-2.89063 -2.2001,-0.17291 -10.525,-1.44774 -18.50004,-2.83203 -7.975,-1.38425 -17.64999,-2.76933 -21.5,-3.07812 -9.78615,-0.78459 -14.78586,-1.73382 -50.5,-9.5918 -39.19541,-8.62394 -44.15194,-10.11968 -50.28125,-15.16992 l -4.78321,-3.93945 -6.80859,5.5 c -3.74483,3.02566 -8.2768,7.79186 -10.07227,10.58984 -3.75427,5.85056 -7.04801,15.59457 -7.07031,20.92187 -0.0196,4.69592 -0.51234,5.33543 -6.23047,8.06836 -6.67818,3.19178 -8.56545,5.91177 -8.11719,11.70118 0.4373,5.64756 1.70676,7.39257 5.37891,7.39257 3.30852,0 3.78815,1.0233 4.60938,9.85938 0.48093,5.1747 0.29451,6.96083 -0.81641,7.88281 -1.68705,1.40013 -19.70913,4.68931 -20.63281,3.76563 -0.34691,-0.34693 -0.80542,-31.58087 -1.01953,-69.41016 l -0.38868,-68.78125 -30.04687,-0.6582 c -16.52538,-0.36238 -40.09741,-0.66016 -52.38281,-0.66016 h -22.33789 v -9.75 l -0.002,-9.75 -7.97461,-0.18359 c -9.17043,-0.21268 -23.10339,-2.61642 -28.6914,-4.94922 -5.3615,-2.23824 -14.07282,-8.4748 -15.17578,-10.86524 -2.27753,-4.93606 -4.41488,-13.38248 -3.79493,-14.99804 0.62615,-1.63181 2.08904,-1.73646 18.21094,-1.29297 20.43924,0.56224 20.42969,0.5683 20.42969,-9.27344 v -5.61914 l 19.66016,-0.6582 c 10.81344,-0.36212 27.6975,-0.65821 37.51953,-0.65821 h 17.85742 l -0.46094,-2.25 c -0.25414,-1.23749 -0.71693,-9.225 -1.02734,-17.75 -0.31043,-8.525 -1.68198,-35.525 -3.04688,-60 -2.37099,-42.51608 -5.49665,-100.26457 -11.04297,-204 -1.3968,-26.12499 -4.07372,-75.84999 -5.94922,-110.5 -1.87548,-34.65 -3.68036,-69.749998 -4.01171,-77.999996 C 744.0303,54.967428 740.04517,1.3869833 738.85938,0.16015625 738.74912,0.04608727 738.50723,-0.0056035 738.16406,0 Z M 249.51758,488.49023 c 2.98726,0 6.29732,0.463 7.35547,1.0293 2.74936,1.47142 5.00454,6.35656 4.70312,10.1875 l -0.25781,3.2832 6.54883,0.5 c 7.48131,0.57113 11.94405,2.91116 11.96484,6.27344 0.0461,7.50938 2.73902,9.20077 14.1543,8.89063 6.19112,-0.1682 8.89972,0.13272 9.47656,1.05078 0.44424,0.70702 0.86403,7.82615 0.93164,15.82031 0.0766,9.06177 0.56948,15.36895 1.30859,16.75 1.13932,2.129 1.74378,2.21484 15.5293,2.21484 h 14.34375 l 0.70703,12.25391 0.70703,12.25391 2.66407,0.0449 c 1.46491,0.0238 13.35156,0.13302 26.41406,0.24414 27.12785,0.23074 25.99901,-0.2544 20.73633,8.92187 -3.08996,5.38783 -9.75385,11.1 -17.98633,15.41407 -4.14536,2.17232 -5.89885,2.38457 -22.25,2.69336 -21.17658,0.40017 -21.19287,0.40849 -20.11914,10.88867 l 0.64258,6.25781 -32.88672,0.26367 -32.88672,0.26367 0.20117,9.47071 c 0.13851,6.48151 -0.17709,9.71132 -1,10.23437 -0.6613,0.42017 -4.91367,0.77174 -9.45117,0.7793 l -8.25,0.0156 v 6.84766 c 0,3.76702 -0.28812,10.24369 -0.63867,14.39063 -0.61863,7.31833 -0.56721,7.56216 1.75,8.31054 1.31304,0.42391 4.86367,0.71162 7.88867,0.63867 5.98845,-0.1446 9.17432,1.03658 7.44726,2.76368 -0.56982,0.5698 -5.29161,1.94271 -10.49218,3.04882 -12.27415,2.61068 -14.45508,4.19751 -14.45508,10.52149 v 4.79492 l -7.5,0.20508 c -10.65325,0.29382 -11.29726,0.69147 -10.5,6.48828 l 0.65234,4.74023 -4.32617,0.62891 c -2.37966,0.34609 -10.62618,1.29884 -18.32617,2.11719 -7.69999,0.81834 -21.65002,2.66785 -31,4.11133 v 0.002 c -23.63762,3.64917 -53.07477,4.22666 -69.000001,1.35547 -12.124761,-2.18604 -24.315136,-5.8982 -31.998047,-9.7461 -5.885895,-2.94788 -20.928228,-15.46176 -25.943359,-21.58203 -5.155313,-6.29136 -6.56004,-10.44867 -6.544922,-19.35547 0.01769,-9.30909 1.923501,-17.98602 5.857422,-26.6621 8.864542,-19.55029 27.500207,-37.6129 66.128907,-64.10157 20.29478,-13.91663 22.31354,-15.12853 33.5,-20.10156 20.42396,-9.07959 66.76825,-37.03712 87.5,-52.78516 11.05685,-8.39889 20.00294,-12.63086 26.69922,-12.63086 z" transform="matrix(0.26458333,0,0,0.26458333,-156.73627,-46.199573)" id="path84579" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:1.00000012" d="m 164.13867,794.25391 -0.65625,12.86718 c -0.36094,7.07713 -0.65792,19.50665 -0.66015,27.61914 l -0.004,14.75 h 858.41403 181.0567 v -53.49804 c -297.1376,-0.34375 -623.65539,-0.81263 -761.06057,-1.11914 z" transform="matrix(0.26458333,0,0,0.26458333,-156.73627,-46.199573)" id="path84577" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -11.813771,162.00153 c 0.06733,-0.0673 -0.01947,-0.51483 -0.192915,-0.99445 -0.638736,-1.76639 -0.101394,-4.6974 1.267121,-6.91171 0.293817,-0.47541 0.534215,-0.99915 0.534215,-1.16387 0,-0.86062 -3.591243,0.2747 -5.134409,1.62316 -1.513895,1.3229 -2.835312,5.59164 -2.071436,6.69163 0.668999,0.96337 1.513255,1.21614 3.496156,1.04672 1.088369,-0.093 2.03394,-0.22415 2.101268,-0.29148 z" id="path84575" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 5.0954777,162.01253 c 0.048009,-0.0408 -0.1168903,-0.38585 -0.36644,-0.76671 -0.6184265,-0.94384 -0.3390053,-3.69684 0.5541037,-5.45931 0.7455455,-1.47127 0.8380201,-2.36079 0.2454222,-2.36079 -0.7006299,0 -3.0070954,1.30015 -3.406566,1.92027 -0.2101929,0.3263 -0.5205492,1.55408 -0.6896841,2.72841 -0.3626458,2.51792 0.018733,3.95112 1.1060642,4.15665 0.5679493,0.10735 2.3533338,-0.0452 2.5571,-0.21852 z" id="path84573" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 11.02964,161.60102 c -0.452332,-4.48789 -0.428866,-4.81234 0.433237,-5.9902 0.959905,-1.31148 1.002874,-1.56267 0.305199,-1.7841 -0.990888,-0.3145 -2.6506856,0.38265 -3.9617119,1.664 -1.1822059,1.15544 -1.2825121,1.35754 -1.4347163,2.89079 -0.2694676,2.71455 0.3243395,3.5467 2.7120771,3.80065 1.9179141,0.20398 2.0219171,0.17292 1.9459151,-0.58114 z" id="path84571" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 22.11611,159.77203 c -0.07235,-2.02358 0.01844,-2.83916 0.463021,-4.15884 0.30416,-0.90289 0.553019,-1.72048 0.553019,-1.81687 0,-0.30792 -1.783924,0.1017 -2.507411,0.57575 -2.824144,1.85045 -2.190068,8.28686 0.787619,7.99499 l 0.79375,-0.0778 z" id="path84569" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 27.480402,162.18507 c 0.08038,-0.13006 -0.03165,-0.66201 -0.248967,-1.18212 -0.606748,-1.45216 -0.520745,-4.42365 0.161499,-5.57997 0.746805,-1.26574 0.539686,-1.78251 -0.585118,-1.45992 -1.84426,0.52892 -3.146499,2.64787 -3.146499,5.11984 0,1.76747 0.266776,2.38536 1.263422,2.92622 0.803265,0.43591 2.330035,0.54103 2.555663,0.17595 z" id="path84567" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 32.161998,159.72895 c -0.078,-2.63052 0.228605,-3.79569 1.424287,-5.41259 0.380889,-0.51506 0.38,-0.60204 -0.01013,-0.99218 -0.235199,-0.2352 -0.823513,-0.42763 -1.307367,-0.42763 -1.010719,0 -2.232657,1.18641 -2.939584,2.85412 -0.541179,1.27669 -0.770258,4.21374 -0.402577,5.16145 0.31854,0.82104 1.64043,1.53583 2.661012,1.4389 0.647444,-0.0615 0.649949,-0.0729 0.574363,-2.62207 z" id="path84565" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 57.395692,161.54047 c 3.288649,-1.03144 6.346155,-1.3277 12.101716,-1.17259 5.613143,0.15127 6.392569,5.3e-4 6.718829,-1.29939 0.250743,-0.99904 -0.186574,-1.50486 -1.517475,-1.75519 -1.368227,-0.25735 -7.036319,-0.0391 -9.497862,0.36564 -0.945885,0.15554 -2.969948,0.37314 -4.497917,0.48354 -1.571947,0.11358 -3.971655,0.51903 -5.527119,0.93384 -5.205201,1.38815 -7.968631,0.32233 -6.504628,-2.50874 0.322321,-0.6233 0.578255,-0.78061 1.27,-0.78061 0.950267,0 1.501331,0.39441 1.501331,1.07456 0,0.32042 -0.170868,0.40689 -0.630444,0.31904 -0.757579,-0.14482 -1.12775,0.33088 -0.678609,0.87206 0.36295,0.43733 2.002237,0.27894 2.545548,-0.24595 0.305189,-0.29483 0.469493,-1.32984 0.390904,-2.46243 -0.06222,-0.89667 -1.297776,-2.16521 -2.397268,-2.46127 -1.307904,-0.35218 -3.357049,0.23817 -4.31845,1.24412 -1.55326,1.62525 -2.195544,4.38874 -1.490252,6.41194 0.215347,0.61775 0.60929,1.00489 1.389062,1.36509 0.957043,0.44208 1.567667,0.48935 5.057217,0.39149 3.289824,-0.0923 4.330846,-0.22485 6.085417,-0.77515 z" id="path84563" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 66.501769,161.9925 c 0.06063,-0.0551 -1.010931,-0.0983 -2.38125,-0.0961 -1.757349,0.003 -2.374551,0.0824 -2.094619,0.26998 0.357053,0.23924 4.18469,0.0905 4.475869,-0.17391 z" id="path84561" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 71.677291,162.17992 c 0.511406,-0.1998 0.5103,-0.21137 -0.04875,-0.51057 -0.912013,-0.48809 -3.517222,-0.31305 -3.517222,0.23632 0,0.40968 2.689831,0.61655 3.565974,0.27425 z" id="path84559" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 78.151463,161.46336 c 0.373377,-0.41888 0.906515,-1.43267 1.184757,-2.25286 0.443351,-1.30692 0.461904,-1.59746 0.150084,-2.35026 -0.646861,-1.56166 -1.503727,-2.33152 -2.813666,-2.52796 -1.554901,-0.23317 -3.337579,0.26267 -3.217439,0.89491 0.06508,0.34249 0.424011,0.46672 1.529741,0.52947 1.635146,0.0928 2.052368,0.34858 2.56362,1.57166 0.303572,0.72624 0.302794,0.99548 -0.005,1.73215 -0.499835,1.19628 -1.854017,2.26933 -3.119178,2.47164 -1.83269,0.29305 -0.444976,0.9101 1.741022,0.77415 1.049282,-0.0653 1.441148,-0.23158 1.986068,-0.8429 z" id="path84557" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -22.778668,161.90146 c 0.08685,-0.14053 -0.09882,-0.75875 -0.412599,-1.37381 -1.062738,-2.08314 -0.835821,-3.39753 1.191819,-6.9035 l 0.726839,-1.25677 h -0.82691 c -1.631934,0 -4.126444,1.84687 -4.758354,3.52296 -0.395081,1.04792 -0.348927,2.7216 0.09894,3.58767 0.901475,1.74326 3.443927,3.29127 3.980269,2.42345 z" id="path84555" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -19.201183,161.77732 c 0,-0.20881 -0.114065,-0.67967 -0.253474,-1.04634 -0.485,-1.27565 0.16964,-3.61633 1.602642,-5.73029 0.716479,-1.05695 1.262473,-1.96195 1.213319,-2.0111 -0.04915,-0.0491 -0.821447,0.15786 -1.71621,0.46003 -1.477822,0.49906 -1.713595,0.68673 -2.573885,2.04868 -0.81834,1.29554 -0.929679,1.6611 -0.819277,2.68992 0.215133,2.00475 0.476314,3.02175 0.900327,3.50573 0.492149,0.56174 1.646558,0.62019 1.646558,0.0834 z" id="path84553" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -5.44285,162.00824 c 0,-0.0818 -0.1921722,-0.73625 -0.4270454,-1.45434 -0.5357019,-1.63781 -0.3499194,-3.03037 0.7006272,-5.25176 0.4316148,-0.91264 0.7847515,-1.76772 0.7847515,-1.90018 0,-0.13245 -0.5681847,-0.24083 -1.262634,-0.24083 -2.5502076,0 -4.5581993,2.75532 -4.5581993,6.25466 0,2.42166 0.3461015,2.74118 2.9692891,2.74118 0.9862661,0 1.7932109,-0.0669 1.7932109,-0.14873 z" id="path84551" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -0.314463,161.19757 c -0.6418289,-1.53611 -0.26052463,-4.10754 1.08379154,-7.30883 0.16412898,-0.39085 0.0471117,-0.46302 -0.75070494,-0.46302 -0.68359337,0 -1.2222612,0.23741 -1.9465369,0.85791 -2.2167771,1.89917 -2.2391079,1.9457 -2.1278401,4.43375 0.1416844,3.16815 0.334645,3.43959 2.4451707,3.43959 h 1.69698197 z" id="path84549" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 17.021669,161.58097 c -0.479097,-0.8952 -0.1539,-4.59843 0.546852,-6.22737 0.663786,-1.54302 0.564316,-1.92788 -0.498274,-1.92788 -1.654191,0 -3.478938,1.95502 -3.972415,4.25603 -0.752371,3.50819 -0.211515,4.47522 2.503001,4.47522 1.693976,0 1.72284,-0.0117 1.420836,-0.576 z" id="path84547" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 37.41965,162.01154 c 0,-0.08 -0.193553,-0.51972 -0.430115,-0.97719 -0.497816,-0.96266 -0.366686,-3.41982 0.29894,-5.60174 0.218189,-0.71521 0.329885,-1.36721 0.248219,-1.44888 -0.339286,-0.33928 -2.159701,0.9847 -2.921995,2.12515 -1.517216,2.26988 -1.33228,4.70744 0.423701,5.58466 0.871789,0.4355 2.38125,0.63708 2.38125,0.318 z" id="path84545" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 43.072476,161.42936 c -0.797783,-1.17635 -0.680636,-4.77875 0.218617,-6.72263 0.663085,-1.43336 0.670967,-1.50275 0.185121,-1.62981 -0.902465,-0.23599 -1.765491,0.18844 -3.205139,1.57627 -1.238303,1.19373 -1.451382,1.55754 -1.745094,2.97956 -0.288157,1.39511 -0.277376,1.73865 0.07772,2.47669 0.645369,1.34134 1.865969,2.04753 3.539004,2.04753 h 1.423217 z" id="path84543" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 153.73144,160.83405 c 0.31043,-0.65484 0.64905,-1.57758 0.75252,-2.05052 l 0.18815,-0.8599 -1.41007,-0.008 c -1.55991,-0.009 -1.16909,0.0186 -14.90385,-1.05581 -5.38427,-0.42117 -14.0163,-1.0714 -19.18229,-1.44495 -5.16599,-0.37355 -13.5599,-1.03346 -18.65313,-1.46646 -5.093224,-0.43301 -14.380099,-1.20341 -20.637495,-1.71201 -6.257396,-0.5086 -11.647816,-0.96883 -11.978711,-1.02272 -0.815396,-0.13283 -0.935197,0.15214 -0.901256,2.14383 0.04613,2.7071 0.05194,2.71428 2.195311,2.71428 2.251787,0 3.177977,-0.43144 3.808924,-1.77428 0.617844,-1.31495 0.771421,-1.39326 2.642399,-1.34737 1.40367,0.0344 1.746152,0.15817 2.957562,1.06857 1.638097,1.23107 2.133828,1.93162 2.357737,3.33186 0.207579,1.29814 -0.510701,3.63636 -1.236358,4.02471 -0.278887,0.14926 -0.507066,0.39572 -0.507066,0.54769 0,0.19113 11.398101,0.24944 36.971633,0.18913 l 36.9716,-0.0872 0.56439,-1.19063 z" id="path84541" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -45.002678,161.63527 c 0.0874,-0.14141 -0.03561,-0.55397 -0.273354,-0.91682 -0.264486,-0.40365 -0.488717,-1.48342 -0.577723,-2.78197 -0.135459,-1.97632 -0.09739,-2.1949 0.553556,-3.17855 0.384458,-0.58096 0.699016,-1.1779 0.699016,-1.32654 0,-0.96465 -4.343665,1.15281 -4.806339,2.343 -0.338183,0.86994 -0.05535,3.94024 0.431564,4.68485 0.706398,1.08026 3.518123,1.91249 3.97328,1.17603 z" id="path84539" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -38.90662,161.61807 c 0.09325,-0.15088 -0.09542,-0.77596 -0.419253,-1.38906 -0.786117,-1.48832 -0.754923,-2.91959 0.10455,-4.79692 0.388056,-0.84762 0.705556,-1.66102 0.705556,-1.80756 0,-0.3854 -2.035982,-0.0141 -3.32473,0.60629 -0.703196,0.33852 -1.288008,0.8955 -1.688579,1.60823 -0.572288,1.01824 -0.591354,1.18882 -0.288351,2.57966 0.407551,1.87074 0.883029,2.62431 1.948194,3.08763 0.997497,0.43389 2.723284,0.49898 2.962613,0.11174 z" id="path84537" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -28.090223,161.37204 c -0.962348,-2.29113 -1.166945,-4.94447 -0.503669,-6.53191 0.218282,-0.52242 0.396875,-0.99485 0.396875,-1.04984 0,-0.055 -0.438658,-0.1 -0.974799,-0.1 -1.205285,0 -3.159535,0.91569 -3.58417,1.67942 -0.519441,0.93424 -0.425423,4.95276 0.135935,5.81016 0.455054,0.69504 0.546613,0.71838 2.585993,0.6592 1.783381,-0.0518 2.087573,-0.12485 1.943835,-0.46705 z" id="path84535" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -50.903061,160.96636 c -0.560639,-3.52471 -0.587105,-3.96989 -0.314161,-5.28465 0.160197,-0.77167 0.523716,-1.61341 0.807821,-1.87052 0.710954,-0.6434 0.647094,-0.91668 -0.211053,-0.90317 -0.486037,0.008 -1.199613,0.43437 -2.149301,1.28527 l -1.421696,1.27381 -0.134699,1.88263 c -0.210751,2.94551 0.664713,4.37719 2.581217,4.22118 0.758743,-0.0618 0.910836,-0.17098 0.841872,-0.60455 z" id="path84533" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -97.253267,161.08986 c 0,-0.15036 -0.282987,-0.83497 -0.628859,-1.52136 -0.345871,-0.68638 -0.706125,-1.60581 -0.800563,-2.04318 -0.226605,-1.04945 0.370909,-2.96908 1.397773,-4.4906 0.950947,-1.40904 1.013947,-1.72565 0.343366,-1.72565 -1.34478,0 -2.993401,0.89107 -4.30621,2.32749 -1.33331,1.45886 -1.35706,1.51376 -1.22174,2.82482 0.1897,1.83804 0.90795,3.21608 2.02594,3.88699 1.372384,0.82358 3.190293,1.2461 3.190293,0.74149 z" id="path84531" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -77.648793,160.81836 c -0.05884,-0.20964 -0.162004,-1.12522 -0.229248,-2.03461 -0.09683,-1.30956 0.0034,-1.96299 0.48178,-3.14172 0.443524,-1.09276 0.532064,-1.60257 0.333179,-1.91842 -0.410535,-0.65198 -1.051084,-0.66193 -1.938396,-0.0301 -1.090906,0.7768 -1.878083,2.42522 -2.046837,4.28625 -0.123997,1.36746 -0.06783,1.62698 0.477792,2.20777 0.964531,1.02669 3.166269,1.50208 2.92173,0.63085 z" id="path84529" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -65.76785,161.15894 c 0,-0.11237 -0.369036,-0.65201 -0.820076,-1.1992 -1.333492,-1.61775 -1.373399,-3.97971 -0.09897,-5.85768 0.359955,-0.53042 0.654463,-1.06553 0.654463,-1.18912 0,-0.12358 -0.506016,-0.11568 -1.12448,0.0176 -1.432152,0.30858 -2.428144,1.37687 -2.963066,3.17814 -0.733237,2.46908 -0.447254,3.85892 0.972095,4.7243 0.853226,0.52022 3.380034,0.76391 3.380034,0.32599 z" id="path84527" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -55.883437,160.63563 c -0.36865,-1.18101 -0.21993,-4.59392 0.247882,-5.68854 0.476658,-1.11531 0.402466,-1.15629 -1.268753,-0.70077 -2.550801,0.69527 -3.516188,2.856 -2.481803,5.55476 0.313458,0.81782 1.607765,1.52175 2.841215,1.54524 0.850141,0.0162 0.878753,-0.0146 0.661459,-0.71069 z" id="path84525" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -35.008963,159.04813 c -0.118015,-2.08681 0.03189,-3.25562 0.593852,-4.63021 0.2638,-0.64527 -0.549474,-0.60973 -1.669182,0.0729 -2.437178,1.48591 -2.051678,6.87239 0.491847,6.87239 h 0.714409 z" id="path84523" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -102.54493,160.94106 c 0,-0.0867 -0.21992,-0.47363 -0.4887,-0.8599 -1.11112,-1.59678 -1.42308,-4.04423 -0.72764,-5.70866 0.60472,-1.4473 2.2873,-3.08936 3.994462,-3.89829 0.873125,-0.41372 1.795859,-0.75232 2.05052,-0.75243 0.768657,-2.7e-4 0.519179,-0.52712 -0.264583,-0.55866 -1.505961,-0.0606 -2.096639,0.0957 -3.770309,0.998 -2.35179,1.26785 -2.60152,1.56701 -3.18563,3.81629 -0.86492,3.33063 -0.55369,5.37249 1.00591,6.59927 0.63504,0.49953 1.38597,0.69695 1.38597,0.36438 z" id="path84521" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -91.681242,160.37105 c -0.553924,-0.76155 -1.338691,-3.41732 -1.338691,-4.53034 0,-0.92568 1.503309,-3.14442 2.73508,-4.03671 l 1.048482,-0.75951 -1.164177,0.002 c -1.787112,0.002 -3.081462,0.46865 -4.266967,1.53749 -2.015755,1.81738 -2.537695,4.01115 -1.461273,6.1419 0.798579,1.58077 2.029164,2.3733 3.68507,2.3733 h 1.291709 l -0.529233,-0.7276 z" id="path84519" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -82.172017,160.86638 c 0,-0.12775 -0.190621,-0.68849 -0.423603,-1.24609 -0.551272,-1.31939 -0.326824,-3.05777 0.709115,-5.49219 0.430435,-1.01151 0.72322,-1.89849 0.650634,-1.97108 -0.291695,-0.29169 -3.613285,1.61802 -4.333086,2.49126 -1.622121,1.96792 -1.213541,4.67286 0.883399,5.84838 1.058529,0.5934 2.513541,0.80742 2.513541,0.36972 z" id="path84517" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -61.204256,160.94478 c 0.08463,-0.0846 -0.01458,-0.55705 -0.220488,-1.04983 -0.802783,-1.92134 -0.25001,-4.12663 1.552009,-6.19174 l 0.796817,-0.91315 -0.740638,-0.24688 c -1.181753,-0.39392 -3.365341,0.43074 -4.812718,1.81757 l -1.214464,1.16366 0.155797,1.50955 c 0.189503,1.83609 1.312633,3.57829 2.472264,3.83495 1.037545,0.22965 1.827837,0.25946 2.011421,0.0759 z" id="path84515" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -87.902212,160.03632 c -0.866563,-1.73707 -0.341442,-4.84684 1.152721,-6.8264 0.364191,-0.4825 0.586782,-0.95266 0.494649,-1.04479 -0.09214,-0.0921 -0.729236,-0.0193 -1.415783,0.16189 -2.297067,0.60616 -4.046132,3.07969 -3.583273,5.06747 0.381855,1.63989 2.109097,3.43592 3.306916,3.43859 0.404045,7.9e-4 0.407959,-0.0687 0.04477,-0.79676 z" id="path84513" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -72.185821,158.51897 c -0.0031,-2.01329 0.242601,-3.59688 0.77239,-4.97749 0.112183,-0.29234 -0.103307,-0.38033 -0.931487,-0.38033 -1.494602,0 -2.8028,1.16782 -3.341952,2.98334 -0.782352,2.63447 -0.468265,3.65267 1.323562,4.29073 2.121736,0.75554 2.181564,0.70289 2.177487,-1.91625 z" id="path84511" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 56.931896,157.25193 c 0.535929,-0.22392 1.066064,-0.55135 1.178075,-0.7276 0.112012,-0.17626 0.205484,-8.0893 0.207712,-17.58453 l 0.004,-17.26406 -7.077604,-0.001 c -9.607084,-0.002 -86.780243,-0.7344 -124.949479,-1.1866 -6.097543,-0.0722 -10.876881,-0.0249 -11.089799,0.10982 -0.311335,0.19701 -0.405111,2.67351 -0.558403,14.7464 -0.101325,7.98029 -0.08509,14.70397 0.03609,14.94151 0.338328,0.66321 0.940551,0.7803 2.23403,0.43434 1.027949,-0.27493 1.347026,-0.24969 2.436204,0.19275 0.689332,0.28001 1.848644,0.52281 2.576248,0.53956 0.727604,0.0168 1.638287,0.1203 2.023742,0.2301 0.448506,0.12777 1.234697,0.0314 2.183678,-0.26777 1.395722,-0.43997 1.53774,-0.44126 2.417006,-0.022 1.251889,0.59698 1.758616,0.56379 3.297449,-0.216 1.519513,-0.76999 2.342274,-0.82115 3.863406,-0.24022 0.951773,0.36348 1.198441,0.3712 1.799408,0.0563 1.00503,-0.52658 4.345029,-0.20237 4.836287,0.46947 0.301296,0.41204 0.6736,0.47756 2.403194,0.42292 1.125665,-0.0356 2.357416,-0.1873 2.737223,-0.33719 0.429321,-0.16942 2.581304,-0.22596 5.688542,-0.14945 5.739265,0.14132 5.459486,0.13758 6.850065,0.0917 0.582083,-0.0192 1.748216,0.183 2.591403,0.44939 0.975969,0.30834 1.841291,0.42033 2.38125,0.30819 0.4665,-0.0969 1.116071,-0.16279 1.443493,-0.14643 3.292946,0.16447 7.230705,-0.12238 8.13943,-0.59292 0.438483,-0.22705 1.488646,-0.61381 2.333696,-0.85948 1.447017,-0.42066 1.565651,-0.42024 2.037964,0.007 0.55781,0.50481 1.990553,0.59761 4.126783,0.26729 1.104958,-0.17086 1.511935,-0.1192 2.182812,0.2771 0.78353,0.46284 0.862923,0.4645 1.593054,0.0332 0.999424,-0.59037 1.979779,-0.57293 4.0366474,0.0718 1.9126227,0.59955 3.0798082,0.66577 4.038182,0.2291 0.5153316,-0.2348 0.7586001,-0.22669 1.0749201,0.0358 0.3090545,0.25649 1.0917846,0.29357 3.20681875,0.15189 2.43229875,-0.16293 2.86296625,-0.12861 3.29528225,0.26263 0.462452,0.41851 0.5609431,0.41987 1.4050671,0.0193 1.1256672,-0.53416 2.0718013,-0.54352 3.7762471,-0.0374 0.7285964,0.21637 1.7324705,0.3919 2.2308344,0.39006 2.3633849,-0.009 4.3709779,-0.13852 4.6155319,-0.29841 0.148407,-0.097 1.123056,-0.26049 2.165884,-0.36325 1.691244,-0.16665 1.972575,-0.12664 2.604487,0.37042 0.707922,0.55685 0.708914,0.55688 1.375524,0.0325 0.816168,-0.642 1.474409,-0.65521 3.657687,-0.0735 1.448613,0.386 1.831867,0.40128 2.6494,0.10566 0.695471,-0.25149 1.035117,-0.26631 1.247013,-0.0544 0.457907,0.45791 0.901634,0.35067 2.079453,-0.50253 1.328502,-0.96237 2.137402,-1.00895 2.696742,-0.15529 0.576038,0.87915 1.715738,1.06203 4.152429,0.66632 1.703046,-0.27657 2.148819,-0.27461 2.492928,0.011 0.350068,0.29053 0.565261,0.26902 1.30742,-0.13066 0.842074,-0.45348 0.970198,-0.45546 2.457982,-0.038 2.080681,0.58381 2.700465,0.55604 3.458099,-0.15491 0.543946,-0.51043 0.923634,-0.59531 2.662886,-0.59531 1.552633,0 2.239229,0.12413 2.926868,0.52917 1.455619,0.85739 1.860008,1.62707 2.050402,3.9026 0.162039,1.93661 0.206632,2.05052 0.802701,2.05052 0.347125,0 1.06962,-0.18321 1.60555,-0.40714 z" id="path84509" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 158.17831,155.76276 c 0.11314,-0.70748 0.0704,-1.16804 -0.11935,-1.2853 -0.16264,-0.10051 -1.5662,-0.26274 -3.11907,-0.36053 -1.55284,-0.0978 -4.72837,-0.34647 -7.0567,-0.55264 -5.82155,-0.51549 -6.98092,-0.60229 -19.57917,-1.46598 -4.2201,-0.28932 -13.62604,-0.94056 -20.90208,-1.44722 -7.27604,-0.50666 -14.241196,-0.9897 -15.478123,-1.07344 -1.236927,-0.0837 -4.094427,-0.327 -6.35,-0.54061 -2.255573,-0.21361 -4.815417,-0.45351 -5.688542,-0.53311 -0.873125,-0.0796 -3.592116,-0.37398 -6.0422,-0.65417 -6.794989,-0.77708 -8.585983,-0.61401 -9.042159,0.82327 -0.332586,1.04789 0.214556,1.2405 4.044193,1.42368 3.57168,0.17084 6.049862,0.31929 9.188083,0.5504 0.873125,0.0643 5.87375,0.4218 11.1125,0.79444 17.309888,1.23129 30.575198,2.25339 39.422918,3.03758 4.80219,0.42562 11.1125,0.95887 14.02291,1.185 2.91042,0.22613 5.88698,0.46726 6.61459,0.53586 0.7276,0.0686 2.69213,0.20074 4.36562,0.29366 1.67349,0.0929 3.09232,0.21455 3.15296,0.27031 0.0606,0.0557 0.37283,0.10136 0.69379,0.10136 0.48009,0 0.61479,-0.19543 0.75983,-1.10256 z" id="path84507" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 156.47853,152.03667 c -0.008,-1.29016 -0.29967,-1.7701 -1.15002,-1.89116 -0.45691,-0.0651 -3.33105,-0.37421 -6.38698,-0.68702 -3.05594,-0.31281 -5.97297,-0.62032 -6.4823,-0.68335 -0.50932,-0.063 -4.79557,-0.59017 -9.525,-1.17143 -4.72942,-0.58125 -10.44442,-1.3028 -12.7,-1.60344 -10.03056,-1.33697 -13.88147,-1.87982 -14.04289,-1.97959 -0.20484,-0.12659 -9.330708,-1.65575 -15.722732,-2.63455 -8.639154,-1.3229 -10.642623,-1.85308 -15.316102,-4.05312 l -2.616105,-1.23152 -1.422034,1.56477 c -1.903635,2.09472 -2.723193,3.83295 -2.921289,6.19586 -0.145383,1.73413 -0.116991,1.89109 0.342884,1.8954 0.548236,0.005 2.583979,0.22031 9.629521,1.01778 2.546615,0.28825 5.64224,0.60074 6.879167,0.69442 1.236927,0.0937 5.463646,0.4547 9.392708,0.80226 9.267562,0.81979 12.891192,1.09632 20.769792,1.585 3.56526,0.22114 7.19667,0.45511 8.06979,0.51994 0.87313,0.0648 2.7186,0.18301 4.10104,0.26264 6.86668,0.39553 23.69931,1.50377 25.79688,1.69843 1.30969,0.12155 2.58961,0.23742 2.84427,0.25749 0.31551,0.0249 0.46188,-0.15313 0.4594,-0.55881 z" id="path84505" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -93.322349,150.01513 c 0.935209,-0.59257 -0.857213,-2.93939 -2.245011,-2.93939 -0.473509,0 -0.913262,0.0893 -0.977226,0.19843 -0.06397,0.10914 0.349891,0.82352 0.919679,1.5875 1.005327,1.34797 1.558356,1.62501 2.302558,1.15346 z" id="path84503" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -90.528032,149.56097 c 0.230185,-0.0883 0.418515,-0.30078 0.418515,-0.47212 0,-0.32895 -1.333949,-1.21936 -1.82676,-1.21936 -0.516974,0 -0.306512,1.01669 0.298133,1.4402 0.682638,0.47814 0.579665,0.45483 1.110112,0.25128 z" id="path84501" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -116.17098,147.98195 c 2.18282,-0.22562 6.82069,-0.46286 10.30639,-0.52721 6.195844,-0.11437 6.358621,-0.13145 7.276037,-0.76335 0.516126,-0.3555 1.503958,-0.79634 2.195182,-0.97963 1.945603,-0.51594 1.66016,-0.92565 -0.896681,-1.28706 -0.883015,-0.12481 -1.815041,-0.41658 -2.071171,-0.64837 -0.407302,-0.36861 -0.830967,-0.387 -3.379077,-0.1467 -1.60236,0.1511 -4.14868,0.4463 -5.65849,0.656 -7.82764,1.08716 -18.20391,1.3515 -22.97774,0.58538 -7.12508,-1.14346 -12.02809,-3.58973 -16.32891,-8.14701 -2.43649,-2.58177 -3.54218,-5.93583 -2.9801,-9.03996 0.4109,-2.26924 1.60097,-5.59202 2.6257,-7.33122 1.77032,-3.00461 5.11092,-6.59775 9.1347,-9.82526 7.19403,-5.77038 8.15788,-6.41432 15.55435,-10.39174 9.19089,-4.942371 20.33214,-11.728831 26.791613,-16.319566 l 2.18813,-1.555099 0.188953,-2.268366 c 0.225374,-2.705571 0.399878,-2.883268 3.309358,-3.369873 1.186878,-0.198507 1.979475,-0.465543 2.054111,-0.69206 0.09954,-0.30211 -0.180046,-0.334717 -1.545429,-0.18024 -1.988441,0.224965 -3.646432,1.015378 -5.425937,2.586704 -3.133291,2.766738 -7.535319,5.656009 -17.450569,11.453686 -3.92906,2.297417 -8.98922,5.311791 -11.24479,6.698615 -21.59532,13.277739 -29.87096,22.200229 -30.60172,32.993679 -0.24456,3.61224 0.77635,7.57572 2.56123,9.94348 0.97008,1.28687 4.30994,4.14017 6.08566,5.19908 1.58002,0.94221 5.7296,2.38289 7.85959,2.72874 6.42086,1.04257 15.85863,1.30654 22.42961,0.62735 z" id="path84499" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -88.256229,142.90855 c 5.29e-4,-0.69123 0.07766,-2.58356 0.171106,-4.20518 l 0.169902,-2.94841 -1.427877,-0.11477 c -1.825464,-0.14672 -3.135487,0.33496 -3.18053,1.16944 -0.05253,0.97318 0.0527,3.14325 0.248507,5.12479 l 0.181229,1.83402 1.058334,0.16089 c 0.582083,0.0885 1.445286,0.17779 1.918229,0.19844 0.854564,0.0373 0.859904,0.0298 0.8611,-1.21922 z" id="path84497" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -95.022223,142.24709 c 0.06845,-0.32742 0.164293,-1.02823 0.212976,-1.55736 l 0.08852,-0.96204 -1.324729,-0.15689 c -0.729787,-0.0864 -1.439436,-0.0422 -1.580145,0.0985 -0.140477,0.14048 -0.263001,0.81542 -0.272269,1.49986 -0.015,1.10749 0.05594,1.26513 0.644604,1.43246 1.374662,0.39074 2.099305,0.27558 2.231044,-0.35455 z" id="path84493" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 29.48215,118.10499 c 0,-0.92932 -0.109654,-1.75745 -0.243676,-1.84028 -0.441624,-0.27294 -86.430141,-0.15739 -92.062133,0.12371 -2.964604,0.14796 -5.468665,0.31753 -5.564585,0.37681 -0.328665,0.20313 -0.293505,1.66783 0.04682,1.95027 0.343254,0.28488 41.169717,0.76452 70.9572889,0.83362 7.5609901,0.0175 13.8039581,0.0886 13.8732631,0.1579 0.0693,0.0693 3.021089,0.11738 6.559518,0.10684 l 6.433508,-0.0192 z" id="path84491" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 18.62737,114.11564 c 0.505595,-0.5058 -0.634981,-1.18955 -2.413148,-1.44663 -0.924568,-0.13367 -3.824155,-0.24726 -6.4435303,-0.25241 -2.619375,-0.005 -4.9195858,-0.10898 -5.1115781,-0.23072 -0.2026734,-0.12851 1.2953709,-0.2981 3.571875,-0.40438 4.3165474,-0.20152 7.5238794,-0.64176 6.9363114,-0.95209 -0.489278,-0.25842 -3.646093,-0.5082 -8.8361917,-0.69916 -3.9690251,-0.14603 -5.53677928,-0.42554 -4.0731651,-0.7262 0.3484694,-0.0716 3.1423557,-0.19319 6.2086357,-0.27024 3.0662771,-0.077 5.8642461,-0.25565 6.2177081,-0.39689 0.853205,-0.34093 -25.703556,-0.35662 -35.47297,-0.021 -4.001823,0.1375 -11.621823,0.326 -16.933334,0.41889 -5.31151,0.0929 -10.371666,0.2637 -11.244791,0.37958 -0.962589,0.12776 2.318194,0.20567 8.334375,0.19793 9.313034,-0.012 10.847916,0.071 10.847916,0.5863 0,0.48599 -1.477531,0.57509 -11.90625,0.71804 -6.039114,0.0828 -11.273829,0.25957 -11.632702,0.39288 -1.409288,0.5235 0.254,0.73383 6.076452,0.76841 3.274219,0.0195 6.310313,0.11703 6.746875,0.21686 1.448314,0.33117 -3.286175,0.84736 -8.837946,0.96357 -2.851734,0.0597 -5.601689,0.21692 -6.111012,0.34939 l -0.926042,0.24085 0.926042,0.064 c 6.526228,0.45136 73.634973,0.54461 74.07647,0.10293 z" id="path84489" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -25.418892,104.73519 c 46.685055,-0.51914 50.793103,-0.59103 50.994387,-0.89238 0.106913,-0.16006 0.19621,-0.63523 0.198438,-1.05593 l 0.004,-0.76491 -3.373438,0.16743 c -4.487431,0.22272 -20.4049549,0.29406 -20.60666,0.0924 -0.087471,-0.0875 -0.2189506,-0.69057 -0.2921767,-1.34021 -0.096449,-0.85571 -0.2674832,-1.216305 -0.62070986,-1.308676 -0.26816579,-0.07013 -7.72499724,0.03034 -16.57073244,0.223273 -8.845738,0.192933 -21.024252,0.423743 -27.063367,0.512923 -10.514047,0.15527 -19.649577,0.50271 -21.761979,0.82765 -1.10408,0.16983 -1.162709,0.37567 -0.819724,2.87802 l 0.172466,1.25826 8.62493,-0.17386 c 4.743714,-0.0956 18.745247,-0.2864 31.114518,-0.42395 z" id="path84487" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m 39.464371,99.548199 5.08743,-0.154832 -0.131509,-1.88954 C 44.34796,96.464581 44.052463,90.673193 43.763631,84.634078 43.288333,74.696227 42.670052,62.094556 41.115437,30.659076 40.823975,24.765482 40.52476,18.514701 40.450518,16.768451 40.376276,15.022201 40.26377,12.760013 40.200506,11.741368 40.137241,10.722722 40.012508,8.1628779 39.923317,6.0528257 39.834129,3.9427736 39.592609,0.37089847 39.386607,-1.8846745 39.180606,-4.1402475 38.831319,-10.152904 38.610415,-15.246133 38.140253,-26.086398 37.729638,-34.180758 37.536665,-36.4128 c -0.345681,-3.998352 -0.690544,-7.133771 -0.805014,-7.318985 -0.06887,-0.111435 -1.460291,0.257885 -3.092048,0.82071 -2.480119,0.855442 -21.592667,7.036059 -25.985578,8.403218 -2.4865806,0.773872 -12.4349986,4.359301 -12.6422467,4.556291 -0.1956859,0.185999 -0.025003,2.687277 1.527003,22.3783497 0.7101337,9.0098221 0.7590261,9.7177598 1.3339074,19.3145843 0.2179294,3.63802 0.512998,8.281458 0.655709,10.31875 0.1427136,2.037292 0.378796,6.025885 0.52463168,8.863542 0.14583568,2.837656 0.32258,5.87375 0.39276072,6.746875 0.0701834,0.873125 0.25269296,3.790156 0.40557186,6.482292 0.15288154,2.692135 0.3310255,5.668698 0.39587487,6.614583 1.61206127,23.51321 2.29179177,35.607782 2.57396987,45.799017 0.047569,1.718043 0.1920028,2.68606 0.4464579,2.992241 0.349758,0.42086 1.4538616,0.441792 15.7427084,0.298482 8.451612,-0.08477 17.655913,-0.223795 20.453998,-0.308951 z" id="path84485" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -57.698058,97.997659 c 5.675312,-0.07644 14.843125,-0.155218 20.372916,-0.175067 10.806235,-0.03879 20.467146,-0.280062 31.5845934,-0.788787 L 1.2377971,96.71448 1.0717579,94.047718 C 0.98043694,92.580997 0.6076496,87.273297 0.24333952,82.252828 -0.87704125,66.813123 -1.4608259,58.425114 -1.6072992,55.662202 -1.6844437,54.206994 -1.8067924,52.361525 -1.8791824,51.56116 -2.0156756,50.05203 -2.6492178,36.767602 -2.9264879,29.600743 -3.5499864,13.484525 -3.8702804,8.769324 -5.5774488,-9.4252997 -5.946106,-13.354362 -6.3737468,-18.057331 -6.5277634,-19.876342 c -0.1540166,-1.81901 -0.3676094,-3.398372 -0.4746466,-3.509692 -0.1070398,-0.111321 -1.3179742,0.150571 -2.690966,0.58198 -9.786898,3.075154 -26.971837,8.349274 -34.510932,10.591533 -10.592171,3.1502984 -9.52418,2.8133357 -25.664584,8.0974407 -13.220837,4.3282871 -15.742708,5.3170245 -15.742708,6.1721737 0,0.5734129 0.695013,5.9117232 1.966992,15.1082326 0.493117,3.565261 1.034939,7.672917 1.20405,9.128125 0.169114,1.455209 0.477578,4.015052 0.68548,5.688542 0.207901,1.67349 0.677571,5.602552 1.043712,8.73125 0.366141,3.128698 0.843315,6.99823 1.060389,8.598959 1.226691,9.045813 2.573557,19.018563 3.037324,22.489584 0.291651,2.182812 0.948899,7.064375 1.460553,10.847917 0.511657,3.783542 1.174345,8.724635 1.472642,10.980208 0.298297,2.255573 0.590579,4.252466 0.649518,4.437539 0.08069,0.253376 0.713221,0.303483 2.560645,0.202841 1.349417,-0.07351 7.096924,-0.196197 12.772237,-0.272632 z" id="path84483" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -70.794933,32.514287 c 0,-0.564618 0.127428,-0.796877 0.437208,-0.796877 1.179544,0 16.743786,-3.685173 20.597167,-4.876829 1.761617,-0.544778 1.765742,-0.54368 1.670409,0.44497 -0.09679,1.003742 0.667777,0.751068 -10.533951,3.481264 -6.781459,1.652844 -8.664038,2.059995 -11.046354,2.389036 -1.10839,0.153091 -1.124479,0.14391 -1.124479,-0.641564 z" id="path84481" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -71.853267,28.034883 c 0,-0.13362 -0.06984,-0.424952 -0.155207,-0.647406 -0.234402,-0.610849 0.169196,-0.712544 14.839582,-3.739155 2.53573,-0.52314 6.459667,-1.600981 7.417861,-2.037562 0.784892,-0.357621 1.169829,-0.01598 1.177047,1.04467 0.0037,0.53508 -0.124193,0.595313 -1.263444,0.595313 -0.697124,0 -2.334233,0.344355 -3.638021,0.765236 -1.30379,0.42088 -5.108963,1.323618 -8.455943,2.006084 -3.346979,0.682466 -6.87216,1.469205 -7.833733,1.748306 -2.006245,0.582321 -2.088142,0.592695 -2.088142,0.264514 z" id="path84479" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -73.176183,22.070315 c 0,-0.544362 0.184573,-0.698804 1.124479,-0.940925 0.618463,-0.159313 1.481667,-0.396451 1.918229,-0.526973 0.436562,-0.130519 1.74625,-0.414036 2.910417,-0.630031 4.361254,-0.809181 14.1635,-3.082174 15.584305,-3.613764 1.634426,-0.611518 1.889405,-0.562314 2.07338,0.400087 0.08707,0.455472 -0.0055,0.695733 -0.299135,0.776518 -2.367616,0.651343 -7.319565,1.821452 -9.553342,2.257382 -7.149793,1.395307 -10.973673,2.19863 -12.116525,2.545446 -1.628389,0.494159 -1.641808,0.491971 -1.641808,-0.26774 z" id="path84477" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -74.201954,16.998842 c -0.174326,-0.382606 -0.280602,-0.732004 -0.236167,-0.776438 0.04443,-0.04443 2.281314,-0.624118 4.970843,-1.288185 5.288513,-1.30578 17.482902,-4.45243 18.474947,-4.767292 0.549108,-0.1742807 0.601517,-0.119205 0.524073,0.55072 -0.07344,0.635283 -0.260532,0.790691 -1.276675,1.060469 -0.654844,0.173855 -3.512344,0.932656 -6.35,1.686218 -2.837657,0.753565 -6.084999,1.655411 -7.216318,2.004103 -1.769991,0.545541 -8.16307,2.226056 -8.468444,2.226056 -0.05791,0 -0.247931,-0.313042 -0.422259,-0.695651 z" id="path84475" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -75.406613,11.374472 c -0.07975,-0.129032 0.0026,-0.351292 0.182822,-0.49391 0.745665,-0.589831 6.295162,-2.32477 12.498649,-3.9074519 3.638021,-0.928161 7.592015,-1.9759111 8.786657,-2.3283334 2.352236,-0.6939175 2.694098,-0.5792365 1.978943,0.6638528 -0.442857,0.7697814 -0.276469,0.7150285 -7.458308,2.4542698 -2.110052,0.5109951 -6.336771,1.58437 -9.392708,2.3852767 -5.757683,1.508983 -6.352948,1.61965 -6.596055,1.226296 z" id="path84473" inkscape:connector-curvature="0"/>
+ <path style="fill:#000000;stroke-width:0.26458335" d="m -76.489804,5.50372 c -0.09585,-0.3020086 -0.122912,-0.6004719 -0.06013,-0.6632522 0.06278,-0.06278 1.413105,-0.4161737 3.000719,-0.7853178 1.587617,-0.3691466 4.136732,-1.0908903 5.6647,-1.6038751 1.527969,-0.5129847 3.611563,-1.2094713 4.630209,-1.54774371 1.018645,-0.33827509 3.518958,-1.03352867 5.55625,-1.54501325 2.037291,-0.51148454 3.949327,-1.00838794 4.248967,-1.10423064 0.411329,-0.1315694 0.614797,-0.020638 0.830501,0.4527815 0.281675,0.61820689 0.238588,0.64136587 -3.058343,1.6439039 -1.839224,0.55927362 -5.844355,1.7809793 -8.900292,2.7148976 -5.503976,1.6820621 -10.434299,2.9859526 -11.293107,2.9866141 -0.244856,1.879e-4 -0.523619,-0.2467557 -0.619472,-0.5487644 z" id="path84471" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -76.951216,88.422303 c 0.161668,-0.490895 -0.839901,-0.883939 -2.693588,-1.057037 -1.632659,-0.152461 -1.697204,-0.136141 -1.558547,0.394081 0.07955,0.304218 0.459698,0.671311 0.844762,0.815761 0.929807,0.348797 3.276843,0.243546 3.407373,-0.152805 z" id="path84469" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -77.633137,85.000653 c 0.09529,-0.05615 0.128452,-0.548556 0.07369,-1.09423 -0.433723,-4.322238 -0.701466,-6.461752 -0.943644,-7.540575 l -0.282125,-1.25677 h -4.074653 -4.074652 v 0.887619 c 0,2.000501 0.567571,7.685595 0.813091,8.144351 0.181639,0.3394 0.570132,0.498113 1.246738,0.509344 0.540584,0.009 1.756786,0.179356 2.702671,0.378627 1.479561,0.3117 3.988382,0.296021 4.53888,-0.02837 z" id="path84467" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -88.852746,81.131738 c 0.181901,-0.146643 0.329105,-0.698527 0.327118,-1.22641 -0.0088,-2.340105 -0.811432,-2.878146 -1.537216,-1.030478 l -0.439923,1.119939 -0.136702,-0.78921 c -0.163349,-0.943036 -0.626674,-0.94533 -0.744392,-0.0037 -0.125762,1.005975 -0.577739,0.805421 -0.577739,-0.256365 0,-0.646758 -0.119692,-0.926042 -0.396875,-0.926042 -0.313854,0 -0.396875,0.376219 -0.396875,1.798477 v 1.798478 l 1.785937,-0.109048 c 0.982266,-0.05997 1.934766,-0.229023 2.116667,-0.375663 z" id="path84465" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -79.34283,72.393283 c 0.224634,-0.224634 0.327782,-0.538914 0.229214,-0.698399 -0.227211,-0.367634 -2.661597,-0.379355 -3.340378,-0.01609 -0.579416,0.310094 -0.676973,0.931172 -0.181044,1.152588 0.61508,0.274614 2.881025,-0.02692 3.292208,-0.438107 z" id="path84463" inkscape:connector-curvature="0"/>
+ <path style="fill:#ffffff;stroke-width:0.26458335" d="m -80.584517,60.900476 c 0,-0.457203 -0.794398,-6.511348 -3.846631,-29.315358 -2.267815,-16.943428 -2.286117,-17.065625 -2.555939,-17.065625 -0.129095,0 -0.877938,0.485634 -1.664094,1.07919 -1.253088,0.946089 -1.400987,1.153867 -1.199176,1.684668 0.340344,0.895176 1.208937,5.38016 2.251334,11.624787 0.738828,4.426064 1.53429,11.303416 1.992781,17.229064 0.168891,2.182812 0.426614,4.325937 0.572714,4.7625 0.146101,0.436562 0.418788,2.355255 0.605973,4.263758 0.187187,1.908506 0.503367,3.813506 0.702627,4.233333 0.217149,0.457528 0.839264,0.997445 1.552911,1.347732 1.452671,0.713029 1.5875,0.726276 1.5875,0.155951 z" id="path84431" inkscape:connector-curvature="0"/>
+ </g>
+</svg> \ No newline at end of file
diff --git a/pics/eth-qr.png b/pics/eth-qr.png
new file mode 100644
index 0000000..7e53719
--- /dev/null
+++ b/pics/eth-qr.png
Binary files differ
diff --git a/pics/manreadingnewspaper.svg b/pics/manreadingnewspaper.svg
new file mode 100644
index 0000000..539dbb3
--- /dev/null
+++ b/pics/manreadingnewspaper.svg
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:ns1="http://sozi.baierouge.fr" xmlns:xlink="http://www.w3.org/1999/xlink" id="svg3019" viewBox="0 0 303.91 279.83" version="1.1">
+ <g id="layer1" transform="translate(-136.81 -146.44)">
+ <path id="path3038" d="m386.26 425.31c-0.80722-0.57163-1.881-1.4606-2.3862-1.9754s-1.2682-1.1759-1.6955-1.4691c-0.42731-0.29325-1.0491-1.1123-1.3818-1.8201-0.33271-0.7078-0.93728-1.6193-1.3435-2.0255-1.3383-1.3383-3.6083-5.2978-4.0225-7.0163-0.10973-0.45527-0.65609-1.2844-1.2142-1.8424-0.55805-0.55804-1.2785-1.5318-1.601-2.164-0.78334-1.5355-2.4137-2.7731-3.3452-2.5393-0.74266 0.1864-2.5302 2.6587-2.5302 3.4995 0 0.26272-0.2555 0.6144-0.56777 0.78151-1.2922 0.6916-1.9105 0.36754-4.6004-2.4113-1.4456-1.4934-3.681-3.6779-4.9677-4.8546-3.4136-3.1217-3.5512-3.2582-10.118-10.043-3.3096-3.4192-6.3874-6.4827-6.8394-6.8079-0.76429-0.54979-0.95985-0.56568-2.7886-0.22664-1.0817 0.20054-2.495 0.59657-3.1408 0.88007-0.64578 0.2835-1.9667 0.65848-2.9354 0.83329-0.96867 0.17481-2.95 0.52839-4.403 0.78575-1.453 0.25735-2.906 0.5831-3.2289 0.72388-0.32289 0.14078-1.1154 0.31571-1.7612 0.38873-3.8798 0.43868-7.2962 1.1784-7.9108 1.7128-0.15337 0.13337-0.78948 0.2425-1.4136 0.2425-0.6241 0-1.3785 0.13048-1.6765 0.28996-0.29799 0.15948-1.9735 0.43081-3.7233 0.60296-5.2381 0.51532-7.3983 0.92389-9.3457 1.7676-0.48434 0.20985-1.0788 0.41254-1.3209 0.45043-4.9904 0.78081-8.0148 1.3558-8.9984 1.7106-0.67084 0.242-2.1238 0.52054-3.2289 0.61898-1.105 0.0984-2.4054 0.25083-2.8898 0.33865-0.48433 0.0878-1.8713 0.26364-3.0821 0.39071-1.2108 0.12708-2.7959 0.38422-3.5224 0.57143-0.7265 0.1872-1.6522 0.38275-2.057 0.43453-2.6564 0.3398-7.2851 1.1342-7.7764 1.3345-0.55015 0.22435-2.9013 0.57674-7.5644 1.1337-1.8061 0.21575-4.7986 0.006-6.1952-0.43393-0.35919-0.11319-0.48066-0.0605-0.34959 0.15152 0.30364 0.49132-1.3777 0.40449-2.0526-0.10597-0.65702-0.49695-1.387-0.56174-2.1148-0.18768-0.28033 0.14406-0.86496 0.40176-1.2992 0.57265-1.0894 0.4288-1.5325 2.0344-0.94762 3.4342 0.23322 0.55815 0.54257 1.0149 0.68745 1.0149 0.64023 0 1.4955 2.5894 1.5653 4.7391 0.0615 1.8934-0.0239 2.3366-0.61806 3.2057-0.8137 1.1904-3.3263 2.8934-4.5862 3.1086-0.48873 0.0835-1.0867 0.22383-1.3289 0.31194-0.24217 0.0881-0.74741 0.20081-1.1228 0.25045-0.37535 0.0497-0.84676 0.22664-1.0476 0.39331-0.20082 0.16667-1.313 0.46557-2.4716 0.66424-1.6464 0.28232-2.3197 0.28411-3.0828 0.008-0.53696-0.19418-1.8545-0.35304-2.9279-0.35304-2.0296 0-3.1268-0.42166-5.0516-1.9414-1.6864-1.3315-2.0574-1.6111-2.4781-1.8676-0.54618-0.33302-1.1819-2.4654-1.1834-3.9697-0.002-2.3496 0.33716-3.322 1.7897-5.1246 1.091-1.3539 1.4315-2.0166 1.4315-2.7858 0-1.1168-0.82011-1.9231-1.956-1.9231-0.35817 0-0.73284-0.13209-0.83262-0.29353-0.0998-0.16145-0.85112-0.29354-1.6696-0.29354-1.3629 0-5.1939-1.1268-5.9521-1.7506-0.16707-0.13747-1.096-0.3958-2.0642-0.57406-1.8312-0.33715-4.2006-1.1163-4.6826-1.5399-0.15337-0.13476-0.55625-0.24502-0.89529-0.24502-0.33903 0-0.74191-0.11453-0.89528-0.25452-0.41114-0.37525-3.0666-1.2132-3.8446-1.2132-0.36994 0-1.143-0.26419-1.7178-0.58708-0.57488-0.32288-1.4111-0.58707-1.8582-0.58707-0.44714 0-0.93846-0.12451-1.0918-0.2767-0.27727-0.27511-0.75278-0.41188-4.6819-1.3466-1.1301-0.26884-2.4054-0.67404-2.8339-0.90043-0.42852-0.22639-1.2624-0.41162-1.8531-0.41162-0.59068 0-1.8912-0.39223-2.8901-0.87163-0.99885-0.47939-2.3687-1.0649-3.0442-1.301-1.0872-0.38015-1.2704-0.37844-1.5968 0.0149-0.28735 0.34624-0.29164 0.56765-0.0194 1.0035 0.19209 0.30759 0.34926 0.71576 0.34926 0.90705 0 0.19128 0.21416 0.58443 0.4759 0.87365 0.30482 0.33682 0.3952 0.71447 0.25141 1.0505-0.12347 0.28854-0.19794 0.86539-0.16548 1.2819 0.0325 0.4165-0.14673 0.92801-0.39818 1.1367s-0.45719 0.5159-0.45719 0.6827-0.33022 0.73622-0.73384 1.2654c-0.40361 0.52916-0.73383 1.1442-0.73383 1.3668-0.00002 0.42817-1.5251 1.6892-2.0429 1.6892-0.16798 0-0.30542 0.13209-0.30542 0.29354 0 0.16144-0.24389 0.29353-0.54197 0.29353-0.29809 0-0.92552 0.19098-1.3943 0.42443-1.1434 0.56934-3.3843 0.81491-7.5079 0.82281-3.4113 0.006-3.4316 0.003-4.5433-0.9139-0.61415-0.50623-1.2746-0.92041-1.4675-0.92041-0.193 0-0.72429-0.30774-1.1806-0.68389-0.45636-0.37613-1.0352-0.75838-1.2862-0.84944-0.25106-0.0911-0.95551-0.89013-1.5654-1.7757-0.91574-1.3296-1.1282-1.9156-1.2192-3.3635-0.10175-1.6181-0.045-1.8159 0.73607-2.5642 0.46548-0.44596 0.78559-0.96911 0.71136-1.1626-0.0742-0.19346 0.13386-0.59504 0.46244-0.8924 0.32859-0.29736 0.59743-0.70318 0.59743-0.90182 0-0.19863 0.85474-1.1607 1.8994-2.138 1.777-1.6622 1.9586-1.7599 2.817-1.5137 0.50468 0.14474 1.0955 0.41079 1.3129 0.59123 0.50494 0.41906 3.3851 1.1857 3.7071 0.98674 0.5478-0.33856 0.16337-0.76751-1.2973-1.4476-0.84759-0.39461-1.726-0.71876-1.9521-0.72034-0.22608-0.001-1.0847-0.31732-1.908-0.70165-0.82332-0.38433-1.9662-0.90653-2.5398-1.1604-1.8293-0.80979-1.9536-1.12-2.3126-5.7727-0.29414-3.8118-0.32752-5.2125-0.23786-9.9802 0.0688-3.6611-0.40811-12.105-0.71117-12.59-0.20474-0.32784-0.24146-0.75901-0.0932-1.0938 0.51521-1.1629 0.90676-4.3474 0.71261-5.7958-0.11118-0.82944-0.21628-4.9251-0.23355-9.1015-0.0173-4.1764-0.15903-8.007-0.31502-8.5125-0.62935-2.0395-0.98085-5.2583-0.83301-7.6282 0.17794-2.852 0.0256-3.1177-2.4186-4.2168-4.0014-1.7994-5.8707-2.7576-5.8707-3.0094 0-0.15535-0.34716-0.46435-0.77146-0.68666-1.3075-0.68509-4.6162-7.0002-4.6424-8.8609-0.009-0.64577-0.19663-1.4906-0.41671-1.8774-0.27956-0.49132-0.3398-1.1548-0.19987-2.2015 0.11016-0.82404 0.23193-1.8945 0.27059-2.3789 0.0387-0.48433 0.1526-1.0787 0.25317-1.3209 0.10058-0.24217 0.26302-0.96867 0.36098-1.6144 0.098-0.64578 0.25165-1.6558 0.34153-2.2444 0.10555-0.69117 0.51743-1.4133 1.1629-2.0389 0.5497-0.5328 1.004-1.1079 1.0094-1.278 0.0135-0.41922 4.2041-4.7677 5.9341-6.1578 0.76686-0.61617 1.3943-1.2975 1.3943-1.5141 0-0.51973-2.0187-4.7623-2.3691-4.9788-0.15001-0.0927-0.27274-0.36153-0.27274-0.59738 0-0.23584-0.33023-0.95192-0.73384-1.5913-0.40361-0.63936-0.73384-1.3471-0.73384-1.5727s-0.20468-0.58006-0.45483-0.78767c-0.50026-0.41518-1.5999-2.6662-1.5999-3.2751 0-0.21123-0.46232-1.337-1.0274-2.5018-0.56506-1.1648-1.0274-2.3123-1.0274-2.5501 0-0.23777-0.13209-0.51395-0.29353-0.61373-0.16145-0.0998-0.29354-0.4227-0.29354-0.71761 0-0.2949-0.19732-0.91454-0.4385-1.377-0.24117-0.46242-0.4393-1.2661-0.4403-1.786-0.00088-0.51986-0.39808-1.725-0.88241-2.6781-0.48434-0.9531-0.88061-2.0203-0.88061-2.3716s-0.18311-0.99541-0.40692-1.4314c-0.53662-1.0453-1.385-4.7825-1.5459-6.8101-0.0705-0.88795-0.24367-1.8786-0.38486-2.2015-0.4517-1.033-0.99692-7.4994-0.98999-11.741 0.007-4.4426 0.15149-6.3621 0.68375-9.0996 0.18834-0.96867 0.38489-2.3614 0.43677-3.0949 0.0519-0.73351 0.37159-1.8273 0.71046-2.4306 0.33886-0.60331 0.61611-1.2388 0.61611-1.4123 0-0.59189 1.515-3.3333 2.5198-4.5594 0.55147-0.673 1.0027-1.3583 1.0027-1.5229s0.59441-0.72615 1.3209-1.2479c0.7265-0.52174 1.3209-1.0465 1.3209-1.1661 0-0.11959 1.1176-1.0452 2.4836-2.0569s2.5506-2.0142 2.6326-2.2278c0.082-0.21364 0.40958-0.38843 0.72801-0.38843s0.65155-0.11746 0.74027-0.26101c0.0887-0.14356 0.50738-0.34788 0.93033-0.45403 0.82251-0.20644 3.2061-1.2111 3.9331-1.6577 0.24217-0.14877 0.70449-0.38811 1.0274-0.53185 0.32289-0.14374 1.1006-0.67179 1.7282-1.1734 0.62762-0.50165 1.171-0.91209 1.2075-0.91209s0.77785-0.13037 1.6475-0.2897c1.5979-0.29276 3.3648-0.96264 5.9086-2.2401 0.76568-0.38451 1.7564-0.69715 2.2015-0.69476 0.44516 0.002 1.9322-0.44612 3.3044-0.99668 1.3723-0.55057 3.4197-1.2218 4.5498-1.4917 1.1301-0.26989 2.5171-0.61703 3.0821-0.77141 0.56505-0.15438 1.4897-0.3287 2.0548-0.38738 4.276-0.44403 6.5313-1.2997 6.7028-2.543 0.054-0.39173 0.21914-0.83773 0.36692-0.9911 0.14777-0.15337 0.26868-0.55606 0.26868-0.89486s0.52836-1.1659 1.1741-1.8379c1.5103-1.5718 1.5062-2.2914-0.0299-5.2425-0.66221-1.2722-1.4448-2.7754-1.7392-3.3405-0.82881-1.591-1.5414-3.74-1.3453-4.0572 0.0974-0.15752 0.24776-0.84958 0.33425-1.5379 0.40264-3.2046 1.4473-5.8527 2.3089-5.8527 0.76305 0 1.985-1.6876 2.1548-2.976 0.0928-0.70415 0.33168-1.5445 0.53082-1.8674 0.19915-0.32289 0.50971-1.0494 0.69014-1.6144 0.35751-1.1196 2.0891-3.1126 3.0792-3.544 0.34152-0.1488 0.81908-0.39196 1.0612-0.54036 0.24216-0.14839 0.90262-0.47137 1.4677-0.71774 0.56505-0.24636 1.1936-0.71967 1.3968-1.0518 0.20317-0.33213 0.62467-0.60387 0.93667-0.60387 0.31199 0 0.64889-0.13209 0.74867-0.29354 0.0998-0.16144 0.93975-0.29353 1.8666-0.29353s1.8107-0.10799 1.964-0.23997c0.25457-0.21905 2.189-0.7518 3.9046-1.0753 0.37972-0.0716 0.87338-0.28206 1.097-0.46766 0.22364-0.1856 0.63946-0.24515 0.92404-0.13233 0.7909 0.31355 3.306 0.40005 3.306 0.1137 0-0.13923 0.65395-0.25315 1.4532-0.25315 0.79927 0 2.1354-0.1463 2.9691-0.32509 1.6858-0.36155 2.4168-0.13996 3.8701 1.1732 0.88316 0.798 1.103 2.4538 0.48019 3.6175-0.44553 0.83247 0.13779 2.7731 0.90691 3.0172 0.51702 0.1641 2.649 2.7497 2.649 3.2126 0 0.10797 0.7003 1.2791 1.5562 2.6025 2.8268 4.3708 3.503 5.7614 3.3078 6.8024-0.16022 0.85407-0.90606 1.7918-1.8492 2.325-0.33891 0.19161-1.5819-0.0508-3.8435-0.74946-0.82409-0.2546-1.039-0.2175-1.385 0.23909-0.5915 0.78063-0.51928 1.9815 0.15592 2.5925 0.68636 0.62115 3.3474 0.96854 3.6514 0.47668 0.26569-0.42989 1.3664-0.40227 1.9542 0.049 0.63967 0.49112 1.1487 1.5088 1.1487 2.2965 0 0.36115 0.21375 0.89284 0.47501 1.1815 0.98573 1.0892 0.76109 4.8478-0.35653 5.9655-0.63842 0.63842-1.8283 0.88027-2.7281 0.55453-0.63864-0.23119-0.75326-0.43605-0.68937-1.2321 0.0422-0.52513 0.33936-1.2368 0.66046-1.5814 1.2586-1.351 0.28035-2.9178-2.6296-4.2119-2.9659-1.3189-3.6767-1.7537-4.0574-2.4815-0.46018-0.87986-0.23653-2.8142 0.5209-4.5054 0.29692-0.66293 0.74775-1.6676 1.0019-2.2327 0.72418-1.6103 1.1899-2.0548 2.1532-2.0548 1.1709 0 1.4648-0.75794 0.67725-1.7467-0.32784-0.41161-1.3146-1.7391-2.1927-2.9499-0.87815-1.2108-1.9313-2.447-2.3404-2.7471-0.40909-0.3001-0.8924-0.99587-1.074-1.5462-0.46355-1.4046-1.4725-1.8481-3.8093-1.6747-1.7844 0.13243-3.6254 0.12142-6.7458-0.0403-0.7265-0.0377-1.453 0.0264-1.6144 0.1423-0.16144 0.11592-1.02 0.30186-1.908 0.41319-2.7254 0.34171-4.7431 1.0318-4.6364 1.5858 0.0513 0.26657 0.34631 0.53338 0.6555 0.59293 2.167 0.41733 2.1135 5.3129-0.0698 6.3865-0.73362 0.36077-2.8302 2.1349-4.9986 4.2298-0.75415 0.72859-1.9888 1.8514-2.7437 2.495-1.4159 1.2073-1.9282 2.3105-1.4294 3.0783 0.2092 0.3221 0.73432 0.42101 1.9561 0.36846 1.8429-0.0793 2.2822 0.15191 2.8626 1.5066 1.2406 2.8952 1.0751 4.3519-0.78063 6.8719-0.67985 0.92321-1.3827 1.9416-1.5619 2.2631-0.27297 0.4897-0.64177 0.5868-2.2723 0.59826-1.5772 0.0111-2.0254 0.12163-2.3626 0.58278-0.49417 0.67583-0.89632 3.9523-0.59977 4.8867 0.24097 0.75922 3.7677 5.1828 4.6087 5.7806 0.31174 0.22162 1.3799 0.45878 2.3737 0.52704 1.6868 0.11585 1.8703 0.065 2.7609-0.76573 0.80695-0.75267 0.95399-1.0963 0.95399-2.2294 0-1.4391 0.66919-3.0745 1.2551-3.0672 1.1806 0.0148 2.0475 1.8546 1.7142 3.6384-0.13781 0.73764-0.38771 1.5076-0.55533 1.7111-0.71201 0.86432-0.27676 4.5052 0.70999 5.9391 0.21915 0.31844 0.39846 0.79761 0.39846 1.0648 0 0.2672 0.17641 0.63223 0.39203 0.81118 0.46763 0.38809 1.4204 2.288 2.1246 4.2366 0.27986 0.77435 0.86859 1.9752 1.3083 2.6686l0.79948 1.2607 4.2189 0.23218c9.5545 0.52581 13.716 0.55544 14.263 0.10153 0.62325-0.51725 1.2569-2.0489 1.2569-3.0382 0-1.7115-0.81234-1.8901-4.5498-1.0003-3.3657 0.80126-12.121 0.54911-13.282-0.38253-0.66097-0.5302-0.39999-3.6503 0.38285-4.5772 0.0457-0.0542 0.52319 0.10134 1.061 0.34555 1.9556 0.88802 7.354 1.173 10.665 0.56299 0.96867-0.1785 2.6858-0.47614 3.816-0.66143 1.1301-0.18529 2.6304-0.52466 3.334-0.75416 0.70359-0.2295 1.3886-0.34973 1.5221-0.26718 0.13357 0.0825 0.68067-0.0956 1.2158-0.39596 1.132-0.6353 3.1283-1.363 3.7574-1.3696 0.23991-0.003 0.74482-0.65467 1.122-1.4492 0.63817-1.3442 0.66249-1.5788 0.3498-3.3751-0.18482-1.0618-0.51302-2.3268-0.72932-2.8111-0.2163-0.48434-0.48228-1.4045-0.59105-2.0448-0.10878-0.64033-0.45062-1.5193-0.75964-1.9533-0.30903-0.43398-0.56186-0.91838-0.56186-1.0764 0-0.94828-4.262-0.0302-6.6392 1.4302-0.50339 0.30924-1.3212 0.56226-1.8173 0.56226-0.49611 0-0.98365 0.13209-1.0834 0.29354-0.0998 0.16144-0.49606 0.29353-0.88061 0.29353-0.38456 0-0.78083 0.13209-0.88061 0.29354-0.0998 0.16144-0.54347 0.29353-0.98599 0.29353s-0.95605 0.15148-1.1412 0.33662c-0.18514 0.18514-1.3013 0.39627-2.4804 0.46918-2.032 0.12565-2.2087 0.0851-3.3887-0.77692-1.5056-1.0998-1.8148-1.1163-3.3048-0.17564-1.2186 0.76925-1.9076 0.91586-2.1862 0.46515-0.2571-0.416 1.2668-2.0556 2.3194-2.4953 0.51898-0.21684 1.2763-0.72692 1.6828-1.1335 0.40659-0.40659 1.122-0.95485 1.5897-1.2184 0.46776-0.26352 1.2467-0.72964 1.7311-1.0358 0.95305-0.60248 2.7886-0.79305 2.7886-0.28951 0 0.42407-1.7553 2.0266-2.576 2.3518-1.6772 0.66458-0.93803 2.1746 0.94486 1.9302 3.0694-0.3984 8.8712-1.8091 9.3951-2.2844 0.15337-0.13914 0.51286-0.25298 0.79886-0.25298 0.93734 0 3.7084-1.3993 4.0555-2.0479 0.22149-0.41386 0.27055-1.2792 0.14106-2.4882-0.10918-1.0196-0.10981-2.1332-0.001-2.4748 0.2594-0.8173 1.1537-0.7943 1.5328 0.0394 0.16515 0.36325 0.78387 1.6511 1.3749 2.862 0.59106 1.2108 1.0737 2.4657 1.0725 2.7886-0.003 0.78074 1.2204 1.3209 2.9912 1.3209 0.77723 0 1.6681 0.15926 1.9798 0.35389 0.46822 0.29242 0.67514 0.25573 1.1911-0.21121 0.55595-0.50312 0.60826-0.79143 0.47701-2.6288-0.0811-1.135-0.2689-2.9223-0.41738-3.9717-0.30306-2.1419-0.0349-3.1126 0.76559-2.7718 2.2292 0.94892 16.545 0.99862 18.355 0.0637 0.36049-0.18624 0.6515-0.17537 0.85895 0.0321 0.22263 0.22264 0.43106 0.21639 0.71772-0.0215 0.57183-0.47458 7.9529-0.61741 10.645-0.20599 2.9759 0.45483 6.8282 0.43938 8.8896-0.0357 1.5018-0.34606 1.8137-0.33461 2.7252 0.10005 0.56612 0.26996 1.3511 0.49084 1.7445 0.49084 0.39335 0 1.4126 0.30961 2.2649 0.68803 0.85237 0.37841 2.0121 0.8638 2.5771 1.0786 0.56506 0.21483 1.3582 0.5987 1.7625 0.85304s0.99871 0.62839 1.3209 0.83122c0.32219 0.20284 0.78394 0.44563 1.0261 0.53955 0.24217 0.0939 0.90262 0.40092 1.4677 0.68224 0.56506 0.28132 1.8751 0.76502 2.9113 1.0749 1.5832 0.47349 2.1939 0.86794 3.8263 2.4714 1.0683 1.0494 2.3857 2.2382 2.9276 2.6418 2.8603 2.1304 4.0418 2.954 4.5834 3.1948 0.32953 0.14655 0.78133 0.48599 1.004 0.7543 0.22268 0.26831 0.81166 0.6592 1.3088 0.86863 0.49718 0.20943 1.4501 0.82923 2.1175 1.3773 0.66746 0.5481 1.6537 1.2607 2.1917 1.5836 2.3947 1.4373 2.7964 1.7048 3.4084 2.2703 0.3572 0.32997 0.90483 0.74669 1.217 0.92604 0.31212 0.17935 1.2884 0.82143 2.1695 1.4268 0.88111 0.60542 1.6968 1.1008 1.8126 1.1008 0.11584 0 1.5538 0.89161 3.1954 1.9814 2.8609 1.8992 4.8836 3.0154 5.6747 3.1314 0.20364 0.0299 0.60775 0.25693 0.89802 0.50454 0.29028 0.24761 0.99009 0.62896 1.5552 0.84744 0.56505 0.21848 1.5303 0.709 2.145 1.09 1.0088 0.62534 1.1088 0.79839 1.0274 1.7768-0.11088 1.3318-0.85505 1.5846-1.8666 0.6343-0.96145-0.90323-2.7032-1.8579-4.8282-2.6464-0.56506-0.20967-1.4244-0.7205-1.9096-1.1352-0.4852-0.41467-2.0703-1.5321-3.5224-2.4832-1.4521-0.95108-3.3373-2.206-4.1892-2.7886-2.1965-1.5023-3.0552-2.0372-3.7928-2.3628-0.35481-0.15664-1.1474-0.73621-1.7612-1.288-0.61385-0.55173-1.7105-1.2752-2.437-1.6078-1.2635-0.57835-1.657-0.83922-3.5178-2.332-0.45278-0.36325-0.9238-0.66045-1.0467-0.66045s-0.63219-0.30968-1.1318-0.68817c-0.49957-0.3785-1.0404-0.7419-1.2018-0.80756-1.1278-0.45868-5.7907-3.8014-6.7513-4.8399-0.64578-0.69808-1.6365-1.5298-2.2015-1.8484-3.3317-1.8781-7.767-3.8744-9.5434-4.2954-1.1282-0.26735-2.3154-0.59908-2.6383-0.73718-1.5656-0.66965-5.0446-1.1187-8.9528-1.1557-3.6092-0.0342-5.724-0.14163-5.724-0.29087 0-0.0194-1.7832-0.093-3.9627-0.16348-2.7695-0.0896-4.7902 0.0101-6.7108 0.33109-3.9588 0.66157-5.6532 0.77722-12.208 0.83326l-5.8568 0.0501-0.41072 1.0065c-0.29132 0.71397-0.35055 1.5192-0.20376 2.77 0.11382 0.96991 0.25837 3.1504 0.32122 4.8456 0.0628 1.6952 0.25856 4.403 0.4349 6.0175 0.17634 1.6144 0.44207 6.1716 0.5905 10.127 0.24663 6.572 0.53305 10.878 0.95674 14.383 0.61755 5.109 0.69595 9.0372 0.1989 9.9659-0.4311 0.80552-1.4269 0.7716-1.7343-0.0591-0.31643-0.85492-0.69068-5.3705-0.78378-9.4567-0.0701-3.0774-0.10762-3.2486-0.85256-3.8894-0.50113-0.43105-1.2186-0.69215-2.0104-0.7316-4.2452-0.21149-4.4309-0.14422-4.1305 1.4963 0.19148 1.0458 1.1332 3.299 1.9765 4.7293 0.80688 1.3685 1.4015 2.955 1.6824 4.4888 0.154 0.84077 0.31674 1.7268 0.36165 1.969 0.0449 0.24216 0.33936 0.87768 0.65435 1.4122 1.8011 3.0568 1.4754 2.7894 3.131 2.5698 2.6586-0.35268 3.9308-1.3289 3.6137-2.773-0.2608-1.1874-0.44239-4.8637-0.41495-8.4007 0.0125-1.6144 0.015-3.1335 0.005-3.3757-0.0794-2.0141 0.0347-7.0794 0.2067-9.1741 0.11602-1.4132 0.0994-3.989-0.037-5.724-0.21967-2.795-0.11385-10.54 0.18097-13.246 0.16893-1.5505 0.98713-1.9534 4.8614-2.3942 4.5533-0.51799 5.3854-0.57789 7.9209-0.5702 1.1901 0.004 2.3129-0.10084 2.4951-0.2321 1.2081-0.8704 3.3561-1.1135 12.66-1.4327 10.04-0.34449 17.047 0.0242 17.968 0.94541 0.51237 0.51237 2.9148 2.1809 3.1402 2.1809 0.0889 0 0.88429 0.46232 1.7676 1.0274 0.88333 0.56506 1.6924 1.0274 1.7981 1.0274 0.1056 0 0.68686 0.39193 1.2917 0.87096 0.60482 0.47903 1.7466 1.2146 2.5373 1.6347 2.0978 1.1145 3.5238 1.9955 4.156 2.5677 0.30618 0.27709 0.65757 0.50381 0.78086 0.50381 0.1233 0 1.5509 0.89161 3.1724 1.9814 5.1963 3.4922 6.795 4.5309 10.053 6.5312 0.92025 0.56506 1.9694 1.2255 2.3315 1.4677 2.6495 1.772 3.5924 2.3378 3.9043 2.3427 0.1969 0.003 0.80623 0.25733 1.3541 0.56504 0.54785 0.30771 1.3114 0.73701 1.6968 0.95399 0.38537 0.21699 0.96485 0.6069 1.2877 0.86646 0.32289 0.25957 1.3136 0.85003 2.2015 1.3121 0.88795 0.46212 1.9878 1.1414 2.4442 1.5094 0.45636 0.36808 1.142 0.66923 1.5237 0.66923s0.77563 0.13209 0.87541 0.29353c0.0998 0.16145 0.63129 0.29354 1.1811 0.29354 0.71413 0 1.0937 0.17552 1.3285 0.61441 0.36618 0.68421 0.14473 2.0274-0.33425 2.0274-0.36782 0-3.0136-1.771-3.1539-2.111-0.0538-0.13046-0.34649-0.23722-0.65045-0.23722s-1.0525-0.21668-1.6634-0.48151-1.6391-0.7086-2.2849-0.98617c-1.9772-0.84981-3.1828-1.445-4.2563-2.1011-1.4464-0.88413-4.436-2.5431-5.1489-2.8573-0.32952-0.14521-0.77499-0.47592-0.98993-0.7349-0.21494-0.25899-0.51553-0.47089-0.66798-0.47089-0.15244 0-0.69766-0.29753-1.2116-0.66119-1.4564-1.0306-2.0145-1.3634-3.3561-2.0017-0.68614-0.32642-1.2496-0.68638-1.2521-0.79991-0.003-0.11353-0.69598-0.53621-1.5411-0.9393-0.84507-0.40308-2.1947-1.2947-2.9991-1.9814-0.80445-0.68667-1.6138-1.2485-1.7987-1.2485-0.18481 0-0.50901-0.20843-0.72044-0.4632-0.21144-0.25476-0.98713-0.78821-1.7238-1.1854-0.73663-0.39724-1.7541-1.0144-2.261-1.3714-1.3563-0.95534-2.8498-1.801-3.2108-1.818-0.17404-0.008-0.74178-0.37283-1.2616-0.81027-0.92452-0.77793-1.7788-1.224-3.8523-2.0114-0.56505-0.21459-1.3222-0.66084-1.6826-0.99169-0.66748-0.61276-1.7829-1.2185-4.922-2.673-1.9152-0.88741-4.6764-1.4064-5.4102-1.017-0.2533 0.13443-3.1024 0.3268-6.3313 0.42748-11.432 0.35648-13.225 0.45255-14.677 0.78658-1.7464 0.40177-5.1663 0.79845-8.8061 1.0214-2.7706 0.16973-5.7858 1.2282-6.2042 2.178-0.10726 0.24351-0.24486 2.8204-0.30576 5.7264s-0.11961 5.4157-0.13046 5.5772c-0.0108 0.16144-0.021 1.2182-0.0226 2.3483-0.001 1.1301-0.009 3.0454-0.0158 4.2563-0.0371 6.3538 0.37551 17.568 0.67799 18.426 0.18624 0.5281 0.58021 1.0895 0.87551 1.2475 0.65192 0.3489 1.9527 0.37765 2.1566 0.0477 0.0815-0.13183 1.5606-0.26744 3.2869-0.30137 1.7263-0.0339 3.2583-0.13558 3.4045-0.22589 0.38847-0.24009 1.1206 0.46025 1.1206 1.0719 0 0.28965-0.36325 0.79935-0.80722 1.1327-0.64914 0.48733-0.72621 0.65926-0.39354 0.87793 0.22753 0.14955 0.57729 0.20914 0.77724 0.13241 0.46378-0.17797 1.5977 1.0244 1.5977 1.6941 0 0.32139 0.37862 0.63391 1.0274 0.84802 1.3124 0.43314 1.3687 1.2761 0.12804 1.9177-1.1194 0.57885-0.98118 1.1188 0.33559 1.3112 1.433 0.20947 1.3557 1.1031-0.1701 1.9672-0.64577 0.36573-1.4204 0.66714-1.7215 0.66979-0.50549 0.004-2.0374 0.70812-4.5895 2.1081-0.56506 0.30997-1.7067 0.89694-2.537 1.3044-0.8303 0.40745-2.0191 1.1943-2.6418 1.7485-1.7918 1.5948-4.3781 1.2589-2.6493-0.34408 0.41672-0.38641 0.85005-0.70256 0.96294-0.70256 0.11288 0 0.65207-0.3408 1.1982-0.75734 0.5461-0.41653 1.8134-1.133 2.8163-1.5921 1.0028-0.45912 2.269-1.1681 2.8136-1.5756 0.5446-0.40744 1.3565-0.82125 1.8042-0.91958 0.44769-0.0983 1.0463-0.43547 1.3302-0.74921 0.28393-0.31374 0.6939-0.57044 0.91104-0.57044 0.21715 0 0.39481-0.26418 0.39481-0.58707 0-0.42738-0.19569-0.58707-0.71939-0.58707-1.053 0-3.6954 0.56637-4.711 1.0098-1.0429 0.45532-6.5284 3.0402-7.261 3.4215-0.8105 0.42188-1.3983 0.30971-1.3983-0.26684 0-0.65298 1.4686-2.1097 2.1269-2.1097 0.26417 0 0.55976-0.12856 0.65686-0.28568 0.28733-0.4649 3.2161-1.6513 7.1231-2.8854 1.2633-0.39905 1.5411-0.60683 1.5411-1.1529 0-0.58405-0.14813-0.66612-1.2024-0.66612-1.531 0-4.2825 0.78811-5.3302 1.5267-1.0767 0.759-4.5112 1.3436-5.0018 0.85131-0.63102-0.63311 0.75801-1.4303 4.6363-2.6607 0.64578-0.20489 1.8124-0.68741 2.5926-1.0723 0.78012-0.38486 1.7378-0.69975 2.1281-0.69975 0.39035 0 0.70972-0.13209 0.70972-0.29353 0-0.36993-4.892-0.39621-5.1199-0.0275-0.0904 0.14632-0.82458 0.35683-1.6314 0.46781-0.80686 0.11097-1.541 0.32148-1.6314 0.4678s-0.49211 0.26603-0.89263 0.26603c-0.40051 0-1.246 0.26419-1.879 0.58708-0.63292 0.32289-1.6066 0.58707-2.1637 0.58707-0.76071 0-1.184 0.21009-1.6995 0.84361-1.0601 1.3026-1.7898 2.6951-2.1968 4.1922-0.20435 0.75167-0.91652 2.4028-1.5826 3.6692-1.4063 2.6739-2.2096 5.6278-2.5419 9.3474-0.46033 5.1533-0.0975 9.2675 0.88962 10.087 0.28713 0.2383 0.98168 0.13308 2.6805-0.40611 1.2611-0.40026 2.5406-0.72775 2.8432-0.72775 0.30264 0 0.77961-0.11788 1.06-0.26195 0.28033-0.14408 0.83993-0.39204 1.2435-0.55104 0.80036-0.31529 2.0338-2.538 2.6438-4.7642 0.58969-2.1521 1.234-3.2452 2.7866-4.7279 1.4736-1.4072 2.1234-1.9297 5.4363-4.3717 0.98559-0.72651 2.5789-1.962 3.5408-2.7456 1.3936-1.1353 1.8966-1.3875 2.4767-1.2419 0.64633 0.16222 1.0726 1.0521 0.504 1.0521-0.12316 0-0.35432 0.2972-0.51369 0.66045-0.15971 0.36405-0.74239 0.80676-1.2983 0.98644-0.9678 0.31281-4.4938 3.1628-6.7692 5.4714-0.59671 0.60542-1.2357 1.1008-1.4199 1.1008-0.4756 0-1.7958 2.1868-1.9988 3.3108-0.32677 1.8098-1.3275 4.4842-1.8365 4.9082-0.0969 0.0807-0.48139 0.75462-0.85438 1.4976-0.52516 1.046-1.0866 1.5924-2.4884 2.4217-0.99561 0.58898-2.0397 1.0709-2.3202 1.0709-0.88084 0-1.1108 0.95926-0.93295 3.8916 0.19813 3.2666-0.0812 4.1196-1.3028 3.978-0.59038-0.0684-0.95469-0.41601-1.4697-1.4023-0.37664-0.72121-1.1373-1.9277-1.6904-2.6812-0.55306-0.75342-1.0056-1.5755-1.0056-1.8269 0-0.25137-0.1321-0.53867-0.29354-0.63845-0.16145-0.0998-0.29354-0.45044-0.29354-0.77926 0-0.32881-0.18346-0.94845-0.40768-1.377-1.7219-3.2907-1.995-10.846-0.59919-16.572 0.2477-1.0161-0.43277-1.8149-2.7263-3.2005-0.8807-0.53206-2.0564-1.3832-2.6127-1.8915-0.55626-0.50829-1.7344-1.2779-2.6181-1.7102-0.88368-0.43234-1.7427-1.0402-1.9089-1.3508-0.16622-0.31056-0.46621-0.56467-0.66667-0.56467-0.3873 0-4.3114-3.8228-4.3114-4.2001 0-0.47683-1.8478-1.9961-2.6141-2.1494-1.3204-0.26409-3.9462-3.1845-4.995-5.5555-0.30012-0.67847-1.1215-1.9663-1.8253-2.8618-1.4617-1.8599-2.6005-3.6342-2.6005-4.0518 0-0.56988-1.298-2.0225-1.8072-2.0225-0.34455 0-0.46494-0.15041-0.35328-0.44138 0.26322-0.68593-0.95961-3.007-1.7096-3.245-0.53078-0.16846-0.86207 0.0158-1.697 0.94392-0.5706 0.63428-2.0942 1.9298-3.3857 2.8789-1.2916 0.94913-2.8436 2.1921-3.449 2.7622-0.60541 0.57007-1.1008 0.91892-1.1008 0.77523s-0.36326 0.0772-0.80723 0.49077c-0.44397 0.41362-1.4016 1.1312-2.1281 1.5947-0.7265 0.46348-1.494 1.0752-1.7056 1.3593-0.21161 0.28415-0.80602 0.73347-1.3209 0.9985-0.92089 0.474-1.8516 1.2176-2.7914 2.23-0.26224 0.28253-0.63595 0.51369-0.83047 0.51369-0.19451 0-1.1349 0.75952-2.0897 1.6878-0.95481 0.92831-2.2956 2.0841-2.9796 2.5684-3.1828 2.2537-6.4815 6.1373-6.4815 7.6307 0 0.33971-0.15381 0.77147-0.3418 0.95946-0.422 0.422-0.37608 6.8071 0.052 7.2352 0.15937 0.15937 0.28976 0.7493 0.28976 1.311 0 0.56166 0.12455 1.4269 0.27678 1.9227 0.15223 0.49579 0.50323 1.8261 0.77999 2.9562 0.27677 1.1301 0.94842 3.4417 1.4926 5.1369 0.54415 1.6952 1.1223 3.6613 1.2849 4.3692 0.16253 0.70788 0.62118 1.9755 1.0192 2.8169 0.39805 0.84142 0.72374 1.7405 0.72374 1.9979 0 0.25742 0.13209 0.54967 0.29353 0.64945 0.16145 0.0998 0.29354 0.47913 0.29354 0.84299 0 0.36387 0.33022 1.3461 0.73384 2.1828 0.40361 0.83665 0.73383 1.801 0.73383 2.1431 0 0.34206 0.25426 1.1022 0.56501 1.6893 0.31075 0.58704 0.64115 1.3976 0.73422 1.8012 0.2787 1.2086 1.2996 1.6649 4.8767 2.1797 6.1999 0.89226 7.3168 1.048 9.3081 1.2979 1.0898 0.13676 2.3776 0.40078 2.862 0.58672 0.48434 0.18593 1.9373 0.52273 3.2289 0.74844 2.2203 0.38801 2.38 0.37985 2.9305-0.14972 0.48954-0.47093 0.52459-0.6524 0.22015-1.1399-0.4584-0.73401-0.48409-5.831-0.0351-6.9583 1.7906-4.4957 3.9057-7.4256 5.3607-7.4256 1.0105 0 1.3042 0.74644 0.68232 1.7339-0.26369 0.41865-1.0876 1.9992-1.8308 3.5122l-1.3514 2.751 0.12527 4.0337c0.0689 2.2185 0.21803 4.1838 0.3314 4.3672 0.11337 0.18343 0.62763 0.33354 1.1428 0.33357s1.982 0.20008 3.2597 0.44457 2.7486 0.36469 3.2687 0.26712c0.55597-0.1043 1.0271-0.0456 1.1433 0.1425 0.10874 0.17595 0.58797 0.3199 1.065 0.3199 0.477 0 1.0966 0.11668 1.377 0.25929 0.28034 0.14261 0.83993 0.39369 1.2436 0.55797 0.40361 0.16427 1.8903 0.8544 3.3038 1.5336 2.831 1.3603 5.8546 4.0153 6.7702 5.9447 0.27996 0.58997 0.64572 1.1572 0.8128 1.2604 0.16708 0.10327 0.42741 0.47213 0.57851 0.8197 0.1511 0.34756 0.39228 0.83007 0.53594 1.0722 0.40825 0.68816 1.4378 4.1334 1.6131 5.398 0.15686 1.1317 0.0311 2.479-0.89324 9.5723-0.45715 3.508-1.1474 5.8705-1.8404 6.2988-0.17725 0.10955-0.5224 0.68549-0.767 1.2799-0.24461 0.59438-0.90071 1.543-1.458 2.1081-1.9376 1.9645-2.4914 2.8347-2.4914 3.9144 0 0.57259 0.11948 1.1149 0.26552 1.2052 0.14603 0.0903 0.66395 0.85758 1.1509 1.7052 1.0788 1.8777 4.6335 5.4506 6.7804 6.8153 0.57723 0.3669 1.3011 0.94841 1.6087 1.2922 0.30755 0.34383 0.71637 0.62515 0.9085 0.62515 0.77402 0 1.3391 1.1329 1.5174 3.0419 0.27037 2.8953 1.2494 3.792 1.7228 1.5779 0.11179-0.52285 0.30187-1.0827 0.42241-1.2442 0.12054-0.16145 0.30153-0.63921 0.4022-1.0617s0.65893-1.46 1.2406-2.3056c0.58165-0.84557 1.1963-1.9529 1.3658-2.4607 0.16953-0.50783 0.53394-1.1875 0.80979-1.5104 0.27585-0.32288 0.87132-1.3136 1.3233-2.2015 0.45195-0.88795 1.2209-2.3944 1.7088-3.3476 0.8202-1.6025 0.8549-1.7906 0.46046-2.495-0.41293-0.73752-0.56712-0.77377-4.8194-1.1331-2.4161-0.20418-5.0533-0.5065-5.8605-0.67182-0.80722-0.16532-1.996-0.40982-2.6418-0.54334-2.1424-0.44296-3.052-1.0677-3.0728-2.1107-0.0257-1.2917 1.8304-1.7406 4.6872-1.1336 2.3838 0.50648 6.8594 1.1737 8.931 1.3313 2.3905 0.18195 4.8295 0.97702 6.1972 2.0202 0.5374 0.4099 1.186 0.74527 1.4414 0.74527 0.93698 0 5.4429 2.9271 7.6793 4.9884 0.67187 0.61931 1.633 1.3388 2.1358 1.5988 0.5028 0.26001 0.91417 0.60144 0.91417 0.75874s0.19814 0.28599 0.44031 0.28599c0.24216 0 0.4403 0.13115 0.4403 0.29144s1.0237 1.0422 2.2749 1.9597c1.2512 0.91754 2.826 2.2064 3.4996 2.8641 0.67361 0.65771 1.6535 1.5261 2.1776 1.9297 0.52407 0.40361 1.5584 1.3613 2.2985 2.1281 0.74009 0.76686 1.4774 1.3965 1.6384 1.3992 0.16101 0.003 1.1513 0.87264 2.2007 1.9332s2.2052 2.0458 2.5684 2.1894c0.36325 0.14355 0.66046 0.4481 0.66046 0.67676 0 0.46034 1.1903 0.86095 1.8294 0.6157 0.53924-0.20692 1.106-1.8204 1.106-3.1486 0-0.58443 0.11553-1.134 0.25674-1.2213s0.33133-0.85459 0.4225-1.7052c0.0912-0.85056 0.38137-2.4051 0.6449-3.4545 0.26352-1.0494 0.59046-2.5024 0.72652-3.2289 0.40639-2.1699 0.92288-5.0414 1.188-6.6046 0.60604-3.5737 0.91676-5.0246 1.1779-5.4998 0.15403-0.28034 0.28005-0.79932 0.28005-1.1533s0.12548-1.0492 0.27884-1.545c0.15337-0.4958 0.49468-2.0242 0.75848-3.3965s0.59537-2.8913 0.73682-3.3757c0.95875-3.2827 1.8708-7.0232 2.2373-9.1757 0.0896-0.52619 0.2804-1.0293 0.42401-1.1181s0.2611-0.58948 0.2611-1.1127c0-0.52324 0.1166-1.0768 0.2591-1.2302 0.1425-0.15337 0.47956-1.1374 0.74902-2.1868 0.26945-1.0494 0.56159-2.1722 0.64919-2.495 0.0876-0.32289 0.26722-1.1154 0.39917-1.7612 0.13195-0.64578 0.45674-1.9006 0.72176-2.7886 0.26502-0.88795 0.67827-2.407 0.91835-3.3757 0.81775-3.2996 1.0465-4.1092 1.7833-6.311 0.40516-1.2108 0.86774-2.7299 1.028-3.3757 0.82747-3.3354 1.5438-5.2654 2.4593-6.6257 0.55722-0.82803 1.0131-1.5931 1.0131-1.7001 0-0.10701 0.47122-0.8943 1.0472-1.7495 0.80268-1.1919 1.196-1.5337 1.6848-1.4638 0.35071 0.0502 0.68482 0.33849 0.74247 0.64073 0.13289 0.69678-0.77608 2.7416-1.3097 2.9464-0.22194 0.0852-0.40352 0.35713-0.40352 0.60437 0 0.24723-0.12034 0.44951-0.26743 0.44951-0.14708 0-0.6265 1.1558-1.0654 2.5684-0.43888 1.4126-0.99485 3.1979-1.2355 3.9672-0.24064 0.76932-0.55376 1.4706-0.69582 1.5584s-0.25829 0.82448-0.25829 1.6371c0 1.0202-0.17709 1.7026-0.57218 2.2048-0.3147 0.40008-0.65687 1.3456-0.76038 2.101-0.10351 0.7555-0.44043 2.1089-0.74873 3.0076-0.30829 0.8987-0.56053 1.8597-0.56053 2.1355 0 0.27581-0.27024 1.2577-0.60054 2.182-0.33029 0.92428-0.71718 2.2089-0.85974 2.8546-0.28889 1.3086-1.8302 7.1243-2.4894 9.3932-0.84151 2.8963-1.282 4.7193-1.4702 6.084-0.1052 0.7631-0.31574 1.4644-0.46785 1.5584-0.15212 0.094-0.27658 0.46695-0.27658 0.82875 0 0.36179-0.11928 0.78329-0.26508 0.93666-0.14579 0.15338-0.33092 0.87327-0.41139 1.5998-0.0805 0.7265-0.36678 2.1795-0.63624 3.2289-0.26945 1.0494-0.56324 2.3042-0.65286 2.7886-0.0896 0.48434-0.2898 1.0399-0.44486 1.2347-0.15506 0.19474-0.20539 0.47791-0.11184 0.62927 0.0935 0.15137-0.0175 0.72422-0.24681 1.273-0.2293 0.54878-0.49859 1.8507-0.59842 2.8932-0.0998 1.0424-0.30231 2.3577-0.44996 2.9227-0.5853 2.2399-1.2574 4.9296-1.6503 6.6046-0.22724 0.96867-0.55292 2.3556-0.72373 3.0821s-0.37484 1.7832-0.4534 2.3483c-0.13732 0.98771-0.44252 1.8766-1.0444 3.0418-0.39739 0.76932-0.52096 3.1688-0.1948 3.7829 0.15096 0.28419 0.60824 0.51369 1.0236 0.51369 0.96567 0 3.5124-1.9607 3.8891-2.9942 0.15893-0.43598 0.57458-1.0304 0.92368-1.3209 0.75261-0.62634 2.4035-3.1246 3.2382-4.9002 0.32694-0.69555 0.95982-1.6475 1.4064-2.1155 0.44657-0.46797 1.1252-1.3132 1.508-1.8782 0.38283-0.56506 1.3-1.6886 2.0382-2.4967 0.73819-0.80813 2.0687-2.3207 2.9566-3.3612 0.88794-1.0405 2.5391-2.8483 3.6692-4.0174s3.904-4.0511 6.1642-6.4046 5.9588-6.175 8.219-8.4923 5.8927-6.1028 8.0722-8.4121c2.1795-2.3094 5.1516-5.4213 6.6046-6.9153 1.453-1.4941 3.6325-3.7766 4.8433-5.0722 3.7813-4.0462 6.7998-7.0956 7.4486-7.5248 0.34303-0.22694 0.87813-1.0447 1.1891-1.8173 0.31099-0.77256 0.64192-1.4707 0.7354-1.5514 0.0935-0.0807 0.34958-0.67513 0.56909-1.3209 0.51609-1.5183 9.9201-20.468 10.804-21.769 0.37019-0.5455 1.1589-1.9467 1.7526-3.1138 0.59376-1.1671 1.2894-2.367 1.5457-2.6665 0.25639-0.29947 0.44896-0.6297 0.42794-0.73384-0.0771-0.38219 0.43045-1.3984 0.88825-1.7784 0.25898-0.21494 0.47088-0.57484 0.47088-0.79979 0-0.22494 0.59441-1.2259 1.3209-2.2243 0.7265-0.99843 1.3209-1.9708 1.3209-2.161 0-0.1901 0.19814-0.51007 0.4403-0.71105 0.24217-0.20098 0.44031-0.55273 0.44031-0.78167 0-0.22893 0.24299-0.77415 0.53999-1.2116 0.297-0.43744 1.1605-1.72 1.9189-2.8501 2.5237-3.7607 4.2995-6.1556 5.1788-6.9841 0.47852-0.45091 0.95731-1.1774 1.064-1.6144 0.10668-0.43703 0.438-1.1096 0.73627-1.4946 0.29827-0.38502 0.54231-0.86342 0.54231-1.0631 0-0.27219 1.1287-0.36559 4.5098-0.3732 4.8313-0.0109 5.8587-0.26071 5.7-1.3861-0.0909-0.64487 0.0408-0.6372-4.7078-0.27431-2.7844 0.2128-3.4472-0.01-3.4472-1.1576 0-0.86005 1.4676-1.4655 3.6692-1.5136 0.96867-0.0212 3.3107-0.1467 5.2046-0.2789 3.0388-0.21212 3.4648-0.30758 3.625-0.81238 0.0998-0.31461 0.0427-0.71082-0.1269-0.88047-0.42788-0.42786-5.9216-0.57879-6.4069-0.17601-0.72433 0.60115-4.7909-0.45066-4.7909-1.2392 0-0.14962 0.27563-0.54767 0.6125-0.88455 0.45812-0.45812 0.80957-0.56139 1.3943-0.40971 1.9628 0.50915 8.3663 0.70211 10.433 0.31439 0.85818-0.161 1.0799-0.36834 1.3722-1.2832 0.19171-0.60013 0.4647-1.2166 0.60665-1.37 0.56755-0.61324 0.27372-1.3353-0.54915-1.3496-2.146-0.0373-4.032-0.32788-4.2385-0.65289-0.47685-0.75065-0.20254-1.8745 0.81996-3.3591 0.81973-1.1902 1.28-1.5777 2.0443-1.7211 1.0672-0.20021 1.4011-0.50113 2.1764-1.9615 0.2776-0.52289 0.82161-1.1072 1.2089-1.2986 0.38729-0.19131 1.893-1.5547 3.346-3.0297s2.9663-2.9696 3.363-3.3214c1.0309-0.91417 3.9882-4.1648 9.3465-10.273 1.0168-1.1591 2.5502-2.834 3.4076-3.722 0.85745-0.88794 1.8526-2.0107 2.2115-2.495 0.35888-0.48433 1.1401-1.409 1.736-2.0548 0.59597-0.64578 1.3447-1.5188 1.6638-1.94 0.31913-0.42123 1.1416-1.5054 1.8278-2.4091 1.3712-1.8062 1.4422-2.0219 0.83182-2.5285-0.32471-0.26948-0.90433-0.18096-2.648 0.40437-1.2278 0.41214-2.4769 0.74936-2.7759 0.74936-0.29896 0-1.1218 0.25286-1.8284 0.56193-0.70666 0.30906-2.936 0.97556-4.954 1.4811-2.0181 0.50555-3.8986 1.0452-4.1789 1.1993-0.28036 0.15405-0.71144 0.28009-0.95798 0.28009s-0.67763 0.11797-0.95799 0.26215c-0.28032 0.14418-1.6985 0.62071-3.1515 1.059-1.453 0.43824-2.906 0.90243-3.2289 1.0315-0.32288 0.1291-1.2475 0.39957-2.0547 0.60104-0.80723 0.20147-1.5998 0.46553-1.7612 0.58682-0.16144 0.12128-0.92258 0.31417-1.6914 0.42862-0.76886 0.11446-1.4701 0.32496-1.5584 0.46778-0.0883 0.14281-0.46091 0.25966-0.82809 0.25966-0.36719 0-0.75524 0.0877-0.86238 0.19479-0.31796 0.31796-3.2069 1.2728-3.8545 1.274-0.32911 0.00059-1.0571 0.28077-1.6178 0.62258-0.56071 0.34182-2.0798 0.94333-3.3757 1.3367-1.2959 0.39336-3.1566 1.1039-4.1349 1.5789-0.97832 0.47505-1.9768 0.86374-2.2188 0.86374-0.24202 0-0.69643 0.19393-1.0098 0.43097-0.31338 0.23703-0.84058 0.43516-1.1715 0.4403-0.33096 0.005-0.72723 0.12704-0.8806 0.2709-0.15338 0.14386-1.4546 0.87167-2.8916 1.6174-1.437 0.74569-3.4844 2.0708-4.5498 2.9448-2.1843 1.7918-5.3127 4.9489-5.3127 5.3615 0 0.14974-0.39443 0.65015-0.8765 1.112-0.48208 0.46185-1.2009 1.4601-1.5973 2.2182-0.65334 1.2495-2.3762 3.71-4.5127 6.445-0.44141 0.56505-1.0644 1.5372-1.3845 2.1604-0.32004 0.62315-0.74683 1.1986-0.94841 1.2788-0.46206 0.18379-3.3027 3.7343-3.3027 4.1281 0 0.1608-0.46475 0.96799-1.0328 1.7938-0.72892 1.0597-0.98315 1.6991-0.86412 2.1734 0.19208 0.76531-1.1092 2.6118-2.4433 3.4668-0.43817 0.28085-1.5774 1.2474-2.5316 2.1479-0.95422 0.90048-1.8234 1.6372-1.9314 1.6372-0.10807 0-1.7045 1.6181-3.5476 3.5958-3.9166 4.2027-8.7573 9.2493-10.325 10.764-0.60542 0.58503-1.1008 1.2092-1.1008 1.387 0 0.17781-1.6903 1.8921-3.7561 3.8096-2.0659 1.9174-4.2115 4.0807-4.768 4.8072-0.55654 0.7265-1.1872 1.4318-1.4016 1.5673-0.21432 0.13551-1.4234 1.2913-2.6869 2.5684s-2.4429 2.3221-2.621 2.3221c-0.17808 0-0.32378 0.19079-0.32378 0.42399s-0.82557 1.2745-1.8346 2.314c-2.3867 2.4588-5.5905 6.0024-5.8564 6.4777-0.115 0.20549-0.74315 0.74372-1.3959 1.1961-0.65274 0.45236-1.1868 0.93797-1.1868 1.0792 0 0.14119-1.5182 1.8074-3.3738 3.7027s-3.3746 3.667-3.3757 3.9371c-0.002 0.59932-1.6476 2.2975-2.226 2.2975-0.28781 0-0.41632-0.34234-0.41323-1.1008 0.005-1.291 0.31778-1.8975 0.89958-1.7459 0.22926 0.0597 0.31777 0.0532 0.19669-0.0145-0.12109-0.0677-0.22015-0.2305-0.22015-0.36173 0-0.27192 5.2505-5.5772 5.5368-5.5946 0.10293-0.006 0.8476-0.78978 1.6548-1.7412 0.80722-0.95139 1.5712-1.7388 1.6976-1.7498 0.27391-0.0239 2.2651-1.9804 2.2651-2.2256 0-0.0937 0.59441-0.77336 1.3209-1.5103 0.7265-0.73693 1.3209-1.4148 1.3209-1.5065 0-0.13798 3.1528-3.426 6.8247-7.1173 0.44397-0.44632 0.80722-0.90095 0.80722-1.0103 0-0.10933 0.49534-0.68946 1.1008-1.2892 0.60542-0.59973 1.5019-1.547 1.9922-2.1051 0.49028-0.55808 1.4479-1.5004 2.1281-2.094 0.68019-0.5936 1.2367-1.2782 1.2367-1.5213s0.25605-0.52327 0.569-0.62259c0.31294-0.0993 0.97506-0.66961 1.4714-1.2673 0.9586-1.1544 2.8336-3.2581 3.4926-3.9186 3.486-3.4937 5.0343-5.2093 5.0343-5.5783 0-0.13703 0.14514-0.24915 0.32253-0.24915 0.34815 0 1.6642-1.3286 2.8348-2.862 0.40057-0.52469 0.91078-0.95399 1.1338-0.95399 0.223 0 0.40546-0.17538 0.40546-0.38973s1.486-1.7974 3.3023-3.5179c4.3924-4.1608 6.0909-5.8534 6.0909-6.07 0-0.0985 0.59441-0.55484 1.3209-1.0141 1.2839-0.81152 1.6276-1.4062 1.0274-1.7772-0.7202-0.4451 0.0924-2.5513 1.62-4.1987 0.40057-0.432 0.72831-0.95191 0.72831-1.1554 0-0.20345 0.1287-0.36992 0.286-0.36992s0.4798-0.36325 0.71666-0.80722c0.23687-0.44397 0.78241-1.2035 1.2123-1.6878 0.4299-0.48433 1.1894-1.475 1.6878-2.2015 0.49836-0.7265 1.5906-2.1795 2.4273-3.2289 0.83665-1.0494 1.7396-2.3042 2.0066-2.7886 0.26696-0.48433 1.2142-1.8713 2.1049-3.0821 0.89073-1.2108 1.6951-2.4327 1.7875-2.7152 0.0924-0.28253 0.27342-0.51368 0.40229-0.51368 0.12886 0 0.70135-0.62744 1.2722-1.3943 0.57084-0.76686 1.7016-1.8566 2.5129-2.4217 0.81125-0.56505 1.9736-1.4566 2.5829-1.9811 0.60936-0.52456 1.2096-0.95386 1.3339-0.95399 0.12429-0.00012 0.7491-0.33045 1.3885-0.73406 0.63936-0.40362 1.3592-0.73384 1.5997-0.73384 0.37676 0 2.0295-0.80583 2.9501-1.4384 0.16145-0.11093 1.0002-0.44508 1.8639-0.74256 0.86369-0.29749 2.1846-0.85255 2.9354-1.2335 0.75076-0.38094 1.5374-0.69316 1.7481-0.69383 0.21071-0.00059 1.1354-0.37676 2.0548-0.83573 0.91941-0.45897 3.2567-1.3441 5.1941-1.967 1.9373-0.62289 3.6545-1.2264 3.816-1.341 0.16145-0.11467 1.3503-0.47483 2.6418-0.80035 1.2916-0.32552 3.1408-0.85463 4.1095-1.1758 2.8901-0.95822 8.418-2.6317 9.8334-2.9768 0.7265-0.17717 1.5851-0.43365 1.908-0.56995 0.32289-0.13631 1.1815-0.403 1.908-0.59264 1.7781-0.46416 6.1691-1.7926 6.8981-2.0869 0.32289-0.13035 0.98334-0.30274 1.4677-0.38306 2.4702-0.4097 6.5697-1.7701 9.05-3.0032 0.45706-0.22724 1.3487-0.41315 1.9814-0.41315 0.96688 0 1.1504 0.0967 1.1504 0.60636 0 0.69417-0.39601 1.5119-1.1756 2.4275-0.29756 0.34946-1.6184 1.8902-2.9351 3.424-1.3167 1.5337-2.4604 2.9452-2.5415 3.1365-0.18017 0.42525-1.4701 1.9563-3.6445 4.3257-0.90053 0.9813-2.6236 2.907-3.8292 4.2792-2.6177 2.9798-3.5584 4.0022-7.5958 8.2551-1.6952 1.7856-3.1303 3.3996-3.1891 3.5866-0.0588 0.18699-1.809 1.9982-3.8894 4.025-2.0803 2.0267-3.7824 3.8225-3.7824 3.9906 0 0.16811 0.23926 0.52218 0.53171 0.78683 0.42674 0.3862 0.73058 0.42416 1.5391 0.19227 1.5982-0.45836 2.1825-0.3488 3.1693 0.59423 1.198 1.1449 1.2196 2.352 0.0741 4.1582-1.3012 2.0518-1.7782 2.2908-3.6199 1.813-1.9017-0.49331-2.6164-0.49884-3.2641-0.0253-0.46948 0.3433-0.47371 0.46769-0.0561 1.6514 0.67537 1.9142 0.58194 3.4229-0.2822 4.5558-0.49878 0.65393-0.73384 1.3364-0.73384 2.1308 0 1.4346-0.76381 2.2327-2.6418 2.7606-1.6062 0.4515-2.6418 1.3196-2.6418 2.2144 0 0.36647-0.29721 0.99829-0.66046 1.404-0.63359 0.70772-0.84473 0.74598-5.1888 0.94046-4.4726 0.20023-4.5432 0.21394-5.7367 1.1132-0.66457 0.50077-1.863 1.824-2.6633 2.9405-0.80022 1.1165-2.3455 3.23-3.434 4.6966s-1.9801 2.8876-1.9814 3.1577c-0.001 0.27014-0.31634 0.86455-0.70017 1.3209-0.77125 0.91699-1.6068 2.3288-2.8612 4.8346-0.45611 0.91113-1.1651 2.0557-1.5756 2.5435-0.75373 0.89576-3.6586 6.4079-3.6669 6.9582-0.002 0.1636-0.46682 0.98396-1.0319 1.823-0.56505 0.83906-1.0274 1.7025-1.0274 1.9187 0 0.21625-0.12361 0.51866-0.27468 0.67203-0.40019 0.40629-2.0736 3.8529-2.0736 4.2708 0 0.19562-0.36325 0.82955-0.80722 1.4087-1.2045 1.5713-2.4103 3.3771-2.4163 3.6187-0.01 0.37942-3.0158 6.4031-3.2759 6.5638-0.13851 0.0856-0.25184 0.66209-0.25184 1.2811 0 1.3323 0.28176 1.502 2.7886 1.6793 0.96867 0.0685 2.3212 0.38236 3.0055 0.69736 0.68438 0.31501 1.4938 0.57274 1.7987 0.57274 0.30488 0 0.71876 0.19814 0.91975 0.44031 0.20098 0.24216 0.53324 0.4403 0.73837 0.4403s0.44467 0.18687 0.53231 0.41526c0.0876 0.2284 0.52537 0.59165 0.97271 0.80723 0.81995 0.39513 3.8878 3.8381 4.6533 5.2224 0.51013 0.9224 1.0314 2.0268 1.3223 2.8015 0.12125 0.32289 0.36544 0.94876 0.54265 1.3908 0.17721 0.44206 0.24493 1.0051 0.15048 1.2513-0.0944 0.24614-0.0195 0.63088 0.16642 0.85497 0.31687 0.38181 0.37921 1.8258 0.30524 7.0702-0.0175 1.241-0.19577 2.3122-0.45011 2.7049-0.23163 0.35757-0.42114 0.8489-0.42114 1.0918 0 0.49109-1.0076 2.4058-1.6442 3.1245-0.22579 0.25488-0.41066 0.65115-0.41083 0.8806-0.00058 0.65888-2.8773 3.4851-4.338 4.2618-0.72944 0.38785-1.6206 0.70518-1.9804 0.70518-1.1156 0-1.4156 0.69277-1.2177 2.8121 0.0985 1.0546 0.43401 2.4054 0.74561 3.0017 0.31161 0.59633 0.91161 1.8108 1.3333 2.6987 0.9581 2.0173 1.3834 2.5091 3.4301 3.9672 0.903 0.6433 2.06 1.6508 2.5711 2.2388l0.92929 1.0692 0.0881 10.147c0.0785 9.0388 0.14228 10.207 0.58441 10.695 0.27298 0.30164 0.49632 0.70494 0.49632 0.89622s0.75952 0.68608 1.6878 1.0996c0.92831 0.41347 2.0841 0.92986 2.5684 1.1475 0.48433 0.21767 1.2384 0.48495 1.6758 0.59396 0.43735 0.10902 0.94886 0.38339 1.1367 0.60971 0.18783 0.22633 0.51946 0.41151 0.73695 0.41151s0.86579 0.26418 1.4407 0.58707c0.57488 0.32289 1.1862 0.58707 1.3585 0.58707 0.25258 0 3.3026 1.4387 5.5396 2.613 1.4836 0.77886 1.7927 0.90946 2.152 0.90946 0.21933 0 0.61848 0.24274 0.88698 0.53942 0.45659 0.50454 0.45163 0.5725-0.0769 1.0508-0.44321 0.40113-0.69266 0.44303-1.1572 0.19441-0.32571-0.17431-0.8072-0.31693-1.07-0.31693-0.47635 0-1.9746-0.6449-5.8744-2.5287-1.1315-0.54657-2.2609-0.99376-2.5097-0.99376-0.24881 0-0.57787-0.10513-0.73124-0.23362-0.15337-0.12848-0.80722-0.40893-1.453-0.6232-1.1338-0.37619-2.3468-0.88319-5.1369-2.1471-0.7265-0.32909-1.5851-0.69481-1.908-0.81271-0.904-0.33009-2.3315-1.0077-2.495-1.1843-0.0807-0.0872-0.90512-0.41156-1.832-0.72083-1.4087-0.47005-1.8428-0.50533-2.6457-0.215-1.0508 0.37997-9.6675 1.0721-17.978 1.444-7.1728 0.32102-32.504 0.21227-35.958-0.15437-1.5337-0.16279-4.3737-0.4488-6.311-0.63559-3.7589-0.36241-6.0175-0.99111-6.0175-1.675 0-0.25996 0.1959-0.36469 0.51369-0.27463 1.4135 0.40058 8.4967 0.57127 27.225 0.65606 11.301 0.0512 20.68 0.0874 20.841 0.0805 0.64373-0.0275 13.565-0.25617 14.457-0.25584 0.8089 0.00029 0.95399-0.10579 0.95399-0.69754 0-1.0979-0.76629-1.5009-2.9071-1.529-2.0377-0.0267-2.5612-0.14758-3.991-0.92178-0.48433-0.26225-2.186-1.1736-3.7816-2.0252-1.5955-0.85162-3.1806-1.804-3.5224-2.1164-0.34181-0.3124-1.6122-1.0916-2.823-1.7315-1.2108-0.63992-2.6638-1.424-3.2289-1.7425-0.9908-0.55843-2.4977-1.3346-5.2836-2.7215-0.72651-0.36168-2.0474-0.71812-2.9354-0.79211-2.8001-0.23332-4.8138-1.0264-7.8316-3.0845-0.67486-0.46024-1.2899-0.8368-1.3667-0.8368-0.33943 0-5.4041-3.0856-6.0656-3.6954-0.40361-0.37208-1.2067-0.87403-1.7846-1.1154-0.5779-0.24141-1.2215-0.64469-1.4302-0.89618-0.20872-0.2515-0.54099-0.45726-0.73837-0.45726-0.19737 0-0.59883-0.26517-0.89213-0.58926-0.6334-0.69989-2.0894-1.4655-2.787-1.4655-0.48748 0-1.7568 1.2666-5.5768 5.565-1.0494 1.1808-2.068 2.3126-2.2637 2.515-0.57553 0.59567-3.1448 3.9992-4.02 5.3253-1.4071 2.1321-0.47404 2.7346 4.2289 2.731 1.2108-0.00088 3.9848 0.13762 6.1642 0.30789 6.2226 0.48611 16.621 1.101 19.496 1.153 1.4399 0.026 2.8453 0.16896 3.1232 0.31768 0.27787 0.14871 1.0812 0.25536 1.7851 0.23699 2.7235-0.0711 3.4814 0.0351 3.4814 0.48764 0 0.24217-0.033 0.4415-0.0734 0.44296-0.22534 0.008-7.0546 0.9625-8.2924 1.1588-0.80722 0.12802-2.5244 0.39653-3.816 0.59667-2.6826 0.41572-16.501 0.20442-18.493-0.28277-0.64578-0.15796-2.2065-0.29036-3.4683-0.29421-1.2618-0.004-2.5327-0.13462-2.8241-0.2906-0.29145-0.15598-1.5137-0.3211-2.7161-0.36692-2.4877-0.0948-2.4984-0.0884-4.1285 2.4633-0.58536 0.91632-1.4802 1.973-1.9885 2.3483-0.80378 0.59336-0.90319 0.81202-0.76305 1.6783 0.18445 1.1402 1.2154 2.3796 1.9794 2.3796 0.28522 0 0.60022 0.13209 0.7 0.29353 0.0998 0.16145 0.50384 0.29354 0.89793 0.29354 0.39408 0 0.71651 0.13209 0.71651 0.29353 0 0.16145 0.25348 0.29354 0.56328 0.29354 0.30981 0 0.93724 0.18481 1.3943 0.4107 2.7138 1.3412 3.4366 1.644 3.9236 1.644 0.29811 0 0.61736 0.12193 0.70947 0.27095 0.0921 0.14902 0.5909 0.36396 1.1084 0.47763 0.51755 0.11367 1.1435 0.31086 1.3909 0.43821 0.82416 0.4241 2.491 1.0878 3.6788 1.4649 0.64578 0.20499 1.4985 0.58377 1.8948 0.84173 0.71899 0.46792 1.6241 0.83769 4.1226 1.6842 0.7265 0.24615 1.8493 0.68868 2.4951 0.98339 1.5033 0.68606 2.2053 0.93334 2.9354 1.034 0.77422 0.10675 4.6545 1.6552 4.8463 1.934 0.0823 0.11966 0.54466 0.31231 1.0274 0.42809 0.48271 0.11578 1.0579 0.35315 1.2783 0.52748 0.22033 0.17433 0.61661 0.3296 0.8806 0.34504 0.96157 0.0562 2.388 0.51104 2.388 0.76142 0 0.14126 0.19365 0.25684 0.43034 0.25684s0.86413 0.18485 1.3943 0.41077 2.549 0.90826 4.4864 1.5163c1.9373 0.60803 3.6479 1.2157 3.8013 1.3504 0.15338 0.1347 0.64092 0.24492 1.0834 0.24492 0.44251 0 0.88621 0.13209 0.98599 0.29353 0.0998 0.16145 0.4378 0.29354 0.75116 0.29354s0.56975 0.13209 0.56975 0.29353c0 0.16145 0.19807 0.29354 0.44015 0.29354s1.1337 0.35073 1.9814 0.7794c2.737 1.3841 3.1395 1.539 3.3045 1.272 0.089-0.1441 0.76341-0.004 1.4986 0.31095 0.73516 0.31513 1.5238 0.57296 1.7526 0.57296 0.22878 0 0.41596 0.13209 0.41596 0.29353 0 0.16145 0.38848 0.29354 0.86328 0.29354 0.47481 0 0.93512 0.11623 1.0229 0.25829 0.0878 0.14206 0.80945 0.47083 1.6037 0.7306 1.2912 0.42232 1.5548 0.42606 2.4901 0.0353 1.3511-0.56454 1.6499-0.55075 1.6613 0.0766 0.005 0.28252 0.17729 0.73455 0.38256 1.0045 0.35467 0.46642 3.0232 1.5873 4.5982 1.9314 0.40362 0.0882 0.81657 0.28712 0.91769 0.44208 0.10112 0.15497 0.76487 0.34725 1.475 0.42729 1.1383 0.1283 1.331 0.0637 1.6276-0.54565 0.18503-0.38015 0.41068-1.3516 0.50144-2.1589 0.46318-4.1195 1.7587-10.4 2.4017-11.644 0.22824-0.44137 0.41499-1.0632 0.41499-1.3818 0-0.31863 0.39829-0.88657 0.88509-1.2621 0.48681-0.37553 1.3499-1.0989 1.918-1.6075 1.2869-1.1521 2.1186-1.3693 3.7195-0.9716 0.69089 0.17165 1.4543 0.3383 1.6965 0.37034 0.80391 0.10637 2.3546 1.4148 2.7942 2.3576 0.23838 0.51124 0.66485 1.28 0.94772 1.7083 1.2223 1.851 2.1288 3.59 2.1288 4.0842 0 0.29302 0.12284 0.6087 0.27299 0.70149 0.15014 0.0928 0.36008 0.92616 0.46651 1.8519 0.18299 1.5917 0.52168 3.0015 1.039 4.325 0.57686 1.4759 1.4061 12.162 1.2984 16.732-0.0968 4.1056-0.42163 10.63-0.6006 12.062-0.11175 0.89455-0.0115 1.3726 0.39269 1.8717 0.47614 0.58801 0.61813 0.62327 1.1564 0.28711 0.5158-0.32213 0.72765-0.30853 1.3288 0.0854 0.63154 0.4138 0.70542 0.65165 0.63184 2.034-0.22794 4.2817-0.82584 7.4896-1.7323 9.2944-0.40217 0.80071-0.73122 1.5414-0.73122 1.6459 0 0.44796-2.3807 3.3629-2.855 3.4956-0.28637 0.0802-1.6434 0.21945-3.0157 0.30954-2.4931 0.16364-2.4962 0.16294-3.9627-0.87559zm6.2181-2.9359c1.1254-0.70883 2.2291-2.4023 2.0787-3.1892-0.082-0.42912-0.007-0.69621 0.18581-0.6611 0.17788 0.0324 0.36815-0.33739 0.4228-0.82173 0.0546-0.48433 0.22265-1.0297 0.37335-1.212 0.1507-0.18225 0.34969-1.3711 0.44221-2.6418 0.12719-1.7474 0.0668-2.444-0.24789-2.8586-0.38852-0.51187-0.47541-0.51748-1.3125-0.0846-0.49305 0.25496-1.4742 0.45762-2.1802 0.45031-1.8192-0.0188-3.4058 0.32002-3.8166 0.81503-0.41147 0.49579-0.48884 1.225-0.57205 5.3912-0.0715 3.5787 0.38733 4.9838 1.6274 4.9838 0.38994 0 0.79395 0.13747 0.89777 0.30549 0.21135 0.34193 1.1337 0.13267 2.1012-0.47679zm-157.77-10.78c1.4691-0.61384 2.5873-2.1776 2.5791-3.6069-0.013-2.2785-1.079-2.7361-7.7722-3.3366-1.7759-0.15933-3.7362-0.43473-4.3563-0.612-1.4144-0.40437-1.7726-0.26526-2.3627 0.91766-0.65252 1.308-0.60138 3.0806 0.11802 4.0909 0.70147 0.98514 2.853 2.2667 4.693 2.7954 1.6575 0.47626 5.7055 0.33463 7.101-0.24848zm156.94-2.3766c0.22326-0.22323 0.4598-1.1796 0.52566-2.1251 0.2144-3.0782 0.68791-8.1312 0.95617-10.204 0.37619-2.9062 0.13963-11.07-0.3963-13.678-0.24889-1.2108-0.58552-2.928-0.74805-3.816-0.45146-2.4662-1.6625-6.5177-2.5138-8.4101-0.22886-0.50873-0.41611-1.0719-0.41611-1.2515 0-0.93577-1.9354-3.2528-3.6169-4.3303-0.71831-0.46026-1.4456-0.68633-2.0218-0.62845-1.1934 0.1199-1.9378 1.5996-3.1463 6.2547-0.75975 2.9265-0.93729 4.2493-1.0494 7.8186-0.0742 2.3629-0.26951 4.6501-0.43398 5.0827-0.20009 0.52628-0.2019 0.96804-0.005 1.3351 0.16147 0.3017 0.29431 1.5149 0.29522 2.696 0.00088 1.1811 0.12017 2.6098 0.26504 3.1748 0.14488 0.56505 0.34687 1.3989 0.44887 1.853 0.10201 0.45407 0.96883 1.6676 1.9263 2.6968 0.95744 1.0292 1.8297 2.2428 1.9382 2.6968 0.1086 0.45407 0.31339 0.97369 0.45509 1.1547 0.60419 0.77185 1.4922 5.0947 1.5297 7.4464l0.0397 2.4918 0.85473 0.14999c1.5343 0.26926 4.6875 0.0173 5.1134-0.40866zm-160.81-8.2446c0-0.64364-1.0602-1.073-2.403-0.97313-1.5923 0.11841-2.3926 1.264-1.073 1.5358 0.2166 0.0446 0.72404 0.21692 1.1276 0.38292 0.85764 0.35274 2.3483-0.24751 2.3483-0.9456zm132.53 0.65767c0.0838-0.36325 0.33893-1.8508 0.56706-3.3055 0.37469-2.3894 1.9685-7.7754 2.518-8.5093 0.12089-0.16145 0.37934-0.78888 0.57435-1.3943 0.195-0.60541 0.4764-1.1008 0.62532-1.1008 0.14893 0 0.27077-0.15989 0.27077-0.35531s0.41906-1.1636 0.93124-2.1514c0.51218-0.98786 0.85366-1.9983 0.75884-2.2454-0.21624-0.56352-2.6807-1.2056-3.737-0.97356-0.53528 0.11756-0.96357 0.5264-1.322 1.262-0.68965 1.4152-1.5596 3.685-2.0484 5.3443-0.21399 0.7265-0.73451 2.234-1.1567 3.3499-0.5367 1.4186-0.82326 2.8778-0.95254 4.8504-0.16493 2.5168-0.11743 2.9537 0.43989 4.0461 0.92436 1.8119 2.244 2.4285 2.5312 1.1828zm10.252 0c0.85658-1.3268 1.5771-15.125 0.92535-17.721-0.14103-0.5619-0.36774-0.69823-1.1611-0.69823-0.54221 0-1.1183 0.16511-1.2803 0.36691-0.8026 1.0001-2.4879 4.6943-2.8504 6.248-0.54159 2.3216-0.84557 7.754-0.48671 8.6978 0.5196 1.3666 3.1045 3.76 4.0666 3.7652 0.19808 0 0.55203-0.29526 0.78654-0.65851zm-118.65-2.769c-0.2119-0.0848-0.46507-0.0744-0.56261 0.0232-0.0975 0.0975 0.0758 0.16691 0.38527 0.15417 0.34195-0.0141 0.4115-0.0837 0.17734-0.17735zm-27.967-2.7052 0.70809-0.54436 0.0881-15.667c0.13264-23.59 0.13273-25.337 0.001-29.463-0.0668-2.0988-0.1357-4.7539-0.15311-5.9002l-0.0317-2.0843-1.3943-0.92503c-2.4365-1.6164-3.4251-2.396-4.3556-3.4346-0.49861-0.55648-1.031-1.0118-1.1832-1.0118-0.15214 0-0.43314-0.36325-0.62444-0.80723-0.41704-0.96786-1.1692-2.2525-2.0201-3.4502-0.34364-0.48368-0.86328-1.672-1.1548-2.6406-0.59108-1.9643-1.1464-2.5971-2.075-2.3645-0.34411 0.0862-1.0046 0.0287-1.4677-0.12789-0.46311-0.15653-2.229-0.35059-3.9241-0.43123-1.6952-0.0806-3.9407-0.26495-4.9901-0.40957-5.0422-0.69488-7.0459-1.0497-8.7636-1.5518-1.026-0.29995-2.5451-0.54967-3.3757-0.55495-0.83057-0.005-2.2366-0.26513-3.1246-0.57748-0.88794-0.31235-2.3412-0.57222-3.2295-0.57749-1.7324-0.0103-6.934-0.92311-8.3384-1.4633-0.46964-0.18064-1.5924-0.44311-2.4951-0.58327-1.9659-0.30528-2.5409-0.43728-4.6904-1.0769-0.90603-0.26961-2.3738-0.65988-3.2618-0.86728-0.88795-0.20741-2.2062-0.59513-2.9295-0.86161-1.7858-0.65793-4.006-0.89697-4.5027-0.48478-0.28421 0.23588-0.36242 0.85512-0.27385 2.1684 0.0682 1.011 0.18296 6.1812 0.25509 11.489 0.0721 5.3081 0.23215 10.394 0.35562 11.301 0.12348 0.90753 0.12602 2.971 0.006 4.5854-0.12037 1.6144-0.14547 4.1902-0.0558 5.7239 0.17503 2.9935 0.22717 6.1508 0.1212 7.3384-0.036 0.40362 0.0174 2.9794 0.11877 5.724 0.10135 2.7446 0.175 6.1129 0.16367 7.4852-0.0284 3.4447 0.225 3.8483 2.6671 4.248 1.0819 0.17706 2.7406 0.73657 3.7463 1.2638 1.1443 0.59985 2.2276 0.94604 2.9603 0.94604 1.1304 0 2.7852 0.37403 5.734 1.296 0.80722 0.25239 1.8861 0.46031 2.3976 0.46206 0.51143 0.002 1.5873 0.33341 2.3909 0.73702 0.80357 0.40361 1.6777 0.73384 1.9424 0.73384 0.26476 0 0.77394 0.19096 1.1315 0.42437 0.35757 0.23341 1.7729 0.68373 3.1452 1.0007 1.3723 0.31698 3.2876 0.87117 4.2563 1.2315 0.96867 0.36036 2.8179 0.88782 4.1095 1.1721 1.2916 0.28432 3.0729 0.79402 3.9586 1.1327 0.88567 0.33865 1.8764 0.61852 2.2015 0.62192 0.32517 0.003 1.5158 0.33306 2.646 0.73256 1.1301 0.39951 2.4246 0.72695 2.8766 0.72765 0.45199 0.00059 1.1976 0.19564 1.657 0.43319 0.45937 0.23755 1.3774 0.51861 2.0402 0.62459 0.66273 0.10597 1.205 0.30789 1.205 0.4487s0.23116 0.25757 0.51368 0.25948c0.28253 0.002 1.5704 0.27654 2.862 0.6103 1.2916 0.33375 2.8106 0.71968 3.3757 0.85762 2.5264 0.61674 3.1573 0.82416 4.3251 1.422 0.99954 0.51171 2.526 1.012 3.6004 1.1801 0.0807 0.0126 0.46541-0.222 0.85486-0.52139zm131.15 0.32274c0.1953-0.12412 0.56689-1.3439 0.82575-2.7107s0.57024-3.0134 0.69196-3.6592c0.12171-0.64578 0.35768-1.4383 0.52436-1.7612 0.43232-0.83746 2.1776-6.0584 2.2439-6.7124 0.0771-0.76131-1.1442-1.6021-3.04-2.0928-0.88057-0.22792-2.4596-0.63329-3.509-0.90082-3.8695-0.98649-4.2767-1.0933-5.2836-1.3858-0.56506-0.16414-1.886-0.59615-2.9354-0.96s-2.5024-0.82194-3.2289-1.018c-0.7265-0.19604-1.7172-0.52782-2.2015-0.7373-3.8183-1.6515-5.2131-2.1906-5.6678-2.1906-0.28918 0-0.65127-0.11521-0.80464-0.25601-0.44796-0.41125-2.7161-0.66213-2.9253-0.32358-0.10275 0.16627 0.18648 0.67886 0.64274 1.1391s1.7833 1.8766 2.949 3.1474c4.81 5.2439 14.677 14.961 16.08 15.835 0.86161 0.53697 2.4575 2.0971 4.0023 3.9125 0.80784 0.94937 1.0479 1.0483 1.6364 0.67425zm-107.56-0.65053c0.77019-0.60584 1.4733-2.2098 1.542-3.5178 0.0212-0.40361 0.15893-2.7152 0.30605-5.1369 0.14713-2.4217 0.23466-4.6672 0.19452-4.9901-0.0401-0.32289-0.09-6.0028-0.11086-12.622-0.0386-12.259-0.11159-13.23-1.2686-16.878-0.2304-0.7265-0.50444-2.0059-0.60897-2.8432l-0.19004-1.5223 1.5046-0.44682c0.8308-0.24672 3.3067-0.52366 5.5288-0.61839 8.6884-0.37043 9.4546-0.47754 9.4546-1.3217 0-0.46015-1.1669-1.2368-3.5013-2.3301-0.25378-0.11886-1.4521-0.70119-2.6629-1.2941-1.2108-0.59287-2.5318-1.074-2.9354-1.0691-0.40361 0.005-1.6414 0.46864-2.7505 1.0307-1.1092 0.56204-2.2018 1.0219-2.428 1.0219-0.22619 0-0.94873 0.35569-1.6056 0.79042-0.85279 0.56435-1.6855 0.82594-2.9116 0.91463l-1.7172 0.12421 0.14873 3.2683c0.0818 1.7975 0.19331 4.7873 0.2478 6.6439 0.15645 5.3303 0.47022 11.386 0.72239 13.943 0.1274 1.2916 0.20849 7.698 0.18021 14.236-0.0283 6.5385 0.009 12.064 0.082 12.28 0.13035 0.38254 1.0471 0.87371 1.7 0.91082 0.18003 0.0102 0.66581-0.24764 1.0795-0.57305zm-83.69-1.4812c0.69865-0.18575 1.4959-0.75869 2.2537-1.6195 1.0348-1.1756 1.1534-1.4594 1.01-2.4156-0.0894-0.59596-0.35197-1.498-0.58355-2.0044-0.3982-0.87089-0.55152-0.93977-2.825-1.2692-1.3222-0.19158-3.0644-0.48345-3.8716-0.6486-3.0876-0.63168-4.1879 0.1501-4.4618 3.1699-0.14003 1.5442-0.0763 1.841 0.56087 2.6134 0.39537 0.47921 0.79727 1.0869 0.89313 1.3505 0.33305 0.91576 4.7359 1.432 7.0242 0.82354zm122-42.897c0.45307-0.45307 0.43724-1.7131-0.0292-2.3258-0.19953-0.26209-0.7686-0.72441-1.2646-1.0274-0.496-0.30297-1.7485-1.3054-2.7834-2.2277-2.751-2.4517-4.3636-3.7317-5.3331-4.2331-0.78344-0.40513-0.90843-0.39818-1.4367 0.0799-0.45267 0.40965-1.1191 0.52984-3.0622 0.55231-1.8346 0.0212-2.6039 0.14896-2.9438 0.48886-0.41784 0.41783-0.39938 0.51675 0.20071 1.0758 0.36347 0.33862 1.5973 0.96421 2.7418 1.3902 2.8432 1.0582 6.0437 2.5518 6.0437 2.8205 0 0.35145 1.6637 1.1169 2.4276 1.1169 0.38257 0 1.2357 0.46232 1.8958 1.0274 0.66014 0.56506 1.4026 1.0274 1.65 1.0274 0.24734 0 0.53134 0.13209 0.63112 0.29353 0.24557 0.39735 0.83349 0.37 1.2622-0.0587zm69.951-7.6466c0.0168-0.36325 0.023-2.5449 0.0138-4.8481-0.0138-3.4518-0.10768-4.3415-0.53417-5.0635-0.28456-0.48173-0.66118-0.87587-0.83693-0.87587-0.75705 0-3.1217-1.8408-4.2141-3.2806-0.65213-0.85948-1.3608-1.7652-1.5747-2.0127-0.51867-0.59999-1.4357-2.5558-1.7137-3.6549-0.12315-0.48683-0.56179-1.8098-0.97475-2.9399-0.41297-1.1301-0.75363-2.4588-0.75704-2.9526-0.0107-1.5567-0.51461-1.9078-3.0081-2.0964l-2.2499-0.17016-0.17914 0.84839c-0.18292 0.86623-0.63488 1.8444-2.2912 4.9588-0.51544 0.96917-1.178 2.3561-1.4724 3.0821-0.29439 0.726-0.85254 1.9985-1.2403 2.8279-0.3878 0.82934-1.0229 2.3835-1.4114 3.4536-0.70379 1.9389-0.70426 1.9483-0.13265 2.675 0.31549 0.40108 0.74169 0.72924 0.94712 0.72924 0.20542 0 0.60412 0.25483 0.88599 0.56628 0.80016 0.88417 2.5338 1.6013 3.9815 1.647 0.72651 0.0229 3.2345-0.0573 5.5733-0.17833 4.3923-0.22725 4.7224-0.1742 6.0392 0.97078 0.7262 0.63142 1.5896 3.0641 1.606 4.5246 0.0149 1.3363 1.1986 2.4004 2.7059 2.4326 0.63792 0.0136 0.81364-0.12125 0.83781-0.64319zm-104.56-3.3c0.34683-0.32514 0.3508-0.46659 0.0241-0.8602-0.67289-0.81077-1.3715-1.0477-2.1812-0.73985-0.86288 0.32807-0.96983 1.0425-0.27156 1.814 0.52748 0.58285 1.6877 0.48061 2.4286-0.214zm12.06-2.033c0-0.0462-0.19813-0.15999-0.4403-0.25292-0.26552-0.10189-0.4403-0.001-0.4403 0.25292 0 0.2544 0.17478 0.3548 0.4403 0.25292 0.24217-0.0929 0.4403-0.20675 0.4403-0.25292zm7.5732-0.20548c0.19374-0.19373 0.35225-0.51422 0.35225-0.71219 0-0.42683-4.8446-4.5712-6.4008-5.4757-0.59639-0.34661-1.7041-1.0973-2.4616-1.6682-0.75747-0.57092-1.9463-1.388-2.6418-1.8158-4.3241-2.6596-5.0698-2.6022-6.2926 0.48427-1.7378 4.3864-1.6984 4.2221-1.1554 4.8222 0.3043 0.33626 1.1121 0.64162 2.024 0.76511 0.83467 0.11302 1.8743 0.38814 2.3102 0.61138 0.43596 0.22324 1.1216 0.40589 1.5237 0.40589s0.80171 0.11427 0.88803 0.25394c0.23439 0.37924 3.6233 0.98209 4.3049 0.76578 0.34295-0.10885 0.89416 0.0104 1.3112 0.28361 0.3957 0.25928 0.71946 0.38615 0.71946 0.28194s0.1918-0.0303 0.42622 0.16425 0.68562 0.2714 1.0027 0.17077c0.31705-0.10063 0.66141-0.0455 0.76525 0.12252 0.10384 0.16801 0.63552 0.30547 1.1815 0.30547 0.546 0 1.0744 0.13209 1.1742 0.29354 0.2402 0.38865 0.53944 0.37051 0.96866-0.0587zm-13.737-0.83922c0-0.17098-0.13209-0.22922-0.29353-0.12945-0.16145 0.0998-0.29354 0.23967-0.29354 0.31086 0 0.0712 0.13209 0.12945 0.29354 0.12945 0.16144 0 0.29353-0.13989 0.29353-0.31086zm-49.02-14.382c0.0807-0.0294 0.27886-0.0253 0.4403 0.009 2.8717 0.61401 3.0717-0.009 0.7643-2.3816-1.0276-1.0567-2.2315-2.7094-2.8445-3.9048-0.58449-1.1399-1.3165-2.4866-1.6266-2.9927-0.724-1.1813-1.3071-3.4566-1.6447-6.4183-0.25784-2.2616-0.24912-3.0272 0.0636-5.5772 0.37071-3.0232 0.49784-3.6674 0.75514-3.8264 0.15212-0.094 0.27658-0.55321 0.27658-1.0204 0-1.0222 0.40468-1.9895 1.6812-4.0185 0.52835-0.83983 0.96164-1.6324 0.96285-1.7612 0.001-0.12884 0.59563-0.81706 1.3209-1.5294 0.72529-0.71232 1.3187-1.4514 1.3187-1.6423 0-0.91893-1.6652-1.5462-4.6966-1.7692-2.3976-0.17637-6.7247-0.80134-8.2557-1.1924-0.9081-0.23196-1.8554-0.34333-2.1052-0.24749-0.24976 0.0958-0.76162 0.006-1.1375-0.2004-0.39375-0.21586-1.8653-0.39742-3.472-0.42836-1.9061-0.0367-3.346-0.24213-4.5498-0.64909-1.8052-0.61024-14.919-1.9923-15.777-1.6629-0.22697 0.0871-0.78249 0.0178-1.2345-0.15409-1.3264-0.50432-10.601-0.40877-13.434 0.1384-5.7214 1.105-7.8611 1.9603-8.6316 3.4502-0.25734 0.49766-0.91572 1.3659-1.4631 1.9295-0.54734 0.56358-0.99516 1.2152-0.99516 1.448 0 0.23284-0.23708 0.77397-0.52685 1.2025-0.77276 1.1428-1.7835 4.396-1.8381 5.916-0.0261 0.7265 0.0443 2.4437 0.15634 3.816 0.17671 2.1635 0.3953 2.891 1.6449 5.4749 1.3569 2.8057 1.5381 3.0373 3.1005 3.9627 2.7199 1.6111 4.0376 2.2682 4.5854 2.2865 0.28472 0.01 0.74704 0.14526 1.0274 0.30161 0.97017 0.54111 3.3532 1.1933 5.4432 1.4897 1.1544 0.16372 2.2272 0.42596 2.384 0.58275 0.15678 0.15679 0.57576 0.28507 0.93105 0.28507s1.3526 0.32893 2.2162 0.73097c0.86362 0.40204 1.9665 0.73327 2.4508 0.73608 0.48433 0.003 1.7392 0.27247 2.7886 0.59925 2.5551 0.79563 4.1826 1.1337 6.4054 1.3306 1.0206 0.0904 2.4408 0.41523 3.156 0.72181 0.71522 0.30658 2.8522 0.77227 4.7489 1.0349 1.8967 0.2626 3.685 0.60189 3.9741 0.75398 0.28909 0.1521 0.63367 0.20976 0.76573 0.12814 0.31455-0.1944 5.0176 0.64842 5.6761 1.0172 0.28033 0.15699 1.0981 0.28544 1.8173 0.28544 0.71916 0 1.3805 0.118 1.4696 0.26221 0.0891 0.14422 1.3848 0.3491 2.8793 0.45528 2.5756 0.183 4.7512 0.52859 6.3864 1.0145 0.62323 0.18518 2.1492 0.19283 2.6418 0.0132zm138.17-10.744c0.20898-0.54459-0.0715-1.0498-1.9464-3.5061-1.6109-2.1104-2.3478-4.599-2.3596-7.9691-0.008-2.3571-0.0273-2.4217-0.71198-2.4217-1.7898 0-3.9961 4.4747-3.9904 8.0931 0.004 2.5787 1.7019 5.285 3.8132 6.0784 0.24217 0.091 1.4682 0.17588 2.7244 0.18862 1.8695 0.019 2.318-0.0651 2.4707-0.46316zm-189.37-33.24c0.15338-0.13904 1.93-0.15193 3.9481-0.0287 5.1142 0.3124 5.2899 0.074 2.9514-4.0044-0.79839-1.3924-1.5344-2.9461-1.6357-3.4526-0.10124-0.50652-0.68991-1.9777-1.3082-3.2692-0.61824-1.2916-1.4135-3.0087-1.7672-3.816-0.35368-0.80723-0.96394-2.1591-1.3561-3.0041-0.39219-0.84504-0.79918-1.9678-0.90442-2.495-0.10524-0.52723-0.49862-1.7432-0.87419-2.7021-0.37557-0.95892-0.68285-2.0836-0.68285-2.4994 0-0.41575-0.24427-1.2163-0.54281-1.7789-0.61809-1.1649-1.9493-5.4323-2.2421-7.1873-0.23394-1.4023-0.9356-3.7536-1.5024-5.0345-0.22511-0.50873-0.40929-1.3837-0.40929-1.9445 0-0.56072-0.20598-1.5975-0.45773-2.3039-0.25175-0.70644-0.49932-1.8788-0.55016-2.6053-0.0508-0.7265-0.25521-3.0167-0.45417-5.0894-0.6816-7.1006 0.56251-18.098 2.494-22.046 0.84205-1.7211 0.87322-2.8908 0.0811-3.0418-1.046-0.19931-4.5067 1.7639-6.6261 3.7589-0.85749 0.80716-1.6741 1.4676-1.8147 1.4676-0.43549 0-2.6225 3.5055-3.6469 5.8455-1.2867 2.9392-1.399 3.5177-1.772 9.1248-0.33434 5.0263-0.36929 8.8843-0.0904 9.9802 0.14379 0.56505 0.30972 1.886 0.36874 2.9354 0.22901 4.072 1.4059 10.848 2.117 12.189 0.16927 0.31909 0.37379 1.0425 0.45448 1.6075 0.0807 0.56505 0.47924 1.952 0.88566 3.0821 0.40641 1.1301 0.82466 2.5171 0.92943 3.0821 0.10477 0.56505 0.29907 1.2916 0.43179 1.6144 0.70278 1.7098 1.1882 3.0573 1.4803 4.1095 0.1793 0.64578 0.96255 2.4951 1.7406 4.1095 6.2681 13.007 6.6956 13.645 9.1404 13.648 0.73457 0.00088 1.4611-0.11235 1.6144-0.25138zm73.145-46.052c-0.0398-3.8796-0.0106-4.0908 0.75172-5.4459 0.76741-1.3642 1.0315-2.5529 0.56714-2.5529-0.12427 0-0.74885-0.66014-1.388-1.467-1.1578-1.4617-1.1622-1.477-1.2091-4.2603-0.0301-1.7835-0.18382-2.958-0.42524-3.2489-0.30682-0.3697-0.30789-0.64983-0.006-1.4856 0.20485-0.56652 0.30638-1.0961 0.22562-1.1769-0.0808-0.0808-1.8431-0.13257-3.9163-0.11514-2.0732 0.0174-4.0336 0.0333-4.3565 0.0353-0.32289 0.002-2.4979-0.0609-4.8334-0.1397-2.7802-0.0938-4.3764-0.0353-4.6232 0.16948-0.44485 0.36919-0.50643 1.415-0.0833 1.415 0.16144 0 0.29354 0.16662 0.29354 0.37027s0.45596 1.0292 1.0132 1.8346c0.5573 0.80538 1.2997 2.0286 1.6498 2.7184 0.35012 0.68974 0.91786 1.4868 1.2616 1.7713 0.34378 0.2845 0.8232 0.87092 1.0654 1.3032 2.183 3.8966 12.029 14.285 13.558 14.305 0.44364 0.006 0.49146-0.41831 0.45444-4.0297zm11.012-4.782c-0.0922-0.91043-1.5916-5.6618-1.8488-5.8587-0.35507-0.27182-0.80149-1.3084-1.5802-3.6692-0.66546-2.0174-0.98837-2.5439-2.2919-3.7365-2.1849-1.9991-5.8007-3.5878-5.8007-2.5488 0 0.17558 0.9833 1.2653 2.1851 2.4217 1.432 1.3778 2.2475 2.4059 2.366 2.983 0.0995 0.48433 0.30502 1.11 0.45672 1.3903 0.15169 0.28034 0.2758 1.3253 0.2758 2.3222v1.8125l2.5654 2.5853c1.411 1.4219 2.6132 2.7287 2.6716 2.9038 0.21636 0.6491 1.0754 0.12926 1.001-0.60572zm163.51-17.069c0.8573-0.43845 0.27243-0.82454-1.249-0.82454-1.6838 0-2.355 0.21227-2.355 0.74483 0 0.68668 2.317 0.73792 3.604 0.0797zm-206.72-54.28c0-0.33539-0.79599-0.34297-1.0021-0.01-0.0859 0.13893-0.0807 0.32797 0.0114 0.42008 0.22908 0.22908 0.99071-0.0865 0.99071-0.41054zm213.99 251.39c-0.90095-0.14609-1.2015-0.2719-4.7147-1.9736-6.6658-3.2286-10.01-5.768-10.673-8.1051-0.11389-0.40147-0.31112-0.99415-0.43825-1.317-0.70903-1.8005-0.96218-3.0041-1.3582-6.4578-0.24064-2.0988-0.58742-4.1086-0.77064-4.4662-0.26565-0.5185-0.2053-1.0553 0.29805-2.6501 0.34714-1.1 0.63119-2.1441 0.63119-2.3203 0-0.17622 0.25626-1.1226 0.56946-2.103 0.8327-2.6066 1.1993-5.4978 1.347-10.622 0.15079-5.2333 1.3609-14.852 2.205-17.527 0.31634-1.0024 0.57515-2.0465 0.57515-2.3201 0-1.2877 2.4601-4.7554 3.5224-4.9651 0.0807-0.0159 1.0101-0.30479 2.0653-0.64189 3.374-1.0779 5.1527-0.51453 5.738 1.8173 0.10878 0.43346 0.37088 0.85453 0.5824 0.9357 0.21152 0.0812 0.46919 0.53282 0.5726 1.0037 0.10344 0.47085 0.30965 0.85608 0.45827 0.85608 0.14861 0 0.27102 0.16512 0.27202 0.36692 0 0.20181 0.20447 0.75559 0.45219 1.2306 1.2597 2.4158 2.3448 6.2418 2.7641 9.7464 0.13802 1.1537 0.38749 2.3527 0.5544 2.6646 0.35896 0.67076 0.49687 6.23 0.2168 8.7405-0.29324 2.6285-0.74887 3.922-2.068 5.8707-1.7942 2.6506-2.0235 3.2087-1.8322 4.4601 0.97462 6.3754 1.0369 6.6328 1.7858 7.3817 0.72339 0.72341 0.79909 0.73621 2.2124 0.374 1.3146-0.33693 1.538-0.32043 2.1977 0.16237 0.68802 0.50351 0.72403 0.65777 0.57087 2.4454-0.11798 1.3771 0.003 2.6022 0.43393 4.403 0.32855 1.3723 0.75518 3.6226 0.94803 5.0008 0.32591 2.3291 0.30877 2.5878-0.24313 3.6692-0.32659 0.63988-0.87204 1.415-1.2121 1.7226-0.34006 0.30753-0.6183 0.71928-0.6183 0.91498 0 0.19567-0.52555 0.70357-1.1679 1.1286-0.99571 0.65893-1.4608 0.76695-3.1555 0.73287-1.0932-0.022-2.3179-0.0935-2.7215-0.15898zm3.0742-3.0171c0.0954-0.15437 0.35274-0.21191 0.57184-0.12784 0.4929 0.18913 2.1621-1.5313 2.4516-2.5268 0.65206-2.2425-0.11754-9.5212-1.1365-10.749-0.51841-0.62466-1.9226-0.48192-3.1328 0.31846-0.60196 0.39812-1.5568 0.87915-2.1219 1.0689-2.1428 0.71972-2.4416 1.5833-1.6144 4.665 0.23832 0.88794 0.4349 1.9249 0.43681 2.3043 0.007 1.3682 1.5037 4.0562 2.6188 4.7029 1.1662 0.67634 1.666 0.76557 1.9265 0.34397zm-5.1001-13.559c0.61839-0.18527 1.4122-0.64324 1.764-1.0177 0.63492-0.67583 0.63612-0.69878 0.16182-3.1122-1.4013-7.1303-1.2591-10.374 0.58678-13.384 1.9808-3.2296 1.9829-3.2363 1.9381-6.1353-0.0605-3.907-0.55352-7.7346-1.4288-11.092-0.42096-1.6144-0.82625-3.3316-0.90066-3.816-0.0744-0.48433-0.24974-1.1448-0.38967-1.4677-0.1399-0.32289-0.61343-1.6438-1.0523-2.9354-1.1051-3.2522-1.5978-3.8841-3.2181-4.1271-1.129-0.16931-1.4898-0.0855-2.4948 0.57964-1.3542 0.89617-2.5806 3.24-2.9313 5.6022-0.11988 0.80723-0.49963 3.0528-0.84395 4.9901-0.88301 4.9687-1.3715 16.13-0.82219 18.786 0.10018 0.48434 0.29697 1.475 0.43734 2.2015 0.29048 1.5037 0.89587 3.4587 1.2726 4.1095 1.4002 2.4192 2.626 5.6524 3.2197 8.4923 0.4324 2.0684 0.96106 2.6621 2.3706 2.6621 0.66368 0 1.7127-0.15158 2.3311-0.33686zm-178.35-106.05c-0.82267-0.25306-1.2016-0.54685-1.266-0.98146-0.1429-0.96535 0.38629-1.6814 2.5198-3.4097 1.0863-0.87994 2.6859-2.2657 3.5548-3.0794 1.447-1.3551 1.5641-1.5606 1.3934-2.4437-0.10251-0.53029-0.45017-1.1835-0.77257-1.4515-0.3224-0.26804-0.58619-0.57159-0.58619-0.67455s-0.45491-0.89834-1.0109-1.7675c-1.8053-2.8221-3.3921-7.0055-3.3921-8.9426 0-0.63561-0.10858-1.2228-0.24128-1.3048-0.13271-0.082-0.26073-0.8884-0.28451-1.792-0.0238-0.90356-0.12113-1.7689-0.21634-1.923-0.52246-0.84536-3.3727 0.3207-5.3372 2.1835-0.61177 0.5801-1.8032 1.3943-2.6477 1.8094-0.84445 0.41507-1.6118 0.87831-1.7052 1.0294-0.0934 0.15111-0.63269 0.27474-1.1984 0.27474-0.97311 0-1.0237-0.0488-0.93667-0.90414 0.0769-0.75561 0.35624-1.0497 1.7006-1.7905 0.88476-0.48748 2.2057-1.3685 2.9354-1.9578 0.72969-0.58933 1.955-1.3994 2.7229-1.8002 1.6118-0.84129 1.9949-1.5944 1.203-2.3651-0.29943-0.2914-1.7332-1.1507-3.1862-1.9095-3.7258-1.9458-5.1535-2.7499-6.1601-3.4696-0.48206-0.34465-1.1425-0.76791-1.4677-0.94058-2.9299-1.5558-3.6712-2.0495-10.13-6.7461-2.2351-1.6252-3.2979-2.7193-3.0428-3.1321 0.1889-0.30564 2.2641-0.29265 2.6162 0.0164 0.15337 0.1346 1.4677 0.61522 2.9207 1.068 2.419 0.75387 3.6609 1.2354 4.8433 1.8782 0.24216 0.13163 1.1008 0.55247 1.908 0.93519 0.80722 0.38272 2.0096 1.13 2.672 1.6605 0.66241 0.53057 1.3764 0.96468 1.5867 0.96468s0.8008 0.31916 1.3122 0.70924c0.51143 0.39008 2.324 1.5628 4.028 2.606 1.7189 1.0523 3.8982 2.6968 4.8952 3.6938 0.98838 0.98838 1.9268 1.797 2.0854 1.797 0.17261 0 0.28171 1.3252 0.27186 3.3023-0.0223 4.4811 0.41079 6.6181 1.9633 9.6868 0.388 0.76694 0.70545 1.5516 0.70545 1.7436 0 0.70935 2.3972 4.2914 2.9726 4.4419 0.32638 0.0853 0.66188 0.41696 0.74555 0.7369 0.1685 0.64436 0.65534 0.85913 3.0332 1.3382 1.2784 0.25753 1.6325 0.45156 1.7012 0.93224 0.10409 0.72788-1.0285 1.9347-2.4476 2.6081-0.55817 0.26486-1.0148 0.60716-1.0148 0.76066 0 0.15349-1.2347 1.5012-2.7438 2.995-1.5091 1.4937-2.9007 3.0131-3.0925 3.3764-0.39933 0.7565-1.4789 0.83176-3.4101 0.23773zm-32.453-6.7902c-0.54057-0.65134 0.1451-4.6467 1.0029-5.8442 0.34607-0.48307 0.84332-1.3423 1.105-1.9094 0.26168-0.56712 1.1727-1.8205 2.0244-2.7853 1.4916-1.6895 2.1299-2.2494 4.649-4.0783 1.9216-1.3951 1.7157-2.7993-0.97114-6.6238-0.51774-0.73696-1.0257-1.6702-1.1288-2.0738-0.2061-0.80705-3.3108-5.2676-5.0932-7.3173-2.5796-2.9665-5.301-5.8069-6.2155-6.487-0.53666-0.39913-1.5274-1.153-2.2015-1.6752-0.67417-0.52226-2.5785-1.6227-4.2318-2.4454-1.6534-0.82273-3.089-1.63-3.1902-1.7938-0.10129-0.16388 0.024-0.50609 0.27833-0.76046 0.53048-0.53048 3.3106-0.59157 3.8182-0.0839 0.17006 0.17005 0.564 0.30919 0.87544 0.30919 0.93216 0 5.8082 2.5389 7.459 3.8838 3.2386 2.6384 5.8652 5.1331 7.1289 6.7708 0.72223 0.93594 1.6839 2.1908 2.137 2.7886s1.0801 1.3846 1.3933 1.7484c0.31322 0.36385 0.85722 1.2885 1.2089 2.0548 0.35168 0.76626 0.91351 1.7878 1.2485 2.27 0.79202 1.1402 1.6365 3.0183 1.6365 3.6397 0 0.97836 0.86743 1.7945 1.9073 1.7945 0.54637 0 1.075-0.13209 1.1748-0.29353 0.23666-0.38293 2.1129-0.38083 2.3499 0.003 0.34685 0.56121-0.19275 1.4738-1.1722 1.9825-1.8248 0.94775-10.408 9.1921-10.444 10.031-0.0107 0.25231-0.47476 1.0532-1.0312 1.7797s-1.4006 1.9153-1.8759 2.6418c-1.7245 2.636-3.0171 3.4682-3.8425 2.4737zm96.592-27.569c-0.22357-0.26938-0.28582-0.75072-0.16134-1.2475 0.8632-3.445 1.1803-10.543 1.0919-24.439-0.0156-2.4482-0.33623-7.5962-0.49852-8.0037-0.11357-0.28522-0.10868-0.87963 0.0109-1.3209 0.11956-0.44128 0.29965-2.1232 0.4002-3.7377 0.19563-3.1409 0.73913-4.6543 1.7914-4.9882 1.0732-0.34062 1.2182 0.0593 1.0468 2.8866-0.0896 1.4788-0.225 9.0951-0.30083 16.925-0.0758 7.8301-0.22782 15.756-0.33775 17.612-0.10993 1.8566-0.2226 3.7933-0.25039 4.3037-0.10617 1.9506-1.8185 3.1825-2.7924 2.009zm-95.844-20.701c-0.38147-0.61723 1.589-2.0495 2.8196-2.0495 0.28855 0 0.60841-0.13553 0.71079-0.30119 0.10238-0.16565 0.47343-0.26867 0.82455-0.22894 0.35112 0.0397 1.599-0.0366 2.7731-0.16957 2.3744-0.26896 2.7636-0.11338 3.257 1.302 0.24763 0.71035 0.21296 0.90729-0.19738 1.121-0.78215 0.40732-9.956 0.70107-10.188 0.32621zm147.21-15.698c-0.2996-0.36101-0.21696-0.63658 0.46215-1.5411 0.94235-1.2551 2.9187-3.4518 4.7475-5.277 0.68613-0.68475 1.2477-1.3463 1.2479-1.4701 0.00022-0.1238 0.53748-0.8195 1.1939-1.546s1.7682-1.9814 2.4707-2.7886c0.70245-0.80722 1.8824-2.1252 2.622-2.929 0.73968-0.8037 1.3449-1.5754 1.3449-1.7148 0-0.30318 0.91657-1.5136 2.4217-3.198 0.60542-0.67754 1.1008-1.3199 1.1008-1.4274 0-0.10752 0.85859-1.093 1.908-2.1899s1.908-2.0674 1.908-2.1567c0-0.21219 1.6468-1.958 4.4952-4.7653 2.6277-2.5898 6.1699-5.3698 7.2463-5.6869 0.40361-0.11893 0.99802-0.4419 1.3209-0.71773 1.1891-1.0158 4.7883-2.6599 5.8229-2.6599 0.57228 0 1.1221-0.1321 1.2219-0.29354 0.0998-0.16145 0.74276-0.29354 1.4289-0.29354 0.68611 0 1.5039-0.19393 1.8172-0.43097 0.31341-0.23703 0.85921-0.43516 1.2129-0.4403 0.35374-0.005 0.71537-0.1262 0.80364-0.26902 0.0883-0.14284 0.52537-0.32533 0.97131-0.40555 0.44597-0.0802 1.8015-0.41062 3.0124-0.73424 1.2108-0.32362 2.9941-0.74546 3.9627-0.93742 0.96867-0.19196 2.5335-0.6164 3.4773-0.9432 0.94384-0.3268 2.3968-0.70557 3.2289-0.8417 0.83203-0.13614 2.0411-0.38116 2.6869-0.5445 0.64578-0.16333 1.7025-0.42519 2.3483-0.58191 0.64577-0.15672 1.9667-0.50495 2.9354-0.77386 0.96867-0.2689 2.2896-0.55275 2.9354-0.63078 0.64578-0.078 1.7341-0.39628 2.4185-0.70724 0.68438-0.31096 1.4204-0.56538 1.6356-0.56538 0.21516 0 0.97612-0.18264 1.691-0.40587 0.71488-0.22324 1.8942-0.56392 2.6207-0.75708s2.3116-0.67251 3.5224-1.0652c2.5219-0.81794 3.3913-0.8853 3.6233-0.28073 0.21208 0.55263-1.4024 1.9218-2.2662 1.9218-0.35894 0-0.77811 0.10799-0.93148 0.23996-0.15337 0.13198-1.0054 0.40536-1.8933 0.60752-0.88795 0.20215-1.8786 0.477-2.2015 0.61076-0.32289 0.13377-1.5117 0.46856-2.6418 0.74398-2.7348 0.66651-3.9958 1.0403-4.6591 1.3812-0.30228 0.15533-1.293 0.346-2.2015 0.4237-0.90858 0.0777-2.3124 0.414-3.1196 0.7473-2.3493 0.97004-2.5238 1.0253-4.9901 1.5798-1.2916 0.29038-2.4738 0.63512-2.6272 0.76609-0.15337 0.13096-0.55625 0.23811-0.89528 0.23811s-0.74191 0.11083-0.89528 0.24628c-0.44354 0.39172-3.5579 1.0278-4.07 0.83124-0.25582-0.0982-0.46511-0.0806-0.46511 0.0391 0 0.11967-0.75952 0.39412-1.6878 0.60989-0.92831 0.21577-2.2812 0.70812-3.0064 1.0941-0.88172 0.46929-1.8023 0.70181-2.7788 0.70181-0.80311 0-1.993 0.183-2.6442 0.40668-0.65117 0.22366-2.1746 0.70595-3.3855 1.0717-1.2108 0.36578-2.3366 0.76846-2.5018 0.89484-0.77432 0.5926-3.7789 2.0298-4.2434 2.0298-0.28673 0-0.69688 0.21154-0.91146 0.47009-0.21457 0.25854-1.1224 0.93656-2.0173 1.5067-0.89495 0.57013-1.7115 1.1681-1.8145 1.3287-0.10303 0.16067-0.33419 0.20136-0.51369 0.0904-0.18686-0.11549-0.32635-0.003-0.32635 0.26222 0 0.25516-0.2972 0.60639-0.66045 0.78051-0.36325 0.17413-1.1228 0.88977-1.6878 1.5903-0.56506 0.70055-1.1925 1.2818-1.3943 1.2916-0.2018 0.01-0.36692 0.2039-0.36692 0.4313 0 0.22741-0.92464 1.3623-2.0548 2.5219-1.1301 1.1596-2.0548 2.2016-2.0548 2.3154 0 0.11381-0.72467 1.0594-1.6104 2.1013-0.88571 1.0419-1.6122 2.039-1.6144 2.2158-0.002 0.17678-0.26825 0.5605-0.59114 0.85271-0.32289 0.29222-0.58707 0.70896-0.58707 0.92611 0 0.21714-0.12299 0.3948-0.27331 0.3948-0.44153 0-5.5886 5.922-6.1231 7.0449-0.26894 0.56506-0.88812 1.3884-1.376 1.8296-0.48783 0.44121-1.0851 0.97996-1.3273 1.1972-0.49937 0.448-0.92499 0.9507-3.3398 3.9447-1.7212 2.1341-2.4293 2.5176-3.1174 1.6885zm-134.73-37.11c-0.79032-1.4767-0.12645-2.9546 1.3272-2.9546 0.79099 0 1.0951 0.15754 1.3395 0.69386 0.25971 0.56998 0.19307 0.88378-0.37321 1.7576-0.77542 1.1965-1.8019 1.4217-2.2935 0.50321zm-4.4572-4.454c-0.43235-0.16183-0.94201-0.68784-1.1478-1.1846-0.31826-0.76835-0.29531-1.0234 0.16381-1.82 0.29365-0.50955 1.0072-1.3227 1.5856-1.8071 0.57843-0.48434 1.7629-1.5219 2.6322-2.3056l1.5806-1.425 0.89395 0.89395c0.74131 0.74131 0.83129 0.96944 0.527 1.3361-0.20182 0.24318-0.33024 0.74634-0.28539 1.1181 0.11532 0.95601-0.47661 1.9132-2.274 3.6773-1.6834 1.6522-2.4592 1.9723-3.676 1.5168z"/>
+ </g>
+ <metadata>
+ <rdf:RDF>
+ <cc:Work>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+ <cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
+ <dc:publisher>
+ <cc:Agent rdf:about="http://openclipart.org/">
+ <dc:title>Openclipart</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ <dc:title>Man reading newspaper</dc:title>
+ <dc:date>2013-08-11T17:18:37</dc:date>
+ <dc:description>Retro image of a man reading a newspaper traced from http://thegraphicsfairy.com/retro-fathers-day-images-printable-gift-tags/</dc:description>
+ <dc:source>https://openclipart.org/detail/181783/man-reading-newspaper-by-liftarn-181783</dc:source>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>liftarn</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>1940s</rdf:li>
+ <rdf:li>40s</rdf:li>
+ <rdf:li>man</rdf:li>
+ <rdf:li>news</rdf:li>
+ <rdf:li>newspaper</rdf:li>
+ <rdf:li>paper</rdf:li>
+ <rdf:li>reading</rdf:li>
+ <rdf:li>retro</rdf:li>
+ <rdf:li>vintage</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ </cc:Work>
+ <cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/">
+ <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
+ <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
+ <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+</svg> \ No newline at end of file
diff --git a/pics/xmr-qr.png b/pics/xmr-qr.png
new file mode 100644
index 0000000..3cf1535
--- /dev/null
+++ b/pics/xmr-qr.png
Binary files differ
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..db5e99f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,3 @@
+*{box-sizing: border-box;}
+img{max-width:100%;}
+pre{overflow:auto;}