<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Iterative Tangents</title>
  <link href="https://blog.exupero.org/atom.xml" rel="self"/>
  <link href="https://blog.exupero.org/"/>
  <updated>2026-03-10T12:28:20+00:00</updated>
  <id>https://blog.exupero.org/</id>
  <author>
    <name>exupero</name>
  </author>
  <entry>
    <id>https://blog.exupero.org/finding-test-names-in-source-code</id>
    <link href="https://blog.exupero.org/finding-test-names-in-source-code"/>
    <title>Finding test names in source code</title>
    <updated>2025-07-29T08:00:00+00:00</updated>
    <content type="html"><![CDATA[<p>Some testing frameworks allow running a specific test by giving a filename and line number, which is convenient for triggering a test from the cursor position in a text editor. Other frameworks, however, require the name of a test, rather than finding it for you based on the line number. This post documents a few of the approaches I've tried to finding the name of a test given its line number.</p><h2>Line by line regex matching</h2><p>The simplest solution is to scan from the current cursor line upwards, testing lines against a regex to see if it's a test definition. This mostly works, though it can run into edge cases. For example, with Jest, test names are strings and may concatenated over multiple lines, which then requires more complex logic. Also, JUnit methods are marked as tests with the <code>@Test</code> annotation on the previous line. I don't remember exactly, but cases like these are likely why I switched to a more robust approach, rather than walking line by line in a Vim script.</p><h2>Zippers</h2><p>Currently, I try to avoid non-trivial logic in editor scripts and instead invoke a shell script. To find the test name for the current file and line, I parse the file with the <a href='https://tree-sitter.github.io/tree-sitter/'>tree-sitter</a> CLI and produce an XML representation of a code's concrete syntax tree. That's provides all the information I need, but getting the name in a deeply nested tree structure can be tricky. By habit I used <a href='https://clojure.github.io/clojure/clojure.zip-api.html'>clojure.zip</a> to navigate the tree and find the pieces I needed. The code ended up looking something like this (<code>clojure.zip</code> aliased to <code>z</code>, and a <a href='https://github.com/exupero/scripts/blob/main/lib/zip.clj'>personal library of zipper utilities</a> aliased to <code>zip</code>):</p>
<div><pre><code><span>(<span class="hl-keyword">let</span> [loc (z/xml-zip tree)
      package (<span class="hl-keyword">-&gt;</span> loc
                  (zip/go z/next (<span class="hl-built_in">comp</span> #{<span class="hl-symbol">:package_declaration</span>} <span class="hl-symbol">:tag</span>))
                  (zip/go z/next (<span class="hl-built_in">comp</span> #{<span class="hl-symbol">:scoped_identifier</span>} <span class="hl-symbol">:tag</span>))
                  z/node
                  <span class="hl-symbol">:content</span>
                  <span class="hl-built_in">first</span>)
      [class-name] (<span class="hl-keyword">-&gt;</span> loc
                       (zip/go z/next (<span class="hl-built_in">comp</span> #{<span class="hl-symbol">:class_declaration</span>} <span class="hl-symbol">:tag</span>))
                       z/node
                       <span class="hl-symbol">:content</span>
                       (<span class="hl-keyword">-&gt;&gt;</span> (<span class="hl-built_in">filter</span> (<span class="hl-built_in">every-pred</span> (<span class="hl-built_in">comp</span> #{<span class="hl-symbol">:identifier</span>} <span class="hl-symbol">:tag</span>)
                                                (<span class="hl-built_in">comp</span> #{<span class="hl-string">&quot;name&quot;</span>} <span class="hl-symbol">:field</span> <span class="hl-symbol">:attrs</span>))))
                       <span class="hl-built_in">first</span>
                       <span class="hl-symbol">:content</span>)
      test-name (<span class="hl-keyword">when</span> (<span class="hl-keyword">and</span> line (<span class="hl-built_in">&lt;</span> <span class="hl-number">1</span> line))
                  (<span class="hl-keyword">-&gt;</span> loc
                      (zip/iterate z/next)
                      (<span class="hl-keyword">-&gt;&gt;</span> (<span class="hl-built_in">filter</span> (<span class="hl-built_in">comp</span> (<span class="hl-built_in">partial</span> includes-line line) z/node)))
                      <span class="hl-built_in">last</span>
                      (zip/go z/up (<span class="hl-built_in">comp</span> #{<span class="hl-symbol">:method_declaration</span>} <span class="hl-symbol">:tag</span>))
                      z/node
                      <span class="hl-symbol">:content</span>
                      (<span class="hl-built_in">nth</span> <span class="hl-number">2</span>)
                      <span class="hl-symbol">:content</span>
                      <span class="hl-built_in">first</span>))])</span></code></pre></div>
<p>That's a lot of code for a simple task, and it mostly worked, but every now and then would I run into a scenario that didn't quite work and have to fiddle with it. For as fond as I am of zippers, complex traversals begin to feel like imperative programming. Possibly I needed some more helper functions.</p><h2>Meander</h2><p>Instead of building out more zipper helpers, I tried <a href='https://github.com/noprompt/meander'>Meander</a>. Here are some matchers against an XML tree, which looks for a test class and method, or just a class, or just a function:</p>
<div><pre><code><span>(m/search
  (m/$ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:class_definition</span>
        <span class="hl-symbol">:attrs</span> {<span class="hl-symbol">:srow</span> (m/pred #(<span class="hl-built_in">&lt;=</span> (<span class="hl-built_in">parse-long</span> %) line))}
        <span class="hl-symbol">:content</span> (_ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:identifier</span>
                     <span class="hl-symbol">:content</span> ((m/and (m/pred test-class-name?) ?class))}
                    &amp; (m/$ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:function_definition</span>
                            <span class="hl-symbol">:attrs</span> {<span class="hl-symbol">:srow</span> (m/app <span class="hl-built_in">parse-long</span>
                                                 (m/and (m/pred #(<span class="hl-built_in">&lt;=</span> % line))
                                                        ?row))}
                            <span class="hl-symbol">:content</span> (m/scan {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:identifier</span>
                                              <span class="hl-symbol">:content</span> ((m/and (m/pred test-function-name?)
                                                               ?fn))})}))})<span class="hl-comment">
  , </span>{<span class="hl-symbol">:row</span> ?row <span class="hl-symbol">:class</span> ?class <span class="hl-symbol">:function</span> ?fn}
  (m/$ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:class_definition</span>
        <span class="hl-symbol">:attrs</span> {<span class="hl-symbol">:srow</span> (m/app <span class="hl-built_in">parse-long</span>
                             (m/and (m/pred #(<span class="hl-built_in">&lt;=</span> % line))
                                    ?row))}
        <span class="hl-symbol">:content</span> (_ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:identifier</span>
                     <span class="hl-symbol">:content</span> ((m/and (m/pred test-class-name?)
                                      ?class))}
                    &amp; _)})<span class="hl-comment">
  , </span>{<span class="hl-symbol">:row</span> ?row <span class="hl-symbol">:class</span> ?class}
  (m/$ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:function_definition</span>
        <span class="hl-symbol">:attrs</span> {<span class="hl-symbol">:srow</span> (m/app <span class="hl-built_in">parse-long</span> (m/and (m/pred #(<span class="hl-built_in">&lt;=</span> % line))
                                               ?row))}
        <span class="hl-symbol">:content</span> (_ {<span class="hl-symbol">:tag</span> <span class="hl-symbol">:identifier</span>
                     <span class="hl-symbol">:content</span> ((m/and (m/pred test-function-name?)
                                      ?fn))}
                    &amp; _)})<span class="hl-comment">
  , </span>{<span class="hl-symbol">:row</span> ?row <span class="hl-symbol">:function</span> ?fn})</span></code></pre></div>
<p><code>:row</code> is used to sort the results and find the match closest to a given line.</p><p>Meander's syntax can be tricky to get right, and I'm still wrapping my head around the order of expressions in <code>&#40;m/app f &#40;m/and &#40;m/pred g&#41; ?x&#41;&#41;</code>, but in general I'm pleased with how declarative this version is. I don't have to manage traversing a tree, and the code looks a lot like the tree itself, making it easy to handle new scenarios.</p><p>At the moment, new cases are handled with new Meander patterns. If you have suggestions for alterative approaches, feel free to <a href="mailto:blog@exupero.org?subject=Finding test names in source code">email me</a>.</p>
]]></content>
  </entry>
  <entry>
    <id>https://blog.exupero.org/lindenmeyer-systems-playground</id>
    <link href="https://blog.exupero.org/lindenmeyer-systems-playground"/>
    <title>Lindenmeyer systems playground</title>
    <updated>2025-07-10T08:00:00+00:00</updated>
    <content type="html"><![CDATA[<p>Not long ago I learned about <a href='https://github.com/cjohansen/replicant'>Replicant</a>, so as an excuse to play around with it I created a playground for Lindenmeyer systems based on my <a href='/lindenmeyer-fractals-as-data'>previous</a> <a href='/more-lindenmeyer-fractals'>posts</a> <a href='/generating-lindenmeyer-systems'>about</a> <a href='/lindenmeyer-fractals-by-llms'>L-systems</a>. You can use the playground <a href='https://lsystems.exupero.org/'>here</a>.</p><p>While building it, I added support for pushing and popping states with the <code>&#91;</code> and <code>&#93;</code> operators, which turned out to be relatively straight-forward. The conversion of commands such as <code>&#91;:turn 90&#93;</code> into a set of points looks like this:</p>
<div><pre><code><span>(<span class="hl-keyword">defmulti</span> update-state (<span class="hl-keyword">fn</span> [_ [cmd]] cmd))</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defmethod</span> update-state <span class="hl-symbol">nil</span> [state _]
  state)</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defmethod</span> update-state <span class="hl-symbol">:forward</span> [state [_ param]]
  (<span class="hl-keyword">let</span> [{[x y] <span class="hl-symbol">:point</span> <span class="hl-symbol">:keys</span> [heading points]} state
        radians (<span class="hl-built_in">*</span> heading Math/PI (<span class="hl-built_in">/</span> <span class="hl-number">180</span>))
        x (<span class="hl-built_in">+</span> x (<span class="hl-built_in">*</span> param (Math/sin radians)))
        y (<span class="hl-built_in">+</span> y (<span class="hl-built_in">*</span> param (Math/cos radians)))]
    (<span class="hl-built_in">assoc</span> state <span class="hl-symbol">:point</span> [x y] <span class="hl-symbol">:points</span> (<span class="hl-built_in">conj</span> points [x y]))))</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defmethod</span> update-state <span class="hl-symbol">:turn</span> [state [_ param]]
  (<span class="hl-built_in">assoc</span> state <span class="hl-symbol">:heading</span> (<span class="hl-built_in">-</span> (state <span class="hl-symbol">:heading</span>) param)))</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defmethod</span> update-state <span class="hl-symbol">:push-state</span> [state _]
  (<span class="hl-built_in">update</span> state <span class="hl-symbol">:states</span> <span class="hl-built_in">conj</span> {<span class="hl-symbol">:point</span> (state <span class="hl-symbol">:point</span>) <span class="hl-symbol">:heading</span> (state <span class="hl-symbol">:heading</span>)}))</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defmethod</span> update-state <span class="hl-symbol">:pop-state</span> [state _]
  (<span class="hl-keyword">let</span> [{<span class="hl-symbol">:keys</span> [point heading]} (<span class="hl-keyword">-&gt;</span> state <span class="hl-symbol">:states</span> <span class="hl-built_in">peek</span>)]
    (<span class="hl-keyword">-&gt;</span> state
        (<span class="hl-built_in">assoc</span> <span class="hl-symbol">:point</span> point <span class="hl-symbol">:heading</span> heading)
        (<span class="hl-built_in">update</span> <span class="hl-symbol">:points</span> <span class="hl-built_in">conj</span> <span class="hl-symbol">:move</span> point)
        (<span class="hl-built_in">update</span> <span class="hl-symbol">:states</span> <span class="hl-built_in">pop</span>))))</span></code></pre></div>
<div><pre><code><span>(<span class="hl-keyword">defn</span> coords [cmds]
  (<span class="hl-symbol">:points</span>
    (<span class="hl-built_in">reduce</span> update-state
            {<span class="hl-symbol">:point</span> [<span class="hl-number">0</span> <span class="hl-number">0</span>]
             <span class="hl-symbol">:heading</span> <span class="hl-number">180</span>
             <span class="hl-symbol">:points</span> [[<span class="hl-number">0</span> <span class="hl-number">0</span>]]
             <span class="hl-symbol">:states</span> []}
            cmds)))</span></code></pre></div>
<p>Note that when popping the state the list of points gets the non-coordinate value <code>:move</code>, which is recognized by the drawing code and tells it not to draw a line segment from the previous point to the new point.</p><p>I also improved the generation of random L-systems. I've <a href='/improving-generated-lindenmeyer-rules'>noted</a> some symmetries in the rules of systems that produce pleasing outputs, but in the playground I created symmetries by transforming a randomly generated base rule, then selectively reversing it, inverting it, and concatenating with the original rule to create new, related rules. It will also occasionally insert <code>&#91;</code> and <code>&#93;</code> commands, though not always in a meaningful way (e.g., <code>&#91;+&#93;</code>). The current system seems to have the best success rate of any of my previous attempts, more frequently generating non-trivial and visually distinctive patterns.</p><p>If you have suggestions for further improvements, please <a href="mailto:blog@exupero.org?subject=Lindenmeyer systems playground">let me know</a>.</p>
]]></content>
  </entry>
  <entry>
    <id>https://blog.exupero.org/lindenmeyer-fractals-by-llms</id>
    <link href="https://blog.exupero.org/lindenmeyer-fractals-by-llms"/>
    <title>Lindenmeyer fractals by LLMs</title>
    <updated>2025-05-14T08:00:00+00:00</updated>
    <content type="html"><![CDATA[
<p>Three years ago I wrote a <a href='/lindenmeyer-fractals-as-data'>series on Lindenmeyer fractals</a>, including <a href='/generating-lindenmeyer-systems'>randomly generating them</a>. While there were some interesting random results, they were qualitatively different from the <a href='/more-lindenmeyer-fractals'>highly regular</a> ones designed by humans. Let's see if LLMs can do better.</p><p>Claude reproduced several known L-systems, spitting out a Koch snowflake, two Sierpiński triangles, and a dragon curve with 88-degree turns instead of 90-degree turns. It included several definitions that popped and pushed state, but I haven't added support for that to my L-system code, so I didn't draw any of those. The only remaining system was this wandering line:</p>
<figure class="figure-medium"><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.4999948296095L3.500000000000001,339.6711169037367L3.5000000000000018,332.8422389778639L3.5000000000000027,326.01336105199107L3.500000000000003,319.18448312611827L3.500000000000004,312.35560520024546L3.500000000000005,305.52672727437266L3.5000000000000058,298.69784934849986L3.5000000000000067,291.86897142262706L6.366193451170526,285.67990618168585L9.232386902341046,279.49084094074465L12.098580353511567,273.30177569980344L14.964773804682086,267.11271045886224L20.16008069258067,262.7231923400493L25.355387580479253,258.3336742212363L31.906288306403994,256.56623055734025L38.58524609852468,257.75205276467796L45.136146824449426,255.98460910078188L51.68704755037417,254.2171654368858L56.88235443827275,249.82764731807288L63.43325516419749,248.06020365417677L68.62856205209609,243.67068553536382L73.82386893999467,239.28116741655086L79.01917582789326,234.8916492977379L84.21448271579185,230.50213117892497L87.08067616696238,224.31306593798377L89.9468696181329,218.12400069704256L95.14217650603148,213.7344825782296L101.69307723195622,211.96703891433353L106.8883841198548,207.57752079552057L112.0836910077534,203.1880026767076L114.9498844589239,196.9989374357664L120.1451913468225,192.60941931695345L123.011384797993,186.42035407601225L125.87757824916352,180.23128883507104L128.74377170033404,174.04222359412984L131.60996515150455,167.85315835318866L134.47615860267507,161.66409311224746L137.34235205384556,155.47502787130625L140.20854550501608,149.28596263036505L143.0747389561866,143.09689738942384L143.0747389561866,136.26801946355104L143.0747389561866,129.43914153767824L143.0747389561866,122.61026361180546L143.0747389561866,115.78138568593266L145.9409324073571,109.59232044499143L148.80712585852763,103.4032552040502L154.0024327464262,99.01373708523727L160.55333347235094,97.24629342134119L165.74864036024954,92.85677530252826L170.94394724814813,88.46725718371533L173.81014069931865,82.27819194277413L179.00544758721722,77.8886738239612L181.87164103838774,71.69960858301994L184.73783448955825,65.51054334207873L187.60402794072877,59.32147810113747L190.4702213918993,53.13241286019627L190.4702213918993,46.303534934323466L190.4702213918993,39.47465700845066L193.3364148430698,33.28559176750946L198.53172173096837,28.89607364869653L201.3979151821389,22.707008407755268L204.2641086333094,16.517943166814064L204.2641086333094,9.689065240941261L207.13030208447992,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><figcaption>A wandering line produced by an L-system.</figcaption></figure>
<p>ChatGPT produced some wandering lines like the one above, a sloped line made of squares, and this looping design:</p>
<figure class="figure-medium"><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M249.62485667283576,184.0743190758911L249.62485667283576,153.0926639550415L271.51694266245755,131.1853255267058L302.4770275776187,131.1853255267058L324.36911356724045,153.0926639550415L324.36911356724045,184.0743190758911L302.4770275776187,205.9816575042268L324.36911356724045,227.8889959325625L324.36911356724045,258.8706510534121L302.4770275776187,280.7779894817478L280.5849415879969,302.68532791008346L249.62485667283576,302.68532791008346L227.732770683214,324.5926663384191L196.77268576805287,324.5926663384191L174.88059977843108,302.68532791008346L152.9885137888093,324.5926663384191L122.0284288736482,324.5926663384191L100.13634288402642,302.68532791008346L100.13634288402642,271.70367278923385L69.17625796886529,271.70367278923385L47.284171979243496,249.7963343608982L47.284171979243496,218.81467924004858L47.284171979243496,187.83302411919897L69.17625796886529,165.92568569086328L69.17625796886529,134.94403057001364L91.06834395848705,113.03669214167796L122.0284288736482,113.03669214167796L152.9885137888093,113.03669214167796L174.88059977843108,134.94403057001367L205.8406846935922,134.94403057001364L227.73277068321397,156.85136899834936L227.73277068321397,187.83302411919897L205.8406846935922,209.74036254753466L227.73277068321397,231.64770097587035L227.73277068321397,262.62935609671996L205.8406846935922,284.5366945250556L183.94859870397045,306.44403295339134L152.9885137888093,306.44403295339134L131.09642779918755,328.35137138172706L100.13634288402642,328.35137138172706L78.24425689440466,306.44403295339134L56.352170904782895,328.35137138172706L25.392085989621762,328.35137138172706L3.5,306.44403295339134L3.5,275.46237783254173L25.39208598962179,253.55503940420607L3.5000000000000284,231.64770097587038L3.5000000000000284,200.66604585502077L25.39208598962182,178.75870742668508L47.28417197924361,156.85136899834941L78.24425689440474,156.85136899834947L100.1363428840265,134.94403057001378L131.09642779918767,134.94403057001384L152.98851378880943,156.85136899834953L174.8805997784312,134.94403057001384L205.84068469359232,134.9440305700139L227.73277068321408,156.85136899834959L227.7327706832141,187.8330241191992L258.6928555983752,187.83302411919922L280.584941587997,209.74036254753491L280.58494158799704,240.72201766838452L280.58494158799704,271.70367278923413L258.6928555983753,293.6110112175698L258.6928555983753,324.59266633841946L236.80076960875348,346.50000476675507L205.84068469359235,346.5000047667551L174.88059977843122,346.5000047667552L152.98851378880946,324.59266633841946L122.02842887364831,324.59266633841946L100.13634288402653,302.6853279100838L100.1363428840265,271.7036727892342L122.02842887364831,249.79633436089847L100.13634288402653,227.8889959325628L100.1363428840265,196.9073408117132L122.02842887364831,175.0000023833775L143.92051486327009,153.09266395504184L174.88059977843122,153.09266395504187L196.772685768053,131.1853255267062L227.73277068321414,131.1853255267062L249.62485667283593,153.09266395504187L271.5169426624578,175.00000238337753L271.5169426624578,205.98165750422714L293.4090286520796,227.8889959325628L293.4090286520796,258.8706510534124L271.51694266245784,280.7779894817481L240.5568577472967,280.777989481748L218.66477175767488,258.8706510534124L196.7726857680531,280.7779894817481L165.812600852892,280.7779894817481L143.92051486327017,258.8706510534124L122.02842887364835,236.96331262507675L122.02842887364844,205.98165750422714L100.13634288402662,184.0743190758915L100.1363428840267,153.0926639550419L122.0284288736485,131.1853255267062L100.13634288402667,109.27798709837057L100.13634288402676,78.29633197752096L122.02842887364855,56.38899354918527L152.98851378880968,56.3889935491853L152.98851378880977,25.40733842833569L174.88059977843153,3.5L205.84068469359266,3.5000000000000284L236.8007696087538,3.500000000000057L258.6928555983756,25.40733842833569L289.65294051353675,25.40733842833572L311.54502650315857,47.314676856671355L311.54502650315857,78.29633197752096L311.5450265031586,109.27798709837057L289.65294051353675,131.1853255267062L289.6529405135368,162.1669806475558L267.76085452391493,184.07431907589142L236.80076960875382,184.0743190758914L214.9086836191321,162.16698064755568L193.01659762951022,184.07431907589128L162.05651271434908,184.07431907589125L140.16442672472735,162.16698064755553L118.27234073510562,140.2596422192198L118.27234073510559,109.2779870983702L96.38025474548385,87.37064867003448L96.38025474548385,56.38899354918486L118.27234073510559,34.481655120849155" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><figcaption>A looping design produced by an L-system.</figcaption></figure>
<p>It did, however, produce one interesting one, which it called a "hexagonal weave":</p>
<div><pre><code><span>(<span class="hl-keyword">def</span> hex-weave
  &apos;{<span class="hl-symbol">:axiom</span> [A]
    <span class="hl-symbol">:rules</span> {A [F <span class="hl-built_in">+</span> B <span class="hl-built_in">-</span> F <span class="hl-built_in">-</span> B <span class="hl-built_in">+</span> F]
            B [F <span class="hl-built_in">-</span> A <span class="hl-built_in">+</span> F <span class="hl-built_in">+</span> A <span class="hl-built_in">-</span> F]}
    <span class="hl-symbol">:moves</span> {<span class="hl-built_in">+</span> [<span class="hl-symbol">:turn</span> <span class="hl-number">60</span>]
            <span class="hl-built_in">-</span> [<span class="hl-symbol">:turn</span> <span class="hl-number">-60</span>]
            F [<span class="hl-symbol">:forward</span> <span class="hl-number">1</span>]}})</span></code></pre></div>
<figure class="figure-medium"><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.49999618530273L3.500000000000002,327.4444408416748L19.937655659292275,317.91666316986084L19.93765565929228,298.8611078262329L36.37531131858455,289.33333015441895L36.37531131858456,270.277774810791L52.81296697787683,260.74999713897705L69.2506226371691,251.2222194671631L85.68827829646138,241.69444179534912L85.68827829646138,222.6388864517212L69.2506226371691,213.11110877990723L52.81296697787684,203.58333110809326L36.37531131858457,194.0555534362793L36.37531131858457,174.99999809265137L52.81296697787685,165.4722204208374L69.25062263716913,174.99999809265137L69.25062263716913,194.0555534362793L69.25062263716913,213.11110877990723L69.25062263716913,232.16666412353516L85.68827829646139,241.69444179534912L102.12593395575367,232.16666412353516L118.56358961504593,222.6388864517212L135.0012452743382,213.11110877990723L151.43890093363046,222.6388864517212L167.87655659292275,213.11110877990723L167.87655659292275,194.0555534362793L151.4389009336305,184.52777576446533L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L69.25062263716914,174.99999809265137L69.25062263716913,194.0555534362793L69.25062263716913,213.11110877990723L69.25062263716912,232.16666412353516L52.81296697787684,241.69444179534912L36.37531131858457,232.16666412353516L36.37531131858457,213.11110877990723L52.81296697787685,203.58333110809326L69.25062263716913,194.0555534362793L85.68827829646139,184.52777576446533L85.68827829646139,165.4722204208374L69.25062263716913,155.94444274902344L52.812966977876854,146.41666507720947L36.375311318584586,136.8888874053955L36.37531131858459,117.83333206176758L19.93765565929232,108.30555438995361L19.93765565929232,89.24999904632568L36.37531131858459,79.72222137451172L52.812966977876876,89.24999904632568L52.812966977876876,108.30555438995361L69.25062263716914,117.83333206176758L69.25062263716914,136.8888874053955L69.25062263716914,155.94444274902344L69.25062263716914,174.99999809265137L85.6882782964614,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504594,165.4722204208374L135.0012452743382,155.94444274902344L151.4389009336305,165.4722204208374L151.4389009336305,184.52777576446533L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L69.25062263716914,174.99999809265137L69.25062263716914,194.0555534362793L69.25062263716914,213.11110877990723L69.25062263716914,232.16666412353516L52.812966977876876,241.69444179534912L52.812966977876876,260.74999713897705L69.25062263716914,270.277774810791L85.6882782964614,260.74999713897705L85.6882782964614,241.69444179534912L102.12593395575368,232.16666412353516L118.56358961504594,222.6388864517212L135.0012452743382,213.11110877990723L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L85.6882782964614,146.41666507720947L102.12593395575368,136.8888874053955L118.56358961504594,146.41666507720947L118.56358961504594,165.4722204208374L118.56358961504594,184.52777576446533L118.56358961504594,203.58333110809326L135.0012452743382,213.11110877990723L151.4389009336305,203.58333110809326L167.87655659292275,194.0555534362793L184.31421225221504,184.52777576446533L200.75186791150733,194.0555534362793L217.1895235707996,184.52777576446533L233.62717923009188,194.0555534362793L250.06483488938417,184.52777576446533L250.06483488938417,165.4722204208374L233.62717923009188,155.94444274902344L217.1895235707996,165.4722204208374L200.75186791150733,155.94444274902344L184.31421225221504,165.4722204208374L167.87655659292275,155.94444274902344L151.4389009336305,146.41666507720947L135.0012452743382,136.8888874053955L118.56358961504594,146.41666507720947L118.56358961504594,165.4722204208374L118.56358961504594,184.52777576446533L118.56358961504594,203.58333110809326L102.12593395575368,213.11110877990723L85.6882782964614,203.58333110809326L85.6882782964614,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504594,165.4722204208374L135.0012452743382,155.94444274902344L135.0012452743382,136.8888874053955L118.56358961504594,127.36110973358154L102.12593395575368,117.83333206176758L85.6882782964614,108.30555438995361L85.6882782964614,89.24999904632568L69.25062263716914,79.72222137451172L52.812966977876876,89.24999904632568L52.81296697787686,108.30555438995361L69.25062263716914,117.83333206176758L69.25062263716913,136.8888874053955L69.25062263716913,155.94444274902344L69.25062263716912,174.99999809265137L85.68827829646139,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504597,165.4722204208374L135.00124527433826,155.94444274902344L151.43890093363052,165.4722204208374L151.43890093363052,184.52777576446533L135.00124527433826,194.0555534362793L118.563589615046,184.52777576446533L102.12593395575372,174.99999809265137L85.68827829646146,165.4722204208374L69.25062263716919,174.99999809265137L69.25062263716919,194.0555534362793L69.25062263716917,213.11110877990723L69.25062263716917,232.16666412353516L52.81296697787689,241.69444179534912L52.81296697787688,260.74999713897705L36.37531131858461,270.277774810791L19.93765565929234,260.74999713897705L19.93765565929234,241.69444179534912L36.375311318584615,232.16666412353516L36.375311318584615,213.11110877990723L52.81296697787689,203.58333110809326L69.25062263716917,194.0555534362793L85.68827829646145,184.52777576446533L85.68827829646145,165.4722204208374L69.25062263716917,155.94444274902344L52.812966977876904,146.41666507720947L36.375311318584636,136.8888874053955L36.37531131858464,117.83333206176758L52.81296697787692,108.30555438995361L69.25062263716919,117.83333206176758L69.25062263716919,136.8888874053955L69.25062263716919,155.94444274902344L69.25062263716919,174.99999809265137L85.68827829646146,184.52777576446533L102.12593395575372,174.99999809265137L118.563589615046,165.4722204208374L135.00124527433826,155.94444274902344L151.43890093363052,165.4722204208374L167.8765565929228,155.94444274902344L167.8765565929228,136.8888874053955L151.43890093363055,127.36110973358154L135.0012452743383,136.8888874053955L118.56358961504601,127.36110973358154L102.12593395575375,117.83333206176758L85.68827829646148,108.30555438995361L69.25062263716922,117.83333206176758L69.2506226371692,136.8888874053955L69.25062263716919,155.94444274902344L69.25062263716919,174.99999809265137L52.812966977876904,184.52777576446533L36.375311318584636,174.99999809265137L36.37531131858464,155.94444274902344L52.81296697787692,146.41666507720947L69.25062263716919,136.8888874053955L85.68827829646146,127.36110973358154L85.68827829646146,108.30555438995361L69.25062263716919,98.77777671813965L52.812966977876926,89.24999904632568L36.37531131858466,79.72222137451172L36.37531131858466,60.66666603088379L19.93765565929239,51.138888359069824L19.93765565929239,32.083333015441895L3.50000000000012,22.55555534362793L3.5000000000001226,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><figcaption>A &quot;hexagonal weave&quot; L-system.</figcaption></figure>
<figure><div class="image-array" style="display:flex;flex-wrap:wrap;"><style>.image-array svg { width: 100px; height: 100px; }</style><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50000762939453L2.3333333242114582,232.1666717529297L1.1666666484229165,117.83333587646484L-2.7365624877262462E-8,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50000762939453L3.500000000000007,289.3333396911621L52.34630190257286,260.7500057220459L101.19260380514572,232.16667175292972L150.03890570771858,203.58333778381353L150.03890570771858,146.4166698455811L101.19260380514575,117.83333587646487L52.346301902572904,89.25000190734863L3.5000000000000626,60.66666793823242L3.5000000000000697,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.49999618530273L3.5000000000000044,308.3888854980469L36.25864381089929,289.33333015441895L36.25864381089929,251.2222194671631L36.258643810899294,213.11110877990723L36.258643810899294,174.99999809265137L69.01728762179857,155.94444274902344L101.77593143269785,174.99999809265137L134.53457524359715,194.0555534362793L167.2932190544964,213.11110877990723L200.05186286539566,194.0555534362793L200.05186286539566,155.94444274902344L167.2932190544964,136.8888874053955L134.53457524359715,155.94444274902344L101.77593143269787,174.99999809265137L69.01728762179859,194.0555534362793L36.25864381089932,174.99999809265137L36.25864381089932,136.8888874053955L36.25864381089933,98.77777671813965L36.258643810899336,60.66666603088379L3.500000000000063,41.61111068725586L3.5000000000000675,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50000762939453L3.5000000000000036,317.9166736602783L28.11759404440793,303.6250066757202L28.117594044407934,275.041672706604L52.73518808881586,260.7500057220459L77.3527821332238,246.4583387374878L101.97037617763172,232.1666717529297L101.97037617763172,203.58333778381348L77.3527821332238,189.29167079925537L52.73518808881589,175.00000381469727L28.117594044407966,160.70833683013916L28.11759404440797,132.12500286102295L52.735188088815896,117.83333587646484L77.35278213322383,132.12500286102295L77.35278213322383,160.70833683013916L77.35278213322383,189.29167079925537L77.35278213322383,217.87500476837158L101.97037617763175,232.1666717529297L126.58797022203966,217.87500476837158L151.2055642664476,203.58333778381348L175.8231583108555,189.29167079925537L200.4407523552634,203.58333778381348L225.05834639967134,189.29167079925537L225.05834639967134,160.70833683013916L200.4407523552634,146.41666984558105L175.8231583108555,160.70833683013916L151.2055642664476,146.41666984558105L126.58797022203966,132.12500286102295L101.97037617763175,117.83333587646484L77.35278213322383,132.12500286102295L77.35278213322381,160.70833683013916L77.3527821332238,189.29167079925537L77.3527821332238,217.87500476837158L52.73518808881587,232.1666717529297L28.117594044407944,217.87500476837158L28.117594044407948,189.29167079925537L52.735188088815875,175.00000381469727L77.3527821332238,160.70833683013916L101.97037617763174,146.41666984558105L101.97037617763174,117.83333587646484L77.35278213322381,103.54166889190674L52.735188088815896,89.25000190734863L28.117594044407976,74.95833492279053L28.11759404440798,46.375000953674316L3.50000000000006,32.08333396911621L3.5000000000000635,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50000190734863L3.5000000000000027,323.6333351135254L23.213520040382207,312.20000171661377L23.213520040382207,289.3333349227905L42.927040080764414,277.9000015258789L42.927040080764414,255.03333473205566L42.92704008076442,232.16666793823242L42.92704008076443,209.30000114440918L62.64056012114663,197.86666774749756L82.35408016152883,209.30000114440918L102.06760020191102,220.7333345413208L121.78112024229321,232.16666793823242L141.49464028267542,220.7333345413208L141.49464028267542,197.86666774749756L121.78112024229321,186.43333435058594L102.06760020191102,197.86666774749756L82.35408016152883,209.30000114440918L62.64056012114663,220.7333345413208L42.92704008076443,209.30000114440918L42.927040080764435,186.43333435058594L42.92704008076444,163.5666675567627L42.92704008076445,140.70000076293945L23.21352004038225,129.26666736602783L23.21352004038225,106.40000057220459L42.92704008076445,94.96666717529297L62.64056012114665,106.40000057220459L62.64056012114665,129.26666736602783L82.35408016152884,140.70000076293945L102.06760020191103,152.13333415985107L121.78112024229323,163.5666675567627L121.78112024229323,186.43333435058594L102.06760020191103,197.86666774749756L82.35408016152884,209.30000114440918L62.64056012114665,220.7333345413208L62.64056012114665,243.60000133514404L82.35408016152884,255.03333473205566L102.06760020191103,243.60000133514404L102.06760020191103,220.7333345413208L102.06760020191103,197.86666774749756L102.06760020191103,175.00000095367432L121.78112024229323,163.5666675567627L141.49464028267542,175.00000095367432L161.20816032305763,186.43333435058594L180.9216803634398,197.86666774749756L200.63520040382204,186.43333435058594L220.34872044420425,197.86666774749756L240.06224048458645,186.43333435058594L240.06224048458645,163.5666675567627L220.34872044420425,152.13333415985107L200.63520040382204,163.5666675567627L180.92168036343983,152.13333415985107L161.20816032305765,163.5666675567627L141.49464028267545,175.00000095367432L121.78112024229326,186.43333435058594L102.06760020191106,175.00000095367432L102.06760020191106,152.13333415985107L102.06760020191106,129.26666736602783L102.06760020191106,106.40000057220459L82.35408016152886,94.96666717529297L62.64056012114666,106.40000057220459L62.640560121146656,129.26666736602783L82.35408016152886,140.70000076293945L102.06760020191108,152.13333415985107L121.7811202422933,163.5666675567627L121.7811202422933,186.43333435058594L102.06760020191109,197.86666774749756L82.3540801615289,209.30000114440918L62.640560121146706,220.7333345413208L62.6405601211467,243.60000133514404L42.9270400807645,255.03333473205566L23.2135200403823,243.60000133514404L23.213520040382303,220.7333345413208L42.9270400807645,209.30000114440918L42.927040080764506,186.43333435058594L42.92704008076451,163.5666675567627L42.92704008076451,140.70000076293945L62.64056012114672,129.26666736602783L82.35408016152893,140.70000076293945L102.06760020191112,152.13333415985107L121.78112024229331,163.5666675567627L141.4946402826755,152.13333415985107L141.4946402826755,129.26666736602783L121.78112024229331,117.83333396911621L102.06760020191112,129.26666736602783L82.35408016152893,140.70000076293945L62.64056012114673,152.13333415985107L42.927040080764534,140.70000076293945L42.927040080764534,117.83333396911621L42.92704008076454,94.96666717529297L42.92704008076455,72.10000038146973L23.21352004038235,60.666666984558105L23.213520040382353,37.80000019073486L3.500000000000154,26.366666793823242L3.5000000000001568,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.49999618530273L3.500000000000002,327.4444408416748L19.937655659292275,317.91666316986084L19.93765565929228,298.8611078262329L36.37531131858455,289.33333015441895L36.37531131858456,270.277774810791L52.81296697787683,260.74999713897705L69.2506226371691,251.2222194671631L85.68827829646138,241.69444179534912L85.68827829646138,222.6388864517212L69.2506226371691,213.11110877990723L52.81296697787684,203.58333110809326L36.37531131858457,194.0555534362793L36.37531131858457,174.99999809265137L52.81296697787685,165.4722204208374L69.25062263716913,174.99999809265137L69.25062263716913,194.0555534362793L69.25062263716913,213.11110877990723L69.25062263716913,232.16666412353516L85.68827829646139,241.69444179534912L102.12593395575367,232.16666412353516L118.56358961504593,222.6388864517212L135.0012452743382,213.11110877990723L151.43890093363046,222.6388864517212L167.87655659292275,213.11110877990723L167.87655659292275,194.0555534362793L151.4389009336305,184.52777576446533L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L69.25062263716914,174.99999809265137L69.25062263716913,194.0555534362793L69.25062263716913,213.11110877990723L69.25062263716912,232.16666412353516L52.81296697787684,241.69444179534912L36.37531131858457,232.16666412353516L36.37531131858457,213.11110877990723L52.81296697787685,203.58333110809326L69.25062263716913,194.0555534362793L85.68827829646139,184.52777576446533L85.68827829646139,165.4722204208374L69.25062263716913,155.94444274902344L52.812966977876854,146.41666507720947L36.375311318584586,136.8888874053955L36.37531131858459,117.83333206176758L19.93765565929232,108.30555438995361L19.93765565929232,89.24999904632568L36.37531131858459,79.72222137451172L52.812966977876876,89.24999904632568L52.812966977876876,108.30555438995361L69.25062263716914,117.83333206176758L69.25062263716914,136.8888874053955L69.25062263716914,155.94444274902344L69.25062263716914,174.99999809265137L85.6882782964614,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504594,165.4722204208374L135.0012452743382,155.94444274902344L151.4389009336305,165.4722204208374L151.4389009336305,184.52777576446533L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L69.25062263716914,174.99999809265137L69.25062263716914,194.0555534362793L69.25062263716914,213.11110877990723L69.25062263716914,232.16666412353516L52.812966977876876,241.69444179534912L52.812966977876876,260.74999713897705L69.25062263716914,270.277774810791L85.6882782964614,260.74999713897705L85.6882782964614,241.69444179534912L102.12593395575368,232.16666412353516L118.56358961504594,222.6388864517212L135.0012452743382,213.11110877990723L135.0012452743382,194.0555534362793L118.56358961504594,184.52777576446533L102.12593395575368,174.99999809265137L85.6882782964614,165.4722204208374L85.6882782964614,146.41666507720947L102.12593395575368,136.8888874053955L118.56358961504594,146.41666507720947L118.56358961504594,165.4722204208374L118.56358961504594,184.52777576446533L118.56358961504594,203.58333110809326L135.0012452743382,213.11110877990723L151.4389009336305,203.58333110809326L167.87655659292275,194.0555534362793L184.31421225221504,184.52777576446533L200.75186791150733,194.0555534362793L217.1895235707996,184.52777576446533L233.62717923009188,194.0555534362793L250.06483488938417,184.52777576446533L250.06483488938417,165.4722204208374L233.62717923009188,155.94444274902344L217.1895235707996,165.4722204208374L200.75186791150733,155.94444274902344L184.31421225221504,165.4722204208374L167.87655659292275,155.94444274902344L151.4389009336305,146.41666507720947L135.0012452743382,136.8888874053955L118.56358961504594,146.41666507720947L118.56358961504594,165.4722204208374L118.56358961504594,184.52777576446533L118.56358961504594,203.58333110809326L102.12593395575368,213.11110877990723L85.6882782964614,203.58333110809326L85.6882782964614,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504594,165.4722204208374L135.0012452743382,155.94444274902344L135.0012452743382,136.8888874053955L118.56358961504594,127.36110973358154L102.12593395575368,117.83333206176758L85.6882782964614,108.30555438995361L85.6882782964614,89.24999904632568L69.25062263716914,79.72222137451172L52.812966977876876,89.24999904632568L52.81296697787686,108.30555438995361L69.25062263716914,117.83333206176758L69.25062263716913,136.8888874053955L69.25062263716913,155.94444274902344L69.25062263716912,174.99999809265137L85.68827829646139,184.52777576446533L102.12593395575368,174.99999809265137L118.56358961504597,165.4722204208374L135.00124527433826,155.94444274902344L151.43890093363052,165.4722204208374L151.43890093363052,184.52777576446533L135.00124527433826,194.0555534362793L118.563589615046,184.52777576446533L102.12593395575372,174.99999809265137L85.68827829646146,165.4722204208374L69.25062263716919,174.99999809265137L69.25062263716919,194.0555534362793L69.25062263716917,213.11110877990723L69.25062263716917,232.16666412353516L52.81296697787689,241.69444179534912L52.81296697787688,260.74999713897705L36.37531131858461,270.277774810791L19.93765565929234,260.74999713897705L19.93765565929234,241.69444179534912L36.375311318584615,232.16666412353516L36.375311318584615,213.11110877990723L52.81296697787689,203.58333110809326L69.25062263716917,194.0555534362793L85.68827829646145,184.52777576446533L85.68827829646145,165.4722204208374L69.25062263716917,155.94444274902344L52.812966977876904,146.41666507720947L36.375311318584636,136.8888874053955L36.37531131858464,117.83333206176758L52.81296697787692,108.30555438995361L69.25062263716919,117.83333206176758L69.25062263716919,136.8888874053955L69.25062263716919,155.94444274902344L69.25062263716919,174.99999809265137L85.68827829646146,184.52777576446533L102.12593395575372,174.99999809265137L118.563589615046,165.4722204208374L135.00124527433826,155.94444274902344L151.43890093363052,165.4722204208374L167.8765565929228,155.94444274902344L167.8765565929228,136.8888874053955L151.43890093363055,127.36110973358154L135.0012452743383,136.8888874053955L118.56358961504601,127.36110973358154L102.12593395575375,117.83333206176758L85.68827829646148,108.30555438995361L69.25062263716922,117.83333206176758L69.2506226371692,136.8888874053955L69.25062263716919,155.94444274902344L69.25062263716919,174.99999809265137L52.812966977876904,184.52777576446533L36.375311318584636,174.99999809265137L36.37531131858464,155.94444274902344L52.81296697787692,146.41666507720947L69.25062263716919,136.8888874053955L85.68827829646146,127.36110973358154L85.68827829646146,108.30555438995361L69.25062263716919,98.77777671813965L52.812966977876926,89.24999904632568L36.37531131858466,79.72222137451172L36.37531131858466,60.66666603088379L19.93765565929239,51.138888359069824L19.93765565929239,32.083333015441895L3.50000000000012,22.55555534362793L3.5000000000001226,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50001335144043L3.5000000000000018,330.1666793823242L17.59497441750937,322.0000123977661L17.59497441750937,305.6666784286499L31.68994883501874,297.5000114440918L31.689948835018743,281.1666774749756L45.78492325252811,273.0000104904175L45.78492325252811,256.66667652130127L45.78492325252811,240.33334255218506L45.78492325252811,224.00000858306885L59.87989767003748,215.83334159851074L73.97487208754684,224.00000858306885L88.0698465050562,232.16667556762695L102.16482092256557,240.33334255218506L116.25979534007493,232.16667556762695L116.25979534007493,215.83334159851074L102.16482092256557,207.66667461395264L88.0698465050562,215.83334159851074L73.97487208754684,224.00000858306885L59.87989767003748,232.16667556762695L45.78492325252812,224.00000858306885L45.78492325252812,207.66667461395264L45.78492325252812,191.33334064483643L45.78492325252812,175.00000667572021L31.689948835018754,166.8333396911621L31.689948835018757,150.5000057220459L45.784923252528124,142.3333387374878L59.879897670037494,150.5000057220459L59.879897670037494,166.8333396911621L73.97487208754686,175.00000667572021L88.06984650505622,183.16667366027832L102.16482092256558,191.33334064483643L102.16482092256558,207.66667461395264L88.06984650505622,215.83334159851074L73.97487208754686,224.00000858306885L59.879897670037494,232.16667556762695L59.879897670037494,248.50000953674316L73.97487208754686,256.66667652130127L88.06984650505622,248.50000953674316L88.06984650505622,232.16667556762695L88.06984650505622,215.83334159851074L88.06984650505622,199.50000762939453L102.16482092256558,191.33334064483643L116.25979534007494,199.50000762939453L130.3547697575843,207.66667461395264L144.44974417509368,215.83334159851074L158.54471859260306,207.66667461395264L172.63969301011244,215.83334159851074L186.73466742762182,207.66667461395264L186.73466742762182,191.33334064483643L172.63969301011244,183.16667366027832L158.54471859260306,191.33334064483643L144.44974417509368,183.16667366027832L130.35476975758434,191.33334064483643L116.25979534007496,199.50000762939453L102.1648209225656,207.66667461395264L88.06984650505623,199.50000762939453L88.06984650505623,183.16667366027832L88.06984650505623,166.8333396911621L88.06984650505623,150.5000057220459L73.97487208754687,142.3333387374878L59.87989767003751,150.5000057220459L59.8798976700375,166.8333396911621L73.97487208754687,175.00000667572021L88.06984650505623,183.16667366027832L102.16482092256561,191.33334064483643L102.16482092256561,207.66667461395264L88.06984650505625,215.83334159851074L73.97487208754688,224.00000858306885L59.87989767003752,232.16667556762695L59.879897670037515,248.50000953674316L45.784923252528145,256.66667652130127L31.689948835018782,248.50000953674316L31.689948835018786,232.16667556762695L45.78492325252815,224.00000858306885L45.78492325252815,207.66667461395264L45.78492325252815,191.33334064483643L45.78492325252815,175.00000667572021L59.87989767003752,166.8333396911621L73.97487208754688,175.00000667572021L88.06984650505625,183.16667366027832L102.16482092256561,191.33334064483643L116.25979534007497,183.16667366027832L116.25979534007497,166.8333396911621L102.16482092256561,158.666672706604L88.06984650505625,166.8333396911621L73.97487208754688,175.00000667572021L59.87989767003752,183.16667366027832L45.78492325252816,175.00000667572021L45.78492325252816,158.666672706604L45.78492325252816,142.3333387374878L45.78492325252816,126.00000476837158L31.689948835018797,117.83333778381348L31.6899488350188,101.50000381469727L17.594974417509437,93.33333683013916L17.59497441750944,77.00000286102295L31.689948835018804,68.83333587646484L45.78492325252817,77.00000286102295L45.78492325252817,93.33333683013916L59.879897670037536,101.50000381469727L59.879897670037536,117.83333778381348L73.9748720875469,126.00000476837158L88.06984650505626,134.1666717529297L102.16482092256562,142.3333387374878L102.16482092256562,158.666672706604L88.06984650505626,166.8333396911621L73.9748720875469,175.00000667572021L59.879897670037536,183.16667366027832L59.879897670037536,199.50000762939453L73.9748720875469,207.66667461395264L88.06984650505626,199.50000762939453L88.06984650505626,183.16667366027832L88.06984650505626,166.8333396911621L88.06984650505626,150.5000057220459L102.16482092256562,142.3333387374878L116.25979534007499,150.5000057220459L130.35476975758434,158.666672706604L144.4497441750937,166.8333396911621L158.5447185926031,158.666672706604L172.63969301011247,166.8333396911621L172.63969301011247,183.16667366027832L158.5447185926031,191.33334064483643L144.4497441750937,183.16667366027832L130.35476975758434,191.33334064483643L116.25979534007499,199.50000762939453L102.16482092256562,207.66667461395264L88.06984650505626,199.50000762939453L88.06984650505626,183.16667366027832L88.06984650505626,166.8333396911621L88.06984650505626,150.5000057220459L73.9748720875469,142.3333387374878L59.879897670037536,150.5000057220459L59.879897670037536,166.8333396911621L73.9748720875469,175.00000667572021L88.06984650505626,183.16667366027832L102.16482092256562,191.33334064483643L102.16482092256562,207.66667461395264L88.06984650505626,215.83334159851074L73.9748720875469,224.00000858306885L59.879897670037536,232.16667556762695L59.879897670037536,248.50000953674316L45.78492325252817,256.66667652130127L45.78492325252817,273.0000104904175L59.879897670037536,281.1666774749756L73.9748720875469,273.0000104904175L73.9748720875469,256.66667652130127L88.06984650505626,248.50000953674316L88.06984650505626,232.16667556762695L88.06984650505626,215.83334159851074L88.06984650505626,199.50000762939453L102.16482092256562,191.33334064483643L116.25979534007499,199.50000762939453L130.35476975758434,207.66667461395264L144.4497441750937,215.83334159851074L158.5447185926031,207.66667461395264L158.5447185926031,191.33334064483643L144.4497441750937,183.16667366027832L130.35476975758434,191.33334064483643L116.25979534007499,199.50000762939453L102.16482092256562,207.66667461395264L88.06984650505626,199.50000762939453L88.06984650505626,183.16667366027832L88.06984650505626,166.8333396911621L88.06984650505626,150.5000057220459L73.9748720875469,142.3333387374878L73.9748720875469,126.00000476837158L88.06984650505626,117.83333778381348L102.16482092256562,126.00000476837158L102.16482092256562,142.3333387374878L116.25979534007499,150.5000057220459L130.35476975758434,158.666672706604L144.4497441750937,166.8333396911621L144.4497441750937,183.16667366027832L130.35476975758434,191.33334064483643L116.25979534007499,199.50000762939453L102.16482092256562,207.66667461395264L102.16482092256562,224.00000858306885L116.25979534007499,232.16667556762695L130.35476975758434,224.00000858306885L130.35476975758434,207.66667461395264L130.35476975758434,191.33334064483643L130.35476975758434,175.00000667572021L144.4497441750937,166.8333396911621L158.5447185926031,175.00000667572021L172.63969301011247,183.16667366027832L186.73466742762184,191.33334064483643L200.82964184513122,183.16667366027832L214.9246162626406,191.33334064483643L229.01959068014997,183.16667366027832L243.11456509765935,191.33334064483643L257.20953951516873,183.16667366027832L257.20953951516873,166.8333396911621L243.11456509765935,158.666672706604L229.01959068014997,166.8333396911621L214.9246162626406,158.666672706604L200.82964184513122,166.8333396911621L186.73466742762184,158.666672706604L172.63969301011247,166.8333396911621L158.5447185926031,175.00000667572021L144.4497441750937,183.16667366027832L130.35476975758434,175.00000667572021L130.35476975758434,158.666672706604L130.35476975758434,142.3333387374878L130.35476975758434,126.00000476837158L116.25979534007499,117.83333778381348L102.16482092256562,126.00000476837158L102.16482092256562,142.3333387374878L116.25979534007499,150.5000057220459L130.35476975758436,158.666672706604L144.44974417509374,166.8333396911621L144.44974417509374,183.16667366027832L130.3547697575844,191.33334064483643L116.25979534007502,199.50000762939453L102.16482092256565,207.66667461395264L102.16482092256565,224.00000858306885L88.06984650505629,232.16667556762695L73.97487208754693,224.00000858306885L73.97487208754693,207.66667461395264L88.06984650505629,199.50000762939453L88.06984650505629,183.16667366027832L88.06984650505629,166.8333396911621L88.06984650505629,150.5000057220459L102.16482092256565,142.3333387374878L116.25979534007502,150.5000057220459L130.3547697575844,158.666672706604L144.44974417509374,166.8333396911621L158.54471859260312,158.666672706604L158.54471859260312,142.3333387374878L144.44974417509374,134.1666717529297L130.3547697575844,142.3333387374878L116.25979534007502,150.5000057220459L102.16482092256565,158.666672706604L88.06984650505629,150.5000057220459L88.06984650505629,134.1666717529297L88.06984650505629,117.83333778381348L88.06984650505629,101.50000381469727L73.97487208754693,93.33333683013916L73.97487208754693,77.00000286102295L59.879897670037565,68.83333587646484L45.7849232525282,77.00000286102295L45.784923252528195,93.33333683013916L59.879897670037565,101.50000381469727L59.87989767003756,117.83333778381348L73.97487208754693,126.00000476837158L88.06984650505629,134.1666717529297L102.16482092256567,142.3333387374878L102.16482092256567,158.666672706604L88.0698465050563,166.8333396911621L73.97487208754694,175.00000667572021L59.87989767003758,183.16667366027832L59.87989767003757,199.50000762939453L73.97487208754694,207.66667461395264L88.06984650505632,199.50000762939453L88.06984650505632,183.16667366027832L88.06984650505632,166.8333396911621L88.06984650505632,150.5000057220459L102.1648209225657,142.3333387374878L116.25979534007507,150.5000057220459L130.35476975758445,158.666672706604L144.44974417509383,166.8333396911621L158.5447185926032,158.666672706604L172.63969301011258,166.8333396911621L172.63969301011258,183.16667366027832L158.5447185926032,191.33334064483643L144.44974417509383,183.16667366027832L130.35476975758445,191.33334064483643L116.2597953400751,199.50000762939453L102.16482092256574,207.66667461395264L88.06984650505638,199.50000762939453L88.06984650505638,183.16667366027832L88.06984650505638,166.8333396911621L88.06984650505638,150.5000057220459L73.97487208754701,142.3333387374878L59.87989767003766,150.5000057220459L59.87989767003765,166.8333396911621L73.97487208754701,175.00000667572021L88.06984650505638,183.16667366027832L102.16482092256575,191.33334064483643L102.16482092256575,207.66667461395264L88.06984650505639,215.83334159851074L73.97487208754703,224.00000858306885L59.87989767003767,232.16667556762695L59.879897670037664,248.50000953674316L45.784923252528294,256.66667652130127L45.78492325252829,273.0000104904175L31.689948835018917,281.1666774749756L17.594974417509555,273.0000104904175L17.594974417509555,256.66667652130127L31.68994883501892,248.50000953674316L31.689948835018924,232.16667556762695L45.784923252528294,224.00000858306885L45.784923252528294,207.66667461395264L45.784923252528294,191.33334064483643L45.784923252528294,175.00000667572021L59.879897670037664,166.8333396911621L73.97487208754703,175.00000667572021L88.06984650505639,183.16667366027832L102.16482092256575,191.33334064483643L116.25979534007512,183.16667366027832L116.25979534007512,166.8333396911621L102.16482092256575,158.666672706604L88.06984650505639,166.8333396911621L73.97487208754703,175.00000667572021L59.87989767003767,183.16667366027832L45.78492325252831,175.00000667572021L45.78492325252831,158.666672706604L45.78492325252831,142.3333387374878L45.78492325252831,126.00000476837158L31.689948835018942,117.83333778381348L31.689948835018946,101.50000381469727L45.784923252528316,93.33333683013916L59.879897670037685,101.50000381469727L59.879897670037685,117.83333778381348L73.97487208754704,126.00000476837158L88.0698465050564,134.1666717529297L102.16482092256577,142.3333387374878L102.16482092256577,158.666672706604L88.0698465050564,166.8333396911621L73.97487208754704,175.00000667572021L59.879897670037685,183.16667366027832L59.879897670037685,199.50000762939453L73.97487208754704,207.66667461395264L88.0698465050564,199.50000762939453L88.0698465050564,183.16667366027832L88.0698465050564,166.8333396911621L88.0698465050564,150.5000057220459L102.16482092256577,142.3333387374878L116.25979534007513,150.5000057220459L130.3547697575845,158.666672706604L144.44974417509385,166.8333396911621L158.54471859260323,158.666672706604L172.6396930101126,166.8333396911621L186.73466742762199,158.666672706604L186.73466742762199,142.3333387374878L172.6396930101126,134.1666717529297L158.54471859260323,142.3333387374878L144.44974417509385,134.1666717529297L130.3547697575845,142.3333387374878L116.25979534007513,150.5000057220459L102.16482092256577,158.666672706604L88.0698465050564,150.5000057220459L88.0698465050564,134.1666717529297L88.0698465050564,117.83333778381348L88.0698465050564,101.50000381469727L73.97487208754704,93.33333683013916L59.879897670037685,101.50000381469727L59.87989767003768,117.83333778381348L73.97487208754704,126.00000476837158L88.0698465050564,134.1666717529297L102.16482092256578,142.3333387374878L102.16482092256578,158.666672706604L88.06984650505642,166.8333396911621L73.97487208754706,175.00000667572021L59.8798976700377,183.16667366027832L59.87989767003769,199.50000762939453L45.78492325252832,207.66667461395264L31.689948835018956,199.50000762939453L31.68994883501896,183.16667366027832L45.78492325252833,175.00000667572021L45.78492325252833,158.666672706604L45.78492325252833,142.3333387374878L45.78492325252833,126.00000476837158L59.8798976700377,117.83333778381348L73.97487208754706,126.00000476837158L88.06984650505642,134.1666717529297L102.16482092256578,142.3333387374878L116.25979534007514,134.1666717529297L116.25979534007514,117.83333778381348L102.16482092256578,109.66667079925537L88.06984650505642,117.83333778381348L73.97487208754706,126.00000476837158L59.8798976700377,134.1666717529297L45.78492325252834,126.00000476837158L45.78492325252834,109.66667079925537L45.78492325252834,93.33333683013916L45.78492325252834,77.00000286102295L31.68994883501897,68.83333587646484L31.689948835018974,52.50000190734863L17.59497441750961,44.33333492279053L17.59497441750961,28.000000953674316L3.5000000000002474,19.83333396911621L3.5000000000002496,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.5000047683716L3.5000000000000013,333.7963008880615L14.468159673804019,327.4444489479065L14.46815967380402,314.74074506759644L25.436319347608038,308.3888931274414L25.43631934760804,295.68518924713135L36.40447902141206,289.3333373069763L36.40447902141206,276.62963342666626L47.372638695216075,270.27778148651123L47.372638695216075,257.5740776062012L47.372638695216075,244.8703737258911L47.372638695216075,232.16666984558105L58.340798369020085,225.81481790542603L69.3089580428241,232.16666984558105L80.27711771662811,238.51852178573608L91.24527739043212,244.8703737258911L102.21343706423615,238.51852178573608L102.21343706423615,225.81481790542603L91.24527739043212,219.462965965271L80.27711771662811,225.81481790542603L69.3089580428241,232.16666984558105L58.340798369020085,238.51852178573608L47.372638695216075,232.16666984558105L47.372638695216075,219.462965965271L47.372638695216075,206.75926208496094L47.372638695216075,194.05555820465088L36.404479021412065,187.70370626449585L36.404479021412065,175.0000023841858L47.37263869521608,168.64815044403076L58.3407983690201,175.0000023841858L58.3407983690201,187.70370626449585L69.30895804282412,194.05555820465088L80.27711771662813,200.4074101448059L91.24527739043214,206.75926208496094L91.24527739043214,219.462965965271L80.27711771662813,225.81481790542603L69.30895804282412,232.16666984558105L58.3407983690201,238.51852178573608L58.3407983690201,251.22222566604614L69.30895804282412,257.5740776062012L80.27711771662813,251.22222566604614L80.27711771662813,238.51852178573608L80.27711771662813,225.81481790542603L80.27711771662813,213.11111402511597L91.24527739043214,206.75926208496094L102.21343706423615,213.11111402511597L113.18159673804017,219.462965965271L124.1497564118442,225.81481790542603L135.11791608564823,219.462965965271L146.08607575945226,225.81481790542603L157.05423543325628,219.462965965271L157.05423543325628,206.75926208496094L146.08607575945226,200.4074101448059L135.11791608564823,206.75926208496094L124.1497564118442,200.4074101448059L113.18159673804017,206.75926208496094L102.21343706423616,213.11111402511597L91.24527739043215,219.462965965271L80.27711771662814,213.11111402511597L80.27711771662814,200.4074101448059L80.27711771662814,187.70370626449585L80.27711771662814,175.0000023841858L69.30895804282413,168.64815044403076L58.34079836902011,175.0000023841858L58.34079836902011,187.70370626449585L69.30895804282413,194.05555820465088L80.27711771662815,200.4074101448059L91.24527739043218,206.75926208496094L91.24527739043218,219.462965965271L80.27711771662815,225.81481790542603L69.30895804282414,232.16666984558105L58.340798369020135,238.51852178573608L58.340798369020135,251.22222566604614L47.37263869521612,257.5740776062012L36.40447902141211,251.22222566604614L36.40447902141211,238.51852178573608L47.372638695216125,232.16666984558105L47.372638695216125,219.462965965271L47.372638695216125,206.75926208496094L47.372638695216125,194.05555820465088L58.34079836902014,187.70370626449585L69.30895804282416,194.05555820465088L80.27711771662817,200.4074101448059L91.24527739043218,206.75926208496094L102.2134370642362,200.4074101448059L102.2134370642362,187.70370626449585L91.24527739043218,181.35185432434082L80.27711771662817,187.70370626449585L69.30895804282416,194.05555820465088L58.34079836902014,200.4074101448059L47.37263869521613,194.05555820465088L47.37263869521613,181.35185432434082L47.37263869521613,168.64815044403076L47.37263869521613,155.9444465637207L36.404479021412115,149.59259462356567L36.404479021412115,136.88889074325562L25.436319347608105,130.5370388031006L25.43631934760811,117.83333492279053L36.40447902141212,111.4814829826355L47.37263869521614,117.83333492279053L47.37263869521614,130.5370388031006L58.340798369020156,136.88889074325562L58.340798369020156,149.59259462356567L69.30895804282417,155.9444465637207L80.27711771662818,162.29629850387573L91.2452773904322,168.64815044403076L91.2452773904322,181.35185432434082L80.27711771662818,187.70370626449585L69.30895804282417,194.05555820465088L58.340798369020156,200.4074101448059L58.340798369020156,213.11111402511597L69.30895804282417,219.462965965271L80.27711771662818,213.11111402511597L80.27711771662818,200.4074101448059L80.27711771662818,187.70370626449585L80.27711771662818,175.0000023841858L91.2452773904322,168.64815044403076L102.2134370642362,175.0000023841858L113.18159673804023,181.35185432434082L124.14975641184425,187.70370626449585L135.11791608564826,181.35185432434082L146.08607575945229,187.70370626449585L146.08607575945229,200.4074101448059L135.11791608564826,206.75926208496094L124.14975641184425,200.4074101448059L113.18159673804023,206.75926208496094L102.2134370642362,213.11111402511597L91.2452773904322,219.462965965271L80.27711771662818,213.11111402511597L80.27711771662818,200.4074101448059L80.27711771662818,187.70370626449585L80.27711771662818,175.0000023841858L69.30895804282417,168.64815044403076L58.340798369020156,175.0000023841858L58.340798369020156,187.70370626449585L69.30895804282417,194.05555820465088L80.27711771662818,200.4074101448059L91.2452773904322,206.75926208496094L91.2452773904322,219.462965965271L80.27711771662818,225.81481790542603L69.30895804282417,232.16666984558105L58.340798369020156,238.51852178573608L58.340798369020156,251.22222566604614L47.37263869521614,257.5740776062012L47.37263869521614,270.27778148651123L58.340798369020156,276.62963342666626L69.30895804282417,270.27778148651123L69.30895804282417,257.5740776062012L80.27711771662818,251.22222566604614L80.27711771662818,238.51852178573608L80.27711771662818,225.81481790542603L80.27711771662818,213.11111402511597L91.2452773904322,206.75926208496094L102.2134370642362,213.11111402511597L113.18159673804023,219.462965965271L124.14975641184425,225.81481790542603L135.11791608564826,219.462965965271L135.11791608564826,206.75926208496094L124.14975641184425,200.4074101448059L113.18159673804023,206.75926208496094L102.2134370642362,213.11111402511597L91.2452773904322,219.462965965271L80.27711771662818,213.11111402511597L80.27711771662818,200.4074101448059L80.27711771662818,187.70370626449585L80.27711771662818,175.0000023841858L69.30895804282417,168.64815044403076L69.30895804282417,155.9444465637207L80.27711771662818,149.59259462356567L91.2452773904322,155.9444465637207L91.2452773904322,168.64815044403076L102.2134370642362,175.0000023841858L113.18159673804023,181.35185432434082L124.14975641184425,187.70370626449585L124.14975641184425,200.4074101448059L113.18159673804023,206.75926208496094L102.2134370642362,213.11111402511597L91.2452773904322,219.462965965271L91.2452773904322,232.16666984558105L102.2134370642362,238.51852178573608L113.18159673804023,232.16666984558105L113.18159673804023,219.462965965271L113.18159673804023,206.75926208496094L113.18159673804023,194.05555820465088L124.14975641184425,187.70370626449585L135.11791608564826,194.05555820465088L146.08607575945229,200.4074101448059L157.0542354332563,206.75926208496094L168.02239510706033,200.4074101448059L178.99055478086436,206.75926208496094L189.95871445466838,200.4074101448059L200.9268741284724,206.75926208496094L211.89503380227643,200.4074101448059L211.89503380227643,187.70370626449585L200.9268741284724,181.35185432434082L189.95871445466838,187.70370626449585L178.99055478086436,181.35185432434082L168.02239510706033,187.70370626449585L157.0542354332563,181.35185432434082L146.08607575945229,187.70370626449585L135.11791608564826,194.05555820465088L124.14975641184425,200.4074101448059L113.18159673804023,194.05555820465088L113.18159673804023,181.35185432434082L113.18159673804023,168.64815044403076L113.18159673804023,155.9444465637207L102.2134370642362,149.59259462356567L91.2452773904322,155.9444465637207L91.2452773904322,168.64815044403076L102.21343706423622,175.0000023841858L113.18159673804024,181.35185432434082L124.14975641184427,187.70370626449585L124.14975641184427,200.4074101448059L113.18159673804024,206.75926208496094L102.21343706423623,213.11111402511597L91.24527739043222,219.462965965271L91.24527739043222,232.16666984558105L80.2771177166282,238.51852178573608L69.30895804282419,232.16666984558105L69.30895804282419,219.462965965271L80.2771177166282,213.11111402511597L80.2771177166282,200.4074101448059L80.2771177166282,187.70370626449585L80.2771177166282,175.0000023841858L91.24527739043222,168.64815044403076L102.21343706423623,175.0000023841858L113.18159673804024,181.35185432434082L124.14975641184427,187.70370626449585L135.1179160856483,181.35185432434082L135.1179160856483,168.64815044403076L124.14975641184427,162.29629850387573L113.18159673804024,168.64815044403076L102.21343706423623,175.0000023841858L91.24527739043222,181.35185432434082L80.2771177166282,175.0000023841858L80.2771177166282,162.29629850387573L80.2771177166282,149.59259462356567L80.2771177166282,136.88889074325562L69.30895804282419,130.5370388031006L69.30895804282419,117.83333492279053L58.34079836902018,111.4814829826355L47.37263869521617,117.83333492279053L47.37263869521616,130.5370388031006L58.34079836902018,136.88889074325562L58.34079836902018,149.59259462356567L69.30895804282419,155.9444465637207L80.27711771662821,162.29629850387573L91.24527739043224,168.64815044403076L91.24527739043224,181.35185432434082L80.27711771662823,187.70370626449585L69.30895804282422,194.05555820465088L58.3407983690202,200.4074101448059L58.3407983690202,213.11111402511597L69.30895804282422,219.462965965271L80.27711771662824,213.11111402511597L80.27711771662824,200.4074101448059L80.27711771662824,187.70370626449585L80.27711771662824,175.0000023841858L91.24527739043226,168.64815044403076L102.21343706423629,175.0000023841858L113.18159673804031,181.35185432434082L124.14975641184434,187.70370626449585L135.11791608564835,181.35185432434082L146.08607575945237,187.70370626449585L146.08607575945237,200.4074101448059L135.11791608564835,206.75926208496094L124.14975641184434,200.4074101448059L113.18159673804031,206.75926208496094L102.2134370642363,213.11111402511597L91.24527739043228,219.462965965271L80.27711771662827,213.11111402511597L80.27711771662827,200.4074101448059L80.27711771662827,187.70370626449585L80.27711771662827,175.0000023841858L69.30895804282426,168.64815044403076L58.34079836902025,175.0000023841858L58.34079836902025,187.70370626449585L69.30895804282426,194.05555820465088L80.27711771662828,200.4074101448059L91.2452773904323,206.75926208496094L91.2452773904323,219.462965965271L80.2771177166283,225.81481790542603L69.30895804282429,232.16666984558105L58.34079836902027,238.51852178573608L58.34079836902027,251.22222566604614L47.37263869521625,257.5740776062012L47.37263869521625,270.27778148651123L36.40447902141223,276.62963342666626L25.43631934760822,270.27778148651123L25.43631934760822,257.5740776062012L36.404479021412236,251.22222566604614L36.404479021412236,238.51852178573608L47.37263869521625,232.16666984558105L47.37263869521625,219.462965965271L47.37263869521625,206.75926208496094L47.37263869521625,194.05555820465088L58.34079836902027,187.70370626449585L69.30895804282429,194.05555820465088L80.2771177166283,200.4074101448059L91.2452773904323,206.75926208496094L102.21343706423632,200.4074101448059L102.21343706423632,187.70370626449585L91.2452773904323,181.35185432434082L80.2771177166283,187.70370626449585L69.30895804282429,194.05555820465088L58.34079836902027,200.4074101448059L47.37263869521625,194.05555820465088L47.37263869521625,181.35185432434082L47.37263869521625,168.64815044403076L47.37263869521625,155.9444465637207L36.40447902141224,149.59259462356567L36.40447902141224,136.88889074325562L47.37263869521626,130.5370388031006L58.34079836902028,136.88889074325562L58.34079836902028,149.59259462356567L69.30895804282429,155.9444465637207L80.27711771662831,162.29629850387573L91.24527739043232,168.64815044403076L91.24527739043232,181.35185432434082L80.27711771662831,187.70370626449585L69.30895804282429,194.05555820465088L58.34079836902028,200.4074101448059L58.34079836902028,213.11111402511597L69.30895804282429,219.462965965271L80.27711771662831,213.11111402511597L80.27711771662831,200.4074101448059L80.27711771662831,187.70370626449585L80.27711771662831,175.0000023841858L91.24527739043232,168.64815044403076L102.21343706423633,175.0000023841858L113.18159673804035,181.35185432434082L124.14975641184438,187.70370626449585L135.1179160856484,181.35185432434082L146.08607575945243,187.70370626449585L157.05423543325645,181.35185432434082L157.05423543325645,168.64815044403076L146.08607575945243,162.29629850387573L135.1179160856484,168.64815044403076L124.14975641184438,162.29629850387573L113.18159673804035,168.64815044403076L102.21343706423635,175.0000023841858L91.24527739043234,181.35185432434082L80.27711771662831,175.0000023841858L80.27711771662831,162.29629850387573L80.27711771662831,149.59259462356567L80.27711771662831,136.88889074325562L69.3089580428243,130.5370388031006L58.34079836902029,136.88889074325562L58.34079836902029,149.59259462356567L69.3089580428243,155.9444465637207L80.27711771662833,162.29629850387573L91.24527739043235,168.64815044403076L91.24527739043235,181.35185432434082L80.27711771662834,187.70370626449585L69.30895804282433,194.05555820465088L58.34079836902031,200.4074101448059L58.34079836902031,213.11111402511597L47.3726386952163,219.462965965271L36.404479021412286,213.11111402511597L36.404479021412286,200.4074101448059L47.3726386952163,194.05555820465088L47.3726386952163,181.35185432434082L47.3726386952163,168.64815044403076L47.3726386952163,155.9444465637207L58.34079836902033,149.59259462356567L69.30895804282434,155.9444465637207L80.27711771662835,162.29629850387573L91.24527739043236,168.64815044403076L102.21343706423637,162.29629850387573L102.21343706423637,149.59259462356567L91.24527739043236,143.24074268341064L80.27711771662835,149.59259462356567L69.30895804282434,155.9444465637207L58.34079836902033,162.29629850387573L47.37263869521631,155.9444465637207L47.37263869521631,143.24074268341064L47.37263869521631,130.5370388031006L47.37263869521631,117.83333492279053L36.4044790214123,111.4814829826355L36.4044790214123,98.77777910232544L25.436319347608286,92.42592716217041L25.436319347608286,79.72222328186035L14.468159673804273,73.37037134170532L14.468159673804275,60.666667461395264L25.43631934760829,54.314815521240234L36.40447902141231,60.666667461395264L36.40447902141231,73.37037134170532L47.372638695216324,79.72222328186035L47.372638695216324,92.42592716217041L58.340798369020334,98.77777910232544L58.340798369020334,111.4814829826355L69.30895804282434,117.83333492279053L80.27711771662837,124.18518686294556L91.24527739043238,130.5370388031006L91.24527739043238,143.24074268341064L80.27711771662837,149.59259462356567L69.30895804282434,155.9444465637207L58.340798369020334,162.29629850387573L58.340798369020334,175.0000023841858L69.30895804282434,181.35185432434082L80.27711771662837,175.0000023841858L80.27711771662837,162.29629850387573L80.27711771662837,149.59259462356567L80.27711771662837,136.88889074325562L91.24527739043238,130.5370388031006L102.21343706423639,136.88889074325562L113.1815967380404,143.24074268341064L124.14975641184442,149.59259462356567L135.11791608564846,143.24074268341064L146.08607575945248,149.59259462356567L146.08607575945248,162.29629850387573L135.11791608564846,168.64815044403076L124.14975641184442,162.29629850387573L113.1815967380404,168.64815044403076L102.21343706423639,175.0000023841858L91.24527739043238,181.35185432434082L80.27711771662837,175.0000023841858L80.27711771662837,162.29629850387573L80.27711771662837,149.59259462356567L80.27711771662837,136.88889074325562L69.30895804282434,130.5370388031006L58.340798369020334,136.88889074325562L58.340798369020334,149.59259462356567L69.30895804282434,155.9444465637207L80.27711771662837,162.29629850387573L91.24527739043238,168.64815044403076L91.24527739043238,181.35185432434082L80.27711771662837,187.70370626449585L69.30895804282434,194.05555820465088L58.340798369020334,200.4074101448059L58.340798369020334,213.11111402511597L47.372638695216324,219.462965965271L47.372638695216324,232.16666984558105L58.340798369020334,238.51852178573608L69.30895804282434,232.16666984558105L69.30895804282434,219.462965965271L80.27711771662837,213.11111402511597L80.27711771662837,200.4074101448059L80.27711771662837,187.70370626449585L80.27711771662837,175.0000023841858L91.24527739043238,168.64815044403076L102.21343706423639,175.0000023841858L113.1815967380404,181.35185432434082L124.14975641184442,187.70370626449585L135.11791608564846,181.35185432434082L135.11791608564846,168.64815044403076L124.14975641184442,162.29629850387573L113.1815967380404,168.64815044403076L102.21343706423639,175.0000023841858L91.24527739043238,181.35185432434082L80.27711771662837,175.0000023841858L80.27711771662837,162.29629850387573L80.27711771662837,149.59259462356567L80.27711771662837,136.88889074325562L69.30895804282434,130.5370388031006L69.30895804282434,117.83333492279053L80.27711771662837,111.4814829826355L91.24527739043238,117.83333492279053L91.24527739043238,130.5370388031006L102.21343706423639,136.88889074325562L113.1815967380404,143.24074268341064L124.14975641184442,149.59259462356567L124.14975641184442,162.29629850387573L113.1815967380404,168.64815044403076L102.21343706423639,175.0000023841858L91.24527739043238,181.35185432434082L91.24527739043238,194.05555820465088L102.21343706423639,200.4074101448059L113.1815967380404,194.05555820465088L113.1815967380404,181.35185432434082L113.1815967380404,168.64815044403076L113.1815967380404,155.9444465637207L124.14975641184442,149.59259462356567L135.11791608564846,155.9444465637207L146.08607575945248,162.29629850387573L157.0542354332565,168.64815044403076L168.02239510706053,162.29629850387573L178.99055478086456,168.64815044403076L189.95871445466858,162.29629850387573L200.9268741284726,168.64815044403076L200.9268741284726,181.35185432434082L189.95871445466858,187.70370626449585L178.99055478086456,181.35185432434082L168.02239510706053,187.70370626449585L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184442,200.4074101448059L113.1815967380404,194.05555820465088L113.1815967380404,181.35185432434082L113.1815967380404,168.64815044403076L113.1815967380404,155.9444465637207L102.21343706423639,149.59259462356567L91.24527739043238,155.9444465637207L91.24527739043238,168.64815044403076L102.21343706423639,175.0000023841858L113.1815967380404,181.35185432434082L124.14975641184442,187.70370626449585L124.14975641184442,200.4074101448059L113.1815967380404,206.75926208496094L102.21343706423639,213.11111402511597L91.24527739043238,219.462965965271L91.24527739043238,232.16666984558105L80.27711771662837,238.51852178573608L69.30895804282434,232.16666984558105L69.30895804282434,219.462965965271L80.27711771662837,213.11111402511597L80.27711771662837,200.4074101448059L80.27711771662837,187.70370626449585L80.27711771662837,175.0000023841858L91.24527739043238,168.64815044403076L102.21343706423639,175.0000023841858L113.1815967380404,181.35185432434082L124.14975641184442,187.70370626449585L135.11791608564846,181.35185432434082L135.11791608564846,168.64815044403076L124.14975641184442,162.29629850387573L113.1815967380404,168.64815044403076L102.21343706423639,175.0000023841858L91.24527739043238,181.35185432434082L80.27711771662837,175.0000023841858L80.27711771662837,162.29629850387573L80.27711771662837,149.59259462356567L80.27711771662837,136.88889074325562L69.30895804282434,130.5370388031006L69.30895804282434,117.83333492279053L58.340798369020334,111.4814829826355L47.372638695216324,117.83333492279053L47.372638695216324,130.5370388031006L58.340798369020334,136.88889074325562L58.340798369020334,149.59259462356567L69.30895804282434,155.9444465637207L80.27711771662837,162.29629850387573L91.24527739043238,168.64815044403076L91.24527739043238,181.35185432434082L80.27711771662837,187.70370626449585L69.30895804282434,194.05555820465088L58.340798369020334,200.4074101448059L58.340798369020334,213.11111402511597L69.30895804282434,219.462965965271L80.27711771662837,213.11111402511597L80.27711771662837,200.4074101448059L80.27711771662837,187.70370626449585L80.27711771662837,175.0000023841858L91.24527739043238,168.64815044403076L102.21343706423639,175.0000023841858L113.1815967380404,181.35185432434082L124.14975641184442,187.70370626449585L135.11791608564846,181.35185432434082L146.08607575945248,187.70370626449585L146.08607575945248,200.4074101448059L135.11791608564846,206.75926208496094L124.14975641184442,200.4074101448059L113.1815967380404,206.75926208496094L102.21343706423639,213.11111402511597L91.24527739043238,219.462965965271L80.27711771662837,213.11111402511597L80.27711771662837,200.4074101448059L80.27711771662837,187.70370626449585L80.27711771662837,175.0000023841858L69.30895804282434,168.64815044403076L58.340798369020334,175.0000023841858L58.340798369020334,187.70370626449585L69.30895804282434,194.05555820465088L80.27711771662837,200.4074101448059L91.24527739043238,206.75926208496094L91.24527739043238,219.462965965271L80.27711771662837,225.81481790542603L69.30895804282434,232.16666984558105L58.340798369020334,238.51852178573608L58.340798369020334,251.22222566604614L47.372638695216324,257.5740776062012L47.372638695216324,270.27778148651123L36.40447902141231,276.62963342666626L36.40447902141231,289.3333373069763L47.372638695216324,295.68518924713135L58.340798369020334,289.3333373069763L58.340798369020334,276.62963342666626L69.30895804282434,270.27778148651123L69.30895804282434,257.5740776062012L80.27711771662837,251.22222566604614L80.27711771662837,238.51852178573608L80.27711771662837,225.81481790542603L80.27711771662837,213.11111402511597L91.24527739043238,206.75926208496094L102.21343706423639,213.11111402511597L113.1815967380404,219.462965965271L124.14975641184442,225.81481790542603L135.11791608564846,219.462965965271L135.11791608564846,206.75926208496094L124.14975641184442,200.4074101448059L113.1815967380404,206.75926208496094L102.21343706423639,213.11111402511597L91.24527739043238,219.462965965271L80.27711771662837,213.11111402511597L80.27711771662837,200.4074101448059L80.27711771662837,187.70370626449585L80.27711771662837,175.0000023841858L69.30895804282434,168.64815044403076L69.30895804282434,155.9444465637207L80.27711771662837,149.59259462356567L91.24527739043238,155.9444465637207L91.24527739043238,168.64815044403076L102.21343706423639,175.0000023841858L113.1815967380404,181.35185432434082L124.14975641184442,187.70370626449585L124.14975641184442,200.4074101448059L113.1815967380404,206.75926208496094L102.21343706423639,213.11111402511597L91.24527739043238,219.462965965271L91.24527739043238,232.16666984558105L102.21343706423639,238.51852178573608L113.1815967380404,232.16666984558105L113.1815967380404,219.462965965271L113.1815967380404,206.75926208496094L113.1815967380404,194.05555820465088L124.14975641184442,187.70370626449585L135.11791608564846,194.05555820465088L146.08607575945248,200.4074101448059L157.0542354332565,206.75926208496094L168.02239510706053,200.4074101448059L178.99055478086456,206.75926208496094L189.95871445466858,200.4074101448059L189.95871445466858,187.70370626449585L178.99055478086456,181.35185432434082L168.02239510706053,187.70370626449585L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184442,200.4074101448059L113.1815967380404,194.05555820465088L113.1815967380404,181.35185432434082L113.1815967380404,168.64815044403076L113.1815967380404,155.9444465637207L102.21343706423639,149.59259462356567L91.24527739043238,155.9444465637207L91.24527739043238,168.64815044403076L102.2134370642364,175.0000023841858L113.18159673804043,181.35185432434082L124.14975641184445,187.70370626449585L124.14975641184445,200.4074101448059L113.18159673804043,206.75926208496094L102.21343706423642,213.11111402511597L91.24527739043239,219.462965965271L91.24527739043239,232.16666984558105L80.27711771662838,238.51852178573608L69.30895804282437,232.16666984558105L69.30895804282437,219.462965965271L80.27711771662838,213.11111402511597L80.27711771662838,200.4074101448059L80.27711771662838,187.70370626449585L80.27711771662838,175.0000023841858L91.24527739043239,168.64815044403076L102.21343706423642,175.0000023841858L113.18159673804043,181.35185432434082L124.14975641184445,187.70370626449585L135.11791608564846,181.35185432434082L135.11791608564846,168.64815044403076L124.14975641184445,162.29629850387573L113.18159673804043,168.64815044403076L102.21343706423642,175.0000023841858L91.24527739043239,181.35185432434082L80.27711771662838,175.0000023841858L80.27711771662838,162.29629850387573L80.27711771662838,149.59259462356567L80.27711771662838,136.88889074325562L69.30895804282437,130.5370388031006L69.30895804282437,117.83333492279053L58.340798369020355,111.4814829826355L58.340798369020355,98.77777910232544L69.30895804282437,92.42592716217041L80.27711771662838,98.77777910232544L80.27711771662838,111.4814829826355L91.24527739043239,117.83333492279053L91.24527739043239,130.5370388031006L102.21343706423642,136.88889074325562L113.18159673804043,143.24074268341064L124.14975641184445,149.59259462356567L124.14975641184445,162.29629850387573L113.18159673804043,168.64815044403076L102.21343706423642,175.0000023841858L91.24527739043239,181.35185432434082L91.24527739043239,194.05555820465088L102.21343706423642,200.4074101448059L113.18159673804043,194.05555820465088L113.18159673804043,181.35185432434082L113.18159673804043,168.64815044403076L113.18159673804043,155.9444465637207L124.14975641184445,149.59259462356567L135.11791608564846,155.9444465637207L146.08607575945248,162.29629850387573L157.0542354332565,168.64815044403076L168.02239510706053,162.29629850387573L178.99055478086456,168.64815044403076L178.99055478086456,181.35185432434082L168.02239510706053,187.70370626449585L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184445,200.4074101448059L113.18159673804043,194.05555820465088L113.18159673804043,181.35185432434082L113.18159673804043,168.64815044403076L113.18159673804043,155.9444465637207L102.21343706423642,149.59259462356567L91.24527739043239,155.9444465637207L91.24527739043239,168.64815044403076L102.21343706423642,175.0000023841858L113.18159673804043,181.35185432434082L124.14975641184445,187.70370626449585L124.14975641184445,200.4074101448059L113.18159673804043,206.75926208496094L102.21343706423642,213.11111402511597L91.24527739043239,219.462965965271L91.24527739043239,232.16666984558105L80.27711771662838,238.51852178573608L80.27711771662838,251.22222566604614L91.24527739043239,257.5740776062012L102.21343706423642,251.22222566604614L102.21343706423642,238.51852178573608L113.18159673804043,232.16666984558105L113.18159673804043,219.462965965271L113.18159673804043,206.75926208496094L113.18159673804043,194.05555820465088L124.14975641184445,187.70370626449585L135.11791608564846,194.05555820465088L146.08607575945248,200.4074101448059L157.0542354332565,206.75926208496094L168.02239510706053,200.4074101448059L168.02239510706053,187.70370626449585L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184445,200.4074101448059L113.18159673804043,194.05555820465088L113.18159673804043,181.35185432434082L113.18159673804043,168.64815044403076L113.18159673804043,155.9444465637207L102.21343706423642,149.59259462356567L102.21343706423642,136.88889074325562L113.18159673804043,130.5370388031006L124.14975641184445,136.88889074325562L124.14975641184445,149.59259462356567L135.11791608564846,155.9444465637207L146.08607575945248,162.29629850387573L157.0542354332565,168.64815044403076L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184445,200.4074101448059L124.14975641184445,213.11111402511597L135.11791608564846,219.462965965271L146.08607575945248,213.11111402511597L146.08607575945248,200.4074101448059L146.08607575945248,187.70370626449585L146.08607575945248,175.0000023841858L157.0542354332565,168.64815044403076L168.02239510706053,175.0000023841858L178.99055478086456,181.35185432434082L189.95871445466858,187.70370626449585L200.9268741284726,181.35185432434082L211.89503380227663,187.70370626449585L222.86319347608062,181.35185432434082L233.83135314988462,187.70370626449585L244.79951282368862,181.35185432434082L255.76767249749264,187.70370626449585L266.73583217129664,181.35185432434082L266.73583217129664,168.64815044403076L255.76767249749264,162.29629850387573L244.79951282368862,168.64815044403076L233.83135314988462,162.29629850387573L222.86319347608062,168.64815044403076L211.89503380227663,162.29629850387573L200.9268741284726,168.64815044403076L189.95871445466858,162.29629850387573L178.99055478086456,168.64815044403076L168.02239510706053,175.0000023841858L157.0542354332565,181.35185432434082L146.08607575945248,175.0000023841858L146.08607575945248,162.29629850387573L146.08607575945248,149.59259462356567L146.08607575945248,136.88889074325562L135.11791608564846,130.5370388031006L124.14975641184442,136.88889074325562L124.14975641184442,149.59259462356567L135.11791608564846,155.9444465637207L146.08607575945248,162.29629850387573L157.0542354332565,168.64815044403076L157.0542354332565,181.35185432434082L146.08607575945248,187.70370626449585L135.11791608564846,194.05555820465088L124.14975641184442,200.4074101448059L124.14975641184442,213.11111402511597L113.1815967380404,219.462965965271L102.21343706423639,213.11111402511597L102.21343706423639,200.4074101448059L113.1815967380404,194.05555820465088L113.1815967380404,181.35185432434082L113.1815967380404,168.64815044403076L113.1815967380404,155.9444465637207L124.14975641184442,149.59259462356567L135.11791608564846,155.9444465637207L146.08607575945248,162.29629850387573L157.0542354332565,168.64815044403076L168.02239510706053,162.29629850387573L168.02239510706053,149.59259462356567L157.0542354332565,143.24074268341064L146.08607575945248,149.59259462356567L135.11791608564846,155.9444465637207L124.14975641184442,162.29629850387573L113.1815967380404,155.9444465637207L113.1815967380404,143.24074268341064L113.1815967380404,130.5370388031006L113.1815967380404,117.83333492279053L102.21343706423639,111.4814829826355L102.21343706423639,98.77777910232544L91.24527739043238,92.42592716217041L80.27711771662837,98.77777910232544L80.27711771662837,111.4814829826355L91.24527739043238,117.83333492279053L91.24527739043238,130.5370388031006L102.2134370642364,136.88889074325562L113.18159673804043,143.24074268341064L124.14975641184445,149.59259462356567L124.14975641184445,162.29629850387573L113.18159673804043,168.64815044403076L102.21343706423642,175.0000023841858L91.24527739043239,181.35185432434082L91.24527739043239,194.05555820465088L102.21343706423642,200.4074101448059L113.18159673804044,194.05555820465088L113.18159673804044,181.35185432434082L113.18159673804044,168.64815044403076L113.18159673804044,155.9444465637207L124.14975641184446,149.59259462356567L135.1179160856485,155.9444465637207L146.0860757594525,162.29629850387573L157.05423543325654,168.64815044403076L168.02239510706056,162.29629850387573L178.99055478086458,168.64815044403076L178.99055478086458,181.35185432434082L168.02239510706056,187.70370626449585L157.05423543325654,181.35185432434082L146.0860757594525,187.70370626449585L135.1179160856485,194.05555820465088L124.14975641184446,200.4074101448059L113.18159673804044,194.05555820465088L113.18159673804044,181.35185432434082L113.18159673804044,168.64815044403076L113.18159673804044,155.9444465637207L102.21343706423643,149.59259462356567L91.24527739043242,155.9444465637207L91.24527739043242,168.64815044403076L102.21343706423644,175.0000023841858L113.18159673804047,181.35185432434082L124.14975641184449,187.70370626449585L124.14975641184449,200.4074101448059L113.18159673804047,206.75926208496094L102.21343706423646,213.11111402511597L91.24527739043245,219.462965965271L91.24527739043245,232.16666984558105L80.27711771662842,238.51852178573608L80.27711771662842,251.22222566604614L69.30895804282441,257.5740776062012L58.340798369020405,251.22222566604614L58.340798369020405,238.51852178573608L69.30895804282441,232.16666984558105L69.30895804282441,219.462965965271L80.27711771662842,213.11111402511597L80.27711771662842,200.4074101448059L80.27711771662842,187.70370626449585L80.27711771662842,175.0000023841858L91.24527739043245,168.64815044403076L102.21343706423646,175.0000023841858L113.18159673804047,181.35185432434082L124.14975641184449,187.70370626449585L135.11791608564852,181.35185432434082L135.11791608564852,168.64815044403076L124.14975641184449,162.29629850387573L113.18159673804047,168.64815044403076L102.21343706423646,175.0000023841858L91.24527739043245,181.35185432434082L80.27711771662842,175.0000023841858L80.27711771662842,162.29629850387573L80.27711771662842,149.59259462356567L80.27711771662842,136.88889074325562L69.30895804282441,130.5370388031006L69.30895804282441,117.83333492279053L80.27711771662842,111.4814829826355L91.24527739043245,117.83333492279053L91.24527739043245,130.5370388031006L102.21343706423646,136.88889074325562L113.18159673804047,143.24074268341064L124.14975641184449,149.59259462356567L124.14975641184449,162.29629850387573L113.18159673804047,168.64815044403076L102.21343706423646,175.0000023841858L91.24527739043245,181.35185432434082L91.24527739043245,194.05555820465088L102.21343706423646,200.4074101448059L113.18159673804047,194.05555820465088L113.18159673804047,181.35185432434082L113.18159673804047,168.64815044403076L113.18159673804047,155.9444465637207L124.14975641184449,149.59259462356567L135.11791608564852,155.9444465637207L146.08607575945254,162.29629850387573L157.05423543325657,168.64815044403076L168.0223951070606,162.29629850387573L178.9905547808646,168.64815044403076L189.95871445466864,162.29629850387573L189.95871445466864,149.59259462356567L178.9905547808646,143.24074268341064L168.0223951070606,149.59259462356567L157.05423543325657,143.24074268341064L146.08607575945254,149.59259462356567L135.11791608564852,155.9444465637207L124.14975641184449,162.29629850387573L113.18159673804047,155.9444465637207L113.18159673804047,143.24074268341064L113.18159673804047,130.5370388031006L113.18159673804047,117.83333492279053L102.21343706423646,111.4814829826355L91.24527739043245,117.83333492279053L91.24527739043245,130.5370388031006L102.21343706423647,136.88889074325562L113.1815967380405,143.24074268341064L124.14975641184452,149.59259462356567L124.14975641184452,162.29629850387573L113.1815967380405,168.64815044403076L102.21343706423647,175.0000023841858L91.24527739043246,181.35185432434082L91.24527739043246,194.05555820465088L80.27711771662845,200.4074101448059L69.30895804282444,194.05555820465088L69.30895804282444,181.35185432434082L80.27711771662845,175.0000023841858L80.27711771662845,162.29629850387573L80.27711771662845,149.59259462356567L80.27711771662845,136.88889074325562L91.24527739043246,130.5370388031006L102.21343706423647,136.88889074325562L113.1815967380405,143.24074268341064L124.14975641184452,149.59259462356567L135.11791608564855,143.24074268341064L135.11791608564855,130.5370388031006L124.14975641184452,124.18518686294556L113.1815967380405,130.5370388031006L102.21343706423647,136.88889074325562L91.24527739043246,143.24074268341064L80.27711771662845,136.88889074325562L80.27711771662845,124.18518686294556L80.27711771662845,111.4814829826355L80.27711771662845,98.77777910232544L69.30895804282444,92.42592716217041L69.30895804282444,79.72222328186035L58.340798369020426,73.37037134170532L58.340798369020426,60.666667461395264L47.37263869521641,54.314815521240234L36.4044790214124,60.666667461395264L36.40447902141239,73.37037134170532L47.37263869521641,79.72222328186035L47.37263869521641,92.42592716217041L58.340798369020426,98.77777910232544L58.340798369020426,111.4814829826355L69.30895804282444,117.83333492279053L80.27711771662847,124.18518686294556L91.24527739043249,130.5370388031006L91.24527739043249,143.24074268341064L80.27711771662847,149.59259462356567L69.30895804282446,155.9444465637207L58.34079836902045,162.29629850387573L58.34079836902045,175.0000023841858L69.30895804282446,181.35185432434082L80.27711771662848,175.0000023841858L80.27711771662848,162.29629850387573L80.27711771662848,149.59259462356567L80.27711771662848,136.88889074325562L91.2452773904325,130.5370388031006L102.21343706423653,136.88889074325562L113.18159673804055,143.24074268341064L124.14975641184458,149.59259462356567L135.1179160856486,143.24074268341064L146.08607575945263,149.59259462356567L146.08607575945263,162.29629850387573L135.1179160856486,168.64815044403076L124.14975641184458,162.29629850387573L113.18159673804055,168.64815044403076L102.21343706423654,175.0000023841858L91.24527739043253,181.35185432434082L80.27711771662852,175.0000023841858L80.27711771662852,162.29629850387573L80.27711771662852,149.59259462356567L80.27711771662852,136.88889074325562L69.3089580428245,130.5370388031006L58.34079836902049,136.88889074325562L58.34079836902049,149.59259462356567L69.3089580428245,155.9444465637207L80.27711771662852,162.29629850387573L91.24527739043255,168.64815044403076L91.24527739043255,181.35185432434082L80.27711771662854,187.70370626449585L69.30895804282453,194.05555820465088L58.34079836902052,200.4074101448059L58.34079836902052,213.11111402511597L47.3726386952165,219.462965965271L47.372638695216494,232.16666984558105L58.34079836902052,238.51852178573608L69.30895804282454,232.16666984558105L69.30895804282454,219.462965965271L80.27711771662857,213.11111402511597L80.27711771662857,200.4074101448059L80.27711771662857,187.70370626449585L80.27711771662857,175.0000023841858L91.24527739043259,168.64815044403076L102.2134370642366,175.0000023841858L113.18159673804062,181.35185432434082L124.14975641184465,187.70370626449585L135.1179160856487,181.35185432434082L135.1179160856487,168.64815044403076L124.14975641184465,162.29629850387573L113.18159673804062,168.64815044403076L102.2134370642366,175.0000023841858L91.24527739043258,181.35185432434082L80.27711771662857,175.0000023841858L80.27711771662857,162.29629850387573L80.27711771662857,149.59259462356567L80.27711771662857,136.88889074325562L69.30895804282456,130.5370388031006L69.30895804282456,117.83333492279053L80.27711771662858,111.4814829826355L91.2452773904326,117.83333492279053L91.2452773904326,130.5370388031006L102.21343706423663,136.88889074325562L113.18159673804065,143.24074268341064L124.14975641184468,149.59259462356567L124.14975641184468,162.29629850387573L113.18159673804065,168.64815044403076L102.21343706423663,175.0000023841858L91.24527739043262,181.35185432434082L91.24527739043262,194.05555820465088L102.21343706423664,200.4074101448059L113.18159673804067,194.05555820465088L113.18159673804067,181.35185432434082L113.18159673804067,168.64815044403076L113.18159673804067,155.9444465637207L124.14975641184469,149.59259462356567L135.11791608564872,155.9444465637207L146.08607575945274,162.29629850387573L157.05423543325676,168.64815044403076L168.0223951070608,162.29629850387573L178.9905547808648,168.64815044403076L189.95871445466884,162.29629850387573L200.92687412847286,168.64815044403076L200.92687412847286,181.35185432434082L189.95871445466884,187.70370626449585L178.9905547808648,181.35185432434082L168.0223951070608,187.70370626449585L157.05423543325676,181.35185432434082L146.08607575945274,187.70370626449585L135.11791608564872,194.05555820465088L124.14975641184469,200.4074101448059L113.18159673804067,194.05555820465088L113.18159673804067,181.35185432434082L113.18159673804067,168.64815044403076L113.18159673804067,155.9444465637207L102.21343706423666,149.59259462356567L91.24527739043265,155.9444465637207L91.24527739043265,168.64815044403076L102.21343706423667,175.0000023841858L113.1815967380407,181.35185432434082L124.14975641184472,187.70370626449585L124.14975641184472,200.4074101448059L113.1815967380407,206.75926208496094L102.21343706423669,213.11111402511597L91.24527739043266,219.462965965271L91.24527739043266,232.16666984558105L80.27711771662865,238.51852178573608L69.30895804282464,232.16666984558105L69.30895804282464,219.462965965271L80.27711771662865,213.11111402511597L80.27711771662865,200.4074101448059L80.27711771662865,187.70370626449585L80.27711771662865,175.0000023841858L91.24527739043266,168.64815044403076L102.21343706423669,175.0000023841858L113.1815967380407,181.35185432434082L124.14975641184472,187.70370626449585L135.11791608564874,181.35185432434082L135.11791608564874,168.64815044403076L124.14975641184472,162.29629850387573L113.1815967380407,168.64815044403076L102.21343706423669,175.0000023841858L91.24527739043266,181.35185432434082L80.27711771662865,175.0000023841858L80.27711771662865,162.29629850387573L80.27711771662865,149.59259462356567L80.27711771662865,136.88889074325562L69.30895804282464,130.5370388031006L69.30895804282464,117.83333492279053L58.340798369020625,111.4814829826355L47.372638695216615,117.83333492279053L47.37263869521661,130.5370388031006L58.340798369020625,136.88889074325562L58.340798369020625,149.59259462356567L69.30895804282464,155.9444465637207L80.27711771662867,162.29629850387573L91.24527739043269,168.64815044403076L91.24527739043269,181.35185432434082L80.27711771662868,187.70370626449585L69.30895804282467,194.05555820465088L58.34079836902065,200.4074101448059L58.34079836902065,213.11111402511597L69.30895804282467,219.462965965271L80.2771177166287,213.11111402511597L80.2771177166287,200.4074101448059L80.2771177166287,187.70370626449585L80.2771177166287,175.0000023841858L91.24527739043272,168.64815044403076L102.21343706423674,175.0000023841858L113.18159673804077,181.35185432434082L124.14975641184479,187.70370626449585L135.1179160856488,181.35185432434082L146.08607575945283,187.70370626449585L146.08607575945283,200.4074101448059L135.1179160856488,206.75926208496094L124.14975641184479,200.4074101448059L113.18159673804077,206.75926208496094L102.21343706423674,213.11111402511597L91.24527739043273,219.462965965271L80.27711771662872,213.11111402511597L80.27711771662872,200.4074101448059L80.27711771662872,187.70370626449585L80.27711771662872,175.0000023841858L69.30895804282471,168.64815044403076L58.340798369020696,175.0000023841858L58.340798369020696,187.70370626449585L69.30895804282471,194.05555820465088L80.27711771662874,200.4074101448059L91.24527739043276,206.75926208496094L91.24527739043276,219.462965965271L80.27711771662874,225.81481790542603L69.30895804282473,232.16666984558105L58.34079836902072,238.51852178573608L58.34079836902072,251.22222566604614L47.37263869521671,257.5740776062012L47.3726386952167,270.27778148651123L36.40447902141268,276.62963342666626L36.404479021412676,289.3333373069763L25.43631934760866,295.68518924713135L14.468159673804644,289.3333373069763L14.468159673804646,276.62963342666626L25.436319347608663,270.27778148651123L25.436319347608663,257.5740776062012L36.40447902141268,251.22222566604614L36.40447902141268,238.51852178573608L47.3726386952167,232.16666984558105L47.3726386952167,219.462965965271L47.3726386952167,206.75926208496094L47.3726386952167,194.05555820465088L58.34079836902072,187.70370626449585L69.30895804282473,194.05555820465088L80.27711771662874,200.4074101448059L91.24527739043276,206.75926208496094L102.21343706423677,200.4074101448059L102.21343706423677,187.70370626449585L91.24527739043276,181.35185432434082L80.27711771662874,187.70370626449585L69.30895804282473,194.05555820465088L58.34079836902072,200.4074101448059L47.37263869521671,194.05555820465088L47.37263869521671,181.35185432434082L47.37263869521671,168.64815044403076L47.37263869521671,155.9444465637207L36.40447902141269,149.59259462356567L36.40447902141269,136.88889074325562L47.37263869521671,130.5370388031006L58.34079836902073,136.88889074325562L58.34079836902073,149.59259462356567L69.30895804282474,155.9444465637207L80.27711771662875,162.29629850387573L91.24527739043278,168.64815044403076L91.24527739043278,181.35185432434082L80.27711771662875,187.70370626449585L69.30895804282474,194.05555820465088L58.34079836902073,200.4074101448059L58.34079836902073,213.11111402511597L69.30895804282474,219.462965965271L80.27711771662875,213.11111402511597L80.27711771662875,200.4074101448059L80.27711771662875,187.70370626449585L80.27711771662875,175.0000023841858L91.24527739043278,168.64815044403076L102.21343706423679,175.0000023841858L113.18159673804081,181.35185432434082L124.14975641184483,187.70370626449585L135.11791608564886,181.35185432434082L146.08607575945288,187.70370626449585L157.0542354332569,181.35185432434082L157.0542354332569,168.64815044403076L146.08607575945288,162.29629850387573L135.11791608564886,168.64815044403076L124.14975641184483,162.29629850387573L113.18159673804081,168.64815044403076L102.2134370642368,175.0000023841858L91.24527739043278,181.35185432434082L80.27711771662877,175.0000023841858L80.27711771662877,162.29629850387573L80.27711771662877,149.59259462356567L80.27711771662877,136.88889074325562L69.30895804282476,130.5370388031006L58.34079836902074,136.88889074325562L58.34079836902074,149.59259462356567L69.30895804282476,155.9444465637207L80.27711771662878,162.29629850387573L91.2452773904328,168.64815044403076L91.2452773904328,181.35185432434082L80.2771177166288,187.70370626449585L69.30895804282477,194.05555820465088L58.34079836902076,200.4074101448059L58.34079836902076,213.11111402511597L47.37263869521675,219.462965965271L36.40447902141274,213.11111402511597L36.40447902141274,200.4074101448059L47.37263869521676,194.05555820465088L47.37263869521676,181.35185432434082L47.37263869521676,168.64815044403076L47.37263869521676,155.9444465637207L58.340798369020774,149.59259462356567L69.30895804282478,155.9444465637207L80.2771177166288,162.29629850387573L91.24527739043282,168.64815044403076L102.21343706423683,162.29629850387573L102.21343706423683,149.59259462356567L91.24527739043282,143.24074268341064L80.2771177166288,149.59259462356567L69.30895804282478,155.9444465637207L58.340798369020774,162.29629850387573L47.372638695216764,155.9444465637207L47.372638695216764,143.24074268341064L47.372638695216764,130.5370388031006L47.372638695216764,117.83333492279053L36.40447902141275,111.4814829826355L36.40447902141275,98.77777910232544L25.436319347608734,92.42592716217041L25.436319347608737,79.72222328186035L36.404479021412754,73.37037134170532L47.37263869521677,79.72222328186035L47.37263869521677,92.42592716217041L58.34079836902079,98.77777910232544L58.34079836902079,111.4814829826355L69.3089580428248,117.83333492279053L80.27711771662881,124.18518686294556L91.24527739043282,130.5370388031006L91.24527739043282,143.24074268341064L80.27711771662881,149.59259462356567L69.3089580428248,155.9444465637207L58.34079836902079,162.29629850387573L58.34079836902079,175.0000023841858L69.3089580428248,181.35185432434082L80.27711771662881,175.0000023841858L80.27711771662881,162.29629850387573L80.27711771662881,149.59259462356567L80.27711771662881,136.88889074325562L91.24527739043282,130.5370388031006L102.21343706423684,136.88889074325562L113.18159673804085,143.24074268341064L124.14975641184488,149.59259462356567L135.1179160856489,143.24074268341064L146.0860757594529,149.59259462356567L146.0860757594529,162.29629850387573L135.1179160856489,168.64815044403076L124.14975641184488,162.29629850387573L113.18159673804085,168.64815044403076L102.21343706423684,175.0000023841858L91.24527739043282,181.35185432434082L80.27711771662881,175.0000023841858L80.27711771662881,162.29629850387573L80.27711771662881,149.59259462356567L80.27711771662881,136.88889074325562L69.3089580428248,130.5370388031006L58.34079836902079,136.88889074325562L58.34079836902079,149.59259462356567L69.3089580428248,155.9444465637207L80.27711771662881,162.29629850387573L91.24527739043282,168.64815044403076L91.24527739043282,181.35185432434082L80.27711771662881,187.70370626449585L69.3089580428248,194.05555820465088L58.34079836902079,200.4074101448059L58.34079836902079,213.11111402511597L47.37263869521677,219.462965965271L47.37263869521677,232.16666984558105L58.34079836902079,238.51852178573608L69.3089580428248,232.16666984558105L69.3089580428248,219.462965965271L80.27711771662881,213.11111402511597L80.27711771662881,200.4074101448059L80.27711771662881,187.70370626449585L80.27711771662881,175.0000023841858L91.24527739043282,168.64815044403076L102.21343706423684,175.0000023841858L113.18159673804085,181.35185432434082L124.14975641184488,187.70370626449585L135.1179160856489,181.35185432434082L135.1179160856489,168.64815044403076L124.14975641184488,162.29629850387573L113.18159673804085,168.64815044403076L102.21343706423684,175.0000023841858L91.24527739043282,181.35185432434082L80.27711771662881,175.0000023841858L80.27711771662881,162.29629850387573L80.27711771662881,149.59259462356567L80.27711771662881,136.88889074325562L69.3089580428248,130.5370388031006L69.3089580428248,117.83333492279053L80.27711771662881,111.4814829826355L91.24527739043282,117.83333492279053L91.24527739043282,130.5370388031006L102.21343706423684,136.88889074325562L113.18159673804085,143.24074268341064L124.14975641184488,149.59259462356567L124.14975641184488,162.29629850387573L113.18159673804085,168.64815044403076L102.21343706423684,175.0000023841858L91.24527739043282,181.35185432434082L91.24527739043282,194.05555820465088L102.21343706423684,200.4074101448059L113.18159673804085,194.05555820465088L113.18159673804085,181.35185432434082L113.18159673804085,168.64815044403076L113.18159673804085,155.9444465637207L124.14975641184488,149.59259462356567L135.1179160856489,155.9444465637207L146.0860757594529,162.29629850387573L157.05423543325693,168.64815044403076L168.02239510706096,162.29629850387573L178.990554780865,168.64815044403076L189.95871445466904,162.29629850387573L200.92687412847306,168.64815044403076L211.89503380227708,162.29629850387573L211.89503380227708,149.59259462356567L200.92687412847306,143.24074268341064L189.95871445466904,149.59259462356567L178.990554780865,143.24074268341064L168.02239510706096,149.59259462356567L157.05423543325693,143.24074268341064L146.0860757594529,149.59259462356567L135.1179160856489,155.9444465637207L124.14975641184488,162.29629850387573L113.18159673804085,155.9444465637207L113.18159673804085,143.24074268341064L113.18159673804085,130.5370388031006L113.18159673804085,117.83333492279053L102.21343706423684,111.4814829826355L91.24527739043282,117.83333492279053L91.24527739043282,130.5370388031006L102.21343706423684,136.88889074325562L113.18159673804087,143.24074268341064L124.1497564118449,149.59259462356567L124.1497564118449,162.29629850387573L113.18159673804087,168.64815044403076L102.21343706423686,175.0000023841858L91.24527739043285,181.35185432434082L91.24527739043285,194.05555820465088L80.27711771662884,200.4074101448059L69.30895804282483,194.05555820465088L69.30895804282483,181.35185432434082L80.27711771662884,175.0000023841858L80.27711771662884,162.29629850387573L80.27711771662884,149.59259462356567L80.27711771662884,136.88889074325562L91.24527739043285,130.5370388031006L102.21343706423686,136.88889074325562L113.18159673804087,143.24074268341064L124.1497564118449,149.59259462356567L135.11791608564891,143.24074268341064L135.11791608564891,130.5370388031006L124.1497564118449,124.18518686294556L113.18159673804087,130.5370388031006L102.21343706423686,136.88889074325562L91.24527739043285,143.24074268341064L80.27711771662884,136.88889074325562L80.27711771662884,124.18518686294556L80.27711771662884,111.4814829826355L80.27711771662884,98.77777910232544L69.30895804282483,92.42592716217041L69.30895804282483,79.72222328186035L58.34079836902081,73.37037134170532L47.37263869521679,79.72222328186035L47.372638695216786,92.42592716217041L58.34079836902081,98.77777910232544L58.34079836902081,111.4814829826355L69.30895804282483,117.83333492279053L80.27711771662885,124.18518686294556L91.24527739043288,130.5370388031006L91.24527739043288,143.24074268341064L80.27711771662885,149.59259462356567L69.30895804282484,155.9444465637207L58.34079836902083,162.29629850387573L58.34079836902083,175.0000023841858L69.30895804282484,181.35185432434082L80.27711771662887,175.0000023841858L80.27711771662887,162.29629850387573L80.27711771662887,149.59259462356567L80.27711771662887,136.88889074325562L91.24527739043289,130.5370388031006L102.21343706423691,136.88889074325562L113.18159673804094,143.24074268341064L124.14975641184496,149.59259462356567L135.117916085649,143.24074268341064L146.08607575945302,149.59259462356567L146.08607575945302,162.29629850387573L135.117916085649,168.64815044403076L124.14975641184496,162.29629850387573L113.18159673804094,168.64815044403076L102.21343706423693,175.0000023841858L91.24527739043292,181.35185432434082L80.27711771662891,175.0000023841858L80.27711771662891,162.29629850387573L80.27711771662891,149.59259462356567L80.27711771662891,136.88889074325562L69.30895804282488,130.5370388031006L58.340798369020874,136.88889074325562L58.340798369020874,149.59259462356567L69.30895804282488,155.9444465637207L80.27711771662891,162.29629850387573L91.24527739043293,168.64815044403076L91.24527739043293,181.35185432434082L80.27711771662892,187.70370626449585L69.30895804282491,194.05555820465088L58.340798369020895,200.4074101448059L58.340798369020895,213.11111402511597L47.372638695216885,219.462965965271L47.37263869521688,232.16666984558105L36.40447902141286,238.51852178573608L25.436319347608848,232.16666984558105L25.43631934760885,219.462965965271L36.40447902141287,213.11111402511597L36.40447902141287,200.4074101448059L47.372638695216885,194.05555820465088L47.372638695216885,181.35185432434082L47.372638695216885,168.64815044403076L47.372638695216885,155.9444465637207L58.340798369020895,149.59259462356567L69.30895804282491,155.9444465637207L80.27711771662892,162.29629850387573L91.24527739043293,168.64815044403076L102.21343706423696,162.29629850387573L102.21343706423696,149.59259462356567L91.24527739043293,143.24074268341064L80.27711771662892,149.59259462356567L69.30895804282491,155.9444465637207L58.340798369020895,162.29629850387573L47.372638695216885,155.9444465637207L47.372638695216885,143.24074268341064L47.372638695216885,130.5370388031006L47.372638695216885,117.83333492279053L36.40447902141287,111.4814829826355L36.40447902141287,98.77777910232544L47.37263869521689,92.42592716217041L58.34079836902091,98.77777910232544L58.34079836902091,111.4814829826355L69.30895804282493,117.83333492279053L80.27711771662894,124.18518686294556L91.24527739043295,130.5370388031006L91.24527739043295,143.24074268341064L80.27711771662894,149.59259462356567L69.30895804282493,155.9444465637207L58.34079836902091,162.29629850387573L58.34079836902091,175.0000023841858L69.30895804282493,181.35185432434082L80.27711771662894,175.0000023841858L80.27711771662894,162.29629850387573L80.27711771662894,149.59259462356567L80.27711771662894,136.88889074325562L91.24527739043295,130.5370388031006L102.21343706423696,136.88889074325562L113.18159673804098,143.24074268341064L124.149756411845,149.59259462356567L135.11791608564903,143.24074268341064L146.08607575945305,149.59259462356567L157.05423543325708,143.24074268341064L157.05423543325708,130.5370388031006L146.08607575945305,124.18518686294556L135.11791608564903,130.5370388031006L124.149756411845,124.18518686294556L113.18159673804098,130.5370388031006L102.21343706423697,136.88889074325562L91.24527739043296,143.24074268341064L80.27711771662895,136.88889074325562L80.27711771662895,124.18518686294556L80.27711771662895,111.4814829826355L80.27711771662895,98.77777910232544L69.30895804282494,92.42592716217041L58.34079836902092,98.77777910232544L58.34079836902092,111.4814829826355L69.30895804282494,117.83333492279053L80.27711771662896,124.18518686294556L91.24527739043299,130.5370388031006L91.24527739043299,143.24074268341064L80.27711771662896,149.59259462356567L69.30895804282495,155.9444465637207L58.340798369020945,162.29629850387573L58.340798369020945,175.0000023841858L47.37263869521693,181.35185432434082L36.40447902141292,175.0000023841858L36.40447902141292,162.29629850387573L47.372638695216935,155.9444465637207L47.372638695216935,143.24074268341064L47.372638695216935,130.5370388031006L47.372638695216935,117.83333492279053L58.34079836902095,111.4814829826355L69.30895804282497,117.83333492279053L80.27711771662898,124.18518686294556L91.24527739043299,130.5370388031006L102.21343706423701,124.18518686294556L102.21343706423701,111.4814829826355L91.24527739043299,105.12963104248047L80.27711771662898,111.4814829826355L69.30895804282497,117.83333492279053L58.34079836902095,124.18518686294556L47.37263869521694,117.83333492279053L47.37263869521694,105.12963104248047L47.37263869521694,92.42592716217041L47.37263869521694,79.72222328186035L36.404479021412925,73.37037134170532L36.404479021412925,60.666667461395264L25.436319347608915,54.314815521240234L25.43631934760892,41.611111640930176L14.468159673804903,35.25925970077515L14.468159673804905,22.555555820465088L3.50000000000089,16.20370388031006L3.5000000000008917,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg><svg viewBox="0 0 400 350"><rect width="100%" height="100%" fill="white"></rect><path class="ink" d="M3.5,346.50000190734863L3.5000000000000013,335.066668510437L13.372963473633531,329.3500018119812L13.372963473633531,317.9166684150696L23.245926947267062,312.20000171661377L23.245926947267062,300.76666831970215L33.11889042090059,295.05000162124634L33.11889042090059,283.6166682243347L42.991853894534124,277.9000015258789L42.991853894534124,266.4666681289673L52.86481736816764,260.7500014305115L62.73778084180117,255.03333473205566L72.6107443154347,249.31666803359985L72.6107443154347,237.88333463668823L62.73778084180117,232.16666793823242L52.86481736816764,226.4500012397766L42.991853894534124,220.7333345413208L42.991853894534124,209.30000114440918L52.86481736816764,203.58333444595337L62.73778084180117,209.30000114440918L62.73778084180117,220.7333345413208L62.73778084180117,232.16666793823242L62.73778084180117,243.60000133514404L72.6107443154347,249.31666803359985L82.48370778906822,243.60000133514404L92.35667126270175,237.88333463668823L102.22963473633527,232.16666793823242L112.1025982099688,237.88333463668823L121.97556168360234,232.16666793823242L121.97556168360234,220.7333345413208L112.1025982099688,215.016667842865L102.22963473633527,220.7333345413208L92.35667126270175,215.016667842865L82.48370778906822,209.30000114440918L72.6107443154347,203.58333444595337L62.73778084180117,209.30000114440918L62.73778084180117,220.7333345413208L62.73778084180117,232.16666793823242L62.73778084180117,243.60000133514404L52.86481736816764,249.31666803359985L42.991853894534124,243.60000133514404L42.991853894534124,232.16666793823242L52.86481736816764,226.4500012397766L62.73778084180117,220.7333345413208L72.6107443154347,215.016667842865L72.6107443154347,203.58333444595337L62.73778084180117,197.86666774749756L52.86481736816764,192.15000104904175L42.991853894534124,186.43333435058594L42.991853894534124,175.00000095367432L33.1188904209006,169.2833342552185L33.1188904209006,157.85000085830688L42.991853894534124,152.13333415985107L52.86481736816766,157.85000085830688L52.86481736816766,169.2833342552185L62.73778084180118,175.00000095367432L62.73778084180118,186.43333435058594L62.73778084180118,197.86666774749756L62.73778084180118,209.30000114440918L72.6107443154347,215.016667842865L82.48370778906823,209.30000114440918L92.35667126270175,203.58333444595337L102.22963473633529,197.86666774749756L112.10259820996883,203.58333444595337L112.10259820996883,215.016667842865L102.22963473633529,220.7333345413208L92.35667126270177,215.016667842865L82.48370778906825,209.30000114440918L72.61074431543472,203.58333444595337L62.73778084180119,209.30000114440918L62.73778084180119,220.7333345413208L62.73778084180119,232.16666793823242L62.73778084180119,243.60000133514404L52.864817368167664,249.31666803359985L52.864817368167664,260.7500014305115L62.73778084180119,266.4666681289673L72.61074431543472,260.7500014305115L72.61074431543472,249.31666803359985L82.48370778906825,243.60000133514404L92.35667126270177,237.88333463668823L102.22963473633529,232.16666793823242L102.22963473633529,220.7333345413208L92.35667126270177,215.016667842865L82.48370778906825,209.30000114440918L72.61074431543472,203.58333444595337L72.61074431543472,192.15000104904175L82.48370778906825,186.43333435058594L92.35667126270177,192.15000104904175L92.35667126270177,203.58333444595337L92.35667126270177,215.016667842865L92.35667126270177,226.4500012397766L102.22963473633529,232.16666793823242L112.10259820996883,226.4500012397766L121.97556168360236,220.7333345413208L131.84852515723588,215.016667842865L141.72148863086943,220.7333345413208L151.59445210450298,215.016667842865L161.4674155781365,220.7333345413208L171.34037905177004,215.016667842865L171.34037905177004,203.58333444595337L161.4674155781365,197.86666774749756L151.59445210450298,203.58333444595337L141.72148863086943,197.86666774749756L131.84852515723588,203.58333444595337L121.97556168360236,197.86666774749756L112.10259820996883,192.15000104904175L102.22963473633529,186.43333435058594L92.35667126270177,192.15000104904175L92.35667126270177,203.58333444595337L92.35667126270177,215.016667842865L92.35667126270177,226.4500012397766L82.48370778906825,232.16666793823242L72.61074431543472,226.4500012397766L72.61074431543472,215.016667842865L82.48370778906825,209.30000114440918L92.35667126270177,203.58333444595337L102.22963473633529,197.86666774749756L102.22963473633529,186.43333435058594L92.35667126270177,180.71666765213013L82.48370778906825,175.00000095367432L72.61074431543472,169.2833342552185L72.61074431543472,157.85000085830688L62.73778084180119,152.13333415985107L52.864817368167664,157.85000085830688L52.864817368167664,169.2833342552185L62.73778084180119,175.00000095367432L62.73778084180119,186.43333435058594L62.73778084180119,197.86666774749756L62.73778084180119,209.30000114440918L72.61074431543473,215.016667842865L82.48370778906826,209.30000114440918L92.3566712627018,203.58333444595337L102.22963473633533,197.86666774749756L112.10259820996886,203.58333444595337L112.10259820996886,215.016667842865L102.22963473633533,220.7333345413208L92.35667126270181,215.016667842865L82.48370778906828,209.30000114440918L72.61074431543476,203.58333444595337L62.73778084180123,209.30000114440918L62.73778084180123,220.7333345413208L62.73778084180123,232.16666793823242L62.73778084180123,243.60000133514404L52.86481736816771,249.31666803359985L52.86481736816771,260.7500014305115L42.99185389453418,266.4666681289673L33.118890420900655,260.7500014305115L33.118890420900655,249.31666803359985L42.99185389453419,243.60000133514404L42.99185389453419,232.16666793823242L52.864817368167714,226.4500012397766L62.73778084180124,220.7333345413208L72.61074431543477,215.016667842865L72.61074431543477,203.58333444595337L62.73778084180124,197.86666774749756L52.864817368167714,192.15000104904175L42.991853894534195,186.43333435058594L42.991853894534195,175.00000095367432L52.864817368167714,169.2833342552185L62.73778084180124,175.00000095367432L62.73778084180124,186.43333435058594L62.73778084180124,197.86666774749756L62.73778084180124,209.30000114440918L72.61074431543477,215.016667842865L82.48370778906829,209.30000114440918L92.35667126270182,203.58333444595337L102.22963473633536,197.86666774749756L112.10259820996889,203.58333444595337L121.97556168360242,197.86666774749756L121.97556168360242,186.43333435058594L112.10259820996889,180.71666765213013L102.22963473633536,186.43333435058594L92.35667126270182,180.71666765213013L82.4837077890683,175.00000095367432L72.61074431543477,169.2833342552185L62.73778084180125,175.00000095367432L62.73778084180125,186.43333435058594L62.73778084180125,197.86666774749756L62.73778084180125,209.30000114440918L52.86481736816773,215.016667842865L42.9918538945342,209.30000114440918L42.9918538945342,197.86666774749756L52.86481736816773,192.15000104904175L62.73778084180125,186.43333435058594L72.61074431543477,180.71666765213013L72.61074431543477,169.2833342552185L62.73778084180125,163.5666675567627L52.86481736816773,157.85000085830688L42.9918538945342,152.13333415985107L42.9918538945342,140.70000076293945L33.11889042090068,134.98333406448364L33.11889042090068,123.55000066757202L23.24592694726715,117.83333396911621L23.245926947267154,106.40000057220459L33.118890420900684,100.68333387374878L42.99185389453421,106.40000057220459L42.99185389453421,117.83333396911621L52.864817368167735,123.55000066757202L52.864817368167735,134.98333406448364L62.73778084180126,140.70000076293945L62.73778084180126,152.13333415985107L62.73778084180126,163.5666675567627L62.73778084180126,175.00000095367432L72.61074431543479,180.71666765213013L82.48370778906832,175.00000095367432L92.35667126270184,169.2833342552185L102.22963473633537,163.5666675567627L112.1025982099689,169.2833342552185L112.1025982099689,180.71666765213013L102.22963473633537,186.43333435058594L92.35667126270185,180.71666765213013L82.48370778906832,175.00000095367432L72.6107443154348,169.2833342552185L62.737780841801275,175.00000095367432L62.737780841801275,186.43333435058594L62.737780841801275,197.86666774749756L62.737780841801275,209.30000114440918L52.86481736816775,215.016667842865L52.86481736816775,226.4500012397766L62.737780841801275,232.16666793823242L72.6107443154348,226.4500012397766L72.6107443154348,215.016667842865L82.48370778906832,209.30000114440918L92.35667126270185,203.58333444595337L102.22963473633537,197.86666774749756L102.22963473633537,186.43333435058594L92.35667126270185,180.71666765213013L82.48370778906832,175.00000095367432L72.6107443154348,169.2833342552185L72.6107443154348,157.85000085830688L82.48370778906832,152.13333415985107L92.35667126270185,157.85000085830688L92.35667126270185,169.2833342552185L92.35667126270185,180.71666765213013L92.35667126270185,192.15000104904175L102.22963473633537,197.86666774749756L112.1025982099689,192.15000104904175L121.97556168360244,186.43333435058594L131.84852515723597,180.71666765213013L141.72148863086952,186.43333435058594L151.59445210450306,180.71666765213013L161.46741557813658,186.43333435058594L161.46741557813658,197.86666774749756L151.59445210450306,203.58333444595337L141.72148863086952,197.86666774749756L131.84852515723597,203.58333444595337L121.97556168360244,197.86666774749756L112.1025982099689,192.15000104904175L102.22963473633537,186.43333435058594L92.35667126270185,192.15000104904175L92.35667126270185,203.58333444595337L92.35667126270185,215.016667842865L92.35667126270185,226.4500012397766L82.48370778906832,232.16666793823242L72.6107443154348,226.4500012397766L72.6107443154348,215.016667842865L82.48370778906832,209.30000114440918L92.35667126270185,203.58333444595337L102.22963473633537,197.86666774749756L102.22963473633537,186.43333435058594L92.35667126270185,180.71666765213013L82.48370778906832,175.00000095367432L72.6107443154348,169.2833342552185L72.6107443154348,157.85000085830688L62.737780841801275,152.13333415985107L52.86481736816775,157.85000085830688L52.86481736816775,169.2833342552185L62.737780841801275,175.00000095367432L62.737780841801275,186.43333435058594L62.737780841801275,197.86666774749756L62.737780841801275,209.30000114440918L72.6107443154348,215.016667842865L82.48370778906832,209.30000114440918L92.35667126270185,203.58333444595337L102.22963473633537,197.86666774749756L112.1025982099689,203.58333444595337L112.1025982099689,215.016667842865L102.22963473633537,220.7333345413208L92.35667126270185,215.016667842865L82.48370778906832,209.30000114440918L72.6107443154348,203.58333444595337L62.737780841801275,209.30000114440918L62.737780841801275,220.7333345413208L62.737780841801275,232.16666793823242L62.737780841801275,243.60000133514404L52.86481736816775,249.31666803359985L52.86481736816775,260.7500014305115L42.99185389453422,266.4666681289673L42.99185389453422,277.9000015258789L52.86481736816775,283.6166682243347L62.737780841801275,277.9000015258789L62.737780841801275,266.4666681289673L72.6107443154348,260.7500014305115L72.6107443154348,249.31666803359985L82.48370778906832,243.60000133514404L92.35667126270185,237.88333463668823L102.22963473633537,232.16666793823242L102.22963473633537,220.7333345413208L92.35667126270185,215.016667842865L82.48370778906832,209.30000114440918L72.6107443154348,203.58333444595337L72.6107443154348,192.15000104904175L82.48370778906832,186.43333435058594L92.35667126270185,192.15000104904175L92.35667126270185,203.58333444595337L92.35667126270185,215.016667842865L92.35667126270185,226.4500012397766L102.22963473633537,232.16666793823242L112.1025982099689,226.4500012397766L121.97556168360244,220.7333345413208L131.84852515723597,215.016667842865L141.72148863086952,220.7333345413208L151.59445210450306,215.016667842865L151.59445210450306,203.58333444595337L141.72148863086952,197.86666774749756L131.84852515723597,203.58333444595337L121.97556168360244,197.86666774749756L112.1025982099689,192.15000104904175L102.22963473633537,186.43333435058594L92.35667126270185,192.15000104904175L92.35667126270185,203.58333444595337L92.35667126270185,215.016667842865L92.35667126270185,226.4500012397766L82.48370778906832,232.16666793823242L72.6107443154348,226.4500012397766L72.6107443154348,215.016667842865L82.48370778906832,209.30000114440918L92.35667126270185,203.58333444595337L102.22963473633537,197.86666774749756L102.22963473633537,186.43333435058594L92.35667126270185,180.71666765213013L82.48370778906832,175.00000095367432L72.6107443154348,169.2833342552185L72.6107443154348,157.85000085830688L62.737780841801275,152.13333415985107L62.737780841801275,140.70000076293945L72.6107443154348,134.98333406448364L82.48370778906832,140.70000076293945L82.48370778906832,152.13333415985107L92.35667126270185,157.85000085830688L92.35667126270185,169.2833342552185L92.35667126270185,180.71666765213013L92.35667126270185,192.15000104904175L102.22963473633537,197.86666774749756L112.1025982099689,192.15000104904175L121.97556168360244,186.43333435058594L131.84852515723597,180.71666765213013L141.72148863086952,186.43333435058594L141.72148863086952,197.86666774749756L131.84852515723597,203.58333444595337L121.97556168360244,197.86666774749756L112.1025982099689,192.15000104904175L102.22963473633537,186.43333435058594L92.35667126270185,192.15000104904175L92.35667126270185,203.58333444595337L92.35667126270185,215.016667842865L92.35667126270185,226.4500012397766L82.48370778906832,232.16666793823242L82.48370778906832,243.60000133514404L92.35667126270185,249.31666803359985L102.22963473633537,243.60000133514404L102.22963473633537,232.16666793823242L112.1025982099689,226.4500012397766L121.97556168360244,220.7333345413208L131.84852515723597,215.016667842865L131.84852515723597,203.58333444595337L121.97556168360244,197.86666774749756L112.1025982099689,192.15000104904175L102.22963473633537,186.43333435058594L102.22963473633537,175.00000095367432L112.1025982099689,169.2833342552185L121.97556168360244,175.00000095367432L121.97556168360244,186.43333435058594L121.97556168360244,197.86666774749756L121.97556168360244,209.30000114440918L131.84852515723597,215.016667842865L141.72148863086952,209.30000114440918L151.59445210450306,203.58333444595337L161.46741557813658,197.86666774749756L171.34037905177013,203.58333444595337L181.21334252540365,197.86666774749756L191.0863059990372,203.58333444595337L200.9592694726707,197.86666774749756L210.83223294630423,203.58333444595337L220.70519641993772,197.86666774749756L220.70519641993772,186.43333435058594L210.83223294630423,180.71666765213013L200.9592694726707,186.43333435058594L191.0863059990372,180.71666765213013L181.21334252540365,186.43333435058594L171.34037905177013,180.71666765213013L161.46741557813658,186.43333435058594L151.59445210450306,180.71666765213013L141.72148863086952,175.00000095367432L131.84852515723597,169.2833342552185L121.97556168360244,175.00000095367432L121.97556168360244,186.43333435058594L121.97556168360244,197.86666774749756L121.97556168360244,209.30000114440918L112.1025982099689,215.016667842865L102.22963473633537,209.30000114440918L102.22963473633537,197.86666774749756L112.1025982099689,192.15000104904175L121.97556168360244,186.43333435058594L131.84852515723597,180.71666765213013L131.84852515723597,169.2833342552185L121.97556168360244,163.5666675567627L112.1025982099689,157.85000085830688L102.22963473633537,152.13333415985107L102.22963473633537,140.70000076293945L92.35667126270185,134.98333406448364L82.48370778906832,140.70000076293945L82.48370778906832,152.13333415985107L92.35667126270185,157.85000085830688L92.35667126270185,169.2833342552185L92.35667126270185,180.71666765213013L92.35667126270185,192.15000104904175L102.2296347363354,197.86666774749756L112.10259820996893,192.15000104904175L121.97556168360246,186.43333435058594L131.848525157236,180.71666765213013L141.72148863086954,186.43333435058594L141.72148863086954,197.86666774749756L131.848525157236,203.58333444595337L121.97556168360246,197.86666774749756L112.10259820996893,192.15000104904175L102.2296347363354,186.43333435058594L92.35667126270187,192.15000104904175L92.35667126270187,203.58333444595337L92.35667126270187,215.016667842865L92.35667126270187,226.4500012397766L82.48370778906835,232.16666793823242L82.48370778906835,243.60000133514404L72.61074431543481,249.31666803359985L62.73778084180129,243.60000133514404L62.73778084180129,232.16666793823242L72.61074431543481,226.4500012397766L72.61074431543481,215.016667842865L82.48370778906835,209.30000114440918L92.35667126270187,203.58333444595337L102.2296347363354,197.86666774749756L102.2296347363354,186.43333435058594L92.35667126270187,180.71666765213013L82.48370778906835,175.00000095367432L72.61074431543481,169.2833342552185L72.61074431543481,157.85000085830688L82.48370778906835,152.13333415985107L92.35667126270187,157.85000085830688L92.35667126270187,169.2833342552185L92.35667126270187,180.71666765213013L92.35667126270187,192.15000104904175L102.2296347363354,197.86666774749756L112.10259820996893,192.15000104904175L121.97556168360246,186.43333435058594L131.848525157236,180.71666765213013L141.72148863086954,186.43333435058594L151.59445210450306,180.71666765213013L151.59445210450306,169.2833342552185L141.72148863086954,163.5666675567627L131.848525157236,169.2833342552185L121.97556168360246,163.5666675567627L112.10259820996893,157.85000085830688L102.2296347363354,152.13333415985107L92.35667126270187,157.85000085830688L92.35667126270187,169.2833342552185L92.35667126270187,180.71666765213013L92.35667126270187,192.15000104904175L82.48370778906835,197.86666774749756L72.61074431543481,192.15000104904175L72.61074431543481,180.71666765213013L82.48370778906835,175.00000095367432L92.35667126270187,169.2833342552185L102.2296347363354,163.5666675567627L102.2296347363354,152.13333415985107L92.35667126270187,146.41666746139526L82.48370778906835,140.70000076293945L72.61074431543481,134.98333406448364L72.61074431543481,123.55000066757202L62.73778084180129,117.83333396911621L62.73778084180129,106.40000057220459L52.86481736816777,100.68333387374878L42.991853894534245,106.40000057220459L42.99185389453424,117.83333396911621L52.86481736816777,123.55000066757202L52.86481736816777,134.98333406448364L62.73778084180129,140.70000076293945L62.73778084180129,152.13333415985107L62.73778084180129,163.5666675567627L62.73778084180129,175.00000095367432L72.61074431543483,180.71666765213013L82.48370778906836,175.00000095367432L92.3566712627019,169.2833342552185L102.22963473633543,163.5666675567627L112.10259820996897,169.2833342552185L112.10259820996897,180.71666765213013L102.22963473633543,186.43333435058594L92.35667126270191,180.71666765213013L82.48370778906839,175.00000095367432L72.61074431543486,169.2833342552185L62.73778084180133,175.00000095367432L62.73778084180133,186.43333435058594L62.73778084180133,197.86666774749756L62.73778084180133,209.30000114440918L52.864817368167806,215.016667842865L52.864817368167806,226.4500012397766L62.73778084180133,232.16666793823242L72.61074431543487,226.4500012397766L72.61074431543487,215.016667842865L82.4837077890684,209.30000114440918L92.35667126270194,203.58333444595337L102.22963473633547,197.86666774749756L102.22963473633547,186.43333435058594L92.35667126270195,180.71666765213013L82.48370778906842,175.00000095367432L72.6107443154349,169.2833342552185L72.6107443154349,157.85000085830688L82.48370778906843,152.13333415985107L92.35667126270197,157.85000085830688L92.35667126270197,169.2833342552185L92.35667126270197,180.71666765213013L92.35667126270197,192.15000104904175L102.2296347363355,197.86666774749756L112.10259820996903,192.15000104904175L121.97556168360256,186.43333435058594L131.8485251572361,180.71666765213013L141.72148863086963,186.43333435058594L151.59445210450318,180.71666765213013L161.4674155781367,186.43333435058594L161.4674155781367,197.86666774749756L151.59445210450318,203.58333444595337L141.72148863086963,197.86666774749756L131.8485251572361,203.58333444595337L121.97556168360256,197.86666774749756L112.10259820996903,192.15000104904175L102.2296347363355,186.43333435058594L92.35667126270197,192.15000104904175L92.35667126270197,203.58333444595337L92.35667126270197,215.016667842865L92.35667126270197,226.4500012397766L82.48370778906845,232.16666793823242L72.61074431543491,226.4500012397766L72.61074431543491,215.016667842865L82.48370778906845,209.30000114440918L92.35667126270197,203.58333444595337L102.2296347363355,197.86666774749756L102.2296347363355,186.43333435058594L92.35667126270197,180.71666765213013L82.48370778906845,175.00000095367432L72.61074431543491,169.2833342552185L72.61074431543491,157.85000085830688L62.737780841801396,152.13333415985107L52.86481736816787,157.85000085830688L52.86481736816787,169.2833342552185L62.737780841801396,175.00000095367432L62.737780841801396,186.43333435058594L62.737780841801396,197.86666774749756L62.737780841801396,209.30000114440918L72.61074431543493,215.016667842865L82.48370778906846,209.30000114440918L92.356671262702,203.58333444595337L102.22963473633554,197.86666774749756L112.10259820996907,203.58333444595337L112.10259820996907,215.016667842865L102.22963473633554,220.7333345413208L92.35667126270201,215.016667842865L82.48370778906849,209.30000114440918L72.61074431543496,203.58333444595337L62.73778084180143,209.30000114440918L62.73778084180143,220.7333345413208L62.73778084180143,232.16666793823242L62.73778084180143,243.60000133514404L52.864817368167905,249.31666803359985L52.864817368167905,260.7500014305115L42.99185389453439,266.4666681289673L42.99185389453438,277.9000015258789L33.11889042090085,283.6166682243347L23.245926947267325,277.9000015258789L23.245926947267325,266.4666681289673L33.118890420900854,260.7500014305115L33.118890420900854,249.31666803359985L42.99185389453439,243.60000133514404L42.99185389453439,232.16666793823242L52.864817368167905,226.4500012397766L62.73778084180143,220.7333345413208L72.61074431543496,215.016667842865L72.61074431543496,203.58333444595337L62.73778084180143,197.86666774749756L52.864817368167905,192.15000104904175L42.99185389453439,186.43333435058594L42.99185389453439,175.00000095367432L52.864817368167905,169.2833342552185L62.73778084180143,175.00000095367432L62.73778084180143,186.43333435058594L62.73778084180143,197.86666774749756L62.73778084180143,209.30000114440918L72.61074431543496,215.016667842865L82.48370778906849,209.30000114440918L92.35667126270201,203.58333444595337L102.22963473633554,197.86666774749756L112.10259820996907,203.58333444595337L121.9755616836026,197.86666774749756L121.9755616836026,186.43333435058594L112.10259820996907,180.71666765213013L102.22963473633554,186.43333435058594L92.35667126270201,180.71666765213013L82.48370778906849,175.00000095367432L72.61074431543496,169.2833342552185L62.73778084180143,175.00000095367432L62.73778084180143,186.43333435058594L62.73778084180143,197.86666774749756L62.73778084180143,209.30000114440918L52.864817368167905,215.016667842865L42.99185389453439,209.30000114440918L42.99185389453439,197.86666774749756L52.864817368167905,192.15000104904175L62.73778084180143,186.43333435058594L72.61074431543496,180.71666765213013L72.61074431543496,169.2833342552185L62.73778084180143,163.5666675567627L52.864817368167905,157.85000085830688L42.99185389453439,152.13333415985107L42.99185389453439,140.70000076293945L33.118890420900854,134.98333406448364L33.118890420900854,123.55000066757202L42.99185389453439,117.83333396911621L52.86481736816792,123.55000066757202L52.86481736816792,134.98333406448364L62.737780841801445,140.70000076293945L62.737780841801445,152.13333415985107L62.737780841801445,163.5666675567627L62.737780841801445,175.00000095367432L72.61074431543497,180.71666765213013L82.48370778906849,175.00000095367432L92.35667126270202,169.2833342552185L102.22963473633556,163.5666675567627L112.10259820996909,169.2833342552185L112.10259820996909,180.71666765213013L102.22963473633556,186.43333435058594L92.35667126270204,180.71666765213013L82.4837077890685,175.00000095367432L72.61074431543499,169.2833342552185L62.73778084180145,175.00000095367432L62.73778084180145,186.43333435058594L62.73778084180145,197.86666774749756L62.73778084180145,209.30000114440918L52.86481736816793,215.016667842865L52.86481736816793,226.4500012397766L62.73778084180145,232.16666793823242L72.61074431543499,226.4500012397766L72.61074431543499,215.016667842865L82.4837077890685,209.30000114440918L92.35667126270204,203.58333444595337L102.22963473633556,197.86666774749756L102.22963473633556,186.43333435058594L92.35667126270204,180.71666765213013L82.4837077890685,175.00000095367432L72.61074431543499,169.2833342552185L72.61074431543499,157.85000085830688L82.4837077890685,152.13333415985107L92.35667126270204,157.85000085830688L92.35667126270204,169.2833342552185L92.35667126270204,180.71666765213013L92.35667126270204,192.15000104904175L102.22963473633556,197.86666774749756L112.10259820996909,192.15000104904175L121.97556168360262,186.43333435058594L131.84852515723617,180.71666765213013L141.7214886308697,186.43333435058594L151.59445210450323,180.71666765213013L161.46741557813678,186.43333435058594L171.3403790517703,180.71666765213013L171.3403790517703,169.2833342552185L161.46741557813678,163.5666675567627L151.59445210450323,169.2833342552185L141.7214886308697,163.5666675567627L131.84852515723617,169.2833342552185L121.97556168360262,163.5666675567627L112.10259820996909,157.85000085830688L102.22963473633556,152.13333415985107L92.35667126270204,157.85000085830688L92.35667126270204,169.2833342552185L92.35667126270204,180.71666765213013L92.35667126270204,192.15000104904175L82.4837077890685,197.86666774749756L72.61074431543499,192.15000104904175L72.61074431543499,180.71666765213013L82.4837077890685,175.00000095367432L92.35667126270204,169.2833342552185L102.22963473633556,163.5666675567627L102.22963473633556,152.13333415985107L92.35667126270204,146.41666746139526L82.4837077890685,140.70000076293945L72.61074431543499,134.98333406448364L72.61074431543499,123.55000066757202L62.73778084180145,117.83333396911621L52.86481736816793,123.55000066757202L52.86481736816793,134.98333406448364L62.73778084180145,140.70000076293945L62.73778084180145,152.13333415985107L62.73778084180145,163.5666675567627L62.73778084180145,175.00000095367432L72.61074431543499,180.71666765213013L82.48370778906852,175.00000095367432L92.35667126270206,169.2833342552185L102.2296347363356,163.5666675567627L112.10259820996913,169.2833342552185L112.10259820996913,180.71666765213013L102.2296347363356,186.43333435058594L92.35667126270206,180.71666765213013L82.48370778906855,175.00000095367432L72.61074431543501,169.2833342552185L62.737780841801495,175.00000095367432L62.737780841801495,186.43333435058594L62.737780841801495,197.86666774749756L62.737780841801495,209.30000114440918L52.86481736816797,215.016667842865L52.86481736816797,226.4500012397766L42.991853894534444,232.16666793823242L33.11889042090092,226.4500012397766L33.11889042090092,215.016667842865L42.99185389453445,209.30000114440918L42.99185389453445,197.86666774749756L52.86481736816798,192.15000104904175L62.7377808418015,186.43333435058594L72.61074431543503,180.71666765213013L72.61074431543503,169.2833342552185L62.7377808418015,163.5666675567627L52.86481736816798,157.85000085830688L42.99185389453446,152.13333415985107L42.99185389453446,140.70000076293945L52.86481736816798,134.98333406448364L62.7377808418015,140.70000076293945L62.7377808418015,152.13333415985107L62.7377808418015,163.5666675567627L62.7377808418015,175.00000095367432L72.61074431543503,180.71666765213013L82.48370778906856,175.00000095367432L92.35667126270208,169.2833342552185L102.22963473633561,163.5666675567627L112.10259820996914,169.2833342552185L121.97556168360269,163.5666675567627L121.97556168360269,152.13333415985107L112.10259820996914,146.41666746139526L102.22963473633561,152.13333415985107L92.3566712627021,146.41666746139526L82.48370778906856,140.70000076293945L72.61074431543504,134.98333406448364L62.737780841801516,140.70000076293945L62.737780841801516,152.13333415985107L62.737780841801516,163.5666675567627L62.737780841801516,175.00000095367432L52.86481736816799,180.71666765213013L42.991853894534465,175.00000095367432L42.991853894534465,163.5666675567627L52.86481736816799,157.85000085830688L62.737780841801516,152.13333415985107L72.61074431543504,146.41666746139526L72.61074431543504,134.98333406448364L62.737780841801516,129.26666736602783L52.86481736816799,123.55000066757202L42.991853894534465,117.83333396911621L42.991853894534465,106.40000057220459L33.11889042090094,100.68333387374878L33.11889042090094,89.25000047683716L23.245926947267414,83.53333377838135L23.245926947267417,72.10000038146973L13.372963473633892,66.38333368301392L13.372963473633892,54.950000286102295L23.24592694726742,49.233333587646484L33.118890420900954,54.950000286102295L33.118890420900954,66.38333368301392L42.99185389453447,72.10000038146973L42.99185389453447,83.53333377838135L52.864817368168,89.25000047683716L52.864817368168,100.68333387374878L62.73778084180152,106.40000057220459L62.73778084180152,117.83333396911621L62.73778084180152,129.26666736602783L62.73778084180152,140.70000076293945L72.61074431543506,146.41666746139526L82.48370778906857,140.70000076293945L92.3566712627021,134.98333406448364L102.22963473633564,129.26666736602783L112.10259820996917,134.98333406448364L112.10259820996917,146.41666746139526L102.22963473633564,152.13333415985107L92.35667126270211,146.41666746139526L82.48370778906859,140.70000076293945L72.61074431543506,134.98333406448364L62.73778084180154,140.70000076293945L62.73778084180154,152.13333415985107L62.73778084180154,163.5666675567627L62.73778084180154,175.00000095367432L52.86481736816801,180.71666765213013L52.86481736816801,192.15000104904175L62.73778084180154,197.86666774749756L72.61074431543506,192.15000104904175L72.61074431543506,180.71666765213013L82.48370778906859,175.00000095367432L92.35667126270211,169.2833342552185L102.22963473633564,163.5666675567627L102.22963473633564,152.13333415985107L92.35667126270211,146.41666746139526L82.48370778906859,140.70000076293945L72.61074431543506,134.98333406448364L72.61074431543506,123.55000066757202L82.48370778906859,117.83333396911621L92.35667126270211,123.55000066757202L92.35667126270211,134.98333406448364L92.35667126270211,146.41666746139526L92.35667126270211,157.85000085830688L102.22963473633564,163.5666675567627L112.10259820996917,157.85000085830688L121.9755616836027,152.13333415985107L131.84852515723625,146.41666746139526L141.72148863086977,152.13333415985107L151.59445210450332,146.41666746139526L161.46741557813684,152.13333415985107L161.46741557813684,163.5666675567627L151.59445210450332,169.2833342552185L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L72.61074431543506,192.15000104904175L72.61074431543506,180.71666765213013L82.48370778906859,175.00000095367432L92.35667126270211,169.2833342552185L102.22963473633564,163.5666675567627L102.22963473633564,152.13333415985107L92.35667126270211,146.41666746139526L82.48370778906859,140.70000076293945L72.61074431543506,134.98333406448364L72.61074431543506,123.55000066757202L62.73778084180154,117.83333396911621L52.86481736816801,123.55000066757202L52.86481736816801,134.98333406448364L62.73778084180154,140.70000076293945L62.73778084180154,152.13333415985107L62.73778084180154,163.5666675567627L62.73778084180154,175.00000095367432L72.61074431543506,180.71666765213013L82.48370778906859,175.00000095367432L92.35667126270211,169.2833342552185L102.22963473633564,163.5666675567627L112.10259820996917,169.2833342552185L112.10259820996917,180.71666765213013L102.22963473633564,186.43333435058594L92.35667126270211,180.71666765213013L82.48370778906859,175.00000095367432L72.61074431543506,169.2833342552185L62.73778084180154,175.00000095367432L62.73778084180154,186.43333435058594L62.73778084180154,197.86666774749756L62.73778084180154,209.30000114440918L52.86481736816801,215.016667842865L52.86481736816801,226.4500012397766L42.991853894534486,232.16666793823242L42.991853894534486,243.60000133514404L52.86481736816801,249.31666803359985L62.73778084180154,243.60000133514404L62.73778084180154,232.16666793823242L72.61074431543506,226.4500012397766L72.61074431543506,215.016667842865L82.48370778906859,209.30000114440918L92.35667126270211,203.58333444595337L102.22963473633564,197.86666774749756L102.22963473633564,186.43333435058594L92.35667126270211,180.71666765213013L82.48370778906859,175.00000095367432L72.61074431543506,169.2833342552185L72.61074431543506,157.85000085830688L82.48370778906859,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L102.22963473633564,197.86666774749756L112.10259820996917,192.15000104904175L121.9755616836027,186.43333435058594L131.84852515723625,180.71666765213013L141.72148863086977,186.43333435058594L151.59445210450332,180.71666765213013L151.59445210450332,169.2833342552185L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L72.61074431543506,192.15000104904175L72.61074431543506,180.71666765213013L82.48370778906859,175.00000095367432L92.35667126270211,169.2833342552185L102.22963473633564,163.5666675567627L102.22963473633564,152.13333415985107L92.35667126270211,146.41666746139526L82.48370778906859,140.70000076293945L72.61074431543506,134.98333406448364L72.61074431543506,123.55000066757202L62.73778084180154,117.83333396911621L62.73778084180154,106.40000057220459L72.61074431543506,100.68333387374878L82.48370778906859,106.40000057220459L82.48370778906859,117.83333396911621L92.35667126270211,123.55000066757202L92.35667126270211,134.98333406448364L92.35667126270211,146.41666746139526L92.35667126270211,157.85000085830688L102.22963473633564,163.5666675567627L112.10259820996917,157.85000085830688L121.9755616836027,152.13333415985107L131.84852515723625,146.41666746139526L141.72148863086977,152.13333415985107L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L82.48370778906859,209.30000114440918L92.35667126270211,215.016667842865L102.22963473633564,209.30000114440918L102.22963473633564,197.86666774749756L112.10259820996917,192.15000104904175L121.9755616836027,186.43333435058594L131.84852515723625,180.71666765213013L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L102.22963473633564,140.70000076293945L112.10259820996917,134.98333406448364L121.9755616836027,140.70000076293945L121.9755616836027,152.13333415985107L121.9755616836027,163.5666675567627L121.9755616836027,175.00000095367432L131.84852515723625,180.71666765213013L141.72148863086977,175.00000095367432L151.59445210450332,169.2833342552185L161.46741557813684,163.5666675567627L171.34037905177038,169.2833342552185L181.21334252540393,163.5666675567627L191.08630599903742,169.2833342552185L200.95926947267094,163.5666675567627L210.83223294630446,169.2833342552185L210.83223294630446,180.71666765213013L200.95926947267094,186.43333435058594L191.08630599903742,180.71666765213013L181.2133425254039,186.43333435058594L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L102.22963473633561,209.30000114440918L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L102.22963473633561,140.70000076293945L92.3566712627021,134.98333406448364L82.48370778906856,140.70000076293945L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L141.72148863086974,186.43333435058594L141.72148863086974,197.86666774749756L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L82.48370778906856,232.16666793823242L82.48370778906856,243.60000133514404L72.61074431543504,249.31666803359985L62.737780841801516,243.60000133514404L62.737780841801516,232.16666793823242L72.61074431543504,226.4500012397766L72.61074431543504,215.016667842865L82.48370778906856,209.30000114440918L92.3566712627021,203.58333444595337L102.22963473633561,197.86666774749756L102.22963473633561,186.43333435058594L92.3566712627021,180.71666765213013L82.48370778906856,175.00000095367432L72.61074431543504,169.2833342552185L72.61074431543504,157.85000085830688L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L141.72148863086974,186.43333435058594L151.5944521045033,180.71666765213013L151.5944521045033,169.2833342552185L141.72148863086974,163.5666675567627L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L82.48370778906856,197.86666774749756L72.61074431543504,192.15000104904175L72.61074431543504,180.71666765213013L82.48370778906856,175.00000095367432L92.3566712627021,169.2833342552185L102.22963473633561,163.5666675567627L102.22963473633561,152.13333415985107L92.3566712627021,146.41666746139526L82.48370778906856,140.70000076293945L72.61074431543504,134.98333406448364L72.61074431543504,123.55000066757202L62.737780841801516,117.83333396911621L62.737780841801516,106.40000057220459L52.86481736816799,100.68333387374878L42.991853894534465,106.40000057220459L42.991853894534465,117.83333396911621L52.86481736816799,123.55000066757202L52.86481736816799,134.98333406448364L62.737780841801516,140.70000076293945L62.737780841801516,152.13333415985107L62.737780841801516,163.5666675567627L62.737780841801516,175.00000095367432L72.61074431543504,180.71666765213013L82.48370778906856,175.00000095367432L92.3566712627021,169.2833342552185L102.22963473633561,163.5666675567627L112.10259820996914,169.2833342552185L112.10259820996914,180.71666765213013L102.22963473633561,186.43333435058594L92.3566712627021,180.71666765213013L82.48370778906856,175.00000095367432L72.61074431543504,169.2833342552185L62.737780841801516,175.00000095367432L62.737780841801516,186.43333435058594L62.737780841801516,197.86666774749756L62.737780841801516,209.30000114440918L52.86481736816799,215.016667842865L52.86481736816799,226.4500012397766L62.737780841801516,232.16666793823242L72.61074431543504,226.4500012397766L72.61074431543504,215.016667842865L82.48370778906856,209.30000114440918L92.3566712627021,203.58333444595337L102.22963473633561,197.86666774749756L102.22963473633561,186.43333435058594L92.3566712627021,180.71666765213013L82.48370778906856,175.00000095367432L72.61074431543504,169.2833342552185L72.61074431543504,157.85000085830688L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L141.72148863086974,186.43333435058594L151.5944521045033,180.71666765213013L161.46741557813684,186.43333435058594L161.46741557813684,197.86666774749756L151.5944521045033,203.58333444595337L141.72148863086974,197.86666774749756L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L82.48370778906856,232.16666793823242L72.61074431543504,226.4500012397766L72.61074431543504,215.016667842865L82.48370778906856,209.30000114440918L92.3566712627021,203.58333444595337L102.22963473633561,197.86666774749756L102.22963473633561,186.43333435058594L92.3566712627021,180.71666765213013L82.48370778906856,175.00000095367432L72.61074431543504,169.2833342552185L72.61074431543504,157.85000085830688L62.737780841801516,152.13333415985107L52.86481736816799,157.85000085830688L52.86481736816799,169.2833342552185L62.737780841801516,175.00000095367432L62.737780841801516,186.43333435058594L62.737780841801516,197.86666774749756L62.737780841801516,209.30000114440918L72.61074431543504,215.016667842865L82.48370778906856,209.30000114440918L92.3566712627021,203.58333444595337L102.22963473633561,197.86666774749756L112.10259820996914,203.58333444595337L112.10259820996914,215.016667842865L102.22963473633561,220.7333345413208L92.3566712627021,215.016667842865L82.48370778906856,209.30000114440918L72.61074431543504,203.58333444595337L62.737780841801516,209.30000114440918L62.737780841801516,220.7333345413208L62.737780841801516,232.16666793823242L62.737780841801516,243.60000133514404L52.86481736816799,249.31666803359985L52.86481736816799,260.7500014305115L42.991853894534465,266.4666681289673L42.991853894534465,277.9000015258789L33.11889042090094,283.6166682243347L33.11889042090094,295.05000162124634L42.991853894534465,300.76666831970215L52.86481736816799,295.05000162124634L52.86481736816799,283.6166682243347L62.737780841801516,277.9000015258789L62.737780841801516,266.4666681289673L72.61074431543504,260.7500014305115L72.61074431543504,249.31666803359985L82.48370778906856,243.60000133514404L92.3566712627021,237.88333463668823L102.22963473633561,232.16666793823242L102.22963473633561,220.7333345413208L92.3566712627021,215.016667842865L82.48370778906856,209.30000114440918L72.61074431543504,203.58333444595337L72.61074431543504,192.15000104904175L82.48370778906856,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L102.22963473633561,232.16666793823242L112.10259820996914,226.4500012397766L121.97556168360269,220.7333345413208L131.84852515723622,215.016667842865L141.72148863086974,220.7333345413208L151.5944521045033,215.016667842865L151.5944521045033,203.58333444595337L141.72148863086974,197.86666774749756L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L82.48370778906856,232.16666793823242L72.61074431543504,226.4500012397766L72.61074431543504,215.016667842865L82.48370778906856,209.30000114440918L92.3566712627021,203.58333444595337L102.22963473633561,197.86666774749756L102.22963473633561,186.43333435058594L92.3566712627021,180.71666765213013L82.48370778906856,175.00000095367432L72.61074431543504,169.2833342552185L72.61074431543504,157.85000085830688L62.737780841801516,152.13333415985107L62.737780841801516,140.70000076293945L72.61074431543504,134.98333406448364L82.48370778906856,140.70000076293945L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L141.72148863086974,186.43333435058594L141.72148863086974,197.86666774749756L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L82.48370778906856,232.16666793823242L82.48370778906856,243.60000133514404L92.3566712627021,249.31666803359985L102.22963473633561,243.60000133514404L102.22963473633561,232.16666793823242L112.10259820996914,226.4500012397766L121.97556168360269,220.7333345413208L131.84852515723622,215.016667842865L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L102.22963473633561,175.00000095367432L112.10259820996914,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L131.84852515723622,215.016667842865L141.72148863086974,209.30000114440918L151.5944521045033,203.58333444595337L161.46741557813684,197.86666774749756L171.34037905177036,203.58333444595337L181.2133425254039,197.86666774749756L191.08630599903742,203.58333444595337L200.95926947267094,197.86666774749756L200.95926947267094,186.43333435058594L191.08630599903742,180.71666765213013L181.2133425254039,186.43333435058594L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L102.22963473633561,209.30000114440918L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L102.22963473633561,140.70000076293945L92.3566712627021,134.98333406448364L82.48370778906856,140.70000076293945L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633564,197.86666774749756L112.10259820996917,192.15000104904175L121.9755616836027,186.43333435058594L131.84852515723625,180.71666765213013L141.72148863086977,186.43333435058594L141.72148863086977,197.86666774749756L131.84852515723625,203.58333444595337L121.9755616836027,197.86666774749756L112.10259820996917,192.15000104904175L102.22963473633564,186.43333435058594L92.35667126270211,192.15000104904175L92.35667126270211,203.58333444595337L92.35667126270211,215.016667842865L92.35667126270211,226.4500012397766L82.48370778906859,232.16666793823242L82.48370778906859,243.60000133514404L72.61074431543506,249.31666803359985L62.73778084180154,243.60000133514404L62.73778084180154,232.16666793823242L72.61074431543506,226.4500012397766L72.61074431543506,215.016667842865L82.48370778906859,209.30000114440918L92.35667126270211,203.58333444595337L102.22963473633564,197.86666774749756L102.22963473633564,186.43333435058594L92.35667126270211,180.71666765213013L82.48370778906859,175.00000095367432L72.61074431543506,169.2833342552185L72.61074431543506,157.85000085830688L82.48370778906859,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L102.22963473633564,197.86666774749756L112.10259820996917,192.15000104904175L121.9755616836027,186.43333435058594L131.84852515723625,180.71666765213013L141.72148863086977,186.43333435058594L151.59445210450332,180.71666765213013L151.59445210450332,169.2833342552185L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L72.61074431543506,192.15000104904175L72.61074431543506,180.71666765213013L82.48370778906859,175.00000095367432L92.35667126270211,169.2833342552185L102.22963473633564,163.5666675567627L102.22963473633564,152.13333415985107L92.35667126270211,146.41666746139526L82.48370778906859,140.70000076293945L72.61074431543506,134.98333406448364L72.61074431543506,123.55000066757202L62.73778084180154,117.83333396911621L62.73778084180154,106.40000057220459L52.86481736816801,100.68333387374878L52.86481736816801,89.25000047683716L62.73778084180154,83.53333377838135L72.61074431543506,89.25000047683716L72.61074431543506,100.68333387374878L82.48370778906859,106.40000057220459L82.48370778906859,117.83333396911621L92.35667126270211,123.55000066757202L92.35667126270211,134.98333406448364L92.35667126270211,146.41666746139526L92.35667126270211,157.85000085830688L102.22963473633564,163.5666675567627L112.10259820996917,157.85000085830688L121.9755616836027,152.13333415985107L131.84852515723625,146.41666746139526L141.72148863086977,152.13333415985107L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L82.48370778906859,209.30000114440918L92.35667126270211,215.016667842865L102.22963473633564,209.30000114440918L102.22963473633564,197.86666774749756L112.10259820996917,192.15000104904175L121.9755616836027,186.43333435058594L131.84852515723625,180.71666765213013L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L102.22963473633564,140.70000076293945L112.10259820996917,134.98333406448364L121.9755616836027,140.70000076293945L121.9755616836027,152.13333415985107L121.9755616836027,163.5666675567627L121.9755616836027,175.00000095367432L131.84852515723625,180.71666765213013L141.72148863086977,175.00000095367432L151.59445210450332,169.2833342552185L161.46741557813684,163.5666675567627L171.34037905177038,169.2833342552185L181.21334252540393,163.5666675567627L191.08630599903742,169.2833342552185L191.08630599903742,180.71666765213013L181.2133425254039,186.43333435058594L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L102.22963473633561,209.30000114440918L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L102.22963473633561,140.70000076293945L92.3566712627021,134.98333406448364L82.48370778906856,140.70000076293945L82.48370778906856,152.13333415985107L92.3566712627021,157.85000085830688L92.3566712627021,169.2833342552185L92.3566712627021,180.71666765213013L92.3566712627021,192.15000104904175L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L141.72148863086974,186.43333435058594L141.72148863086974,197.86666774749756L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L92.3566712627021,192.15000104904175L92.3566712627021,203.58333444595337L92.3566712627021,215.016667842865L92.3566712627021,226.4500012397766L82.48370778906856,232.16666793823242L82.48370778906856,243.60000133514404L72.61074431543504,249.31666803359985L72.61074431543504,260.7500014305115L82.48370778906856,266.4666681289673L92.3566712627021,260.7500014305115L92.3566712627021,249.31666803359985L102.22963473633561,243.60000133514404L102.22963473633561,232.16666793823242L112.10259820996914,226.4500012397766L121.97556168360269,220.7333345413208L131.84852515723622,215.016667842865L131.84852515723622,203.58333444595337L121.97556168360269,197.86666774749756L112.10259820996914,192.15000104904175L102.22963473633561,186.43333435058594L102.22963473633561,175.00000095367432L112.10259820996914,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L131.84852515723622,215.016667842865L141.72148863086974,209.30000114440918L151.5944521045033,203.58333444595337L161.46741557813684,197.86666774749756L171.34037905177036,203.58333444595337L181.2133425254039,197.86666774749756L181.2133425254039,186.43333435058594L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L102.22963473633561,209.30000114440918L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L102.22963473633561,140.70000076293945L92.3566712627021,134.98333406448364L92.3566712627021,123.55000066757202L102.22963473633561,117.83333396911621L112.10259820996914,123.55000066757202L112.10259820996914,134.98333406448364L121.97556168360269,140.70000076293945L121.97556168360269,152.13333415985107L121.97556168360269,163.5666675567627L121.97556168360269,175.00000095367432L131.84852515723622,180.71666765213013L141.72148863086974,175.00000095367432L151.5944521045033,169.2833342552185L161.46741557813684,163.5666675567627L171.34037905177036,169.2833342552185L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L112.10259820996914,226.4500012397766L121.97556168360269,232.16666793823242L131.84852515723622,226.4500012397766L131.84852515723622,215.016667842865L141.72148863086974,209.30000114440918L151.5944521045033,203.58333444595337L161.46741557813684,197.86666774749756L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L131.84852515723622,157.85000085830688L141.72148863086974,152.13333415985107L151.5944521045033,157.85000085830688L151.5944521045033,169.2833342552185L151.5944521045033,180.71666765213013L151.5944521045033,192.15000104904175L161.46741557813684,197.86666774749756L171.34037905177036,192.15000104904175L181.2133425254039,186.43333435058594L191.08630599903742,180.71666765213013L200.95926947267094,186.43333435058594L210.83223294630446,180.71666765213013L220.70519641993798,186.43333435058594L230.5781598935715,180.71666765213013L240.451123367205,186.43333435058594L250.32408684083853,180.71666765213013L260.19705031447205,186.43333435058594L270.07001378810554,180.71666765213013L270.07001378810554,169.2833342552185L260.19705031447205,163.5666675567627L250.32408684083853,169.2833342552185L240.451123367205,163.5666675567627L230.5781598935715,169.2833342552185L220.70519641993798,163.5666675567627L210.83223294630446,169.2833342552185L200.95926947267094,163.5666675567627L191.08630599903742,169.2833342552185L181.2133425254039,163.5666675567627L171.34037905177036,157.85000085830688L161.46741557813684,152.13333415985107L151.5944521045033,157.85000085830688L151.5944521045033,169.2833342552185L151.5944521045033,180.71666765213013L151.5944521045033,192.15000104904175L141.72148863086974,197.86666774749756L131.84852515723622,192.15000104904175L131.84852515723622,180.71666765213013L141.72148863086974,175.00000095367432L151.5944521045033,169.2833342552185L161.46741557813684,163.5666675567627L161.46741557813684,152.13333415985107L151.5944521045033,146.41666746139526L141.72148863086974,140.70000076293945L131.84852515723622,134.98333406448364L131.84852515723622,123.55000066757202L121.97556168360269,117.83333396911621L112.10259820996914,123.55000066757202L112.10259820996914,134.98333406448364L121.97556168360269,140.70000076293945L121.97556168360269,152.13333415985107L121.97556168360269,163.5666675567627L121.97556168360269,175.00000095367432L131.84852515723622,180.71666765213013L141.72148863086974,175.00000095367432L151.5944521045033,169.2833342552185L161.46741557813684,163.5666675567627L171.34037905177036,169.2833342552185L171.34037905177036,180.71666765213013L161.46741557813684,186.43333435058594L151.5944521045033,180.71666765213013L141.72148863086974,175.00000095367432L131.84852515723622,169.2833342552185L121.97556168360269,175.00000095367432L121.97556168360269,186.43333435058594L121.97556168360269,197.86666774749756L121.97556168360269,209.30000114440918L112.10259820996914,215.016667842865L112.10259820996914,226.4500012397766L102.22963473633561,232.16666793823242L92.3566712627021,226.4500012397766L92.3566712627021,215.016667842865L102.22963473633561,209.30000114440918L102.22963473633561,197.86666774749756L112.10259820996914,192.15000104904175L121.97556168360269,186.43333435058594L131.84852515723622,180.71666765213013L131.84852515723622,169.2833342552185L121.97556168360269,163.5666675567627L112.10259820996914,157.85000085830688L102.22963473633561,152.13333415985107L102.22963473633561,140.70000076293945L112.10259820996914,134.98333406448364L121.97556168360269,140.70000076293945L121.97556168360269,152.13333415985107L121.97556168360269,163.5666675567627L121.97556168360269,175.00000095367432L131.84852515723622,180.71666765213013L141.72148863086974,175.00000095367432L151.5944521045033,169.2833342552185L161.46741557813684,163.5666675567627L171.34037905177036,169.2833342552185L181.2133425254039,163.5666675567627L181.2133425254039,152.13333415985107L171.34037905177036,146.41666746139526L161.46741557813684,152.13333415985107L151.5944521045033,146.41666746139526L141.72148863086974,140.70000076293945L131.84852515723622,134.98333406448364L121.97556168360269,140.70000076293945L121.97556168360269,152.13333415985107L121.97556168360269,163.5666675567627L121.97556168360269,175.00000095367432L112.10259820996914,180.71666765213013L102.22963473633561,175.00000095367432L102.22963473633561,163.5666675567627L112.10259820996914,157.85000085830688L121.97556168360269,152.13333415985107L131.84852515723622,146.41666746139526L131.84852515723622,134.98333406448364L121.97556168360269,129.26666736602783L112.10259820996914,123.55000066757202L102.22963473633561,117.83333396911621L102.22963473633561,106.40000057220459L92.3566712627021,100.68333387374878L92.3566712627021,89.25000047683716L82.48370778906856,83.53333377838135L72.61074431543504,89.25000047683716L72.61074431543504,100.68333387374878L82.48370778906856,106.40000057220459L82.48370778906856,117.83333396911621L92.3566712627021,123.55000066757202L92.3566712627021,134.98333406448364L92.3566712627021,146.41666746139526L92.3566712627021,157.85000085830688L102.22963473633564,163.5666675567627L112.10259820996917,157.85000085830688L121.9755616836027,152.13333415985107L131.84852515723625,146.41666746139526L141.72148863086977,152.13333415985107L141.72148863086977,163.5666675567627L131.84852515723625,169.2833342552185L121.9755616836027,163.5666675567627L112.10259820996917,157.85000085830688L102.22963473633564,152.13333415985107L92.35667126270211,157.85000085830688L92.35667126270211,169.2833342552185L92.35667126270211,180.71666765213013L92.35667126270211,192.15000104904175L82.48370778906859,197.86666774749756L82.48370778906859,209.30000114440918L92.35667126270212,215.016667842865L102.22963473633565,209.30000114440918L102.22963473633565,197.86666774749756L112.10259820996919,192.15000104904175L121.97556168360272,186.43333435058594L131.84852515723625,180.71666765213013L131.84852515723625,169.2833342552185L121.97556168360272,163.5666675567627L112.10259820996919,157.85000085830688L102.22963473633565,152.13333415985107L102.22963473633565,140.70000076293945L112.10259820996919,134.98333406448364L121.97556168360272,140.70000076293945L121.97556168360272,152.13333415985107L121.97556168360272,163.5666675567627L121.97556168360272,175.00000095367432L131.84852515723625,180.71666765213013L141.7214886308698,175.00000095367432L151.59445210450332,169.2833342552185L161.46741557813687,163.5666675567627L171.3403790517704,169.2833342552185L181.21334252540393,163.5666675567627L191.08630599903748,169.2833342552185L191.08630599903748,180.71666765213013L181.21334252540393,186.43333435058594L171.3403790517704,180.71666765213013L161.46741557813687,186.43333435058594L151.59445210450332,180.71666765213013L141.7214886308698,175.00000095367432L131.84852515723625,169.2833342552185L121.97556168360272,175.00000095367432L121.97556168360272,186.43333435058594L121.97556168360272,197.86666774749756L121.97556168360272,209.30000114440918L112.10259820996919,215.016667842865L102.22963473633565,209.30000114440918L102.22963473633565,197.86666774749756L112.10259820996919,192.15000104904175L121.97556168360272,186.43333435058594L131.84852515723625,180.71666765213013L131.84852515723625,169.2833342552185L121.97556168360272,163.5666675567627L112.10259820996919,157.85000085830688L102.22963473633565,152.13333415985107L102.22963473633565,140.70000076293945L92.35667126270214,134.98333406448364L82.4837077890686,140.70000076293945L82.4837077890686,152.13333415985107L92.35667126270214,157.85000085830688L92.35667126270214,169.2833342552185L92.35667126270214,180.71666765213013L92.35667126270214,192.15000104904175L102.22963473633568,197.86666774749756L112.10259820996922,192.15000104904175L121.97556168360275,186.43333435058594L131.84852515723628,180.71666765213013L141.72148863086983,186.43333435058594L141.72148863086983,197.86666774749756L131.84852515723628,203.58333444595337L121.97556168360275,197.86666774749756L112.10259820996922,192.15000104904175L102.22963473633568,186.43333435058594L92.35667126270215,192.15000104904175L92.35667126270215,203.58333444595337L92.35667126270215,215.016667842865L92.35667126270215,226.4500012397766L82.48370778906863,232.16666793823242L82.48370778906863,243.60000133514404L72.6107443154351,249.31666803359985L72.6107443154351,260.7500014305115L62.73778084180157,266.4666681289673L52.86481736816805,260.7500014305115L52.86481736816805,249.31666803359985L62.73778084180157,243.60000133514404L62.73778084180157,232.16666793823242L72.6107443154351,226.4500012397766L72.6107443154351,215.016667842865L82.48370778906863,209.30000114440918L92.35667126270215,203.58333444595337L102.22963473633568,197.86666774749756L102.22963473633568,186.43333435058594L92.35667126270215,180.71666765213013L82.48370778906863,175.00000095367432L72.6107443154351,169.2833342552185L72.6107443154351,157.85000085830688L82.48370778906863,152.13333415985107L92.35667126270215,157.85000085830688L92.35667126270215,169.2833342552185L92.35667126270215,180.71666765213013L92.35667126270215,192.15000104904175L102.22963473633568,197.86666774749756L112.10259820996922,192.15000104904175L121.97556168360275,186.43333435058594L131.84852515723628,180.71666765213013L141.72148863086983,186.43333435058594L151.59445210450335,180.71666765213013L151.59445210450335,169.2833342552185L141.72148863086983,163.5666675567627L131.84852515723628,169.2833342552185L121.97556168360275,163.5666675567627L112.10259820996922,157.85000085830688L102.22963473633568,152.13333415985107L92.35667126270215,157.85000085830688L92.35667126270215,169.2833342552185L92.35667126270215,180.71666765213013L92.35667126270215,192.15000104904175L82.48370778906863,197.86666774749756L72.6107443154351,192.15000104904175L72.6107443154351,180.71666765213013L82.48370778906863,175.00000095367432L92.35667126270215,169.2833342552185L102.22963473633568,163.5666675567627L102.22963473633568,152.13333415985107L92.35667126270215,146.41666746139526L82.48370778906863,140.70000076293945L72.6107443154351,134.98333406448364L72.6107443154351,123.55000066757202L62.73778084180157,117.83333396911621L62.73778084180157,106.40000057220459L72.6107443154351,100.68333387374878L82.48370778906863,106.40000057220459L82.48370778906863,117.83333396911621L92.35667126270215,123.55000066757202L92.35667126270215,134.98333406448364L92.35667126270215,146.41666746139526L92.35667126270215,157.85000085830688L102.22963473633568,163.5666675567627L112.10259820996922,157.85000085830688L121.97556168360275,152.13333415985107L131.84852515723628,146.41666746139526L141.72148863086983,152.13333415985107L141.72148863086983,163.5666675567627L131.84852515723628,169.2833342552185L121.97556168360275,163.5666675567627L112.10259820996922,157.85000085830688L102.22963473633568,152.13333415985107L92.35667126270215,157.85000085830688L92.35667126270215,169.2833342552185L92.35667126270215,180.71666765213013L92.35667126270215,192.15000104904175L82.48370778906863,197.86666774749756L82.48370778906863,209.30000114440918L92.35667126270215,215.016667842865L102.22963473633568,209.30000114440918L102.22963473633568,197.86666774749756L112.10259820996922,192.15000104904175L121.97556168360275,186.43333435058594L131.84852515723628,180.71666765213013L131.84852515723628,169.2833342552185L121.97556168360275,163.5666675567627L112.10259820996922,157.85000085830688L102.22963473633568,152.13333415985107L102.22963473633568,140.70000076293945L112.10259820996922,134.98333406448364L121.97556168360275,140.70000076293945L121.97556168360275,152.13333415985107L121.97556168360275,163.5666675567627L121.97556168360275,175.00000095367432L131.84852515723628,180.71666765213013L141.72148863086983,175.00000095367432L151.59445210450335,169.2833342552185L161.4674155781369,163.5666675567627L171.3403790517704,169.2833342552185L181.21334252540396,163.5666675567627L191.08630599903748,169.2833342552185L200.959269472671,163.5666675567627L200.959269472671,152.13333415985107L191.08630599903748,146.41666746139526L181.21334252540393,152.13333415985107L171.3403790517704,146.41666746139526L161.46741557813687,152.13333415985107L151.59445210450332,146.41666746139526L141.7214886308698,140.70000076293945L131.84852515723625,134.98333406448364L121.97556168360272,140.70000076293945L121.97556168360272,152.13333415985107L121.97556168360272,163.5666675567627L121.97556168360272,175.00000095367432L112.10259820996919,180.71666765213013L102.22963473633565,175.00000095367432L102.22963473633565,163.5666675567627L112.10259820996919,157.85000085830688L121.97556168360272,152.13333415985107L131.84852515723625,146.41666746139526L131.84852515723625,134.98333406448364L121.97556168360272,129.26666736602783L112.10259820996919,123.55000066757202L102.22963473633565,117.83333396911621L102.22963473633565,106.40000057220459L92.35667126270214,100.68333387374878L82.4837077890686,106.40000057220459L82.4837077890686,117.83333396911621L92.35667126270214,123.55000066757202L92.35667126270214,134.98333406448364L92.35667126270214,146.41666746139526L92.35667126270214,157.85000085830688L102.22963473633568,163.5666675567627L112.10259820996922,157.85000085830688L121.97556168360275,152.13333415985107L131.84852515723628,146.41666746139526L141.72148863086983,152.13333415985107L141.72148863086983,163.5666675567627L131.84852515723628,169.2833342552185L121.97556168360275,163.5666675567627L112.10259820996922,157.85000085830688L102.22963473633568,152.13333415985107L92.35667126270215,157.85000085830688L92.35667126270215,169.2833342552185L92.35667126270215,180.71666765213013L92.35667126270215,192.15000104904175L82.48370778906863,197.86666774749756L82.48370778906863,209.30000114440918L72.6107443154351,215.016667842865L62.73778084180157,209.30000114440918L62.73778084180157,197.86666774749756L72.6107443154351,192.15000104904175L72.6107443154351,180.71666765213013L82.48370778906863,175.00000095367432L92.35667126270215,169.2833342552185L102.22963473633568,163.5666675567627L102.22963473633568,152.13333415985107L92.35667126270215,146.41666746139526L82.48370778906863,140.70000076293945L72.6107443154351,134.98333406448364L72.6107443154351,123.55000066757202L82.48370778906863,117.83333396911621L92.35667126270215,123.55000066757202L92.35667126270215,134.98333406448364L92.35667126270215,146.41666746139526L92.35667126270215,157.85000085830688L102.22963473633568,163.5666675567627L112.10259820996922,157.85000085830688L121.97556168360275,152.13333415985107L131.84852515723628,146.41666746139526L141.72148863086983,152.13333415985107L151.59445210450335,146.41666746139526L151.59445210450335,134.98333406448364L141.72148863086983,129.26666736602783L131.84852515723628,134.98333406448364L121.97556168360275,129.26666736602783L112.10259820996922,123.55000066757202L102.22963473633568,117.83333396911621L92.35667126270215,123.55000066757202L92.35667126270215,134.98333406448364L92.35667126270215,146.41666746139526L92.35667126270215,157.85000085830688L82.48370778906863,163.5666675567627L72.6107443154351,157.85000085830688L72.6107443154351,146.41666746139526L82.48370778906863,140.70000076293945L92.35667126270215,134.98333406448364L102.22963473633568,129.26666736602783L102.22963473633568,117.83333396911621L92.35667126270215,112.1166672706604L82.48370778906863,106.40000057220459L72.6107443154351,100.68333387374878L72.6107443154351,89.25000047683716L62.73778084180157,83.53333377838135L62.73778084180157,72.10000038146973L52.86481736816805,66.38333368301392L52.86481736816805,54.950000286102295L42.99185389453453,49.233333587646484L33.118890420900996,54.950000286102295L33.118890420900996,66.38333368301392L42.99185389453453,72.10000038146973L42.99185389453452,83.53333377838135L52.86481736816805,89.25000047683716L52.86481736816805,100.68333387374878L62.73778084180157,106.40000057220459L62.73778084180157,117.83333396911621L62.73778084180157,129.26666736602783L62.73778084180157,140.70000076293945L72.61074431543511,146.41666746139526L82.48370778906865,140.70000076293945L92.35667126270218,134.98333406448364L102.22963473633571,129.26666736602783L112.10259820996926,134.98333406448364L112.10259820996926,146.41666746139526L102.22963473633571,152.13333415985107L92.35667126270219,146.41666746139526L82.48370778906866,140.70000076293945L72.61074431543514,134.98333406448364L62.737780841801616,140.70000076293945L62.737780841801616,152.13333415985107L62.737780841801616,163.5666675567627L62.737780841801616,175.00000095367432L52.86481736816809,180.71666765213013L52.86481736816809,192.15000104904175L62.737780841801616,197.86666774749756L72.61074431543516,192.15000104904175L72.61074431543516,180.71666765213013L82.48370778906869,175.00000095367432L92.35667126270222,169.2833342552185L102.22963473633575,163.5666675567627L102.22963473633575,152.13333415985107L92.35667126270224,146.41666746139526L82.4837077890687,140.70000076293945L72.61074431543518,134.98333406448364L72.61074431543518,123.55000066757202L82.48370778906872,117.83333396911621L92.35667126270224,123.55000066757202L92.35667126270224,134.98333406448364L92.35667126270224,146.41666746139526L92.35667126270224,157.85000085830688L102.22963473633578,163.5666675567627L112.10259820996932,157.85000085830688L121.97556168360285,152.13333415985107L131.8485251572364,146.41666746139526L141.7214886308699,152.13333415985107L151.59445210450346,146.41666746139526L161.46741557813698,152.13333415985107L161.46741557813698,163.5666675567627L151.59445210450346,169.2833342552185L141.7214886308699,163.5666675567627L131.8485251572364,169.2833342552185L121.97556168360285,163.5666675567627L112.10259820996932,157.85000085830688L102.22963473633578,152.13333415985107L92.35667126270225,157.85000085830688L92.35667126270225,169.2833342552185L92.35667126270225,180.71666765213013L92.35667126270225,192.15000104904175L82.48370778906873,197.86666774749756L72.6107443154352,192.15000104904175L72.6107443154352,180.71666765213013L82.48370778906873,175.00000095367432L92.35667126270225,169.2833342552185L102.22963473633578,163.5666675567627L102.22963473633578,152.13333415985107L92.35667126270225,146.41666746139526L82.48370778906873,140.70000076293945L72.6107443154352,134.98333406448364L72.6107443154352,123.55000066757202L62.73778084180168,117.83333396911621L52.864817368168154,123.55000066757202L52.864817368168154,134.98333406448364L62.73778084180168,140.70000076293945L62.73778084180168,152.13333415985107L62.73778084180168,163.5666675567627L62.73778084180168,175.00000095367432L72.61074431543521,180.71666765213013L82.48370778906875,175.00000095367432L92.35667126270228,169.2833342552185L102.22963473633581,163.5666675567627L112.10259820996936,169.2833342552185L112.10259820996936,180.71666765213013L102.22963473633581,186.43333435058594L92.35667126270229,180.71666765213013L82.48370778906877,175.00000095367432L72.61074431543524,169.2833342552185L62.737780841801715,175.00000095367432L62.737780841801715,186.43333435058594L62.737780841801715,197.86666774749756L62.737780841801715,209.30000114440918L52.86481736816819,215.016667842865L52.86481736816819,226.4500012397766L42.991853894534664,232.16666793823242L42.991853894534664,243.60000133514404L52.86481736816819,249.31666803359985L62.73778084180173,243.60000133514404L62.73778084180173,232.16666793823242L72.61074431543527,226.4500012397766L72.61074431543527,215.016667842865L82.4837077890688,209.30000114440918L92.35667126270233,203.58333444595337L102.22963473633585,197.86666774749756L102.22963473633585,186.43333435058594L92.35667126270233,180.71666765213013L82.4837077890688,175.00000095367432L72.61074431543528,169.2833342552185L72.61074431543528,157.85000085830688L82.48370778906882,152.13333415985107L92.35667126270235,157.85000085830688L92.35667126270235,169.2833342552185L92.35667126270235,180.71666765213013L92.35667126270235,192.15000104904175L102.22963473633588,197.86666774749756L112.10259820996941,192.15000104904175L121.97556168360295,186.43333435058594L131.84852515723648,180.71666765213013L141.72148863087003,186.43333435058594L151.59445210450355,180.71666765213013L151.59445210450355,169.2833342552185L141.72148863087003,163.5666675567627L131.84852515723648,169.2833342552185L121.97556168360295,163.5666675567627L112.10259820996941,157.85000085830688L102.22963473633588,152.13333415985107L92.35667126270235,157.85000085830688L92.35667126270233,169.2833342552185L92.35667126270232,180.71666765213013L92.3566712627023,192.15000104904175L82.48370778906877,197.86666774749756L72.61074431543526,192.15000104904175L72.61074431543526,180.71666765213013L82.48370778906879,175.00000095367432L92.35667126270232,169.2833342552185L102.22963473633585,163.5666675567627L102.22963473633585,152.13333415985107L92.35667126270233,146.41666746139526L82.4837077890688,140.70000076293945L72.61074431543528,134.98333406448364L72.61074431543528,123.55000066757202L62.73778084180176,117.83333396911621L62.73778084180176,106.40000057220459L72.6107443154353,100.68333387374878L82.48370778906883,106.40000057220459L82.48370778906883,117.83333396911621L92.35667126270236,123.55000066757202L92.35667126270236,134.98333406448364L92.35667126270236,146.41666746139526L92.35667126270236,157.85000085830688L102.2296347363359,163.5666675567627L112.10259820996943,157.85000085830688L121.97556168360298,152.13333415985107L131.8485251572365,146.41666746139526L141.72148863087003,152.13333415985107L141.72148863087003,163.5666675567627L131.8485251572365,169.2833342552185L121.97556168360298,163.5666675567627L112.10259820996943,157.85000085830688L102.2296347363359,152.13333415985107L92.35667126270238,157.85000085830688L92.35667126270238,169.2833342552185L92.35667126270238,180.71666765213013L92.35667126270238,192.15000104904175L82.48370778906884,197.86666774749756L82.48370778906884,209.30000114440918L92.35667126270238,215.016667842865L102.22963473633592,209.30000114440918L102.22963473633592,197.86666774749756L112.10259820996946,192.15000104904175L121.97556168360299,186.43333435058594L131.84852515723654,180.71666765213013L131.84852515723654,169.2833342552185L121.97556168360299,163.5666675567627L112.10259820996946,157.85000085830688L102.22963473633592,152.13333415985107L102.22963473633592,140.70000076293945L112.10259820996946,134.98333406448364L121.97556168360299,140.70000076293945L121.97556168360299,152.13333415985107L121.97556168360299,163.5666675567627L121.97556168360299,175.00000095367432L131.84852515723654,180.71666765213013L141.72148863087006,175.00000095367432L151.5944521045036,169.2833342552185L161.46741557813712,163.5666675567627L171.34037905177067,169.2833342552185L181.2133425254042,163.5666675567627L191.0863059990377,169.2833342552185L200.95926947267122,163.5666675567627L210.83223294630474,169.2833342552185L210.83223294630474,180.71666765213013L200.95926947267122,186.43333435058594L191.0863059990377,180.71666765213013L181.2133425254042,186.43333435058594L171.34037905177064,180.71666765213013L161.46741557813712,186.43333435058594L151.59445210450357,180.71666765213013L141.72148863087003,175.00000095367432L131.8485251572365,169.2833342552185L121.97556168360298,175.00000095367432L121.97556168360298,186.43333435058594L121.97556168360298,197.86666774749756L121.97556168360298,209.30000114440918L112.10259820996943,215.016667842865L102.2296347363359,209.30000114440918L102.2296347363359,197.86666774749756L112.10259820996943,192.15000104904175L121.97556168360298,186.43333435058594L131.8485251572365,180.71666765213013L131.8485251572365,169.2833342552185L121.97556168360298,163.5666675567627L112.10259820996943,157.85000085830688L102.2296347363359,152.13333415985107L102.2296347363359,140.70000076293945L92.35667126270238,134.98333406448364L82.48370778906884,140.70000076293945L82.48370778906884,152.13333415985107L92.35667126270238,157.85000085830688L92.35667126270238,169.2833342552185L92.35667126270238,180.71666765213013L92.35667126270238,192.15000104904175L102.22963473633592,197.86666774749756L112.10259820996946,192.15000104904175L121.97556168360299,186.43333435058594L131.84852515723654,180.71666765213013L141.72148863087006,186.43333435058594L141.72148863087006,197.86666774749756L131.84852515723654,203.58333444595337L121.97556168360299,197.86666774749756L112.10259820996946,192.15000104904175L102.22963473633592,186.43333435058594L92.35667126270239,192.15000104904175L92.35667126270239,203.58333444595337L92.35667126270239,215.016667842865L92.35667126270239,226.4500012397766L82.48370778906887,232.16666793823242L82.48370778906887,243.60000133514404L72.61074431543534,249.31666803359985L62.73778084180182,243.60000133514404L62.73778084180182,232.16666793823242L72.61074431543534,226.4500012397766L72.61074431543534,215.016667842865L82.48370778906887,209.30000114440918L92.35667126270239,203.58333444595337L102.22963473633592,197.86666774749756L102.22963473633592,186.43333435058594L92.35667126270239,180.71666765213013L82.48370778906887,175.00000095367432L72.61074431543534,169.2833342552185L72.61074431543534,157.85000085830688L82.48370778906887,152.13333415985107L92.35667126270239,157.85000085830688L92.35667126270239,169.2833342552185L92.35667126270239,180.71666765213013L92.35667126270239,192.15000104904175L102.22963473633592,197.86666774749756L112.10259820996946,192.15000104904175L121.97556168360299,186.43333435058594L131.84852515723654,180.71666765213013L141.72148863087006,186.43333435058594L151.5944521045036,180.71666765213013L151.5944521045036,169.2833342552185L141.72148863087006,163.5666675567627L131.84852515723654,169.2833342552185L121.97556168360299,163.5666675567627L112.10259820996946,157.85000085830688L102.22963473633592,152.13333415985107L92.35667126270239,157.85000085830688L92.35667126270239,169.2833342552185L92.35667126270239,180.71666765213013L92.35667126270239,192.15000104904175L82.48370778906887,197.86666774749756L72.61074431543534,192.15000104904175L72.61074431543534,180.71666765213013L82.48370778906887,175.00000095367432L92.35667126270239,169.2833342552185L102.22963473633592,163.5666675567627L102.22963473633592,152.13333415985107L92.35667126270239,146.41666746139526L82.48370778906887,140.70000076293945L72.61074431543534,134.98333406448364L72.61074431543534,123.55000066757202L62.73778084180182,117.83333396911621L62.73778084180182,106.40000057220459L52.864817368168296,100.68333387374878L42.99185389453477,106.40000057220459L42.99185389453476,117.83333396911621L52.864817368168296,123.55000066757202L52.864817368168296,134.98333406448364L62.73778084180182,140.70000076293945L62.73778084180182,152.13333415985107L62.73778084180182,163.5666675567627L62.73778084180182,175.00000095367432L72.61074431543535,180.71666765213013L82.48370778906889,175.00000095367432L92.35667126270242,169.2833342552185L102.22963473633595,163.5666675567627L112.1025982099695,169.2833342552185L112.1025982099695,180.71666765213013L102.22963473633595,186.43333435058594L92.35667126270243,180.71666765213013L82.48370778906892,175.00000095367432L72.61074431543538,169.2833342552185L62.73778084180186,175.00000095367432L62.73778084180186,186.43333435058594L62.73778084180186,197.86666774749756L62.73778084180186,209.30000114440918L52.86481736816833,215.016667842865L52.86481736816833,226.4500012397766L62.73778084180186,232.16666793823242L72.6107443154354,226.4500012397766L72.6107443154354,215.016667842865L82.48370778906893,209.30000114440918L92.35667126270246,203.58333444595337L102.229634736336,197.86666774749756L102.229634736336,186.43333435058594L92.35667126270248,180.71666765213013L82.48370778906894,175.00000095367432L72.61074431543543,169.2833342552185L72.61074431543543,157.85000085830688L82.48370778906896,152.13333415985107L92.35667126270249,157.85000085830688L92.35667126270249,169.2833342552185L92.35667126270249,180.71666765213013L92.35667126270249,192.15000104904175L102.22963473633602,197.86666774749756L112.10259820996956,192.15000104904175L121.97556168360309,186.43333435058594L131.84852515723662,180.71666765213013L141.72148863087017,186.43333435058594L151.5944521045037,180.71666765213013L161.46741557813723,186.43333435058594L161.46741557813723,197.86666774749756L151.5944521045037,203.58333444595337L141.72148863087017,197.86666774749756L131.84852515723662,203.58333444595337L121.97556168360309,197.86666774749756L112.10259820996956,192.15000104904175L102.22963473633602,186.43333435058594L92.35667126270249,192.15000104904175L92.35667126270249,203.58333444595337L92.35667126270249,215.016667842865L92.35667126270249,226.4500012397766L82.48370778906897,232.16666793823242L72.61074431543544,226.4500012397766L72.61074431543544,215.016667842865L82.48370778906897,209.30000114440918L92.35667126270249,203.58333444595337L102.22963473633602,197.86666774749756L102.22963473633602,186.43333435058594L92.35667126270249,180.71666765213013L82.48370778906897,175.00000095367432L72.61074431543544,169.2833342552185L72.61074431543544,157.85000085830688L62.73778084180192,152.13333415985107L52.864817368168396,157.85000085830688L52.864817368168396,169.2833342552185L62.73778084180192,175.00000095367432L62.73778084180192,186.43333435058594L62.73778084180192,197.86666774749756L62.73778084180192,209.30000114440918L72.61074431543545,215.016667842865L82.48370778906899,209.30000114440918L92.35667126270252,203.58333444595337L102.22963473633607,197.86666774749756L112.1025982099696,203.58333444595337L112.1025982099696,215.016667842865L102.22963473633607,220.7333345413208L92.35667126270253,215.016667842865L82.48370778906902,209.30000114440918L72.61074431543548,203.58333444595337L62.737780841801964,209.30000114440918L62.737780841801964,220.7333345413208L62.737780841801964,232.16666793823242L62.737780841801964,243.60000133514404L52.86481736816844,249.31666803359985L52.86481736816844,260.7500014305115L42.99185389453491,266.4666681289673L42.991853894534906,277.9000015258789L33.11889042090138,283.6166682243347L33.118890420901366,295.05000162124634L23.245926947267844,300.76666831970215L13.372963473634316,295.05000162124634L13.372963473634318,283.6166682243347L23.245926947267844,277.9000015258789L23.245926947267847,266.4666681289673L33.11889042090138,260.7500014305115L33.11889042090138,249.31666803359985L42.991853894534906,243.60000133514404L42.991853894534906,232.16666793823242L52.86481736816844,226.4500012397766L62.737780841801964,220.7333345413208L72.61074431543548,215.016667842865L72.61074431543548,203.58333444595337L62.737780841801964,197.86666774749756L52.86481736816844,192.15000104904175L42.99185389453491,186.43333435058594L42.99185389453491,175.00000095367432L52.86481736816844,169.2833342552185L62.737780841801964,175.00000095367432L62.737780841801964,186.43333435058594L62.737780841801964,197.86666774749756L62.737780841801964,209.30000114440918L72.61074431543548,215.016667842865L82.48370778906902,209.30000114440918L92.35667126270253,203.58333444595337L102.22963473633607,197.86666774749756L112.1025982099696,203.58333444595337L121.97556168360313,197.86666774749756L121.97556168360313,186.43333435058594L112.1025982099696,180.71666765213013L102.22963473633607,186.43333435058594L92.35667126270253,180.71666765213013L82.48370778906902,175.00000095367432L72.61074431543548,169.2833342552185L62.737780841801964,175.00000095367432L62.737780841801964,186.43333435058594L62.737780841801964,197.86666774749756L62.737780841801964,209.30000114440918L52.86481736816844,215.016667842865L42.99185389453491,209.30000114440918L42.99185389453491,197.86666774749756L52.86481736816844,192.15000104904175L62.737780841801964,186.43333435058594L72.61074431543548,180.71666765213013L72.61074431543548,169.2833342552185L62.737780841801964,163.5666675567627L52.86481736816844,157.85000085830688L42.99185389453491,152.13333415985107L42.99185389453491,140.70000076293945L33.11889042090139,134.98333406448364L33.11889042090139,123.55000066757202L42.99185389453491,117.83333396911621L52.864817368168445,123.55000066757202L52.864817368168445,134.98333406448364L62.73778084180197,140.70000076293945L62.73778084180197,152.13333415985107L62.73778084180197,163.5666675567627L62.73778084180197,175.00000095367432L72.6107443154355,180.71666765213013L82.48370778906902,175.00000095367432L92.35667126270255,169.2833342552185L102.22963473633608,163.5666675567627L112.10259820996961,169.2833342552185L112.10259820996961,180.71666765213013L102.22963473633608,186.43333435058594L92.35667126270256,180.71666765213013L82.48370778906903,175.00000095367432L72.61074431543551,169.2833342552185L62.73778084180198,175.00000095367432L62.73778084180198,186.43333435058594L62.73778084180198,197.86666774749756L62.73778084180198,209.30000114440918L52.86481736816845,215.016667842865L52.86481736816845,226.4500012397766L62.73778084180198,232.16666793823242L72.61074431543551,226.4500012397766L72.61074431543551,215.016667842865L82.48370778906903,209.30000114440918L92.35667126270256,203.58333444595337L102.22963473633608,197.86666774749756L102.22963473633608,186.43333435058594L92.35667126270256,180.71666765213013L82.48370778906903,175.00000095367432L72.61074431543551,169.2833342552185L72.61074431543551,157.85000085830688L82.48370778906903,152.13333415985107L92.35667126270256,157.85000085830688L92.35667126270256,169.2833342552185L92.35667126270256,180.71666765213013L92.35667126270256,192.15000104904175L102.22963473633608,197.86666774749756L112.10259820996961,192.15000104904175L121.97556168360315,186.43333435058594L131.84852515723668,180.71666765213013L141.72148863087023,186.43333435058594L151.59445210450374,180.71666765213013L161.4674155781373,186.43333435058594L171.34037905177084,180.71666765213013L171.34037905177084,169.2833342552185L161.4674155781373,163.5666675567627L151.59445210450374,169.2833342552185L141.72148863087023,163.5666675567627L131.84852515723668,169.2833342552185L121.97556168360315,163.5666675567627L112.10259820996961,157.85000085830688L102.22963473633608,152.13333415985107L92.35667126270256,157.85000085830688L92.35667126270256,169.2833342552185L92.35667126270256,180.71666765213013L92.35667126270256,192.15000104904175L82.48370778906903,197.86666774749756L72.61074431543551,192.15000104904175L72.61074431543551,180.71666765213013L82.48370778906903,175.00000095367432L92.35667126270256,169.2833342552185L102.22963473633608,163.5666675567627L102.22963473633608,152.13333415985107L92.35667126270256,146.41666746139526L82.48370778906903,140.70000076293945L72.61074431543551,134.98333406448364L72.61074431543551,123.55000066757202L62.73778084180198,117.83333396911621L52.86481736816845,123.55000066757202L52.86481736816845,134.98333406448364L62.73778084180198,140.70000076293945L62.73778084180198,152.13333415985107L62.73778084180198,163.5666675567627L62.73778084180198,175.00000095367432L72.61074431543551,180.71666765213013L82.48370778906906,175.00000095367432L92.35667126270259,169.2833342552185L102.22963473633612,163.5666675567627L112.10259820996966,169.2833342552185L112.10259820996966,180.71666765213013L102.22963473633612,186.43333435058594L92.35667126270259,180.71666765213013L82.48370778906907,175.00000095367432L72.61074431543554,169.2833342552185L62.73778084180202,175.00000095367432L62.73778084180202,186.43333435058594L62.73778084180202,197.86666774749756L62.73778084180202,209.30000114440918L52.864817368168495,215.016667842865L52.864817368168495,226.4500012397766L42.99185389453497,232.16666793823242L33.11889042090145,226.4500012397766L33.11889042090145,215.016667842865L42.99185389453498,209.30000114440918L42.99185389453498,197.86666774749756L52.86481736816851,192.15000104904175L62.73778084180203,186.43333435058594L72.61074431543555,180.71666765213013L72.61074431543555,169.2833342552185L62.73778084180203,163.5666675567627L52.86481736816851,157.85000085830688L42.991853894534984,152.13333415985107L42.991853894534984,140.70000076293945L52.86481736816851,134.98333406448364L62.73778084180203,140.70000076293945L62.73778084180203,152.13333415985107L62.73778084180203,163.5666675567627L62.73778084180203,175.00000095367432L72.61074431543555,180.71666765213013L82.48370778906909,175.00000095367432L92.3566712627026,169.2833342552185L102.22963473633614,163.5666675567627L112.10259820996967,169.2833342552185L121.97556168360322,163.5666675567627L121.97556168360322,152.13333415985107L112.10259820996967,146.41666746139526L102.22963473633614,152.13333415985107L92.35667126270262,146.41666746139526L82.48370778906909,140.70000076293945L72.61074431543557,134.98333406448364L62.73778084180204,140.70000076293945L62.73778084180204,152.13333415985107L62.73778084180204,163.5666675567627L62.73778084180204,175.00000095367432L52.86481736816852,180.71666765213013L42.99185389453499,175.00000095367432L42.99185389453499,163.5666675567627L52.86481736816852,157.85000085830688L62.73778084180204,152.13333415985107L72.61074431543557,146.41666746139526L72.61074431543557,134.98333406448364L62.73778084180204,129.26666736602783L52.86481736816852,123.55000066757202L42.99185389453499,117.83333396911621L42.99185389453499,106.40000057220459L33.118890420901465,100.68333387374878L33.118890420901465,89.25000047683716L23.24592694726794,83.53333377838135L23.245926947267943,72.10000038146973L33.11889042090147,66.38333368301392L42.991853894535005,72.10000038146973L42.991853894535005,83.53333377838135L52.864817368168524,89.25000047683716L52.864817368168524,100.68333387374878L62.73778084180205,106.40000057220459L62.73778084180205,117.83333396911621L62.73778084180205,129.26666736602783L62.73778084180205,140.70000076293945L72.61074431543558,146.41666746139526L82.4837077890691,140.70000076293945L92.35667126270263,134.98333406448364L102.22963473633617,129.26666736602783L112.1025982099697,134.98333406448364L112.1025982099697,146.41666746139526L102.22963473633617,152.13333415985107L92.35667126270263,146.41666746139526L82.48370778906911,140.70000076293945L72.61074431543558,134.98333406448364L62.73778084180206,140.70000076293945L62.73778084180206,152.13333415985107L62.73778084180206,163.5666675567627L62.73778084180206,175.00000095367432L52.86481736816854,180.71666765213013L52.86481736816854,192.15000104904175L62.73778084180206,197.86666774749756L72.61074431543558,192.15000104904175L72.61074431543558,180.71666765213013L82.48370778906911,175.00000095367432L92.35667126270263,169.2833342552185L102.22963473633617,163.5666675567627L102.22963473633617,152.13333415985107L92.35667126270263,146.41666746139526L82.48370778906911,140.70000076293945L72.61074431543558,134.98333406448364L72.61074431543558,123.55000066757202L82.48370778906911,117.83333396911621L92.35667126270263,123.55000066757202L92.35667126270263,134.98333406448364L92.35667126270263,146.41666746139526L92.35667126270263,157.85000085830688L102.22963473633617,163.5666675567627L112.1025982099697,157.85000085830688L121.97556168360323,152.13333415985107L131.84852515723676,146.41666746139526L141.7214886308703,152.13333415985107L151.59445210450383,146.41666746139526L161.46741557813738,152.13333415985107L161.46741557813738,163.5666675567627L151.59445210450383,169.2833342552185L141.7214886308703,163.5666675567627L131.84852515723676,169.2833342552185L121.97556168360323,163.5666675567627L112.1025982099697,157.85000085830688L102.22963473633617,152.13333415985107L92.35667126270263,157.85000085830688L92.35667126270263,169.2833342552185L92.35667126270263,180.71666765213013L92.35667126270263,192.15000104904175L82.48370778906911,197.86666774749756L72.61074431543558,192.15000104904175L72.61074431543558,180.71666765213013L82.48370778906911,175.00000095367432L92.35667126270263,169.2833342552185L102.22963473633617,163.5666675567627L102.22963473633617,152.13333415985107L92.35667126270263,146.41666746139526L82.48370778906911,140.70000076293945L72.61074431543558,134.98333406448364L72.61074431543558,123.55000066757202L62.73778084180206,117.83333396911621L52.86481736816854,123.55000066757202L52.86481736816854,134.98333406448364L62.73778084180206,140.70000076293945L62.73778084180206,152.13333415985107L62.73778084180206,163.5666675567627L62.73778084180206,175.00000095367432L72.61074431543558,180.71666765213013L82.48370778906911,175.00000095367432L92.35667126270263,169.2833342552185L102.22963473633617,163.5666675567627L112.1025982099697,169.2833342552185L112.1025982099697,180.71666765213013L102.22963473633617,186.43333435058594L92.35667126270263,180.71666765213013L82.48370778906911,175.00000095367432L72.61074431543558,169.2833342552185L62.73778084180206,175.00000095367432L62.73778084180206,186.43333435058594L62.73778084180206,197.86666774749756L62.73778084180206,209.30000114440918L52.86481736816854,215.016667842865L52.86481736816854,226.4500012397766L42.99185389453501,232.16666793823242L42.99185389453501,243.60000133514404L52.86481736816854,249.31666803359985L62.73778084180206,243.60000133514404L62.73778084180206,232.16666793823242L72.61074431543558,226.4500012397766L72.61074431543558,215.016667842865L82.48370778906911,209.30000114440918L92.35667126270263,203.58333444595337L102.22963473633617,197.86666774749756L102.22963473633617,186.43333435058594L92.35667126270263,180.71666765213013L82.48370778906911,175.00000095367432L72.61074431543558,169.2833342552185L72.61074431543558,157.85000085830688L82.48370778906911,152.13333415985107L92.35667126270263,157.85000085830688L92.35667126270263,169.2833342552185L92.35667126270263,180.71666765213013L92.35667126270263,192.15000104904175L102.22963473633617,197.86666774749756L112.1025982099697,192.15000104904175L121.97556168360323,186.43333435058594L131.84852515723676,180.71666765213013L141.7214886308703,186.43333435058594L151.59445210450383,180.71666765213013L151.59445210450383,169.2833342552185L141.7214886308703,163.5666675567627L131.84852515723676,169.2833342552185L121.97556168360323,163.5666675567627L112.1025982099697,157.85000085830688L102.22963473633617,152.13333415985107L92.35667126270263,157.85000085830688L92.35667126270263,169.2833342552185L92.35667126270263,180.71666765213013L92.35667126270263,192.15000104904175L82.48370778906911,197.86666774749756L72.61074431543558,192.15000104904175L72.61074431543558,180.71666765213013L82.48370778906911,175.00000095367432L92.35667126270263,169.2833342552185L102.22963473633617,163.5666675567627L102.22963473633617,152.13333415985107L92.35667126270263,146.41666746139526L82.48370778906911,140.70000076293945L72.61074431543558,134.98333406448364L72.61074431543558,123.55000066757202L62.73778084180206,117.83333396911621L62.73778084180206,106.40000057220459L72.61074431543558,100.68333387374878L82.48370778906911,106.40000057220459L82.48370778906911,117.83333396911621L92.35667126270263,123.55000066757202L92.35667126270263,134.98333406448364L92.35667126270263,146.41666746139526L92.35667126270263,157.85000085830688L102.22963473633617,163.5666675567627L112.1025982099697,157.85000085830688L121.97556168360323,152.13333415985107L131.84852515723676,146.41666746139526L141.7214886308703,152.13333415985107L141.7214886308703,163.5666675567627L131.84852515723676,169.2833342552185L121.97556168360323,163.5666675567627L112.1025982099697,157.85000085830688L102.22963473633617,152.13333415985107L92.35667126270263,157.85000085830688L92.35667126270263,169.2833342552185L92.35667126270263,180.71666765213013L92.35667126270263,192.15000104904175L82.48370778906911,197.86666774749756L82.48370778906911,209.30000114440918L92.35667126270263,215.016667842865L102.22963473633617,209.30000114440918L102.22963473633617,197.86666774749756L112.1025982099697,192.15000104904175L121.97556168360323,186.43333435058594L131.84852515723676,180.71666765213013L131.84852515723676,169.2833342552185L121.97556168360323,163.5666675567627L112.1025982099697,157.85000085830688L102.22963473633617,152.13333415985107L102.22963473633617,140.70000076293945L112.1025982099697,134.98333406448364L121.97556168360323,140.70000076293945L121.97556168360323,152.13333415985107L121.97556168360323,163.5666675567627L121.97556168360323,175.00000095367432L131.84852515723676,180.71666765213013L141.7214886308703,175.00000095367432L151.59445210450383,169.2833342552185L161.46741557813738,163.5666675567627L171.3403790517709,169.2833342552185L181.21334252540444,163.5666675567627L191.08630599903796,169.2833342552185L200.95926947267148,163.5666675567627L210.832232946305,169.2833342552185L220.70519641993852,163.5666675567627L220.70519641993852,152.13333415985107L210.832232946305,146.41666746139526L200.95926947267148,152.13333415985107L191.08630599903796,146.41666746139526L181.2133425254044,152.13333415985107L171.3403790517709,146.41666746139526L161.46741557813735,152.13333415985107L151.59445210450383,146.41666746139526L141.72148863087028,140.70000076293945L131.84852515723674,134.98333406448364L121.97556168360322,140.70000076293945L121.97556168360322,152.13333415985107L121.97556168360322,163.5666675567627L121.97556168360322,175.00000095367432L112.10259820996967,180.71666765213013L102.22963473633614,175.00000095367432L102.22963473633614,163.5666675567627L112.10259820996967,157.85000085830688L121.97556168360322,152.13333415985107L131.84852515723674,146.41666746139526L131.84852515723674,134.98333406448364L121.97556168360322,129.26666736602783L112.10259820996967,123.55000066757202L102.22963473633614,117.83333396911621L102.22963473633614,106.40000057220459L92.35667126270262,100.68333387374878L82.48370778906909,106.40000057220459L82.48370778906909,117.83333396911621L92.35667126270263,123.55000066757202L92.35667126270263,134.98333406448364L92.35667126270263,146.41666746139526L92.35667126270263,157.85000085830688L102.22963473633617,163.5666675567627L112.1025982099697,157.85000085830688L121.97556168360323,152.13333415985107L131.84852515723676,146.41666746139526L141.7214886308703,152.13333415985107L141.7214886308703,163.5666675567627L131.84852515723676,169.2833342552185L121.97556168360323,163.5666675567627L112.1025982099697,157.85000085830688L102.22963473633617,152.13333415985107L92.35667126270263,157.85000085830688L92.35667126270263,169.2833342552185L92.35667126270263,180.71666765213013L92.35667126270263,192.15000104904175L82.48370778906911,197.86666774749756L82.48370778906911,209.30000114440918L72.61074431543558,215.016667842865L62.73778084180206,209.30000114440918L62.73778084180206,197.86666774749756L72.61074431543558,192.15000104904175L72.61074431543558,180.71666765213013L82.48370778906911,175.00000095367432L92.35667126270263,169.2833342552185L102.22963473633617,163.5666675567627L102.22963473633617,152.13333415985107L92.35667126270263,146.41666746139526L82.48370778906911,140.70000076293945L72.61074431543558,134.98333406448364L72.61074431543558,123.55000066757202L82.48370778906911,117.83333396911621L92.35667126270263,123.55000066757202L92.35667126270263,134.98333406448364L92.35667126270263,146.41666746139526L92.35667126270263,157.85000085830688L102.22963473633617,163.5666675567627L112.1025982099697,157.85000085830688L121.97556168360323,152.13333415985107L131.84852515723676,146.41666746139526L141.7214886308703,152.13333415985107L151.59445210450383,146.41666746139526L151.59445210450383,134.98333406448364L141.7214886308703,129.26666736602783L131.84852515723676,134.98333406448364L121.97556168360323,129.26666736602783L112.1025982099697,123.55000066757202L102.22963473633617,117.83333396911621L92.35667126270263,123.55000066757202L92.35667126270263,134.98333406448364L92.35667126270263,146.41666746139526L92.35667126270263,157.85000085830688L82.48370778906911,163.5666675567627L72.61074431543558,157.85000085830688L72.61074431543558,146.41666746139526L82.48370778906911,140.70000076293945L92.35667126270263,134.98333406448364L102.22963473633617,129.26666736602783L102.22963473633617,117.83333396911621L92.35667126270263,112.1166672706604L82.48370778906911,106.40000057220459L72.61074431543558,100.68333387374878L72.61074431543558,89.25000047683716L62.73778084180206,83.53333377838135L62.73778084180206,72.10000038146973L52.86481736816854,66.38333368301392L42.99185389453501,72.10000038146973L42.991853894535005,83.53333377838135L52.86481736816854,89.25000047683716L52.86481736816854,100.68333387374878L62.73778084180206,106.40000057220459L62.73778084180206,117.83333396911621L62.73778084180206,129.26666736602783L62.73778084180206,140.70000076293945L72.6107443154356,146.41666746139526L82.48370778906913,140.70000076293945L92.35667126270266,134.98333406448364L102.22963473633621,129.26666736602783L112.10259820996974,134.98333406448364L112.10259820996974,146.41666746139526L102.22963473633621,152.13333415985107L92.35667126270268,146.41666746139526L82.48370778906916,140.70000076293945L72.61074431543562,134.98333406448364L62.7377808418021,140.70000076293945L62.7377808418021,152.13333415985107L62.7377808418021,163.5666675567627L62.7377808418021,175.00000095367432L52.86481736816858,180.71666765213013L52.86481736816858,192.15000104904175L62.7377808418021,197.86666774749756L72.61074431543564,192.15000104904175L72.61074431543564,180.71666765213013L82.48370778906917,175.00000095367432L92.3566712627027,169.2833342552185L102.22963473633624,163.5666675567627L102.22963473633624,152.13333415985107L92.35667126270272,146.41666746139526L82.4837077890692,140.70000076293945L72.61074431543567,134.98333406448364L72.61074431543567,123.55000066757202L82.4837077890692,117.83333396911621L92.35667126270273,123.55000066757202L92.35667126270273,134.98333406448364L92.35667126270273,146.41666746139526L92.35667126270273,157.85000085830688L102.22963473633627,163.5666675567627L112.1025982099698,157.85000085830688L121.97556168360333,152.13333415985107L131.84852515723688,146.41666746139526L141.7214886308704,152.13333415985107L151.59445210450394,146.41666746139526L161.46741557813746,152.13333415985107L161.46741557813746,163.5666675567627L151.59445210450394,169.2833342552185L141.7214886308704,163.5666675567627L131.84852515723688,169.2833342552185L121.97556168360333,163.5666675567627L112.1025982099698,157.85000085830688L102.22963473633627,152.13333415985107L92.35667126270273,157.85000085830688L92.35667126270273,169.2833342552185L92.35667126270273,180.71666765213013L92.35667126270273,192.15000104904175L82.48370778906921,197.86666774749756L72.61074431543568,192.15000104904175L72.61074431543568,180.71666765213013L82.48370778906921,175.00000095367432L92.35667126270273,169.2833342552185L102.22963473633627,163.5666675567627L102.22963473633627,152.13333415985107L92.35667126270273,146.41666746139526L82.48370778906921,140.70000076293945L72.61074431543568,134.98333406448364L72.61074431543568,123.55000066757202L62.73778084180216,117.83333396911621L52.86481736816864,123.55000066757202L52.86481736816864,134.98333406448364L62.73778084180216,140.70000076293945L62.73778084180216,152.13333415985107L62.73778084180216,163.5666675567627L62.73778084180216,175.00000095367432L72.6107443154357,180.71666765213013L82.48370778906923,175.00000095367432L92.35667126270278,169.2833342552185L102.22963473633631,163.5666675567627L112.10259820996984,169.2833342552185L112.10259820996984,180.71666765213013L102.22963473633631,186.43333435058594L92.35667126270278,180.71666765213013L82.48370778906926,175.00000095367432L72.61074431543572,169.2833342552185L62.737780841802206,175.00000095367432L62.737780841802206,186.43333435058594L62.737780841802206,197.86666774749756L62.737780841802206,209.30000114440918L52.86481736816868,215.016667842865L52.86481736816868,226.4500012397766L42.991853894535154,232.16666793823242L42.99185389453515,243.60000133514404L33.11889042090162,249.31666803359985L23.245926947268092,243.60000133514404L23.245926947268096,232.16666793823242L33.11889042090162,226.4500012397766L33.11889042090162,215.016667842865L42.991853894535154,209.30000114440918L42.991853894535154,197.86666774749756L52.86481736816868,192.15000104904175L62.737780841802206,186.43333435058594L72.61074431543572,180.71666765213013L72.61074431543572,169.2833342552185L62.737780841802206,163.5666675567627L52.86481736816868,157.85000085830688L42.991853894535154,152.13333415985107L42.991853894535154,140.70000076293945L52.86481736816868,134.98333406448364L62.737780841802206,140.70000076293945L62.737780841802206,152.13333415985107L62.737780841802206,163.5666675567627L62.737780841802206,175.00000095367432L72.61074431543572,180.71666765213013L82.48370778906926,175.00000095367432L92.35667126270278,169.2833342552185L102.22963473633631,163.5666675567627L112.10259820996984,169.2833342552185L121.97556168360337,163.5666675567627L121.97556168360337,152.13333415985107L112.10259820996984,146.41666746139526L102.22963473633631,152.13333415985107L92.35667126270278,146.41666746139526L82.48370778906926,140.70000076293945L72.61074431543572,134.98333406448364L62.737780841802206,140.70000076293945L62.737780841802206,152.13333415985107L62.737780841802206,163.5666675567627L62.737780841802206,175.00000095367432L52.86481736816868,180.71666765213013L42.991853894535154,175.00000095367432L42.991853894535154,163.5666675567627L52.86481736816868,157.85000085830688L62.737780841802206,152.13333415985107L72.61074431543572,146.41666746139526L72.61074431543572,134.98333406448364L62.737780841802206,129.26666736602783L52.86481736816868,123.55000066757202L42.991853894535154,117.83333396911621L42.991853894535154,106.40000057220459L33.11889042090163,100.68333387374878L33.11889042090163,89.25000047683716L42.99185389453516,83.53333377838135L52.86481736816869,89.25000047683716L52.86481736816869,100.68333387374878L62.73778084180221,106.40000057220459L62.73778084180221,117.83333396911621L62.73778084180221,129.26666736602783L62.73778084180221,140.70000076293945L72.61074431543574,146.41666746139526L82.48370778906926,140.70000076293945L92.35667126270279,134.98333406448364L102.22963473633632,129.26666736602783L112.10259820996986,134.98333406448364L112.10259820996986,146.41666746139526L102.22963473633632,152.13333415985107L92.3566712627028,146.41666746139526L82.48370778906927,140.70000076293945L72.61074431543575,134.98333406448364L62.73778084180223,140.70000076293945L62.73778084180223,152.13333415985107L62.73778084180223,163.5666675567627L62.73778084180223,175.00000095367432L52.8648173681687,180.71666765213013L52.8648173681687,192.15000104904175L62.73778084180223,197.86666774749756L72.61074431543575,192.15000104904175L72.61074431543575,180.71666765213013L82.48370778906927,175.00000095367432L92.3566712627028,169.2833342552185L102.22963473633632,163.5666675567627L102.22963473633632,152.13333415985107L92.3566712627028,146.41666746139526L82.48370778906927,140.70000076293945L72.61074431543575,134.98333406448364L72.61074431543575,123.55000066757202L82.48370778906927,117.83333396911621L92.3566712627028,123.55000066757202L92.3566712627028,134.98333406448364L92.3566712627028,146.41666746139526L92.3566712627028,157.85000085830688L102.22963473633632,163.5666675567627L112.10259820996986,157.85000085830688L121.97556168360339,152.13333415985107L131.84852515723694,146.41666746139526L141.72148863087045,152.13333415985107L151.594452104504,146.41666746139526L161.46741557813755,152.13333415985107L171.34037905177107,146.41666746139526L171.34037905177107,134.98333406448364L161.46741557813755,129.26666736602783L151.594452104504,134.98333406448364L141.72148863087045,129.26666736602783L131.84852515723694,134.98333406448364L121.97556168360339,129.26666736602783L112.10259820996986,123.55000066757202L102.22963473633632,117.83333396911621L92.3566712627028,123.55000066757202L92.3566712627028,134.98333406448364L92.3566712627028,146.41666746139526L92.3566712627028,157.85000085830688L82.48370778906927,163.5666675567627L72.61074431543575,157.85000085830688L72.61074431543575,146.41666746139526L82.48370778906927,140.70000076293945L92.3566712627028,134.98333406448364L102.22963473633632,129.26666736602783L102.22963473633632,117.83333396911621L92.3566712627028,112.1166672706604L82.48370778906927,106.40000057220459L72.61074431543575,100.68333387374878L72.61074431543575,89.25000047683716L62.73778084180223,83.53333377838135L52.8648173681687,89.25000047683716L52.8648173681687,100.68333387374878L62.73778084180223,106.40000057220459L62.73778084180223,117.83333396911621L62.73778084180223,129.26666736602783L62.73778084180223,140.70000076293945L72.61074431543575,146.41666746139526L82.4837077890693,140.70000076293945L92.35667126270283,134.98333406448364L102.22963473633637,129.26666736602783L112.1025982099699,134.98333406448364L112.1025982099699,146.41666746139526L102.22963473633637,152.13333415985107L92.35667126270285,146.41666746139526L82.48370778906931,140.70000076293945L72.6107443154358,134.98333406448364L62.73778084180226,140.70000076293945L62.73778084180226,152.13333415985107L62.73778084180226,163.5666675567627L62.73778084180226,175.00000095367432L52.86481736816874,180.71666765213013L52.86481736816874,192.15000104904175L42.99185389453521,197.86666774749756L33.11889042090169,192.15000104904175L33.11889042090169,180.71666765213013L42.99185389453522,175.00000095367432L42.99185389453522,163.5666675567627L52.86481736816875,157.85000085830688L62.73778084180228,152.13333415985107L72.6107443154358,146.41666746139526L72.6107443154358,134.98333406448364L62.73778084180228,129.26666736602783L52.86481736816875,123.55000066757202L42.991853894535225,117.83333396911621L42.991853894535225,106.40000057220459L52.86481736816875,100.68333387374878L62.73778084180228,106.40000057220459L62.73778084180228,117.83333396911621L62.73778084180228,129.26666736602783L62.73778084180228,140.70000076293945L72.6107443154358,146.41666746139526L82.48370778906933,140.70000076293945L92.35667126270285,134.98333406448364L102.22963473633638,129.26666736602783L112.10259820996993,134.98333406448364L121.97556168360346,129.26666736602783L121.97556168360346,117.83333396911621L112.10259820996993,112.1166672706604L102.22963473633638,117.83333396911621L92.35667126270286,112.1166672706604L82.48370778906933,106.40000057220459L72.61074431543581,100.68333387374878L62.737780841802284,106.40000057220459L62.737780841802284,117.83333396911621L62.737780841802284,129.26666736602783L62.737780841802284,140.70000076293945L52.86481736816876,146.41666746139526L42.99185389453523,140.70000076293945L42.99185389453523,129.26666736602783L52.86481736816876,123.55000066757202L62.737780841802284,117.83333396911621L72.61074431543581,112.1166672706604L72.61074431543581,100.68333387374878L62.737780841802284,94.96666717529297L52.86481736816876,89.25000047683716L42.99185389453523,83.53333377838135L42.99185389453523,72.10000038146973L33.11889042090171,66.38333368301392L33.11889042090171,54.950000286102295L23.245926947268185,49.233333587646484L23.245926947268188,37.80000019073486L13.37296347363466,32.08333349227905L13.372963473634663,20.65000009536743L3.5000000000011355,14.933333396911621L3.500000000001137,3.5" fill="none" stroke-width="1" stroke="black" vector-effect="non-scaling-stroke"></path></svg></div><figcaption>The &quot;hexagonal weave&quot; L-system at several levels of recursion.</figcaption></figure>
<p>I don't know if it derived the definition from some known system. If it looks familiar to you, <a href="mailto:blog@exupero.org?subject=Lindenmeyer fractals by LLMs">let me know</a>.</p><p>My prompt for ChatGPT and Claude was quite rudimentary, so if you have recommendations for how I might elicit more interesting designs, please <a href="mailto:blog@exupero.org?subject=Lindenmeyer fractals by LLMs">email me</a>.</p>
]]></content>
  </entry>
</feed>
