Commits: 7

Keep the dates in output paths

By default Zola removes the date prefix from the path, so /content/blog/2025-03-16-tad-co-op-and-manifesto.md becomes

https://tad-lispy.com/blog/tad-co-op-and-manifesto/

I don't think it's good in general, but also it can't work with the upcoming devlog section. Files there don't have unique slugs except for dates, so the paths would collide and Zola complains about it.

So now the aformentioned page will be served at

https://tad-lispy.com/blog/2025-03-16-tad-co-op-and-manifesto/

That's better, but I don't want to break existing links (people might riot in the streets should that happen!), so I provided aliases for the old content.

index 1855ae9..e276ece 100644
--- a/config.toml
+++ b/config.toml
@@ -18,12 +18,15 @@ feed_filenames = ["atom.xml", "rss.xml"]
=bottom_footnotes = false
=
=[markdown.highlighting]
-light_theme = "solarized-light"                                                                                     
+light_theme = "solarized-light"
=dark_theme = "solarized-dark"
=
=[link_checker]
=# Seems like some services (e.g. stackoverflow) are blocking connections from CI servers
=external_level = "warn"
=
+[slugify]
+paths_keep_dates = true
+
=[extra]
=# Put all your custom variables here
index 2e7898c..53dc76b 100644
--- a/content/blog/2015-04-28-npm-install-coffee-from-git/index.md
+++ b/content/blog/2015-04-28-npm-install-coffee-from-git/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Install NPM Packages Written in CoffeeScript from a Git Repo
+aliases: [/blog/npm-install-coffee-from-git]
=---
=
=> 2024 Update: Some links to external content are unfortunately outdated. The content in this post doesn't seem relevant to me anymore, except for archival reasons, so I'm not going to update those broken links.
index 8ceabb9..35ab460 100644
--- a/content/blog/2015-07-12-an-idea-for-a-blog/index.md
+++ b/content/blog/2015-07-12-an-idea-for-a-blog/index.md
@@ -1,5 +1,6 @@
=---
=title: An idea for a blog
+aliases: [/blog/an-idea-for-a-blog]
=---
=
=Obviously I have this, or some other idea for a long while. Now it's time to pinpoint it.
index e7d1032..48679d6 100644
--- a/content/blog/2015-07-29-react-component-testing/index.md
+++ b/content/blog/2015-07-29-react-component-testing/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Test if a Given Value is a React.js Component 
+aliases: [/blog/react-component-testing]
=---
=
=> 2024 Update: Some links to external content are unfortunately outdated. The content in this post doesn't seem relevant to me anymore, except for archival reasons, so I'm not going to update those broken links.
index ef18572..5b016a3 100644
--- a/content/blog/2017-06-29-managing-access-to-npm-private-packages/index.md
+++ b/content/blog/2017-06-29-managing-access-to-npm-private-packages/index.md
@@ -1,5 +1,6 @@
=---
=title: Managing access to private NPM repositories
+aliases: [/blog/managing-access-to-npm-private-packages]
=---
=
=Make private package accessible to members of deployment team from command line:
index c5bed44..1817e7e 100644
--- a/content/blog/2017-07-20-how-to-setup-ssh-key-limited-to-creating-a-tunnel/index.md
+++ b/content/blog/2017-07-20-how-to-setup-ssh-key-limited-to-creating-a-tunnel/index.md
@@ -1,5 +1,6 @@
=---
=title: How to Setup SSH Key limited to Creating a Tunnel
+aliases: [/blog/how-to-setup-ssh-key-limited-to-creating-a-tunnel]
=---
=
=For a given key I was intending to prevent **any** interaction **except** for starting an SSH tunnel to a particular local port. Turns out that for each key in `~/.ssh/authorized_keys` you can add so called *login options*, by preppending them to the key, like that:
index 84dc779..82a88df 100644
--- a/content/blog/2017-07-21-facebook-flow-in-an-alpine-node-docker-container/index.md
+++ b/content/blog/2017-07-21-facebook-flow-in-an-alpine-node-docker-container/index.md
@@ -1,5 +1,6 @@
=---
=title: Running Facebook's Flow in an Alpine Node Container
+aliases: [/blog/facebook-flow-in-an-alpine-node-docker-container]
=---
=
=Create a `Dockerfile` and an `npmrc` template
index 7272fc7..3b04099 100644
--- a/content/blog/2017-08-04-node-promise-race-timeout/index.md
+++ b/content/blog/2017-08-04-node-promise-race-timeout/index.md
@@ -1,5 +1,6 @@
=---
=title: Using `Promise.race` in Node.js to enforce a timeout 
+aliases: [/blog/node-promise-race-timeout]
=---
=
=It is a little bit more tricky than this:
index d51c438..8cbc5cd 100644
--- a/content/blog/2017-08-04-promise-then-undefined/index.md
+++ b/content/blog/2017-08-04-promise-then-undefined/index.md
@@ -1,5 +1,6 @@
=---
=title: Passing `undefined` to a JavaScript promise 
+aliases: [/blog/promise-then-undefined]
=---
=
=Consider this simple snippet:
index 6954bbd..e3a7608 100644
--- a/content/blog/2017-08-04-weird-aws-region-bug/index.md
+++ b/content/blog/2017-08-04-weird-aws-region-bug/index.md
@@ -1,5 +1,6 @@
=---
=title: Weird AWS region bug
+aliases: [/blog/weird-aws-region-bug]
=---
=
=I've been fighting a weird error coming from AWS SDK for Node.js:
index 383f82d..029a91c 100644
--- a/content/blog/2019-08-27-shape-up-by-ryan-singer/index.md
+++ b/content/blog/2019-08-27-shape-up-by-ryan-singer/index.md
@@ -1,5 +1,6 @@
=---
=title: Shape Up by Ryan Singer from Basecamp
+aliases: [/blog/shape-up-by-ryan-singer]
=---
=
=> 2024 Update: To large extent [Software Garden](https://software.garden/) was an attempt to implement the ideas from Singer's book, but adapted to working with clients.
index 45957f0..72aedd0 100644
--- a/content/blog/2020-01-16-why-is-this-so-terrible/index.md
+++ b/content/blog/2020-01-16-why-is-this-so-terrible/index.md
@@ -1,5 +1,6 @@
=---
=title: Why is `this` so terrible
+aliases: [/blog/why-is-this-so-terrible]
=---
=
=Recently at a meetup in Utrecht I gave a short presentation: *Elements of Functional Programming for React.js Developers*. See [the slides](https://tad-lispy.gitlab.io/why-is-this-so-terrible/).
index 9abf1ce..cce52ae 100644
--- a/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
+++ b/content/blog/2025-03-16-tad-co-op-and-manifesto/index.md
@@ -1,5 +1,6 @@
=---
=title: Tad Co-op
+aliases: [/blog/tad-co-op-and-manifesto]
=---
=
=I wrote the following manifesto as a guide to how and with whom I want to work. It's my personal statement, and I have no right to impose it on anyone else, but if you significantly disagree with any part of it, then we probably shouldn't work together. That is unless you can change my mind first.
index 940a5cc..042828f 100644
--- a/content/blog/2025-03-20-guiding-principles-for-a-co-op/index.md
+++ b/content/blog/2025-03-20-guiding-principles-for-a-co-op/index.md
@@ -1,5 +1,6 @@
=---
=title: Guiding principles for a co-op
+aliases: [/blog/guiding-principles-for-a-co-op]
=---
=
=So it really seems like [I am starting a business](/blog/the-plan-for-a-co-op/) with a bunch of beautiful strangers. What a fantastic feeling! The kind and sometimes weird interactions I had with you over the past two weeks inspired me to get to work early every morning. And now that we are going to work together, we need to figure out how to do it.
index 21dd128..ac7de8c 100644
--- a/content/blog/2025-03-21-the-plan-for-a-co-op/index.md
+++ b/content/blog/2025-03-21-the-plan-for-a-co-op/index.md
@@ -1,5 +1,6 @@
=---
=title: The plan for a co-op
+aliases: [/blog/the-plan-for-a-co-op]
=---
=
=A hopeful sci-fi story in which I invite you to join a network of smart and kind professionals, who support one another both in their work and personally 🧑‍🚀 We want to set up a co-operative sometime within the next 12 months and conquer the world with our kindness within 10 years. What brings us together and guides our efforts is our shared desire for fairness and freedom, and our concern about dependence on big tech oligopolies 👾 That's why we want to support businesses in a transition to free software and European digital services.
index 161aef4..25d0e65 100644
--- a/content/blog/_index.md
+++ b/content/blog/_index.md
@@ -1,5 +1,5 @@
=---
-title: "Tad Lispy Blog"
+title: "Tad Blog"
=sort_by: "date"
=template: "blog.html"
=page_template: "blog-post.html"
index cc271e4..be6be4e 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -17,7 +17,7 @@
=    <nav aria-label="breadcrumb">
=        <ul>
=            <li><a href="{\{ get_url(path='@/_index.md') \}}">Tad Lispy</a></li>
-            <li><strong>Blog</strong></li>
+            <li><strong>{\{ section.title \}}</strong></li>
=        </ul>
=    </nav>
=    {\{ section.content | safe \}}

Import some sample data for the devlog

These are logs excavated from some projects I've been working on over the last 3 weeks, using Devlog Excavator - itself one of the projects (how meta!).

More is to follow, but for now I want to focus on the Zola side of things. Once I have good templates and taxonomy handling, I'll bring more.

new file mode 100644
index 0000000..c2414f3
--- /dev/null
+++ b/content/devlog/2026-04-02-tad-better-behavior.md
@@ -0,0 +1,466 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 4
+
+
+# Fix a regression in display, update the spec
+
+
+
+``` diff
+index d579577..0a1cd93 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -72,7 +72,7 @@ We would also need a step like `Change working directory to ...` to execute befo
+=
+=## Showing a spec from a different directory
+=
+-Whe a directory is given as the last argument, load all documents inside (recursively).
++When a directory is given as the last argument, load all documents inside (recursively).
+=
+=
+=## Showing suites and scenarios from a single document
+@@ -110,7 +110,7 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=    ``` text
+=      * Text
+=        tagged: strings work-in-progress
+-        source: samples/basic.md:35-91
++        source: samples/basic.md:35-100
+=
+=        00. The word blocks has 6 characters
+=            arguments: ["blocks", "6"]
+@@ -121,18 +121,18 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=        02. There are 3 rs in the word strawberry
+=            arguments: ["3", "r", "strawberry"]
+=            source: samples/basic.md:58-58
+-        03. The following table maps words to their lengths
+-            code blocks: 1, tables: 1
+-            source: samples/basic.md:59-84
++        03. The following tables map words to their lengths
++            code blocks: 1, tables: 2
++            source: samples/basic.md:59-93
+=        04. The reverse of abc is cba
+=            arguments: ["abc", "cba"]
+-            source: samples/basic.md:85-85
++            source: samples/basic.md:94-94
+=        05. The reverse of CIA is KGB
+=            arguments: ["CIA", "KGB"]
+-            source: samples/basic.md:86-89
++            source: samples/basic.md:95-98
+=        06. There are 2 os in the word boost
+=            arguments: ["2", "o", "boost"]
+-            source: samples/basic.md:90-91
++            source: samples/basic.md:99-100
+=    ```
+=
+=  * The exit code should be `0`
+@@ -163,7 +163,7 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=        ⬑ all 3 steps successful.
+=    ```
+=
+-    Notice it's similar to the output of `tbb show`, but now contains unicode symbols to indicate the results of each step. Each completed scenario has a check mark `✓`.  The number of steps is indicated by the `⊞` sigils and a message on the following line. This is called "condensed output".
++    Notice it's similar to the output of `tbb show`, but now contains Unicode symbols to indicate the results of each step. Each completed scenario has a check mark `✓`. The number of steps is indicated by the `⊞` sigils and a message on the following line. This is called "condensed output".
+=
+=    TODO: Create a separate "condensed output" suite that focuses on this aspect.
+=
+@@ -172,53 +172,60 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=    ```text
+=      x Text
+=        tagged: strings work-in-progress
+-        source: samples/basic.md:35-91
++        source: samples/basic.md:35-100
++    ```
+=
++  * The output will contain `an expanded successful step` block
+=
++    ``` text
+=        ⊞ The word blocks has 6 characters
+=          arguments: ["blocks", "6"]
+=          source: samples/basic.md:45-45
+=
+-        ⊞ There are 3 properties in the following JSON
+-          arguments: ["3"], code blocks: 1
+-          source: samples/basic.md:46-57
+-
+-        ⊞ There are 3 rs in the word strawberry
+-          arguments: ["3", "r", "strawberry"]
+-          source: samples/basic.md:58-58
+-
+-        ⊞ The following table maps words to their lengths
+-          code blocks: 1, tables: 1
+-          source: samples/basic.md:59-84
++          > Is 'blocks' of length 6?
++    ```
+=
+-        ⊞ The reverse of abc is cba
+-          arguments: ["abc", "cba"]
+-          source: samples/basic.md:85-85
++    
++    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed.
++    
++    
++  * The output will contain `the failing step` block
+=
++    ``` text
+=        ⊠ The reverse of CIA is KGB
+=          arguments: ["CIA", "KGB"]
+-          source: samples/basic.md:86-89
++          source: samples/basic.md:95-98
++
++          > Is 'KGB' the reverse of 'CIA'? I think the reverse is 'AIC'.
++
+=
+=          'KGB' != 'AIC'
+=
+=          - KGB
+=          + AIC
++    ```
+=
++    The failing step is marked with a squared times symbol `⊠`. There is an observation (the block quote) and the error message from the interpreter.
++    
++  * The output will contain `the skipped step` block
++   
++    ``` text 
+=        □ There are 2 os in the word boost
+=          arguments: ["2", "o", "boost"]
+-          source: samples/basic.md:90-91
++          source: samples/basic.md:99-100
+=    ```
+-    
+-    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil . The failing step is markd with a squared times symbol `⊠`. Once a step fails, the subsequent steps in a scenario are not exercised. In the report they are marked with a white square symbol `□`.
+=
+-    To aid in debugging, each step is now expanded, showing it's source position and arguments.
++  
++    Once a step fails, the subsequent steps in a scenario are not exercised. In the report they are marked with a white square symbol `□`.
++
++    To aid in debugging, each step is now expanded, showing its source position and arguments.
+=  
+=  * The output will contain `geometry scenario` block
+=
+=    ```text
+=      ? Geometry
+=        tagged: math
+-        source: samples/basic.md:92-99
++        source: samples/basic.md:101-108
+=
+=        There are no steps to execute in this scenario.
+=    ```
+@@ -234,4 +241,4 @@ Whe a directory is given as the last argument, load all documents inside (recurs
+=
+=## Running without a subcommand
+=
+-Running `tbb` without a subcommand will print the help message (to stderr) and exit with code 2.
++Running `tbb` without a subcommand will print the help message (to `stderr`) and exit with code 2.
+```
+
+``` diff
+index 3ae8227..6acb94c 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -387,7 +387,7 @@ impl Display for EvaluationReport<'_> {
+=                if scenario.steps.is_empty() {
+=                    writeln!(
+=                        f,
+-                        "{}",
++                        "\n{}",
+=                        "There are no steps to execute in this scenario."
+=                            .indent(4)
+=                            .yellow()
+```
+
+# Implement the Link observation
+
+
+
+``` diff
+index 75f73ef..96dc34a 100644
+--- a/samples/basic.py
++++ b/samples/basic.py
+@@ -44,6 +44,9 @@ def step_implementation_04(a: float, b: float, expected: float, **kwargs):
+=@step("There are {0} {1}s in the word {2}")
+=def step_implementation_05(count: int, letter: str, word: str, **kwargs):
+=    actual_count = word.count(letter)
++
++    tbb.send_link(f"https://www.dictionary.com/browse/{word}", f"Check the spelling of `{word}`")
++
+=    tester.assertEqual(count, actual_count)
+=
+=@step("The reverse of {0} is {1}")
+```
+
+``` diff
+index 74e1b01..cf3096f 100644
+--- a/spec/tbb.py
++++ b/spec/tbb.py
+@@ -204,6 +204,15 @@ def send_snippet(language, content, meta = ""):
+=    })
+=    
+=
++def send_link(url, label=None):
++    """ Send a link with an optional label to be displayed in a TBB report
++    """
++    send({
++        "type": "Link",
++        "url": url,
++        "label": label
++    })
++
+=# TODO: Docstring and test cases for `get_at`. See `self-check` for example use.
+=def get_at(collection, path: [str]):
+=    value = collection
+```
+
+``` diff
+index 6acb94c..57da103 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -184,6 +184,9 @@ impl<'a> ScenarioReport<'a> {
+=                            content,
+=                        });
+=                    }
++                    InterpreterMessage::Link { url, label } => {
++                        observations.push(Observation::Link { url, label });
++                    }
+=                    InterpreterMessage::Success => {
+=                        log::debug!("Step executed successfully: {step:#?}");
+=                        *status = StepStatus::Ok;
+@@ -294,7 +297,10 @@ pub enum Observation {
+=    // Audio,
+=    // Video,
+=    // Attachment,
+-    // Link,
++    Link {
++        url: String,
++        label: Option<String>,
++    },
+=}
+=
+=impl Display for Observation {
+@@ -312,6 +318,13 @@ impl Display for Observation {
+=            Observation::Text { content } => {
+=                writeln!(f, "{}", content.prefix_with("> "))
+=            }
++            Observation::Link { url, label } => {
++                if let Some(label) = label {
++                    writeln!(f, "[{label}]({url})")
++                } else {
++                    writeln!(f, "<{url}>")
++                }
++            }
+=        }
+=    }
+=}
+@@ -496,6 +509,10 @@ pub enum InterpreterMessage {
+=        meta: String,
+=        content: String,
+=    },
++    Link {
++        url: String,
++        label: Option<String>,
++    },
+=    Success,
+=    Failure {
+=        reason: String,
+```
+
+# Update the roadmap
+
+
+
+``` diff
+index d4be474..185958d 100644
+--- a/roadmap.md
++++ b/roadmap.md
+@@ -14,10 +14,13 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=    - [ ] Gauge
+=    - [ ] Cucumber 
+=    - [ ] Playwright
++- [ ] An icon (slingshot?)
++- [ ] Release branch and tagging
++- [ ] HTML reports
+=- [ ] Demo
+-- [ ] Show and report output formats
+-  - [ ] JSON
+-  - [ ] Markdown
++- [x] Show and evaluate output formats
++  - [x] JSON
++  - [x] Markdown
+=- [x] Proof of concept
+=  - [x] Interpretter in a different language (Python)
+=  - [x] Report why steps fail
+@@ -52,7 +55,7 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=  - [x] Use colors
+=  - [ ] More instructive error messages
+=  - [x] Indent multiline error messages
+-  - [ ] Collapse ommited steps (`□□□□□□ following 6 steps skipped`)
++  - [x] Collapse ommited steps (`□□□□□□ following 6 steps skipped`)
+=  - [x] Collapse filtered out suites
+=  - [x] Collapse filtered out scenarios
+=  - [x] Mark scenarios without steps
+@@ -88,5 +91,4 @@ We use this document mostly to keep track of our progress and a scratchpad for i
+=- [ ] Better reporters
+=    - [ ] TUI
+=    - [ ] Web
+-- [ ] WASM target
+=
+```
+
+# Write assertions about snippet observations
+
+My Emacs doesn't handle nested code blocks well, so I implemented a
+little hack, where it's possible to escape a backtick with a
+backslash (thus making it meaningless to Markdown). The step
+implementation un-escapes them before comparison.
+
+``` diff
+index 0a1cd93..86d94af 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -175,7 +175,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=        source: samples/basic.md:35-100
+=    ```
+=
+-  * The output will contain `an expanded successful step` block
++  * The output will contain `an expanded successful step with a text observation` block
+=
+=    ``` text
+=        ⊞ The word blocks has 6 characters
+@@ -186,9 +186,110 @@ When a directory is given as the last argument, load all documents inside (recur
+=    ```
+=
+=    
+-    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed.
++    If some steps fail, the output will be expanded. Successful steps have a squared plus `⊞` sigil. If there were any observations reported by the interpreter, they will be displayed. Here is an example of a text observation, in a block quote.
+=    
+=    
++  * The output will contain `an expanded successful step with a link observation` block
++
++    ``` text
++        ⊞ There are 3 rs in the word strawberry
++          arguments: ["3", "r", "strawberry"]
++          source: samples/basic.md:58-58
++
++          [Check the spelling of `strawberry`](https://www.dictionary.com/browse/strawberry)
++    ```
++
++    This step also succeeded, producing a Link observation. These observations can be useful, because sometimes a root cause of a failure is in a proceeding steps, not the one that actually failed.
++
++  * The output will contain `an expanded successful step with a various observations` block
++  
++    ``` text
++        ⊞ The following tables map words to their lengths
++          code blocks: 1, tables: 2
++          source: samples/basic.md:59-93
++
++          > Received a table with 6 x 2 cells
++
++          \``` json
++          [
++            [
++              "word",
++              "length"
++            ],
++            [
++              "cat",
++              "3"
++            ],
++            [
++              "stork",
++              "5"
++            ],
++            [
++              "rabbit",
++              "6"
++            ],
++            [
++              "snake",
++              "5"
++            ],
++            [
++              "minx",
++              "4"
++            ]
++          ]
++          \```
++
++          > Is 'cat' 3 characters long? I think it's 3.
++
++
++          > Is 'stork' 5 characters long? I think it's 5.
++
++
++          > Is 'rabbit' 6 characters long? I think it's 6.
++
++
++          > Is 'snake' 5 characters long? I think it's 5.
++
++
++          > Is 'minx' 4 characters long? I think it's 4.
++
++
++          > Received a table with 4 x 2 cells
++
++
++          \``` json
++          [
++            [
++              "word",
++              "length"
++            ],
++            [
++              "rust",
++              "4"
++            ],
++            [
++              "clojure",
++              "7"
++            ],
++            [
++              "elm",
++              "3"
++            ]
++          ]
++          \```
++
++
++          > Is 'rust' 4 characters long? I think it's 4.
++
++
++          > Is 'clojure' 7 characters long? I think it's 7.
++
++
++          > Is 'elm' 3 characters long? I think it's 3.
++    ```
++    
++    This long block presents other observations, like snippets.
++    
+=  * The output will contain `the failing step` block
+=
+=    ``` text
+```
+
+``` diff
+index aebf88c..94e628f 100644
+--- a/spec/self-check.py
++++ b/spec/self-check.py
+@@ -88,9 +88,10 @@ def step_implementation_04(label: str, **kwargs):
+=    block = get_at(kwargs, ['code_blocks', 0, 'value'])
+=    output = completed.stdout.decode("utf-8")
+=
+-    # Trim all blank lines and trailing whitespece.
+-    # Without it the assertions are very brittle.
+-    needle = re.sub("\\s+\n", "\n", block)
++    # Trim all blank lines and trailing whitespece.  Without it the assertions
++    # are very brittle.  Also un-escape back-ticks in the block. This is useful
++    # for nested code-blocks in the spec documents.
++    needle = re.sub("\\s+\n", "\n", block).replace("\`", "`")
+=    haystack = re.sub("\\s+\n", "\n", output)
+=    # tester.assertIn gives unreadable output
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..a3ba4f7
--- /dev/null
+++ b/content/devlog/2026-04-07-better-tech-club-website.md
@@ -0,0 +1,1765 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 9
+
+
+# Add bettertechclub.eu domain
+
+
+
+``` diff
+index 98234b2..f3861cb 100644
+--- a/.domains
++++ b/.domains
+@@ -1 +1,2 @@
+=fossfor.eu
++bettertechclub.eu
+```
+
+# Change the home page title
+
+Mostly to test new Codeberg pages deployment method.
+
+``` diff
+index aa12a08..1ac19d1 100644
+--- a/index.html
++++ b/index.html
+@@ -3,14 +3,14 @@
+=    <head>
+=        <meta charset="utf-8">
+=        <meta http-equiv="x-ua-compatible" content="ie=edge">
+-        <title>FOSS for Normies</title>
++        <title>Better Tech Club</title>
+=        <meta name="description" content="A network of local groups for the promotion and mutual support of free and open source software use.">
+=        <meta name="viewport" content="width=device-width, initial-scale=1">
+=        <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
+=        <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
+=        <link rel="shortcut icon" href="/favicon.ico" />
+=        <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+-        <meta name="apple-mobile-web-app-title" content="fossfor.eu" />
++        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
+=         html, body {
+```
+
+# Make bettertechclub.eu the primary domain
+
+According to
+https://docs.codeberg.org/codeberg-pages/using-custom-domain/ requests
+targetting other domains (like fossfor.eu) will be redirected.
+
+``` diff
+index f3861cb..4ac3bce 100644
+--- a/.domains
++++ b/.domains
+@@ -1,2 +1,2 @@
+-fossfor.eu
+=bettertechclub.eu
++fossfor.eu
+```
+
+# Rebrand: icons, manifest, etc.
+
+
+
+``` diff
+index f13c531..b385d8b 100644
+Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ
+```
+
+``` diff
+index b6b0dde..002b2c3 100644
+Binary files a/favicon-96x96.png and b/favicon-96x96.png differ
+```
+
+``` diff
+index 3b5b429..6ab1831 100644
+Binary files a/favicon.ico and b/favicon.ico differ
+```
+
+``` diff
+index abfe745..8c15d72 100644
+--- a/favicon.svg
++++ b/favicon.svg
+@@ -1,3 +1 @@
+-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><svg width="32" height="32" viewBox="0 0 32 32" version="1.1" id="SvgjsSvg1013" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><defs id="SvgjsDefs1012"></defs><metadata id="SvgjsMetadata1011"><rdf:rdf><cc:work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type></cc:work></rdf:rdf></metadata><g id="SvgjsG1010" transform="translate(-692)"><g id="SvgjsG1009"><rect style="opacity:1;fill:#003399;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers" id="SvgjsRect1008" width="32" height="32" x="692" y="0"></rect><path id="SvgjsPath1007" style="opacity:1;fill:#fdcb0b;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers" d="m 699,11 v 2 h -4 v 2 h 3 v 2 h -3 v 4 h 6 v -1 h -1 v -8 h 1 v -1 z m 7,0 v 1 h 1 v 8 h -1 v 1 h 3 v -1 h -1 v -2 h 2 v 1 h 3 v -2 h -4 v -1 h -1 v -4 h 1 v -1 z m 8,0 v 1 h 1 v 2 h -2 v -1 h -3 v 2 h 4 v 1 h 1 v 4 h -1 v 1 h 3 v -1 h -1 v -2 h 2 v 1 h 3 v -2 h -4 v -1 h -1 v -4 h 1 v -1 z m 8,0 v 1 h 1 v -1 z m -19,2 v 1 h -1 v 4 h 1 v 1 h 1 v -1 h 1 v -4 h -1 v -1 z m 15,0 v 2 h 4 v 1 h 1 v -2 h -2 v -1 z m 4,7 v 1 h 1 v -1 z"></path></g></g></svg><style>@media (prefers-color-scheme: light) { :root { filter: none; } }
+-@media (prefers-color-scheme: dark) { :root { filter: none; } }
+-</style></svg>
+\ No newline at end of file
++<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" viewBox="0 0 32 32" id="svg8" xml:space="preserve" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><rdf:Description><dc:creator>RealFaviconGenerator</dc:creator><dc:source>https://realfavicongenerator.net</dc:source></rdf:Description></rdf:RDF></metadata><defs id="defs2"></defs><metadata id="metadata5"><rdf:rdf><cc:work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"></dc:type></cc:work></rdf:rdf></metadata><g id="layer1" transform="translate(-1010)"><g id="g6-8" transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path fill="#fac036" d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z" id="path1-0"></path><path fill="#e48c15" d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z" id="path2-8"></path></g></g></svg>
+\ No newline at end of file
+```
+
+``` diff
+similarity index 100%
+rename from icon.svg
+rename to foss-for-normies-icon.svg
+```
+
+``` diff
+index 1ac19d1..7f6aa29 100644
+--- a/index.html
++++ b/index.html
+@@ -18,8 +18,14 @@
+=             min-height: 100%;
+=             color: #fdcb0b;
+=             font-family: sans-serif;
++             margin: 0;
++             padding: 0;
++         }
++
++         body {
+=             display: flex;
+-             justify-content: center;
++             flex-direction: column;
++             align-items: center;
+=         }
+=
+=         #big-logo {
+@@ -48,6 +54,15 @@
+=
+=         }
+=
++         footer {
++             background: oklch(20% 0% 0deg);
++             color: oklch(80% 0% 0deg);
++             width: 100%;
++             padding: 2rem;
++             font-size: 0.8rem;
++             text-align: center;
++         }
++
+=         .local-group {
+=             background: hsl(0,0%,70%);
+=             color: hsl(0,0%,20%);
+@@ -151,5 +166,18 @@
+=
+=            <p>⏳ More details to come. Please be patient...</p>
+=        </main>
++
++        <footer>
++            <p>
++                <strong>Better Tech Club</strong>
++                formerly known as
++                <img
++                    src="foss-for-normies-icon.svg"
++                    alt="FOSS for Normies icon"
++                    style="vertical-align: -12px"
++                />
++                FOSS for Normies.
++            </p>
++        </footer>
+=    </body>
+=</html>
+```
+
+``` diff
+index 0d80090..dfe78a3 100644
+--- a/logo.svg
++++ b/logo.svg
+@@ -1,12 +1,11 @@
+=<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+=<svg
+-   width="640"
+-   height="640"
+-   viewBox="0 0 640 640"
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
+=   version="1.1"
+=   id="svg8"
+=   xml:space="preserve"
+-   xmlns:xlink="http://www.w3.org/1999/xlink"
+=   xmlns="http://www.w3.org/2000/svg"
+=   xmlns:svg="http://www.w3.org/2000/svg"
+=   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+@@ -16,76 +15,30 @@
+=     id="metadata5"><rdf:RDF><cc:Work
+=         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+=           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
+-     id="layer1"
+-     transform="translate(-734)"><g
+-       id="g3"
+-       transform="translate(1383,-3)"
+-       style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><g
+-         id="g13"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="M 4,16 V 8 C 4,4 8,4 8,4 h 2"
+-           id="path2-4" /><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="M 2,10 H 7"
+-           id="path3" /></g><path
+-         style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-         d="m 13,8 c 0,0 4,0 4,4 0,0 0,4 -4,4 0,0 -4,0 -4,-4 0,0 0,-4 4,-4 z"
+-         id="path1" /><g
+-         id="g5"
+-         transform="translate(-4,4)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="m 24,4 v 8"
+-           id="path4" /><path
+-           style="fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
+-           d="m 24,8 c 0,0 0,-4 4,-4"
+-           id="path5" /></g><path
+-         id="path21"
+-         style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
+-         d="M 31,16 V 9 C 31,8 31,8 30,8 m 7,8 v -5 c 0,-3.103007 -3,-3 -3,-3 0,0 -3,0 -3,3" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#path1"
+-         id="use12"
+-         transform="translate(31)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#g5"
+-         id="use13"
+-         transform="translate(31)"
+-         style="stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" /><path
+-         id="path10"
+-         style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
+-         d="M 59,10 C 59,8 59,8 58,8 M 62.999999,16 63,10.033814 c 0,0 0,-2.0338128 -2.000001,-2.0338119 0,0 -1.999998,-4e-7 -1.999999,1.9999974 L 58.999999,16 m 8,0 L 67,10.033814 c 0,0 0,-2.0338128 -2.000001,-2.0338119 0,0 -1.999999,-4e-7 -1.999999,1.9999974" /><g
+-         id="g21"><path
+-           id="path16"
+-           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
+-           d="m 70,10 h 2 v 4 c 0,1 1,2 2,2" /><path
+-           style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;paint-order:stroke fill markers"
+-           id="path17"
+-           d="m 72.5,7 a 0.5,0.5 0 0 1 -0.499609,0.4999998 0.5,0.5 0 0 1 -0.50039,-0.4992173 0.5,0.5 0 0 1 0.498825,-0.5007811 0.5,0.5 0 0 1 0.501172,0.4984337 L 72,7 Z" /></g><path
+-         id="path19"
+-         style="opacity:1;vector-effect:none;fill:none;fill-rule:evenodd;paint-order:stroke fill markers"
+-         d="m 76,12 v 0 0 0 h 8 c 0,-2.209139 -1.790861,-4 -4,-4 -2.209139,0 -4,1.790861 -4,4 0,2.209139 1.790861,4 4,4 h 3" /><path
+-         id="path10-5"
+-         style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000"
+-         d="M 82,15.999994 88.96619,16 c 0,0 2.03384,-1.3e-5 2.03382,-2.000011 0,0 0,-1.999988 -2.00001,-2 m -0.0338,6e-6 c 0,0 -1.9662,3.1e-5 -1.9662,-1.999989 0,0 -2e-5,-2.000021 1.99999,-2.000014 H 90" /></g><g
+-       id="g2"
+-       style="color:#fdcb0b"><rect
+-         style="opacity:1;fill:#003399;fill-opacity:1;fill-rule:evenodd;stroke-width:0.1;stroke-dasharray:none;paint-order:stroke fill markers"
+-         id="rect3"
+-         width="640"
+-         height="640"
+-         x="734"
+-         y="0" /><path
+-         id="rect3-0"
+-         style="fill:currentColor;fill-opacity:1;fill-rule:evenodd;stroke-width:0;stroke-dasharray:none;paint-order:stroke fill markers"
+-         d="m 832,224 0,32 a 4,4 135 0 1 -4,4 h -72 a 4,4 135 0 0 -4,4 l 0,32 a 4,4 45 0 0 4,4 h 52 a 4,4 45 0 1 4,4 l 0,32 a 4,4 135 0 1 -4,4 h -52 a 4,4 135 0 0 -4,4 v 72 a 4,4 45 0 0 4,4 h 112 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-152 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -32 a 4,4 135 0 0 -4,4 z m 140,0 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 l 0,152 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-32 a 4,4 135 0 1 4,-4 h 32 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -72 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -72 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 160,0 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 v 32 a 4,4 135 0 1 -4,4 h -32 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 v 32 a 4,4 45 0 0 4,4 h 72 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 l 0,72 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -32 a 4,4 135 0 1 4,-4 h 32 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 52 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -72 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 l 0,-72 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 160,0 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 l 0,-12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z m -380,40 v 12 a 4,4 135 0 1 -4,4 h -12 a 4,4 135 0 0 -4,4 v 72 a 4,4 45 0 0 4,4 h 12 a 4,4 45 0 1 4,4 v 12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 v -12 a 4,4 135 0 1 4,-4 h 12 a 4,4 135 0 0 4,-4 v -72 a 4,4 45 0 0 -4,-4 h -12 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z m 300,0 v 32 a 4,4 45 0 0 4,4 h 72 a 4,4 45 0 1 4,4 l 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 v -32 a 4,4 45 0 0 -4,-4 h -32 a 4,4 45 0 1 -4,-4 v -12 a 4,4 45 0 0 -4,-4 h -52 a 4,4 135 0 0 -4,4 z m 80,140 0,12 a 4,4 45 0 0 4,4 h 12 a 4,4 135 0 0 4,-4 l 0,-12 a 4,4 45 0 0 -4,-4 h -12 a 4,4 135 0 0 -4,4 z"
+-         transform="translate(42)" /><use
+-         x="0"
+-         y="0"
+-         xlink:href="#g3"
+-         id="use23"
+-         transform="matrix(4,0,0,4,-4750,436)" /></g></g></svg>
++     id="layer1"><g
++       id="text1"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
++       aria-label="Big&#10;Tech&#10;Club"><path
++         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
++         id="path7" /><path
++         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
++         id="path8" /><path
++         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
++         id="path9" /></g><path
++       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
++       id="text4"
++       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
++       transform="rotate(-15)"
++       aria-label="Better" /><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       transform="translate(362.34816,24.840675)" /></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g></svg>
+```
+
+``` diff
+index 3a81c0d..b876ba3 100644
+--- a/site.webmanifest
++++ b/site.webmanifest
+@@ -1,6 +1,6 @@
+={
+-  "name": "FOSS for Normies",
+-  "short_name": "fossfor.eu",
++  "name": "Better Tech Club",
++  "short_name": "Better Tech Club",
+=  "icons": [
+=    {
+=      "src": "/web-app-manifest-192x192.png",
+@@ -15,7 +15,7 @@
+=      "purpose": "maskable"
+=    }
+=  ],
+-  "theme_color": "#003399",
+-  "background_color": "#003399",
++  "theme_color": "#fac036",
++  "background_color": "#25476a",
+=  "display": "standalone"
+=}
+\ No newline at end of file
+```
+
+``` diff
+index eb84864..811f1c6 100644
+Binary files a/web-app-manifest-192x192.png and b/web-app-manifest-192x192.png differ
+```
+
+``` diff
+index 9e971f4..d09831b 100644
+Binary files a/web-app-manifest-512x512.png and b/web-app-manifest-512x512.png differ
+```
+
+# Update Nix dependencies
+
+
+
+``` diff
+index a92871e..9a8b7f9 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -19,11 +19,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760971495,
+-        "narHash": "sha256-IwnNtbNVrlZIHh7h4Wz6VP0Furxg9Hh0ycighvL5cZc=",
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
+=        "owner": "cachix",
+=        "repo": "cachix",
+-        "rev": "c5bfd933d1033672f51a863c47303fc0e093c2d2",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -33,24 +33,143 @@
+=        "type": "github"
+=      }
+=    },
+-    "devenv": {
++    "cachix_2": {
+=      "inputs": {
+-        "cachix": "cachix",
++        "devenv": [
++          "devenv",
++          "crate2nix"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix"
++        ],
++        "git-hooks": "git-hooks",
++        "nixpkgs": "nixpkgs"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_3": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "git-hooks": "git-hooks_2",
++        "nixpkgs": "nixpkgs_2"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "crate2nix": {
++      "inputs": {
++        "cachix": "cachix_2",
++        "crate2nix_stable": "crate2nix_stable",
++        "devshell": "devshell_2",
++        "flake-compat": "flake-compat_2",
++        "flake-parts": "flake-parts_2",
++        "nix-test-runner": "nix-test-runner_2",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "pre-commit-hooks": "pre-commit-hooks_2"
++      },
++      "locked": {
++        "lastModified": 1772186516,
++        "narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      }
++    },
++    "crate2nix_stable": {
++      "inputs": {
++        "cachix": "cachix_3",
++        "crate2nix_stable": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "devshell": "devshell",
+=        "flake-compat": "flake-compat",
+=        "flake-parts": "flake-parts",
+-        "git-hooks": "git-hooks",
++        "nix-test-runner": "nix-test-runner",
++        "nixpkgs": "nixpkgs_3",
++        "pre-commit-hooks": "pre-commit-hooks"
++      },
++      "locked": {
++        "lastModified": 1769627083,
++        "narHash": "sha256-SUuruvw1/moNzCZosHaa60QMTL+L9huWdsCBN6XZIic=",
++        "owner": "nix-community",
++        "repo": "crate2nix",
++        "rev": "7c33e664668faecf7655fa53861d7a80c9e464a2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "ref": "0.15.0",
++        "repo": "crate2nix",
++        "type": "github"
++      }
++    },
++    "devenv": {
++      "inputs": {
++        "cachix": "cachix",
++        "crate2nix": "crate2nix",
++        "flake-compat": "flake-compat_3",
++        "flake-parts": "flake-parts_3",
++        "git-hooks": "git-hooks_3",
+=        "nix": "nix",
+=        "nixd": "nixd",
+=        "nixpkgs": [
+=          "nixpkgs"
+-        ]
++        ],
++        "rust-overlay": "rust-overlay"
+=      },
+=      "locked": {
+-        "lastModified": 1770648178,
+-        "narHash": "sha256-vq9yrCTzM39gX4Ljmak2+OQFnF39C411JzT5hDNxVPA=",
++        "lastModified": 1775566203,
++        "narHash": "sha256-bBhX1xIB0rJ43xKZWzFaY1dQxOX6BcsdU4/+jpuaHcY=",
+=        "owner": "cachix",
+=        "repo": "devenv",
+-        "rev": "656d347597eaf914af4dbcb78248c1cc4db785f9",
++        "rev": "e82d5cbf38954a872c0547a0c141e8cc116d2b2a",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -59,14 +178,87 @@
+=        "type": "github"
+=      }
+=    },
++    "devshell": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "devshell_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
+=    "flake-compat": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_2": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_3": {
+=      "flake": false,
+=      "locked": {
+-        "lastModified": 1761588595,
+-        "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
++        "lastModified": 1767039857,
++        "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
+=        "owner": "edolstra",
+=        "repo": "flake-compat",
+-        "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
++        "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -79,15 +271,39 @@
+=      "inputs": {
+=        "nixpkgs-lib": [
+=          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_2": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
+=          "nixpkgs"
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760948891,
+-        "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
+=        "owner": "hercules-ci",
+=        "repo": "flake-parts",
+-        "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -96,18 +312,24 @@
+=        "type": "github"
+=      }
+=    },
+-    "flake-root": {
++    "flake-parts_3": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
+=      "locked": {
+-        "lastModified": 1723604017,
+-        "narHash": "sha256-rBtQ8gg+Dn4Sx/s+pvjdq3CB2wQNzx9XGFq/JVGCB6k=",
+-        "owner": "srid",
+-        "repo": "flake-root",
+-        "rev": "b759a56851e10cb13f6b8e5698af7b59c44be26e",
++        "lastModified": 1772408722,
++        "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3",
+=        "type": "github"
+=      },
+=      "original": {
+-        "owner": "srid",
+-        "repo": "flake-root",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
+=        "type": "github"
+=      }
+=    },
+@@ -115,20 +337,82 @@
+=      "inputs": {
+=        "flake-compat": [
+=          "devenv",
++          "crate2nix",
++          "cachix",
+=          "flake-compat"
+=        ],
+=        "gitignore": "gitignore",
+=        "nixpkgs": [
+=          "devenv",
++          "crate2nix",
++          "cachix",
+=          "nixpkgs"
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1760663237,
+-        "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
+=        "owner": "cachix",
+=        "repo": "git-hooks.nix",
+-        "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_2",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_3": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_5",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772893680,
++        "narHash": "sha256-JDqZMgxUTCq85ObSaFw0HhE+lvdOre1lx9iI6vYyOEs=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "8baab586afc9c9b57645a734c820e4ac0a604af9",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -138,6 +422,102 @@
+=      }
+=    },
+=    "gitignore": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_3": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_4": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_5": {
+=      "inputs": {
+=        "nixpkgs": [
+=          "devenv",
+@@ -185,11 +565,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1770395975,
+-        "narHash": "sha256-zg0AEZn8d4rqIIsw5XrkVL5p1y6fBj2L57awfUg+gNA=",
++        "lastModified": 1774103430,
++        "narHash": "sha256-MRNVInSmvhKIg3y0UdogQJXe+omvKijGszFtYpd5r9k=",
+=        "owner": "cachix",
+=        "repo": "nix",
+-        "rev": "ccb6019ce2bd11f5de5fe4617c0079d8cb1ed057",
++        "rev": "e127c1c94cefe02d8ca4cca79ef66be4c527510e",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -199,13 +579,44 @@
+=        "type": "github"
+=      }
+=    },
++    "nix-test-runner": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nix-test-runner_2": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
+=    "nixd": {
+=      "inputs": {
+=        "flake-parts": [
+=          "devenv",
+=          "flake-parts"
+=        ],
+-        "flake-root": "flake-root",
+=        "nixpkgs": [
+=          "devenv",
+=          "nixpkgs"
+@@ -213,11 +624,11 @@
+=        "treefmt-nix": "treefmt-nix"
+=      },
+=      "locked": {
+-        "lastModified": 1763964548,
+-        "narHash": "sha256-JTRoaEWvPsVIMFJWeS4G2isPo15wqXY/otsiHPN0zww=",
++        "lastModified": 1773634079,
++        "narHash": "sha256-49qb4QNMv77VOeEux+sMd0uBhPvvHgVc0r938Bulvbo=",
+=        "owner": "nix-community",
+=        "repo": "nixd",
+-        "rev": "d4bf15e56540422e2acc7bc26b20b0a0934e3f5e",
++        "rev": "8ecf93d4d93745e05ea53534e8b94f5e9506e6bd",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -227,15 +638,80 @@
+=      }
+=    },
+=    "nixpkgs": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs-src": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1773840656,
++        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_2": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_3": {
++      "locked": {
++        "lastModified": 1769433173,
++        "narHash": "sha256-Gf1dFYgD344WZ3q0LPlRoWaNdNQq8kSBDLEWulRQSEs=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "13b0f9e6ac78abbbb736c635d87845c4f4bee51b",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_4": {
+=      "inputs": {
+=        "nixpkgs-src": "nixpkgs-src"
+=      },
+=      "locked": {
+-        "lastModified": 1770434727,
+-        "narHash": "sha256-YzOZRgiqIccnkkZvckQha7wvOfN2z50xEdPvfgu6sf8=",
++        "lastModified": 1774287239,
++        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
+=        "owner": "cachix",
+=        "repo": "devenv-nixpkgs",
+-        "rev": "8430f16a39c27bdeef236f1eeb56f0b51b33d348",
++        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -245,30 +721,92 @@
+=        "type": "github"
+=      }
+=    },
+-    "nixpkgs-src": {
+-      "flake": false,
++    "pre-commit-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_3",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
+=      "locked": {
+-        "lastModified": 1769922788,
+-        "narHash": "sha256-H3AfG4ObMDTkTJYkd8cz1/RbY9LatN5Mk4UF48VuSXc=",
+-        "owner": "NixOS",
+-        "repo": "nixpkgs",
+-        "rev": "207d15f1a6603226e1e223dc79ac29c7846da32e",
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
+=        "type": "github"
+=      },
+=      "original": {
+-        "owner": "NixOS",
+-        "ref": "nixpkgs-unstable",
+-        "repo": "nixpkgs",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_4",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
+=        "type": "github"
+=      }
+=    },
+=    "root": {
+=      "inputs": {
+=        "devenv": "devenv",
+-        "nixpkgs": "nixpkgs",
++        "nixpkgs": "nixpkgs_4",
+=        "systems": "systems"
+=      }
+=    },
++    "rust-overlay": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1773630837,
++        "narHash": "sha256-zJhgAGnbVKeBMJOb9ctZm4BGS/Rnrz+5lfSXTVah4HQ=",
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "rev": "f600ea449c7b5bb596fa1cf21c871cc5b9e31316",
++        "type": "github"
++      },
++      "original": {
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "type": "github"
++      }
++    },
+=    "systems": {
+=      "locked": {
+=        "lastModified": 1681028828,
+@@ -293,11 +831,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1734704479,
+-        "narHash": "sha256-MMi74+WckoyEWBRcg/oaGRvXC9BVVxDZNRMpL+72wBI=",
++        "lastModified": 1772660329,
++        "narHash": "sha256-IjU1FxYqm+VDe5qIOxoW+pISBlGvVApRjiw/Y/ttJzY=",
+=        "owner": "numtide",
+=        "repo": "treefmt-nix",
+-        "rev": "65712f5af67234dad91a5a4baee986a8b62dbf8f",
++        "rev": "3710e0e1218041bbad640352a0440114b1e10428",
+=        "type": "github"
+=      },
+=      "original": {
+```
+
+# Add tbb to the development shell
+
+
+
+``` diff
+index 9a8b7f9..f1c3398 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -91,6 +91,43 @@
+=        "type": "github"
+=      }
+=    },
++    "cachix_4": {
++      "inputs": {
++        "devenv": [
++          "tad-better-behavior",
++          "devenv"
++        ],
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "git-hooks": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760971495,
++        "narHash": "sha256-IwnNtbNVrlZIHh7h4Wz6VP0Furxg9Hh0ycighvL5cZc=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "c5bfd933d1033672f51a863c47303fc0e093c2d2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
+=    "crate2nix": {
+=      "inputs": {
+=        "cachix": "cachix_2",
+@@ -178,6 +215,32 @@
+=        "type": "github"
+=      }
+=    },
++    "devenv_2": {
++      "inputs": {
++        "cachix": "cachix_4",
++        "flake-compat": "flake-compat_4",
++        "flake-parts": "flake-parts_4",
++        "git-hooks": "git-hooks_4",
++        "nix": "nix_2",
++        "nixpkgs": [
++          "tad-better-behavior",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1762889687,
++        "narHash": "sha256-oKvHfeYDZ0LfuHSaFLA0w/dfZ9R6C5W8pCGUjUWawGI=",
++        "owner": "cachix",
++        "repo": "devenv",
++        "rev": "3b4fb549962342c928aae1bbea3a13f0eeed2703",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "devenv",
++        "type": "github"
++      }
++    },
+=    "devshell": {
+=      "inputs": {
+=        "nixpkgs": [
+@@ -267,6 +330,22 @@
+=        "type": "github"
+=      }
+=    },
++    "flake-compat_4": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1761588595,
++        "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
++        "type": "github"
++      },
++      "original": {
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "type": "github"
++      }
++    },
+=    "flake-parts": {
+=      "inputs": {
+=        "nixpkgs-lib": [
+@@ -333,6 +412,28 @@
+=        "type": "github"
+=      }
+=    },
++    "flake-parts_4": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760948891,
++        "narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
+=    "git-hooks": {
+=      "inputs": {
+=        "flake-compat": [
+@@ -421,6 +522,34 @@
+=        "type": "github"
+=      }
+=    },
++    "git-hooks_4": {
++      "inputs": {
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_6",
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1760663237,
++        "narHash": "sha256-BflA6U4AM1bzuRMR8QqzPXqh8sWVCNDzOdsxXEguJIc=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "ca5b894d3e3e151ffc1db040b6ce4dcc75d31c37",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
+=    "gitignore": {
+=      "inputs": {
+=        "nixpkgs": [
+@@ -539,6 +668,29 @@
+=        "type": "github"
+=      }
+=    },
++    "gitignore_6": {
++      "inputs": {
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
+=    "nix": {
+=      "inputs": {
+=        "flake-compat": [
+@@ -611,6 +763,52 @@
+=        "type": "github"
+=      }
+=    },
++    "nix_2": {
++      "inputs": {
++        "flake-compat": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-compat"
++        ],
++        "flake-parts": [
++          "tad-better-behavior",
++          "devenv",
++          "flake-parts"
++        ],
++        "git-hooks-nix": [
++          "tad-better-behavior",
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "tad-better-behavior",
++          "devenv",
++          "nixpkgs"
++        ],
++        "nixpkgs-23-11": [
++          "tad-better-behavior",
++          "devenv"
++        ],
++        "nixpkgs-regression": [
++          "tad-better-behavior",
++          "devenv"
++        ]
++      },
++      "locked": {
++        "lastModified": 1761648602,
++        "narHash": "sha256-H97KSB/luq/aGobKRuHahOvT1r7C03BgB6D5HBZsbN8=",
++        "owner": "cachix",
++        "repo": "nix",
++        "rev": "3e5644da6830ef65f0a2f7ec22830c46285bfff6",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "devenv-2.30.6",
++        "repo": "nix",
++        "type": "github"
++      }
++    },
+=    "nixd": {
+=      "inputs": {
+=        "flake-parts": [
+@@ -783,7 +981,8 @@
+=      "inputs": {
+=        "devenv": "devenv",
+=        "nixpkgs": "nixpkgs_4",
+-        "systems": "systems"
++        "systems": "systems",
++        "tad-better-behavior": "tad-better-behavior"
+=      }
+=    },
+=    "rust-overlay": {
+@@ -822,6 +1021,43 @@
+=        "type": "github"
+=      }
+=    },
++    "systems_2": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "tad-better-behavior": {
++      "inputs": {
++        "devenv": "devenv_2",
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "systems": "systems_2"
++      },
++      "locked": {
++        "lastModified": 1775133254,
++        "narHash": "sha256-orxwlnOwsWqRtZaYvt6Tu6l0Pdp9okpVZBaW/+gND2g=",
++        "ref": "refs/heads/main",
++        "rev": "fbf91ce2b8ebab992a7cbac5bf8ca91115985aea",
++        "revCount": 161,
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      },
++      "original": {
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      }
++    },
+=    "treefmt-nix": {
+=      "inputs": {
+=        "nixpkgs": [
+```
+
+``` diff
+index 4eeb7cd..7410a54 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -4,6 +4,10 @@
+=    systems.url = "github:nix-systems/default";
+=    devenv.url = "github:cachix/devenv";
+=    devenv.inputs.nixpkgs.follows = "nixpkgs";
++    tad-better-behavior = {
++      url = "git+http://codeberg.org/tad-lispy/tad-better-behavior";
++      inputs.nixpkgs.follows = "nixpkgs";
++    };
+=  };
+=
+=  nixConfig = {
+@@ -11,7 +15,7 @@
+=    extra-substituters = "https://devenv.cachix.org";
+=  };
+=
+-  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++  outputs = { self, nixpkgs, devenv, systems, tad-better-behavior, ... } @ inputs:
+=    let
+=      forEachSystem = nixpkgs.lib.genAttrs (import systems);
+=    in
+@@ -20,6 +24,7 @@
+=        (system:
+=          let
+=            pkgs = nixpkgs.legacyPackages.${system};
++            tbb = tad-better-behavior.packages.${system};
+=          in
+=          {
+=            default = devenv.lib.mkShell {
+@@ -27,7 +32,10 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.miniserve ];
++                  packages = with pkgs; [
++                    miniserve
++                    tbb.default
++                  ];
+=                }
+=              ];
+=            };
+```
+
+# Write the first spec
+
+Daniel spotted that the page has a vertical scroll. It's an easy fix -
+the footer has a horizontal padding that pushes width of the document
+beyond 100%. But I want to start using TBB here.
+
+``` diff
+new file mode 100644
+index 0000000..2452b63
+--- /dev/null
++++ b/spec/layout.md
+@@ -0,0 +1,10 @@
++# Basic Layout of the Page
++
++## The Width of the Body Doesn't Exceed the Viewport
++
++This scenario asserts that page content fits inside the viewport, i.e. there is no need for horizontal scrolling
++
++  * Serve the website on the port `1234`
++  * Navigate to `http://localhost:1234/`
++  * The title should be `Better Tech Club`
++  * The content is not wider than the viewport
+```
+
+# Setup a Babashka TBB interpreter
+
+The tbb.clj and tbb_test.clj come from
+https://github.com/jewiet/form-to-mail/
+
+``` diff
+index f03ce8a..dbf1cc8 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -1,2 +1,4 @@
+=.devenv
+=.direnv
++.clj-kondo/
++.lsp/
+```
+
+``` diff
+index 7410a54..04e8d1d 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -35,6 +35,8 @@
+=                  packages = with pkgs; [
+=                    miniserve
+=                    tbb.default
++                    babashka
++                    clojure-lsp
+=                  ];
+=                }
+=              ];
+```
+
+``` diff
+new file mode 100644
+index 0000000..5837a2a
+--- /dev/null
++++ b/spec/interpreters/bb.edn
+@@ -0,0 +1 @@
++{:paths ["."]}
+```
+
+``` diff
+new file mode 100644
+index 0000000..b270417
+--- /dev/null
++++ b/spec/interpreters/tbb.clj
+@@ -0,0 +1,100 @@
++(ns tbb
++  (:require
++   [cheshire.core :as json]
++   [clojure.pprint :refer [pprint]]
++   [clojure.string :refer [blank?]]
++   [taoensso.timbre :as timbre]))
++
++(timbre/merge-config!
++ {:appenders
++  {:println (timbre/println-appender
++             {:stream *err*})}
++  :min-level (keyword (or
++                       (System/getenv "tbb_interpreter_log")
++                       "info"))})
++
++;; TODO: Make it work with Babashka (so no dependency on JDK)
++;; TODO: Distribute this with TBB so it can be used in other Clojure projects.
++
++(defonce ^:private steps-implementation (atom {}))
++
++(defn implement-step [variant f]
++  (swap! steps-implementation assoc variant f))
++
++;; See unit test for example uses
++(defmacro tis
++  "Similar to assert but the exception message will have arguments evaluated. See unit tests for more details"
++  [f & args]
++  `(when-not (~f ~@args)
++     (throw (AssertionError. (str "failed assertion: "
++                                  (cons '~f (list ~@args)))))))
++
++(defn ready []
++  (println (json/encode {:type "InterpreterState"
++                         :ready true}))
++
++  (doseq [line (line-seq (java.io.BufferedReader. *in*))]
++    (when-not (blank? line)
++      (let [message       (json/parse-string line true)
++            step          (:step message)
++            variant       (:variant step)
++            arguments     (:arguments step)
++            implmentation (get @steps-implementation variant)]
++        (timbre/debug "got a message from tbb" message)
++        (if (nil? implmentation)
++          (let [suggestion
++                `(tbb/implement-step
++                  ~variant
++                  (~'fn [~@(map-indexed
++                            (fn [indx _]
++                              (symbol (str "arg-" indx)))
++                            arguments)
++                         ~'data]
++                        (tis ~'= "cat" "dog")))]
++
++            (timbre/error "missing step implementation" variant)
++            (println (json/generate-string {:type   "Failure"
++                                            :reason "Not implemented"
++                                            :hint (str "To get started put this in your interpreter:\n\n"
++                                                       "``` clojure\n"
++                                                       (with-out-str (pprint suggestion))
++                                                       "```")})))
++          (try
++            (apply implmentation (conj arguments step))
++            (println (json/generate-string {:type "Success"}))
++            (catch Throwable e
++              (println (json/generate-string {:type   "Failure"
++                                              :reason (.getMessage e)}))))))))
++
++  (timbre/debug "Done reading from tbb."))
++
++(defn send-text [text]
++  (println (json/generate-string {:type   "Text"
++                                  :content (pr-str text)}))
++  text)
++
++(defn send-link
++  ([url]
++   (println (json/generate-string {:type "Link"
++                                   :url  (str url)}))
++   url)
++
++  ([url label]
++   (println (json/generate-string {:type  "Link"
++                                   :url   (str url)
++                                   :label label}))
++   url))
++
++(defn table->maps [table]
++  ;; Each column in a table becomes a map in an array. Keys are derived from the first row.
++  (let [[header & rows] table
++        keywords        (map keyword header)]
++    (map #(zipmap keywords %) rows)))
++
++(defn table->map
++  "Takes a sequence of maps with :name and :value pairings and returns a single map"
++  [maps key-kw value-kw]
++  (let [coll   (table->maps maps)
++        ks     (map #(keyword (key-kw %)) coll)
++        values (map value-kw coll)]
++    (zipmap ks values)))
+```
+
+``` diff
+new file mode 100644
+index 0000000..53753fb
+--- /dev/null
++++ b/spec/interpreters/tbb_test.clj
+@@ -0,0 +1,42 @@
++(ns tbb-test
++  (:require
++   [clojure.test :refer [deftest is testing]]
++   [tbb]
++   [clojure.string :as str]))
++
++(deftest tis-test
++  (testing "Simple expressions"
++    (is (nil?
++         (tbb/tis = 2 2))
++        "Returns nil if assertion is correct"))
++
++  (testing "Simple failing assertion"
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(= 1 0\)"
++                          (tbb/tis = 1 0))
++        "Throws an AssertionError with appropriate message"))
++
++  (testing "complex expression"
++    (is (nil?
++         (tbb/tis < 10 (* 3 (+ 2 2))))
++        "Still nil")
++
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(< 20 12\)"
++                          (tbb/tis < 20 (* 3 (+ 2 2))))
++        "In the exception message the arguments will be evaluated"))
++
++  (testing "inside a let expression"
++    (is (nil?
++         (let [heystack "Babashka"
++               needle "Baba"]
++           (tbb/tis str/starts-with? heystack needle)))
++        "Still works inside a let expression")
++
++    (is (thrown-with-msg? AssertionError #"failed assertion: \(str/starts-with\? \"Babashka\" \"Ruska\"\)"
++                          (let [heystack "Babashka"
++                                needle "Ruska"]
++                            (tbb/tis str/starts-with? heystack needle)))
++        "Exception is thrown from the let expression too")))
++
++(let [{:keys [fail error]} (clojure.test/run-tests)]
++  (when (pos? (+ fail error))
++    (System/exit 1)))
+```
+
+``` diff
+new file mode 100644
+index 0000000..4dac78f
+--- /dev/null
++++ b/spec/interpreters/web_automation.clj
+@@ -0,0 +1,12 @@
++(ns web-automation
++  (:require [tbb]
++            [taoensso.timbre :as timbre]))
++
++(defn -main [& args]
++  (timbre/info "Interpreter start")
++  (tbb/ready)
++  (timbre/info "Interpreter done"))
++
++(when (= *file* (System/getProperty "babashka.file"))
++  (apply -main *command-line-args*))
++
+```
+
+``` diff
+index 2452b63..3487584 100644
+--- a/spec/layout.md
++++ b/spec/layout.md
+@@ -1,3 +1,7 @@
++---
++interpreter: bb spec/interpreters/web_automation.clj
++---
++
+=# Basic Layout of the Page
+=
+=## The Width of the Body Doesn't Exceed the Viewport
+```
+
+# Setup CLJ Style for code formatting
+
+
+
+``` diff
+index 04e8d1d..861094e 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -37,6 +37,7 @@
+=                    tbb.default
+=                    babashka
+=                    clojure-lsp
++                    cljstyle
+=                  ];
+=                }
+=              ];
+```
\ No newline at end of file
new file mode 100644
index 0000000..78af26e
--- /dev/null
+++ b/content/devlog/2026-04-08-better-tech-club-website.md
@@ -0,0 +1,420 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 8
+
+
+# Implement the first step of spec using miniserve
+
+Do not escape the observed text (by passing to `pr-str`). Instead
+implement a new function `tbb/prettify` to format Clojure objects.
+
+Also, implement `tbb/send-snippet` to for snippet type of observation.
+
+``` diff
+index b270417..1429264 100644
+--- a/spec/interpreters/tbb.clj
++++ b/spec/interpreters/tbb.clj
+@@ -70,9 +70,20 @@
+=
+=(defn send-text [text]
+=  (println (json/generate-string {:type   "Text"
+-                                  :content (pr-str text)}))
++                                  :content text}))
+=  text)
+=
++(defn send-snippet
++  ([language meta content]
++   (println (json/generate-string {:type     "Snippet"
++                                   :content  content
++                                   :language language
++                                   :meta     meta}))
++   content)
++
++  ([language content]
++   (send-snippet language "" content)))
++
+=(defn send-link
+=  ([url]
+=   (println (json/generate-string {:type "Link"
+@@ -85,6 +96,10 @@
+=                                   :label label}))
+=   url))
+=
++(defn prettify [value]
++  "Formats Clojure / EDN value and returns a string"
++  (with-out-str (pprint value)))
++
+=(defn table->maps [table]
+=  ;; Each column in a table becomes a map in an array. Keys are derived from the first row.
+=  (let [[header & rows] table
+```
+
+``` diff
+index 4dac78f..61f7fe2 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -1,10 +1,35 @@
+=(ns web-automation
+-  (:require [tbb]
+-            [taoensso.timbre :as timbre]))
++  (:require
++   [babashka.fs :as fs]
++   [babashka.process :refer [destroy-tree process]]
++   [taoensso.timbre :as timbre]
++   [tbb]))
++
++(def server-log-file (str (fs/create-temp-file {:prefix "btc-miniserve" :suffix ".log"})))
++(def miniserve-process (atom nil))
++
++(tbb/implement-step
++ "Serve the {0} directory on port {1}"
++ (fn [path port data]
++   (->> {:log-file server-log-file
++         :path     path
++         :port     port}
++        (tbb/prettify)
++        (tbb/send-snippet "edn"))
++   (reset! miniserve-process
++           (process {:err server-log-file
++                     :out server-log-file}
++                    "miniserve --index index.html --port" port path))
++   (Thread/sleep 250)
++   (-> server-log-file
++       (slurp)
++       (tbb/send-text))))
+=
+=(defn -main [& args]
+=  (timbre/info "Interpreter start")
+=  (tbb/ready)
++  (when @miniserve-process
++    (destroy-tree @miniserve-process))
+=  (timbre/info "Interpreter done"))
+=
+=(when (= *file* (System/getProperty "babashka.file"))
+```
+
+``` diff
+index 3487584..4ddf9fa 100644
+--- a/spec/layout.md
++++ b/spec/layout.md
+@@ -8,7 +8,7 @@ interpreter: bb spec/interpreters/web_automation.clj
+=
+=This scenario asserts that page content fits inside the viewport, i.e. there is no need for horizontal scrolling
+=
+-  * Serve the website on the port `1234`
++  * Serve the `.` directory on port `1234`
+=  * Navigate to `http://localhost:1234/`
+=  * The title should be `Better Tech Club`
+=  * The content is not wider than the viewport
+```
+
+# Implement the rest of the spec steps
+
+Using https://github.com/clj-commons/etaoin and Geckodriver. The spec
+evaluates with error, because the page content is wider than the window.
+So we are in a red state of TDD now.
+
+``` diff
+index 861094e..cfcb5fa 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -38,6 +38,7 @@
+=                    babashka
+=                    clojure-lsp
+=                    cljstyle
++                    geckodriver
+=                  ];
+=                }
+=              ];
+```
+
+``` diff
+index 5837a2a..5111e87 100644
+--- a/spec/interpreters/bb.edn
++++ b/spec/interpreters/bb.edn
+@@ -1 +1,2 @@
+-{:paths ["."]}
++{:paths ["."]
++ :deps {etaoin/etaoin {:mvn/version "1.1.43"\}}}
+```
+
+``` diff
+index 61f7fe2..76c2804 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -3,10 +3,12 @@
+=   [babashka.fs :as fs]
+=   [babashka.process :refer [destroy-tree process]]
+=   [taoensso.timbre :as timbre]
++   [etaoin.api :as e]
+=   [tbb]))
+=
+=(def server-log-file (str (fs/create-temp-file {:prefix "btc-miniserve" :suffix ".log"})))
+=(def miniserve-process (atom nil))
++(def web-driver (atom nil))
+=
+=(tbb/implement-step
+= "Serve the {0} directory on port {1}"
+@@ -25,9 +27,32 @@
+=       (slurp)
+=       (tbb/send-text))))
+=
++(tbb/implement-step
++ "Navigate to {0}"
++ (fn [url data]
++   (e/go @web-driver url)))
++
++(tbb/implement-step
++ "The title should be {0}"
++ (fn [expected data]
++   (tbb/tis =
++            expected
++            (e/get-title @web-driver))))
++
++(tbb/implement-step
++ "The content is not wider than the viewport"
++ (fn [data]
++   (let [content-width (e/js-execute @web-driver "return document.querySelector(`html`).scrollWidth")
++         window-width (e/js-execute @web-driver "return window.innerWidth")]
++     (tbb/tis >=
++              window-width
++              content-width))))
++
+=(defn -main [& args]
+=  (timbre/info "Interpreter start")
++  (reset! web-driver (e/firefox))
+=  (tbb/ready)
++  (e/quit @web-driver)
+=  (when @miniserve-process
+=    (destroy-tree @miniserve-process))
+=  (timbre/info "Interpreter done"))
+```
+
+# Fix the horizontal scroll bug
+
+Spotted by Daniel and now evaluated with TBB spec, it's time to fix it!
+
+``` diff
+index 7f6aa29..21af2c3 100644
+--- a/index.html
++++ b/index.html
+@@ -58,7 +58,7 @@
+=             background: oklch(20% 0% 0deg);
+=             color: oklch(80% 0% 0deg);
+=             width: 100%;
+-             padding: 2rem;
++             padding: 2rem 0;
+=             font-size: 0.8rem;
+=             text-align: center;
+=         }
+```
+
+# Add more observations to the content width test
+
+
+
+``` diff
+index 76c2804..3d85e45 100644
+--- a/spec/interpreters/web_automation.clj
++++ b/spec/interpreters/web_automation.clj
+@@ -42,8 +42,14 @@
+=(tbb/implement-step
+= "The content is not wider than the viewport"
+= (fn [data]
+-   (let [content-width (e/js-execute @web-driver "return document.querySelector(`html`).scrollWidth")
+-         window-width (e/js-execute @web-driver "return window.innerWidth")]
++   (let [content-script "return document.querySelector(`html`).scrollWidth"
++         window-script "return window.innerWidth"
++         content-width (e/js-execute @web-driver content-script)
++         window-width (e/js-execute @web-driver window-script)]
++     (tbb/send-text (str "The content width is " content-width "px. It was measured with the following script:"))
++     (tbb/send-snippet "javascript" content-script)
++     (tbb/send-text (str "The window width is " window-width "px. It was measured with the following script:"))
++     (tbb/send-snippet "javascript" window-script)
+=     (tbb/tis >=
+=              window-width
+=              content-width))))
+```
+
+# Correct alt text and add title to the main heading
+
+
+
+``` diff
+index 21af2c3..6ce2063 100644
+--- a/index.html
++++ b/index.html
+@@ -94,7 +94,12 @@
+=
+=        <main>
+=            <h1>
+-                <img id="big-logo" src="logo.svg" alt="FOSS for Normies logo" />
++                <img
++                    id="big-logo"
++                    src="logo.svg"
++                    alt="Better Tech Club logo"
++                    title="Better Tech Club"
++                /> 
+=            </h1>
+=            <p>
+=                We are starting a network of <strong>local community
+```
+
+# Write bold reasons why our tech is better
+
+
+
+``` diff
+new file mode 100644
+index 0000000..5242ac0
+Binary files /dev/null and b/fonts/CooperHewitt-Heavy.woff differ
+```
+
+``` diff
+index 7a9a8d3..e0204fd 100644
+--- a/index.html
++++ b/index.html
+@@ -13,6 +13,12 @@
+=        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
++         @font-face {
++             font-family: "Cooper Hewitt";
++             src: url("fonts/CooperHewitt-Heavy.woff") format("woff2");
++             font-weight: 800;
++         }
++         
+=         html, body {
+=             background: #003399;
+=             min-height: 100%;
+@@ -33,6 +39,15 @@
+=             max-height: 60vh;
+=         }
+=
++         p {
++             text-align: justify;
++         }
++
++         h2 {
++             font-size: 1.2em;
++             align-self: start;
++         }
++         
+=         main {
+=             display: flex;
+=             flex-direction: column;
+@@ -81,6 +96,25 @@
+=                 float: left;
+=             }
+=         }
++         #reasons-why {
++             width: 100%;
++             padding: 0;
++             font-size: 4rem;
++             font-weight: 800;
++             font-family: "Cooper Hewitt";
++             text-align: left;
++             margin-top: 0;
++
++             -webkit-text-fill-color: oklch(80% 0% 0deg); 
++             -webkit-text-stroke-width: 2px;
++             -webkit-text-stroke-color: oklch(20% 0% 0deg);
++
++             strong {
++                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
++                 -webkit-text-stroke-width: 2px;
++                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
++                 text-decoration: none;
++             }
+=        </style>
+=    </head>
+=    <body>
+@@ -101,6 +135,22 @@
+=                    title="Better Tech Club"
+=                /> 
+=            </h1>
++
++            <h2>Why is our tech better?</h2>
++            <p id="reasons-why">
++                    Made with <strong>love</strong> and <strong>care</strong>,
++                    it gets better every day.
++                    Our tech <strong>respects</strong> you as a human being:
++                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
++                    your <strong>intelligence</strong>, your <strong>well-being.</strong>
++                    It's <strong>sustainable</strong> and <strong>fair</strong>.
++                    It belongs to you and me.
++                    It makes us a <strong>community.</strong>
++                    You are among friends. You are not the product.
++                    You deserve <strong>better</strong>.
++            </p>
++
++            <h2>What are we doing?</h2>
+=            <p>
+=                We are starting a network of <strong>local community
+=                groups</strong> to promote and support free and open source
+```
+
+# Make the reasons text size responsive
+
+
+
+``` diff
+index e0204fd..cd5cf63 100644
+--- a/index.html
++++ b/index.html
+@@ -99,19 +99,18 @@
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+-             font-size: 4rem;
++             font-size: min(4rem, 10vw);
+=             font-weight: 800;
+=             font-family: "Cooper Hewitt";
+=             text-align: left;
+=             margin-top: 0;
+=
+=             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 2px;
++             -webkit-text-stroke-width: 0.05em;
+=             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+=
+=             strong {
+=                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
+-                 -webkit-text-stroke-width: 2px;
+=                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+=                 text-decoration: none;
+=             }
+```
+
+# Lighter text stroke, fix curly braces
+
+
+
+``` diff
+index cd5cf63..9c59035 100644
+--- a/index.html
++++ b/index.html
+@@ -106,7 +106,7 @@
+=             margin-top: 0;
+=
+=             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 0.05em;
++             -webkit-text-stroke-width: 0.02em;
+=             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+=
+=             strong {
+@@ -114,6 +114,7 @@
+=                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+=                 text-decoration: none;
+=             }
++         }
+=        </style>
+=    </head>
+=    <body>
+```
\ No newline at end of file
new file mode 100644
index 0000000..9f5d3d5
--- /dev/null
+++ b/content/devlog/2026-04-08-tad-better-behavior.md
@@ -0,0 +1,424 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 1
+
+
+# Draw an icon
+
+
+
+``` diff
+new file mode 100644
+index 0000000..f4729d4
+Binary files /dev/null and b/logo.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..d54a374
+--- /dev/null
++++ b/logo.svg
+@@ -0,0 +1,279 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   sodipodi:docname="logo.svg"
++   inkscape:export-filename="logo.png"
++   inkscape:export-xdpi="96"
++   inkscape:export-ydpi="96"
++   inkscape:export-batch-name="tbb"
++   inkscape:export-batch-path="."
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/">
++  <title
++     id="title1">Tad Better Bahavior Logo</title>
++  <defs
++     id="defs2">
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect17"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect15"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1.124367,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="fillet_chamfer"
++       id="path-effect14"
++       is_visible="true"
++       lpeversion="1"
++       nodesatellites_param="F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1 @ F,0,0,1,0,1,0,1"
++       radius="1"
++       unit="px"
++       method="auto"
++       mode="F"
++       chamfer_steps="1"
++       flexible="false"
++       use_knot_distance="true"
++       apply_no_radius="true"
++       apply_with_radius="true"
++       only_selected="false"
++       hide_knots="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect3"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,3.7796721"
++       up_right_point="16,7.00924"
++       down_left_point="6,26.25"
++       down_right_point="16,31.691307"
++       id="path-effect1"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect24"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <inkscape:path-effect
++       effect="perspective-envelope"
++       up_left_point="6,6"
++       up_right_point="16,6"
++       down_left_point="6,29"
++       down_right_point="16,29"
++       id="path-effect8"
++       is_visible="true"
++       lpeversion="1"
++       deform_type="envelope_deformation"
++       horizontal_mirror="false"
++       vertical_mirror="false"
++       overflow_perspective="false" />
++    <linearGradient
++       id="swatch1"
++       inkscape:swatch="solid">
++      <stop
++         style="stop-color:#333333;stop-opacity:1;"
++         offset="0"
++         id="stop1" />
++    </linearGradient>
++  </defs>
++  <sodipodi:namedview
++     id="base"
++     pagecolor="#343434"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="16"
++     inkscape:cx="24.53125"
++     inkscape:cy="6.25"
++     inkscape:document-units="px"
++     inkscape:current-layer="layer1"
++     inkscape:document-rotation="0"
++     showgrid="false"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     showguides="false">
++    <inkscape:grid
++       id="grid1"
++       units="px"
++       originx="16"
++       originy="16"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="false" />
++    <sodipodi:guide
++       position="9.5,12"
++       orientation="-1,0"
++       id="guide20"
++       inkscape:locked="false"
++       inkscape:label=""
++       inkscape:color="rgb(0,134,229)" />
++    <sodipodi:guide
++       position="12.78125,12.355469"
++       orientation="1,0"
++       id="guide21"
++       inkscape:locked="false" />
++    <sodipodi:guide
++       position="16,25.418434"
++       orientation="0,-1"
++       id="guide7"
++       inkscape:locked="false" />
++  </sodipodi:namedview>
++  <metadata
++     id="metadata5">
++    <rdf:RDF>
++      <cc:Work
++         rdf:about="">
++        <dc:format>image/svg+xml</dc:format>
++        <dc:type
++           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
++        <dc:title>Tad Better Bahavior Logo</dc:title>
++        <dc:date>2026-04-06</dc:date>
++        <dc:creator>
++          <cc:Agent>
++            <dc:title>Tad Lispy</dc:title>
++          </cc:Agent>
++        </dc:creator>
++        <dc:rights>
++          <cc:Agent>
++            <dc:title>All rights reserved</dc:title>
++          </cc:Agent>
++        </dc:rights>
++      </cc:Work>
++    </rdf:RDF>
++  </metadata>
++  <g
++     inkscape:label="icon"
++     inkscape:groupmode="layer"
++     id="layer1">
++    <circle
++       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="path29"
++       cx="16"
++       cy="16"
++       r="16"
++       inkscape:label="background" />
++    <path
++       id="path28"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-right-back" />
++    <path
++       id="rect26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z"
++       sodipodi:nodetypes="cccscc"
++       inkscape:label="rubber-left" />
++    <circle
++       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="ellipse15"
++       cx="23.912268"
++       cy="22.700811"
++       inkscape:label="projectile"
++       r="3.5171616" />
++    <path
++       id="rect20"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-left-back" />
++    <path
++       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
++       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
++       id="path11"
++       inkscape:label="sling"
++       sodipodi:nodetypes="cssscsscsssssssssscc" />
++    <path
++       id="path26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-right" />
++    <path
++       id="rect17"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z"
++       sodipodi:nodetypes="csccscc"
++       inkscape:label="rubber-right" />
++    <path
++       id="path27"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z"
++       sodipodi:nodetypes="ccccc"
++       inkscape:label="rubber-top-left-front" />
++  </g>
++</svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..f4729d4
+Binary files /dev/null and b/tbb_icon.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..bf38170
+--- /dev/null
++++ b/tbb_icon.svg
+@@ -0,0 +1,91 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/">
++  <title
++     id="title1">Tad Better Bahavior Logo</title>
++  <defs
++     id="defs2">
++    <linearGradient
++       id="swatch1">
++      <stop
++         style="stop-color:#333333;stop-opacity:1;"
++         offset="0"
++         id="stop1" />
++    </linearGradient>
++  </defs>
++  <metadata
++     id="metadata5">
++    <rdf:RDF>
++      <cc:Work
++         rdf:about="">
++        <dc:format>image/svg+xml</dc:format>
++        <dc:type
++           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
++        <dc:title>Tad Better Bahavior Logo</dc:title>
++        <dc:date>2026-04-06</dc:date>
++        <dc:creator>
++          <cc:Agent>
++            <dc:title>Tad Lispy</dc:title>
++          </cc:Agent>
++        </dc:creator>
++        <dc:rights>
++          <cc:Agent>
++            <dc:title>All rights reserved</dc:title>
++          </cc:Agent>
++        </dc:rights>
++      </cc:Work>
++    </rdf:RDF>
++  </metadata>
++  <g
++     id="layer1">
++    <circle
++       style="display:inline;fill:#ffd5d5;fill-rule:evenodd;stroke:none;stroke-width:0.5;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="path29"
++       cx="16"
++       cy="16"
++       r="16" />
++    <path
++       id="path28"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.92597,3.240484 24.126279,4.7160913 23.912268,5.5800235 L 22.190429,8.5492661 C 22.198729,7.0611078 21.119033,6.2022564 19.388673,6.6914619 Z" />
++    <path
++       id="rect26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 8.0639209,5.3589246 C 15.60873,8.9476579 28.488498,8 30,9.8401244 L 28.945237,12.208946 C 22.823215,11.461036 11.50083,9.1501936 9.1574613,7.781668 8.986575,7.6818704 8.9693486,7.7087502 8.8497283,7.53064 Z" />
++    <circle
++       style="display:none;fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       id="ellipse15"
++       cx="23.912268"
++       cy="22.700811"
++       r="3.5171616" />
++    <path
++       id="rect20"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 7.7708664,5.6245495 c 0.406254,0.358129 2.4629986,1.0271216 2.8240296,-1.0033988 l 0.754447,2.502501 c 0.0523,0.9689377 -2.0820623,1.3284062 -2.749615,0.7048887 z" />
++    <path
++       style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;fill:#d40000;stroke:#550000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
++       d="m 7.7881641,3.2748817 c -0.089473,0.3493874 0.1871584,1.1442408 0.393814,1.7489729 1.8986749,5.5560484 3.6078209,9.4707424 5.3855729,12.8851464 0.331835,0.63733 0.487764,1.718786 0.376463,2.428579 -0.46748,2.981243 -0.254017,5.265676 -0.272149,8.585131 -0.0035,0.638884 0.0012,1.799021 0.513159,2.135689 0.29982,0.197166 1.147737,0.170364 1.756024,-0.01908 0.148841,-0.04635 0.296719,-0.09958 0.435932,-0.158818 C 16.937678,30.641927 17.102096,29.630853 17,29 c -0.549152,-3.393213 -0.812669,-5.008371 -0.465688,-8.140015 0.07038,-0.635181 0.212806,-1.663679 0.382156,-2.279411 0.796567,-2.896189 3.197757,-7.571713 6.296958,-13.2343275 C 23.520197,4.7857391 24.103734,3.7831608 23.849965,3.2254574 23.700541,2.897077 22.873182,2.3982567 22.315479,2.652025 21.987099,2.8014494 21.567794,3.5314073 21.255204,4.0888091 18.503539,8.9955004 16.569305,12.585117 15.399097,15.578893 15.166486,16.173988 14.768373,16.200955 14.492562,15.624473 13.056752,12.62343 11.642377,9.1821269 10.097352,4.6577725 9.890826,4.0529938 9.6440655,2.9679816 9.1500044,2.575395 8.8835899,2.3637033 7.9401731,2.6813122 7.7881641,3.2748817 Z"
++       id="path11" />
++    <path
++       id="path26"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="m 20.586856,3.8695148 c -0.217208,1.4084619 2.541971,2.3019113 3.325412,1.7105087 L 22.190429,8.5492661 19.388673,6.2406405 Z" />
++    <path
++       id="rect17"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 20.586856,3.8695148 C 20.515316,4.6541099 21.595467,6.2709379 22.466952,7.12125 24.509773,9.1144395 27.578195,10.452645 30,9.8401244 L 28.945237,12.208947 C 26.118573,11.85557 22.23477,10.65881 20.277645,8.4972169 19.831794,8.0047858 19.274365,6.8955836 19.388673,6.2406405 Z" />
++    <path
++       id="path27"
++       style="fill:#225500;fill-rule:evenodd;stroke:#112b00;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none;paint-order:markers stroke fill"
++       d="M 7.7708664,5.6245495 C 8.0134729,4.9256609 9.8391655,4.1022685 10.594896,4.6211507 l 0.754447,2.502501 C 10.740508,6.2193667 8.7026796,6.8523537 8.599728,7.8285404 Z" />
++  </g>
++</svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..22e799a
+Binary files /dev/null and b/tbb_icon_512.png differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..25b4c8f
+Binary files /dev/null and b/tbb_icon_64.png differ
+```
\ No newline at end of file
new file mode 100644
index 0000000..17c5bff
--- /dev/null
+++ b/content/devlog/2026-04-09-better-tech-club-website.md
@@ -0,0 +1,1356 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 15
+
+
+# Advice what to search for in Hilversum agenda
+
+Thanks to Geert for the suggestion.
+
+``` diff
+index 6ce2063..7a9a8d3 100644
+--- a/index.html
++++ b/index.html
+@@ -147,7 +147,10 @@
+=                <h3>Hilversum, NL</h3>
+=                <dl>
+=                    <dt title="time">🕑</dt>
+-                    <dd>See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a></dd>
++                    <dd>
++                        See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a><br />
++                        (search for <em>Techtuinieren</em> and <em>Duurzaam Digitaal Spreekuur</em>).
++                    </dd>
+=                </dl>
+=
+=                <dl>
+```
+
+# Re-align the text in the footer
+
+
+
+``` diff
+index 9c59035..190ac4d 100644
+--- a/index.html
++++ b/index.html
+@@ -75,7 +75,10 @@
+=             width: 100%;
+=             padding: 2rem 0;
+=             font-size: 0.8rem;
+-             text-align: center;
++
++             p {
++                 text-align: center;
++             }
+=         }
+=
+=         .local-group {
+```
+
+# Emphasize the words "love and care" together
+
+
+
+``` diff
+index 190ac4d..4bcf4cd 100644
+--- a/index.html
++++ b/index.html
+@@ -141,7 +141,7 @@
+=
+=            <h2>Why is our tech better?</h2>
+=            <p id="reasons-why">
+-                    Made with <strong>love</strong> and <strong>care</strong>,
++                    Made with <strong>love and care</strong>,
+=                    it gets better every day.
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+```
+
+# Import the branding source SVG with a tagline
+
+
+
+``` diff
+new file mode 100644
+index 0000000..7ff8966
+--- /dev/null
++++ b/better-tech-club.svg
+@@ -0,0 +1,184 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2"><inkscape:path-effect
++       effect="powerstroke"
++       message=""
++       id="path-effect5"
++       is_visible="true"
++       lpeversion="1.3"
++       scale_width="1"
++       interpolator_type="CentripetalCatmullRom"
++       interpolator_beta="0.75"
++       start_linecap_type="round"
++       end_linecap_type="round"
++       offset_points="2.3035803,8.7803873"
++       linejoin_type="spiro"
++       miter_limit="4"
++       not_jump="true"
++       sort_points="true" /><inkscape:path-effect
++       effect="simplify"
++       id="path-effect4"
++       is_visible="true"
++       lpeversion="1.3"
++       threshold="0.014201184"
++       steps="1"
++       smooth_angles="0"
++       helper_size="0"
++       simplify_individual_paths="false"
++       simplify_just_coalesce="false"
++       step="1" /></defs><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:page
++       x="0"
++       y="0"
++       width="1000"
++       height="1000"
++       id="page5"
++       margin="0"
++       bleed="0"
++       inkscape:label="logotype" /><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="0"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /><inkscape:page
++       x="1010"
++       y="0"
++       width="32"
++       height="32"
++       id="page9"
++       margin="0"
++       bleed="0"
++       inkscape:label="icon" /></sodipodi:namedview><metadata
++     id="metadata5"><rdf:RDF><cc:Work
++         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
++           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"><text
++       xml:space="preserve"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:#ffffff;paint-order:markers stroke fill;stroke-width:10;stroke-dasharray:none"
++       x="546.70502"
++       y="380"
++       id="text1"><tspan
++         sodipodi:role="line"
++         id="tspan1"
++         x="546.70502"
++         y="380">Big</tspan><tspan
++         sodipodi:role="line"
++         x="546.70502"
++         y="559.08374"
++         id="tspan2">Tech</tspan><tspan
++         sodipodi:role="line"
++         x="546.70502"
++         y="738.16748"
++         id="tspan3">Club</tspan></text><g
++       id="g6-8"
++       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
++         fill="#fac036"
++         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++         id="path1-0" /><path
++         fill="#e48c15"
++         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++         id="path2-8" /></g><text
++       xml:space="preserve"
++       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#fac036;fill-opacity:1;stroke-width:1.69307"
++       x="313.17581"
++       y="386.3519"
++       id="text4"
++       transform="rotate(-15)"><tspan
++         sodipodi:role="line"
++         id="tspan4"
++         x="313.17581"
++         y="386.3519"
++         style="stroke-width:1.69307">Better</tspan></text><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       sodipodi:nodetypes="cc"
++       transform="translate(362.34816,24.840675)"
++       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
++       inkscape:path-effect="#path-effect4;#path-effect5" /><text
++       xml:space="preserve"
++       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:143.267px;line-height:1.25;font-family:'Adwaita Mono';-inkscape-font-specification:'Adwaita Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
++       x="63.714287"
++       y="580"
++       id="text5"><tspan
++         sodipodi:role="line"
++         id="tspan5"
++         x="63.714287"
++         y="580" /></text></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g><text
++     xml:space="preserve"
++     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#fac036;fill-opacity:1;stroke-width:3.88772"
++     x="495.45914"
++     y="864.35309"
++     id="text6"><tspan
++       sodipodi:role="line"
++       id="tspan6"
++       x="211.18976"
++       y="864.35309"
++       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
++       sodipodi:role="line"
++       x="211.18976"
++       y="942.10736"
++       style="stroke-width:3.88772"
++       id="tspan7">for digital independence</tspan></text></svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..6fe07e0
+--- /dev/null
++++ b/better-tech-club_icon.svg
+@@ -0,0 +1,84 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="32"
++   height="32"
++   viewBox="0 0 32 32"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2" /><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="-1010"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /><inkscape:page
++       x="0"
++       y="0"
++       width="32"
++       height="32"
++       id="page9"
++       margin="0"
++       bleed="0"
++       inkscape:label="icon" /></sodipodi:namedview><metadata
++     id="metadata5"><rdf:RDF><cc:Work
++         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
++           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"
++     transform="translate(-1010)"><g
++       id="g6-8"
++       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
++         fill="#fac036"
++         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++         id="path1-0" /><path
++         fill="#e48c15"
++         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++         id="path2-8" /></g></g></svg>
+```
+
+``` diff
+new file mode 100644
+index 0000000..470c6e3
+--- /dev/null
++++ b/better-tech-club_logotype.svg
+@@ -0,0 +1,137 @@
++<?xml version="1.0" encoding="UTF-8" standalone="no"?>
++<svg
++   width="1000"
++   height="1000"
++   viewBox="0 0 1000 1000"
++   version="1.1"
++   id="svg8"
++   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
++   xml:space="preserve"
++   sodipodi:docname="better-tech-club.svg"
++   inkscape:export-filename="export/better-tech-club.png"
++   inkscape:export-xdpi="12.288"
++   inkscape:export-ydpi="12.288"
++   inkscape:export-batch-name="better-tech-club"
++   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
++   xmlns="http://www.w3.org/2000/svg"
++   xmlns:svg="http://www.w3.org/2000/svg"
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
++   xmlns:cc="http://creativecommons.org/ns#"
++   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
++     id="defs2"><inkscape:path-effect
++       effect="powerstroke"
++       message=""
++       id="path-effect5"
++       is_visible="true"
++       lpeversion="1.3"
++       scale_width="1"
++       interpolator_type="CentripetalCatmullRom"
++       interpolator_beta="0.75"
++       start_linecap_type="round"
++       end_linecap_type="round"
++       offset_points="2.3035803,8.7803873"
++       linejoin_type="spiro"
++       miter_limit="4"
++       not_jump="true"
++       sort_points="true" /><inkscape:path-effect
++       effect="simplify"
++       id="path-effect4"
++       is_visible="true"
++       lpeversion="1.3"
++       threshold="0.014201184"
++       steps="1"
++       smooth_angles="0"
++       helper_size="0"
++       simplify_individual_paths="false"
++       simplify_just_coalesce="false"
++       step="1" /></defs><sodipodi:namedview
++     id="base"
++     pagecolor="#3d3d3d"
++     bordercolor="#666666"
++     borderopacity="1.0"
++     inkscape:pageopacity="0.0"
++     inkscape:pageshadow="2"
++     inkscape:zoom="0.70710678"
++     inkscape:cx="382.54477"
++     inkscape:cy="569.92807"
++     inkscape:document-units="px"
++     inkscape:current-layer="svg8"
++     inkscape:document-rotation="0"
++     showgrid="true"
++     units="px"
++     scale-x="1"
++     inkscape:showpageshadow="0"
++     inkscape:pagecheckerboard="1"
++     inkscape:deskcolor="#d1d1d1"
++     inkscape:window-width="1920"
++     inkscape:window-height="1011"
++     inkscape:window-x="0"
++     inkscape:window-y="0"
++     inkscape:window-maximized="1"
++     inkscape:export-bgcolor="#2c2c2c00"
++     showguides="false"><inkscape:page
++       x="0"
++       y="0"
++       width="1000"
++       height="1000"
++       id="page5"
++       margin="0"
++       bleed="0"
++       inkscape:label="logotype" /><inkscape:grid
++       id="grid6"
++       units="px"
++       originx="0"
++       originy="0"
++       spacingx="1"
++       spacingy="1"
++       empcolor="#0099e5"
++       empopacity="0.30196078"
++       color="#0099e5"
++       opacity="0.14901961"
++       empspacing="5"
++       enabled="true"
++       visible="true" /></sodipodi:namedview><metadata
++     id="metadata5"><rdf:RDF><cc:Work
++         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
++           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
++     inkscape:label="Layer 1"
++     inkscape:groupmode="layer"
++     id="layer1"><g
++       id="text1"
++       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
++       aria-label="Big&#10;Tech&#10;Club"><path
++         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
++         id="path11" /><path
++         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
++         id="path12" /><path
++         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
++         id="path13" /></g><path
++       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
++       id="text4"
++       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
++       transform="rotate(-15)"
++       aria-label="Better" /><path
++       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
++       id="path-1"
++       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
++       sodipodi:nodetypes="cc"
++       transform="translate(362.34816,24.840675)"
++       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
++       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
++     id="g6"
++     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
++       fill="#fac036"
++       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
++       id="path1" /><path
++       fill="#e48c15"
++       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
++       id="path2" /></g><g
++     id="text6"
++     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
++     aria-label="Neighborhood communities&#10;for digital independence"><path
++       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
++       id="path14" /><path
++       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
++       id="path15" /></g></svg>
+```
+
+``` diff
+index 4bcf4cd..c2242e1 100644
+--- a/index.html
++++ b/index.html
+@@ -133,7 +133,7 @@
+=            <h1>
+=                <img
+=                    id="big-logo"
+-                    src="logo.svg"
++                    src="better-tech-club_logotype.svg"
+=                    alt="Better Tech Club logo"
+=                    title="Better Tech Club"
+=                />
+```
+
+# Fix a typo in the tagline
+
+Also lowercase it for aesthetic value.
+
+``` diff
+index 7ff8966..bcd6677 100644
+--- a/better-tech-club.svg
++++ b/better-tech-club.svg
+@@ -174,11 +174,11 @@
+=     id="text6"><tspan
+=       sodipodi:role="line"
+=       id="tspan6"
+-       x="211.18976"
++       x="495.45914"
+=       y="864.35309"
+-       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
++       style="stroke-width:3.88772">neighbourhood communities</tspan><tspan
+=       sodipodi:role="line"
+-       x="211.18976"
++       x="495.45914"
+=       y="942.10736"
+=       style="stroke-width:3.88772"
+=       id="tspan7">for digital independence</tspan></text></svg>
+```
+
+``` diff
+index 6fe07e0..dcf30e6 100644
+--- a/better-tech-club_icon.svg
++++ b/better-tech-club_icon.svg
+@@ -31,7 +31,7 @@
+=     inkscape:cx="382.54477"
+=     inkscape:cy="569.92807"
+=     inkscape:document-units="px"
+-     inkscape:current-layer="svg8"
++     inkscape:current-layer="layer1"
+=     inkscape:document-rotation="0"
+=     showgrid="true"
+=     units="px"
+```
+
+``` diff
+index 470c6e3..344c3bc 100644
+--- a/better-tech-club_logotype.svg
++++ b/better-tech-club_logotype.svg
+@@ -57,7 +57,7 @@
+=     inkscape:cx="382.54477"
+=     inkscape:cy="569.92807"
+=     inkscape:document-units="px"
+-     inkscape:current-layer="svg8"
++     inkscape:current-layer="layer1"
+=     inkscape:document-rotation="0"
+=     showgrid="true"
+=     units="px"
+@@ -103,11 +103,11 @@
+=       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
+=       aria-label="Big&#10;Tech&#10;Club"><path
+=         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
+-         id="path11" /><path
++         id="path15" /><path
+=         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
+-         id="path12" /><path
++         id="path16" /><path
+=         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
+-         id="path13" /></g><path
++         id="path17" /></g><path
+=       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
+=       id="text4"
+=       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
+@@ -130,8 +130,8 @@
+=       id="path2" /></g><g
+=     id="text6"
+=     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
+-     aria-label="Neighborhood communities&#10;for digital independence"><path
+-       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
+-       id="path14" /><path
++     aria-label="neighbourhood communities&#10;for digital independence"><path
++       d="m 234.42265,862.86021 q -1.36847,-0.12441 -2.30153,-0.55983 -0.87084,-0.49763 -1.43067,-1.92831 -0.24882,-0.99525 -0.24882,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05745 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31101,-0.24881 -1.11966,0.0622 -1.30627,0.62204 -2.86135,1.67949 -1.49289,0.99526 -3.17238,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05271,2.42593 -0.62204,0.93305 -1.30628,0.93305 -0.49762,0.24881 -1.05745,-0.12441 -0.55983,-0.37322 -1.18187,-0.87084 -0.43542,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68423,-1.05746 0,-0.99525 0.1244,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24882,-0.49762 0.55983,-1.05746 0.24882,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.1244,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30628,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49762,-0.37322 0.49763,-0.37322 1.18187,-0.87085 0.68423,-0.55983 1.18186,-0.87085 0.31102,-0.31102 1.36848,-1.11966 1.05745,-0.87085 2.30152,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05745,-0.55983 1.30627,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24882,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.1244,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24882,0.87085 0.18661,0.43543 0.43542,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 19.22083,0.24881 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68423 0.49762,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99575,15.05322 q -1.49288,0 -2.61255,-1.55508 -1.05745,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.12441,-0.93305 0.24881,-1.9283 0.24882,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.6795,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24882,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68423,-0.37322 -0.43543,-0.0622 -1.11967,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31101,1.36847 -2.23932,2.17711 z m 7.52656,37.94408 q -0.68424,0.0622 -2.11492,-0.31102 -1.43067,-0.31102 -2.79915,-1.24407 -1.67949,-1.43068 -2.30152,-2.36373 -0.62204,-0.93305 -0.68424,-1.67949 0,-0.68424 0.0622,-1.24407 0.31102,-1.36847 1.30627,-1.30627 1.05746,0.0622 1.61729,0.55983 0.62203,0.49763 1.30627,1.18187 0.74644,0.74644 1.43068,1.30627 0.74644,0.55983 1.24407,0.49763 1.24407,-0.12441 2.05271,-1.05746 0.80864,-0.87085 1.61729,-2.79915 0.49763,-1.36848 0.74644,-2.36373 0.31102,-0.99526 0.62203,-2.17712 0.31102,-1.18187 0.74644,-3.17238 0.31102,-1.43067 0.43543,-1.9905 0.18661,-0.62204 0.18661,-0.74645 0,-0.18661 -0.0622,-0.18661 0,0 -0.43543,0.24882 -0.43542,0.24881 -1.24407,0.55983 -0.74644,0.31102 -1.67949,0.62203 -1.74169,0.55983 -3.48339,0.99526 -1.74169,0.37322 -2.67474,0.0622 -0.93306,-0.37322 -1.49289,-1.24407 -0.55983,-0.87085 -0.74644,-1.8661 -0.1244,-0.99525 -0.0622,-1.61729 0.12441,-0.49763 0.55983,-1.61729 0.43542,-1.11966 0.99525,-2.36373 0.55983,-1.24406 1.05746,-2.17711 0.49763,-0.93306 0.80865,-0.99526 0.24881,-0.12441 0.43542,-0.49763 0.24881,-0.43542 0.24881,-0.68423 0.0622,-0.24882 0.49763,-0.80865 0.49763,-0.55983 2.79915,-2.17712 2.30153,-2.17712 4.16763,-3.23457 1.8661,-1.11966 3.42119,-1.24407 0.43542,0.0622 0.80864,0.0622 0.43543,0 0.43543,0 0,0 0.68423,0.18661 0.68424,0.18661 1.36848,0.49763 0.80864,0.31102 1.74169,1.49288 0.93305,1.11966 1.61729,2.48814 0.68424,1.36847 0.74644,2.48813 -0.0622,1.36848 -0.62203,2.73695 -0.55983,1.36848 -1.05746,1.30627 -0.49763,-0.0622 -1.11966,0.37322 -0.55983,0.37322 -0.87085,1.49289 -0.18661,0.24881 -0.43542,0.80864 -0.24881,0.49763 -0.55983,0.99525 -0.0622,0.31102 -0.31102,1.55509 -0.24881,1.18186 -0.62203,2.67475 -0.31102,1.43067 -0.55983,2.67474 -0.24882,1.18187 -0.31102,1.55509 -0.0622,0.24881 -0.31102,1.18186 -0.24881,0.87085 -0.62203,1.99051 -0.31102,1.11966 -0.68424,2.05271 -0.24881,1.8039 -0.99525,3.11017 -0.74644,1.36848 -1.61729,2.42593 -1.43068,1.55509 -2.86136,2.17712 -1.36847,0.68424 -2.42593,0.80865 z m -1.18187,-21.77119 q 0.18662,0.49763 0.99526,0.37322 0.87085,-0.12441 2.36373,-0.55983 1.8039,-0.74644 2.67474,-1.18187 0.93306,-0.43542 1.43068,-1.11966 0.37322,-0.49763 0.68424,-0.99525 0.37322,-0.49763 0.68424,-0.87085 0.1244,-0.12441 0.37322,-0.43542 0.31101,-0.31102 0.49763,-0.55983 0.37322,-0.24882 0.62203,-0.43543 0.31102,-0.24881 0.55983,-0.43542 0.31102,-0.12441 0.55983,-0.55983 0.24881,-0.49763 0.12441,-0.99526 -0.0622,-0.43542 -0.55983,-1.18186 -0.49763,-0.80865 -1.36848,-1.24407 -0.80864,-0.49763 -1.9283,0.68424 -1.05746,1.18186 -3.42119,3.17237 -1.36848,1.49288 -2.42593,2.79915 -1.05746,1.24407 -1.55509,2.17712 -0.49763,0.87085 -0.31102,1.36848 z m 40.74325,9.2683 q -1.18186,0.31102 -2.48813,0.43543 -1.24407,0.18661 -2.17712,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49762,-0.99526 -0.68424,-0.1244 -2.17712,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.9283,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74644,0.74644 -1.11966,0 -2.05272,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68423,-1.43067 0,-0.24882 0.31101,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43543,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80865,-2.36373 1.43068,-4.16763 0.24882,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24407,-3.11017 0.62203,-1.55509 0.87084,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24881,0 0.55983,0 0.31101,-0.0622 0.31101,-0.0622 0,-0.12441 0.80865,0.24881 0.87085,0.37322 1.67949,0.93305 0.87085,0.49763 0.87085,0.87085 0.31101,0.80864 0.0622,2.11491 -0.24881,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24406,3.35899 -0.24882,0.43542 -0.74644,1.55508 -0.43543,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99526,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23458,-3.35898 1.55508,-1.49289 2.86135,-2.36373 1.36848,-0.93305 2.42594,-0.80865 0.55983,0.12441 1.43067,0.80865 0.93305,0.62203 1.7417,1.49288 0.87085,0.80864 1.11966,1.55508 0.24881,0.87085 0.31102,1.6795 0.1244,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49762,3.04796 -0.12441,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 14.43115,0.0622 q -1.24407,-0.12441 -1.99051,-0.62204 -0.68424,-0.55983 -1.05746,-1.36847 -0.49762,-0.55983 -0.62203,-0.87085 -0.0622,-0.31102 0,-0.55983 0.31102,0 0.55983,0 0.24881,-0.0622 0.31102,-0.24881 0,-0.18661 0.18661,-0.24882 0.24881,-0.0622 0.49763,0 1.18186,0.0622 2.86135,-0.80864 1.7417,-0.87085 3.79441,-2.42593 2.05271,-1.61729 4.10542,-3.48339 1.61729,-2.11492 2.23933,-3.11017 0.68423,-0.99526 0.68423,-1.49288 0.0622,-0.55984 -0.24881,-1.11967 -0.24881,-0.49762 -1.18186,-0.49762 -0.93306,0 -2.86136,1.24406 -2.67475,1.6795 -4.29204,3.11017 -1.61728,1.43068 -2.98576,3.23458 -0.49763,0.62204 -1.11966,1.36848 -0.55983,0.68423 -0.99525,1.18186 -0.37323,0.49763 -0.37323,0.49763 0,0.24881 -0.74644,0.62203 -0.68423,0.37322 -1.18186,0.37322 -0.24881,-0.1244 -0.68424,-0.43542 -0.37322,-0.37322 -0.49763,-0.93305 -0.55983,-0.43543 -0.93305,-0.74644 -0.37322,-0.37322 -0.37322,-1.18187 0,-0.49762 0.12441,-1.24407 0.18661,-0.74644 0.49763,-1.9283 0.37322,-1.61729 0.80864,-3.35898 0.43543,-1.8039 0.80865,-3.04797 0.43542,-1.30627 0.62203,-1.43068 0,0 0.24881,-0.55983 0.24882,-0.55983 0.24882,-1.30627 0.1244,-0.74644 0.37322,-1.30627 0.31101,-0.55983 0.31101,-0.80865 0.24882,-0.18661 0.74645,-1.49288 0.49762,-1.30627 1.24406,-3.42119 0,-0.18661 0.43543,-1.18186 0.43542,-1.05746 1.05745,-2.42593 0.62204,-1.43068 1.24407,-2.92356 0.68424,-1.55509 1.11966,-2.73695 0.74644,-1.05746 1.24407,-2.11492 0.55983,-1.11966 0.99526,-1.30627 0.31101,-0.0622 1.05745,0.24881 0.80865,0.31102 1.61729,0.80865 0.80865,0.49763 1.11966,0.99525 0.18661,0.31102 0.18661,0.62204 0.0622,0.31101 -0.24881,1.05745 -0.31102,0.68424 -1.05746,2.30153 -0.74644,1.55509 -2.11491,4.41644 -1.7417,3.73221 -2.73695,6.22034 -0.93305,2.48814 -1.55509,4.29204 -0.55983,1.8039 -1.18186,3.42118 l -0.31102,1.36848 1.61729,-1.8039 q 0.62203,-0.62203 1.30627,-1.18186 0.68424,-0.55984 1.49288,-1.11967 0.49763,-0.37322 1.30627,-0.74644 0.87085,-0.43542 1.6795,-0.74644 0.80864,-0.31101 1.18186,-0.37322 0.18661,-0.0622 1.24407,-0.24881 1.11966,-0.24882 2.17712,-0.24882 1.36847,0 2.36373,0.99526 1.05745,0.93305 1.8661,2.30152 0.68424,1.30628 0.49763,3.35899 -0.18661,1.99051 -1.05746,3.42119 -0.31102,0.24881 -0.62204,0.68423 -0.31101,0.37322 -0.31101,0.62204 -0.0622,0.43542 -1.11966,1.8039 -1.05746,1.30627 -2.11492,2.48813 -1.11966,1.18187 -2.73695,2.36373 -1.61729,1.11966 -3.23458,2.05271 -1.55508,0.87085 -2.67474,1.24407 -0.49763,0.0622 -1.43068,0.24881 -0.93305,0.12441 -1.43068,0.24882 z m 25.69001,0.93305 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49763,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 25.68998,8.70847 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74645,-2.55034 -0.1244,-0.49763 -0.1244,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87085,0.68424 -1.74169,1.11967 -2.05272,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24882,-2.98576 0.12441,-2.17712 0.62204,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49288,1.18186 0.37322,0.62204 0,2.36373 -0.37322,1.67949 -1.49288,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55983,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49289,5.22509 -1.18186,2.55034 -1.61728,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74644,1.49288 0.12441,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.8039,0.1244 -0.93305,-0.1244 -1.55508,-0.55983 z m 13.31157,-1.18186 q -0.18661,0.0622 -0.80864,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55984,-0.18661 -0.68424,-0.31102 -0.24882,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.8661 0.43543,-1.24407 0.87085,-2.61255 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.12441,-1.49288 -0.18661,-0.49763 -1.05745,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93305,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30628 0.62204,-0.49763 1.36848,-1.36848 0.80864,-0.93305 1.61729,-1.74169 0.99525,-0.68424 2.36373,-1.36848 1.36847,-0.74644 1.9905,-0.74644 0.68424,0 1.6795,0.68424 0.99525,0.62203 1.24406,1.11966 0.62204,1.05746 0.87085,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55984,0.37322 -0.49762,0.49762 -1.24406,1.24406 -0.68424,0.74645 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49763,1.36848 -1.05746,1.55509 z m 39.81022,0.87084 q -1.18186,0.31102 -2.48814,0.43543 -1.24406,0.18661 -2.17711,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49763,-0.99526 -0.68423,-0.1244 -2.17711,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.92831,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74645,0.74644 -1.11966,0 -2.05271,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68424,-1.43067 0,-0.24882 0.31102,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43542,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80864,-2.36373 1.43068,-4.16763 0.24881,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24406,-3.11017 0.62204,-1.55509 0.87085,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24882,0 0.55983,0 0.31102,-0.0622 0.31102,-0.0622 0,-0.12441 0.80864,0.24881 0.87085,0.37322 1.6795,0.93305 0.87084,0.49763 0.87084,0.87085 0.31102,0.80864 0.0622,2.11491 -0.24882,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24407,3.35899 -0.24881,0.43542 -0.74644,1.55508 -0.43542,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99525,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23457,-3.35898 1.55509,-1.49289 2.86136,-2.36373 1.36848,-0.93305 2.42593,-0.80865 0.55983,0.12441 1.43068,0.80865 0.93305,0.62203 1.7417,1.49288 0.87084,0.80864 1.11966,1.55508 0.24881,0.87085 0.31101,1.6795 0.12441,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49763,3.04796 -0.1244,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 12.31623,-0.0622 q -1.30628,0.24881 -1.99051,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55984,-0.18661 0.18661,0 0.93305,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18186,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.54559,1.24407 z m 0.18661,-5.22508 q 0.24881,0 0.87084,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43543,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68423,-0.31101 -0.62204,0 -0.87085,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99525,-1.24407 -1.05746,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99526,0.37322 z m 22.5176,6.28254 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 28.05371,10.01474 q -0.80864,0.18661 -1.61729,-0.43542 -0.74644,-0.55983 -1.05746,-1.24407 -0.37322,-0.99525 -0.49762,-1.8661 -0.0622,-0.93305 -0.12441,-2.11492 l -0.0622,-2.11491 -2.55034,2.30152 q -2.11492,1.99051 -3.98102,2.86136 -1.8039,0.80864 -3.29678,0.80864 -0.68424,-0.1244 -1.67949,-0.87084 -0.93305,-0.80865 -1.7417,-1.7417 -0.74644,-0.99525 -1.05745,-1.61729 -0.37323,-0.87084 -0.24882,-2.42593 0.18661,-1.55508 0.74644,-3.42119 0.62204,-1.8661 1.49288,-3.67 0.93306,-1.8039 2.11492,-3.11017 2.05271,-3.11017 5.10068,-3.85661 3.04797,-0.80864 5.41169,0.49763 1.11967,0.55983 1.61729,0.43542 0.49763,-0.1244 0.62204,-0.80864 0.24881,-0.99526 0.55983,-1.8661 0.31101,-0.87085 0.87084,-2.61255 1.55509,-4.72745 2.67475,-7.4022 1.18187,-2.67475 2.11492,-4.66526 0.68423,-1.43067 1.36847,-1.9905 0.68424,-0.55983 1.18187,-0.49763 0.68423,0 1.67949,0.49763 1.05746,0.49762 1.36847,1.36847 0.24882,0.55983 0.18661,1.18187 0,0.62203 -0.37322,1.30627 -0.80864,1.49288 -1.9283,3.98101 -1.05746,2.42594 -2.17712,5.3495 -1.05746,2.92356 -1.99051,5.78491 -0.93305,2.86136 -1.55509,5.03848 -0.37322,1.36847 -0.62203,3.48339 -0.18661,2.11491 -0.31102,4.35424 -0.0622,2.17712 0,3.91881 0.0622,1.67949 0.18661,2.17712 0.37322,1.24407 0,1.8661 -0.37322,0.62204 -1.05745,0.80865 -0.68424,0.24881 -1.36848,0.31101 z m -10.26356,-7.52661 q 0.87085,-0.31102 1.55508,-0.74644 0.68424,-0.43542 1.61729,-1.11966 1.86611,-1.43068 2.67475,-2.48814 0.87085,-1.05745 1.36847,-2.61254 0.31102,-0.93305 0,-1.61729 -0.24881,-0.68423 -0.93305,-1.30627 -0.68423,-0.55983 -1.74169,-0.43542 -1.05746,0.0622 -2.42593,1.30627 -1.49289,1.36847 -2.55034,3.17237 -1.05746,1.8039 -1.7417,5.16288 -0.12441,0.62204 0.43542,0.87085 0.55984,0.24882 1.7417,-0.18661 z m 38.75278,5.84712 q -1.36847,0 -2.05271,-0.12441 -0.62204,-0.1244 -0.93305,-0.37322 -0.31102,-0.24881 -0.80865,-0.68423 -0.24881,-0.49763 -0.87084,-1.24407 -0.62204,-0.80865 -0.87085,-1.05746 -0.24882,-0.93305 -0.18661,-2.55034 0.1244,-1.61729 0.55983,-3.48339 0.43542,-1.8661 1.05746,-3.35898 0.24881,-0.49763 0.43542,-0.99526 0.18661,-0.49762 0.18661,-0.49762 0,-0.31102 0.74644,-1.49289 0.80864,-1.18186 1.7417,-2.48813 0.99525,-1.30627 1.61728,-1.8661 0.43543,-0.49763 1.30628,-1.05746 0.93305,-0.55983 1.61728,-0.80865 0.68424,-0.24881 1.86611,-0.62203 1.18186,-0.43542 2.11491,-0.43542 0.87085,0 1.8661,0.37322 0.99526,0.37322 1.6795,1.30627 1.11966,1.11966 1.43067,2.67474 0.31102,1.55509 0.0622,2.67475 -0.31102,1.24407 -1.24407,2.05271 -0.93305,0.74644 -1.99051,0.80865 -1.05746,0 -1.8661,-0.87085 -0.24882,-0.49763 -0.24882,-0.80864 0,-0.37323 0.24882,-1.05746 0.24881,-0.87085 0.24881,-1.55509 0,-0.68423 -0.55983,-0.68423 -0.80864,0 -1.30627,0.49762 -0.49763,0.43543 -1.49288,1.49288 -0.43543,0.49763 -1.11966,1.43068 -0.68424,0.93305 -1.36848,2.05271 -0.62203,1.05746 -1.11966,2.17712 -0.68424,2.05272 -0.87085,2.67475 -0.1244,0.55983 -0.1244,0.55983 0,0.24881 -0.0622,0.49763 -0.0622,0.18661 -0.0622,0.43542 0,0.74644 0.87085,1.18187 0.68423,0.43542 1.11966,0.43542 0.49763,-0.0622 1.8661,-0.68424 0.99525,-0.49763 1.8661,-1.30627 0.93305,-0.80864 1.92831,-1.43068 0.68424,-0.43542 1.05746,-0.74644 0.43542,-0.31102 0.43542,-0.0622 0,0.24881 0.18661,0.24881 0.18661,0 0.43542,-0.24881 0.37322,-0.49763 0.93305,-0.37322 0.55984,0.0622 0.99526,0.31101 0.49763,0.24882 0.49763,0.43543 -0.12441,0.55983 0.24881,0.93305 0,0.24881 -0.18661,0.68424 -0.12441,0.37322 -0.37322,0.62203 -0.31102,0.43542 -0.93305,1.24407 -0.55983,0.80864 -1.05746,1.43068 -0.49763,0.62203 -0.49763,0.62203 -0.24881,-0.0622 -0.49762,0.12441 -0.18661,0.18661 -0.43543,0.43542 -0.49763,0.43543 -0.93305,0.68424 -0.43542,0.18661 -0.68424,0.18661 -0.43542,0.24881 -0.68423,0.31102 -0.18661,0.0622 -0.18661,0.31101 -0.62204,0.62204 -2.23933,0.87085 -1.61728,0.18661 -3.35898,0.18661 z m 21.14918,0.0622 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68423,-1.43067 -0.49762,-2.48813 0.18661,-0.49763 0.1244,-0.93305 0,-0.49763 0,-0.49763 -0.31101,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42594,0.99525 1.43067,0.62203 1.9905,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30628,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24406,-0.37322 2.98576,-2.05271 z m 15.17761,5.97153 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68423,-3.35898 0.43543,-1.86611 0.87085,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49762,-1.18187 0.31102,-0.31101 1.05746,-0.37322 0.74644,-0.0622 1.49288,0.18661 0.74644,0.18661 0.99526,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05745,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36372,3.04797 0.74645,2.17712 0.49763,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62204,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 v -3.8566 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68424,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18187,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43068,-0.0622 -1.36847,-0.43543 -1.74169,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49762,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80865,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43543,1.11966 -0.80865,1.43068 -0.37322,0.24881 -1.05745,-0.0622 z m 61.14594,0.55983 q -0.43542,-0.12441 -1.36847,-0.80865 -0.93305,-0.68423 -1.6795,-2.05271 -0.68423,-1.36847 -0.62203,-3.54559 0.0622,-1.86611 0.24881,-2.61255 0.24882,-0.80864 -0.18661,-0.87084 -0.31101,-0.0622 -1.24406,0.55983 -0.93306,0.62203 -2.42594,1.99051 -1.49288,1.36847 -3.60779,3.60779 -0.74644,0.62204 -1.6795,1.55509 -0.87084,0.87085 -1.80389,1.30627 -0.87085,0.43542 -1.55509,-0.18661 l -0.62203,-0.55983 q -0.43543,-0.37322 -0.74644,-0.99526 -0.31102,-0.62203 -0.18661,-1.05745 l 1.74169,-4.85187 q 0.74644,-1.61729 0.99526,-2.36373 0.31101,-0.74644 0.24881,-0.93305 0,-0.18661 -0.31102,-0.12441 -0.37322,0.0622 -1.05746,0.68424 -0.68423,0.55983 -0.93305,0.93305 -0.24881,0 -0.68423,0.49763 -0.37322,0.49763 -0.74645,0.87085 -0.37322,0.37322 -1.30627,1.43068 -0.93305,0.99525 -1.99051,2.11491 -0.80864,0.74644 -1.8661,1.99051 -1.05745,1.24407 -1.8661,2.23932 -0.80864,0.99526 -0.99525,0.99526 -1.11966,-0.0622 -2.05272,-0.74644 -0.87084,-0.68424 -1.18186,-1.6795 -0.37322,-0.68423 -0.0622,-2.48813 0.31101,-1.8661 1.18186,-5.90932 0.24881,-0.93306 0.43542,-1.61729 0.24882,-0.68424 0.49763,-1.36848 0.24882,-0.68424 0.55983,-1.55508 0.37322,-0.87085 0.93305,-2.11492 0.31102,-0.87085 0.24882,-1.61729 -0.0622,-0.80864 -0.12441,-1.30627 0,-0.93305 0.55983,-1.49288 0.62203,-0.55983 1.36848,-0.74644 0.74644,-0.24881 1.18186,-0.12441 1.7417,0.18661 2.36373,1.24407 0.62203,1.05746 0.68424,2.05271 0.0622,0.93305 -0.24882,1.67949 -0.31101,0.74645 -0.49762,1.24407 l -0.68424,1.67949 q -0.62204,1.43068 -0.93305,2.11492 -0.24882,0.62203 -0.31102,0.87085 0,0.18661 0,0.37322 0.0622,0.18661 0.55983,-0.18661 0.49763,-0.37322 1.18187,-0.99526 0.74644,-0.68423 1.36847,-1.18186 1.11966,-0.93305 2.36373,-1.8661 1.30627,-0.99526 2.55034,-1.7417 1.24407,-0.74644 2.05271,-0.99525 1.05746,0.18661 1.92831,1.05745 0.93305,0.87085 1.18186,1.49289 0.31102,0.93305 0.0622,1.67949 -0.18661,0.74644 -0.31101,1.36847 -0.0622,0.24882 -0.24882,0.93305 -0.18661,0.68424 -0.37322,1.30628 -0.18661,0.55983 -0.18661,0.55983 0,0 0.37322,-0.37322 0.37322,-0.37322 0.99526,-0.87085 0.62203,-0.55983 1.24407,-0.99526 3.11017,-2.36373 4.91406,-2.98576 1.86611,-0.68424 3.17238,1.05746 0.74644,0.68424 0.93305,1.8661 0.24881,1.18186 0.24881,3.17237 0.0622,0.80865 0.12441,1.8039 0.12441,0.99526 0.24881,1.7417 0.18661,0.74644 0.31102,0.93305 0.18661,0.24881 0.68424,0.49763 0.49762,0.18661 0.93305,0.31101 0.87085,0.43543 0.93305,1.61729 0.12441,1.11966 -0.87085,1.7417 -0.93305,0.55983 -1.99051,0.68423 -0.99525,0.12441 -2.05271,0.0622 z m 21.52241,1.8661 q -0.43542,0.24881 -1.18186,-0.18661 -0.68424,-0.43543 -1.36848,-1.30627 -0.43542,-0.74644 -0.68424,-1.49288 -0.18661,-0.80865 -0.18661,-2.36373 0.0622,-1.24407 0,-1.6795 0,-0.49762 -0.55983,-0.0622 -0.49762,0.37322 -2.05271,1.8661 -1.55508,1.55509 -2.98576,2.67475 -1.36848,1.05746 -2.23932,0.99525 -0.43543,0 -1.18187,-0.55983 -0.74644,-0.55983 -1.43068,-1.36847 -0.68423,-0.87085 -0.99525,-1.61729 -0.37322,-1.49288 -0.0622,-3.85661 0.37322,-2.36373 1.18186,-4.91407 0.80864,-2.61254 1.8039,-4.85186 1.05746,-2.30153 2.05271,-3.67001 1.05746,-1.43067 1.8039,-1.36847 1.05746,0.12441 1.8039,1.05746 0.80864,0.87085 1.24407,1.9283 0.24881,0.43543 0.18661,0.74644 0,0.31102 -0.49763,0.74644 -0.55983,0.74645 -1.36848,2.17712 -0.74644,1.36848 -1.55508,2.98577 -0.74644,1.61729 -1.36848,3.11017 -0.55983,1.43068 -0.80864,2.36373 -0.24881,0.93305 0,0.93305 0.87085,0 1.61729,-0.43543 0.74644,-0.49762 1.8661,-1.55508 1.30627,-1.30627 2.30153,-2.61254 0.99525,-1.36848 2.05271,-3.11017 0.80864,-1.24407 1.67949,-2.73695 0.93305,-1.49289 1.18186,-2.11492 0.87085,-1.61729 1.30628,-2.42593 0.43542,-0.80865 1.05745,-0.99526 0.31102,0 0.87085,0 0.55983,0 0.55983,0 0.37322,0.0622 0.87085,0.55983 0.49763,0.24882 0.99525,0.68424 0.55983,0.43543 0.55983,0.74644 -0.24881,0.62204 -0.80864,1.8661 -0.49763,1.18187 -0.74644,1.7417 -1.18186,2.67475 -2.30153,5.28729 -1.05745,2.55034 -1.55508,5.22508 -0.12441,0.87085 -0.0622,2.05272 0.1244,1.11966 0.37322,1.61728 0.18661,0.37322 0.43542,0.87085 0.31102,0.43543 0.68424,0.74644 0.55983,0.37322 -0.0622,0.93305 -0.55983,0.55983 -1.43067,0.99526 -0.80865,0.37322 -0.99526,0.37322 z m 27.74275,-0.62204 q -0.93305,0 -1.8039,-0.55983 -0.87085,-0.62203 -1.43068,-1.67949 -0.55983,-1.11966 -0.55983,-2.61254 0,-0.93305 0.31102,-2.61254 0.37322,-1.7417 1.05746,-4.35424 0.1244,-0.87085 0.18661,-1.11966 0.1244,-0.24882 0.1244,-0.49763 0,-0.12441 -0.0622,-0.18661 0,-0.12441 -0.12441,-0.12441 -0.49762,0 -1.36847,0.68424 -0.80865,0.62203 -1.8661,1.49288 -0.18661,0.12441 -0.43543,0.31102 -0.18661,0.18661 -0.43542,0.37322 -0.18661,0.18661 -0.43543,0.37322 -0.62203,0.37322 -1.9283,1.43068 -1.24407,1.05746 -2.61254,2.23932 -1.30627,1.18187 -2.30153,1.99051 -0.49763,0.37322 -0.87085,0.62203 -0.31101,0.24882 -0.43542,0.24882 -0.12441,0 -0.99525,-0.31102 -0.80865,-0.37322 -1.61729,-0.99525 -0.74644,-0.68424 -0.74644,-1.55509 0,-0.55983 0.43542,-2.23932 0.49763,-1.67949 1.36847,-3.98102 0.87085,-2.30152 1.99051,-4.66525 0.24882,-0.55983 0.37322,-1.49289 0.12441,-0.93305 0.24882,-1.80389 0.18661,-0.93306 0.62203,-1.36848 0.18661,-0.31102 0.43543,-0.43542 0.31101,-0.18661 0.62203,-0.18661 0.62203,0 1.18186,0.31101 0.55983,0.24882 1.05746,0.87085 0.93305,0.99526 0.99526,2.36373 0.1244,1.30627 -0.18661,2.55034 -0.31102,1.24407 -0.68424,2.05271 -0.37322,0.74644 -0.37322,0.62204 0.24881,-0.12441 0.68424,-0.62204 0.49762,-0.49762 1.67949,-1.18186 1.61729,-1.24407 2.48813,-1.7417 0.87085,-0.55983 1.30627,-0.80864 0.49763,-0.24882 0.87085,-0.55983 0.31102,-0.24882 0.43543,-0.31102 0.18661,-0.0622 0.18661,-0.0622 0,0 0,0 0,0 0,0 0.18661,0 0.62203,-0.24882 0.49763,-0.24881 0.93305,-0.24881 0.62204,0 1.30627,0.31102 0.68424,0.24881 1.18187,0.74644 0.49762,0.43542 0.49762,0.93305 0,0.18661 0.12441,0.31102 0.12441,0.1244 0.24881,0.31101 0.31102,0.37322 0.68424,1.05746 0.43543,0.62203 0.43543,2.05271 0,0.99526 -0.43543,2.92356 -0.43542,1.92831 -0.93305,3.79441 -0.49763,1.92831 -0.49763,3.11017 0.0622,1.11966 0.24882,1.7417 0.18661,0.55983 0.18661,0.93305 0,0.49762 -0.49763,1.18186 -0.49763,0.62203 -1.49288,0.62203 z m 10.63678,-1.80389 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37322,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62204,1.18186 0.62204,2.79915 0,0.43542 -0.62204,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.80389,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 7.58875,29.60882 q -3.04796,-0.0622 -3.91881,-1.74169 -0.80864,-1.61729 -0.43542,-4.10543 0.37322,-1.18186 0.43542,-2.11491 0.12441,-0.99526 0.55983,-1.24407 0,0 0.0622,-0.18661 0.12441,-0.18661 -0.0622,-0.37322 0,-0.80865 0.55983,-2.23932 0.12441,-0.37322 0.31102,-0.87085 0.24881,-0.55983 0.24881,-0.55983 -0.31101,-0.49763 0,-0.80865 0.31102,-0.31101 0.62204,-0.55983 0.37322,-0.31101 0.0622,-0.68423 -0.12441,-0.24882 0.31102,-1.11967 0.43542,-0.93305 0.99525,-1.9283 0.55983,-0.99526 0.74644,-1.55509 0,-0.1244 0.31102,-0.87084 0.31102,-0.74644 0.74644,-1.7417 0.43542,-0.99525 0.80864,-1.8039 0.43543,-0.80864 0.55983,-1.05745 0.62204,-0.31102 -0.49762,-0.43543 -1.11966,-0.12441 -2.36373,-0.0622 -1.92831,-0.0622 -3.11017,-0.18661 -1.11966,-0.12441 -1.8661,-0.55983 -0.74644,-0.87085 -0.18661,-2.05272 0.55983,-1.24406 1.80389,-1.30627 0.80865,-0.0622 1.24407,-0.0622 0.49763,0 1.24407,-0.0622 0.80864,-0.12441 2.48814,-0.31102 l 3.17237,-0.24881 0.18661,-1.05746 q 0.49763,-0.80865 0.68424,-1.05746 0.18661,-0.24881 0.24881,-0.49763 0.0622,-0.31101 0.18661,-1.05745 0,0 0.55983,-0.99526 0.55983,-1.05746 0.68424,-2.17712 0.74644,-1.24407 1.30627,-2.23932 0.55983,-1.05746 0.68424,-1.30627 1.05746,-1.55509 2.05271,-1.67949 1.05746,-0.12441 1.99051,0.49762 0.55983,0.31102 1.05746,0.80865 0.49762,0.43542 0.62203,1.18186 0.12441,0.68424 -0.55983,1.8039 -0.12441,0.24881 -0.37322,0.93305 -0.24881,0.62204 -0.37322,1.05746 -0.37322,0.43542 -0.93305,1.43068 -0.49763,0.93305 -0.68424,1.9283 -0.49763,1.05746 -0.62203,1.30627 -0.12441,0.24882 -0.37322,0.24882 0.1244,0.62203 0.74644,0.62203 0.62203,-0.0622 2.05271,-0.1244 1.18186,-0.12441 1.61729,-0.24882 0.49763,-0.18661 1.11966,0.12441 0.31102,0.43542 0.31102,1.30627 0.0622,0.80864 -0.18661,1.61729 -0.24882,0.74644 -0.68424,0.93305 -0.31102,0 -1.30627,0.37322 -0.93305,0.31102 -2.36373,0.37322 l -3.29678,0.31102 -1.05746,2.11491 q -0.43542,0.80865 -0.74644,1.49288 -0.31102,0.62204 -0.43542,0.74645 0,0.37322 -0.43543,1.11966 -0.37322,0.74644 -0.80864,1.61729 -0.37322,1.05745 -0.87085,1.9283 -0.43542,0.87085 -0.43542,0.87085 -0.24882,0 -0.24882,0.37322 0.31102,0.74644 -0.18661,1.11966 -0.31101,0.18661 -0.55983,0.55983 -0.18661,0.31102 -0.18661,0.31102 0.24882,0.24881 0.0622,0.62203 -0.1244,0.37322 -0.37322,0.80865 0,0.49762 -0.31101,1.43067 -0.24882,0.93305 -0.55983,1.7417 0.0622,1.11966 0.1244,1.43068 0.0622,0.31101 0.31102,0.24881 0.31102,0.0622 0.87085,0 0.55983,-0.0622 0.80864,-0.0622 0.93305,-0.43543 -0.87085,4.35424 -0.99525,1.55508 -1.9905,2.55033 -0.99526,1.05746 -1.30628,1.05746 z m 14.99096,-4.78966 q -0.49762,-0.49763 -0.74644,-1.49288 -0.18661,-0.99526 -0.1244,-1.92831 0.0622,-0.99525 0.31101,-1.49288 0,-0.49763 0.12441,-0.74644 0.18661,-0.31102 0.12441,-0.55983 -0.0622,-0.24881 0.1244,-0.87085 0.18661,-0.62203 0.37322,-1.18186 0.43543,-0.99526 0.99526,-2.55034 0.55983,-1.61729 1.11966,-3.23458 0.55983,-1.67949 0.93305,-2.86135 0.37322,-1.24407 0.43542,-1.49289 0,-0.74644 0.99526,-0.80864 0.74644,-0.24881 1.8039,0.62203 1.05745,0.87085 1.67949,1.86611 0.49763,0.49762 0.37322,1.30627 -0.12441,0.80864 -0.80865,2.30152 -0.24881,0.49763 -0.62203,1.6795 -0.31102,1.11966 -0.43542,1.8661 -0.24882,0.49762 -0.62204,1.43068 -0.31101,0.87084 -0.55983,1.67949 -0.1244,0.31101 -0.24881,1.18186 -0.12441,0.80865 -0.31102,1.67949 -0.18661,0.87085 -0.49763,1.36848 -0.55983,2.55034 -1.9905,2.98576 -1.36848,0.43543 -2.42594,-0.74644 z m 6.71797,-24.94356 q -0.68424,-0.49763 -1.05746,-1.18187 -0.31101,-0.74644 -0.37322,-1.30627 0,-0.55983 0.12441,-0.68424 0.62203,-0.68423 1.05746,-1.80389 0.49762,-1.11967 1.05745,-2.05272 0.12441,-0.18661 0.31102,-0.49762 0.24881,-0.37322 0.49763,-0.43543 0.74644,-0.49763 2.05271,0.0622 1.36848,0.55983 1.99051,1.55508 0.55983,1.18187 0.31102,2.42593 -0.18661,1.24407 -1.30628,2.61255 -0.93305,1.24406 -2.36372,1.61728 -1.43068,0.31102 -2.30153,-0.31101 z m 11.5698,27.12068 q -3.42119,0 -5.28729,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23932 0.80865,-4.91407 0.87084,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.67949,-1.9283 3.35898,-2.67474 0.62204,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61729,0.12441 0.93305,0.0622 1.7417,0.37322 1.43067,0.43542 2.48813,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.1244,1.36847 -0.12441,0.68424 -0.43543,1.36848 -0.80864,2.05271 -2.48813,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49763,0.24882 -0.99526,0.37323 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99525,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31101,0.62203 q -0.43543,1.18187 -0.62204,1.99051 -0.1244,0.80865 -0.1244,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43543,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11967,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55509,-1.05746 l 0.24881,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24881,-0.24882 0.55983,-0.24882 0.87084,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30628,1.61729 -0.74644,0.74644 -1.55508,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61728,0.93305 -1.36848,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99525,-0.18661 0.49763,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.92831,-2.73695 0.43542,-1.6795 -0.31102,-2.55034 -0.12441,-0.18661 -0.31102,-0.24882 -0.18661,-0.1244 -0.43542,-0.1244 -0.68424,0 -1.55509,0.43542 -0.80864,0.43542 -1.61728,1.24407 -0.80865,0.80864 -1.49289,1.9283 l -0.80864,1.30628 q 0.12441,-0.0622 0.18661,-0.0622 0.12441,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11967,0.37322 z m 14.5556,14.24458 q -2.11492,-0.87085 -3.11017,-1.8039 -0.93305,-0.99525 -0.74644,-1.7417 0.1244,-0.37322 0.43542,-0.68423 0.31102,-0.31102 1.36847,-0.24882 1.11967,0 3.42119,0.55983 0.68424,0 1.36848,-0.0622 0.68423,-0.0622 1.24406,-0.18661 0.62204,-0.12441 0.99526,-0.31102 0.31102,-0.1244 0.18661,-0.31101 -0.12441,-0.24882 -0.43543,-0.49763 -0.24881,-0.31102 -0.55983,-0.37322 -0.31101,-0.12441 -0.55983,-0.12441 -0.1244,-0.31101 -0.55983,-0.62203 -0.37322,-0.31102 -0.93305,-0.68424 -1.36847,-1.11966 -2.48813,-1.99051 -1.11967,-0.87085 -0.87085,-1.30627 0,-0.24881 0,-0.24881 0,-0.0622 0,-0.0622 -0.43543,0 -0.80865,-1.18186 -0.37322,-1.24407 -0.37322,-2.23932 0,-1.24407 0.49763,-2.48814 0.55983,-1.24407 1.36848,-2.36373 0.87084,-1.11966 1.74169,-1.99051 1.18187,-1.11966 2.48814,-2.17712 1.36847,-1.11966 2.92356,-1.9905 1.61728,-0.87085 3.54559,-1.36848 0.87085,-0.18661 1.99051,-0.18661 1.11966,0 1.61729,0.31102 0.49762,-0.31102 1.24407,0.18661 0.74644,0.43542 1.49288,1.24407 0.74644,0.80864 1.11966,1.61728 0,0.74644 -0.0622,1.86611 0,1.05745 -0.1244,1.8661 -0.12441,0.80864 -0.55983,0.80864 0,0 -0.18661,0.0622 -0.12441,0 -0.12441,0.31101 0,0.62204 -0.93305,1.43068 -1.18187,0.80864 -2.23932,1.30627 -1.05746,0.49763 -1.61729,0.0622 -0.37322,-0.24882 -0.68424,-0.49763 -0.31102,-0.24882 -0.55983,-0.62204 0,0 -0.18661,-0.24881 -0.12441,-0.31102 -0.12441,-0.55983 0,-0.24881 0.18661,-0.43542 0.18661,-0.24882 0.18661,-0.24882 0.87085,-0.80864 1.30628,-1.49288 0.49762,-0.68424 0.68423,-1.18186 0.18661,-0.55983 0.18661,-0.87085 0,-0.37322 -0.18661,-0.43542 -0.1244,-0.12441 -0.62203,-0.12441 -0.31102,0 -1.36848,0.49763 -0.99525,0.49762 -2.11491,1.24406 -1.11966,0.68424 -1.7417,1.24407 -0.24881,0.43543 -0.37322,0.55983 -0.0622,0.12441 -0.31101,0.12441 0,-0.24881 -0.31102,0.0622 -0.31102,0.31102 -0.74644,0.87085 -0.43543,0.55983 -0.87085,1.18186 -0.43542,0.62204 -0.68424,0.99526 -0.0622,0.55983 -0.31101,1.05746 -0.18661,0.43542 -0.12441,0.93305 0.0622,0.62203 0.62203,1.18186 0.55983,0.55983 1.61729,1.43068 2.17712,1.61729 3.23458,2.55034 1.11966,0.93305 1.55508,1.49288 0.43543,0.55983 0.55983,1.11966 1.05746,1.92831 0.24882,3.35899 -0.80865,1.36847 -2.48814,2.11491 -0.62203,0.31102 -2.17712,0.55983 -1.55508,0.31102 -3.29678,0.24882 -1.67949,0 -2.86135,-0.49763 z"
++       id="path18" /><path
+=       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
+-       id="path15" /></g></svg>
++       id="path19" /></g></svg>
+```
+
+# Move the logotype from main to header landmark
+
+It's more semantic and also adds some vertical space between the
+logotype and the main content.
+
+``` diff
+index c2242e1..7bec032 100644
+--- a/index.html
++++ b/index.html
+@@ -129,7 +129,7 @@
+=            </p>
+=        <![endif]-->
+=
+-        <main>
++        <header>
+=            <h1>
+=                <img
+=                    id="big-logo"
+@@ -138,6 +138,9 @@
+=                    title="Better Tech Club"
+=                /> 
+=            </h1>
++        </header>
++
++        <main>
+=
+=            <h2>Why is our tech better?</h2>
+=            <p id="reasons-why">
+```
+
+# Setup proper web-fonts: Caveat and Cooper Hewitt
+
+
+
+``` diff
+new file mode 100644
+index 0000000..dae61c1
+Binary files /dev/null and b/fonts/caveat/caveat-bold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..976da36
+Binary files /dev/null and b/fonts/caveat/caveat-medium.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0b78323
+Binary files /dev/null and b/fonts/caveat/caveat-semibold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..d511f3d
+--- /dev/null
++++ b/fonts/caveat/caveat.css
+@@ -0,0 +1,33 @@
++/* caveat-bold */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
++}
++/* caveat-medium */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
++}
++/* caveat */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
++}
++/* caveat-semibold */
++@font-face {
++	font-family: "Caveat";
++	font-style: normal;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
++}
++
+```
+
+``` diff
+new file mode 100644
+index 0000000..f80cf2c
+Binary files /dev/null and b/fonts/caveat/caveat.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..8227633
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..939ad21
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0949007
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..0e0b918
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..8131611
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..2c425cd
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..7db7058
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..e6cafd9
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9c8fa26
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..76336be
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..b5b8f36
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..a32e7c2
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9c1cccf
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin-italic.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..9eaf98b
+Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin.woff2 differ
+```
+
+``` diff
+new file mode 100644
+index 0000000..54ff088
+--- /dev/null
++++ b/fonts/cooper-hewitt/cooper-hewitt.css
+@@ -0,0 +1,113 @@
++/* cooper-hewitt-bold */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
++}
++/* cooper-hewitt-bold-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 700;
++	font-stretch: 100%;
++	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-book */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
++}
++/* cooper-hewitt-book-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-heavy */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
++}
++/* cooper-hewitt-heavy-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 400;
++	font-stretch: 100%;
++	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-light */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 300;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
++}
++/* cooper-hewitt-light-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 300;
++	font-stretch: 100%;
++	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-medium */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
++}
++/* cooper-hewitt-medium-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 500;
++	font-stretch: 100%;
++	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-semibold */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
++}
++/* cooper-hewitt-semibold-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 600;
++	font-stretch: 100%;
++	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
++}
++/* cooper-hewitt-thin */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: normal;
++	font-weight: 100;
++	font-stretch: 100%;
++	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
++}
++/* cooper-hewitt-thin-italic */
++@font-face {
++	font-family: "Cooper Hewitt";
++	font-style: italic;
++	font-weight: 100;
++	font-stretch: 100%;
++	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
++}
++
+```
+
+``` diff
+index 7bec032..dffc4b1 100644
+--- a/index.html
++++ b/index.html
+@@ -13,17 +13,20 @@
+=        <meta name="apple-mobile-web-app-title" content="Better Tech Club" />
+=        <link rel="manifest" href="/site.webmanifest" />
+=        <style type="text/css" media="screen">
+-         @font-face {
+-             font-family: "Cooper Hewitt";
+-             src: url("fonts/CooperHewitt-Heavy.woff") format("woff2");
+-             font-weight: 800;
++
++         @import url("fonts/caveat/caveat.css");
++         @import url("fonts/cooper-hewitt/cooper-hewitt.css");
++
++         html {
++             font-family: "Cooper Hewitt", sans-serif;
++             font-weight: 500;
++
+=         }
+-         
++
+=         html, body {
+=             background: #003399;
+=             min-height: 100%;
+=             color: #fdcb0b;
+-             font-family: sans-serif;
+=             margin: 0;
+=             padding: 0;
+=         }
+@@ -44,8 +47,10 @@
+=         }
+=
+=         h2 {
+-             font-size: 1.2em;
++             font-size: 1.4rem;
+=             align-self: start;
++             font-family: "Caveat";
++             margin-bottom: 0;
+=         }
+=         
+=         main {
+@@ -55,17 +60,6 @@
+=             max-width: 80ch;
+=             padding: 12px;
+=
+-             > p:first-of-type {
+-                 font-size: 140%;
+-                 line-height: 150%;
+-                 hyphens: auto;
+-                 font-weight: 500;
+-             }
+-
+-             strong {
+-                 text-decoration: underline;
+-                 font-weight: initial;
+-             }
+=
+=         }
+=
+@@ -94,6 +88,11 @@
+=                 font-weight: bold;
+=                 text-decoration: none;
+=             }
++
++             h3 {
++                 font-size: 2rem;
++                 font-weight: 800;
++             }
+=             
+=             dt {
+=                 float: left;
+@@ -103,20 +102,9 @@
+=             width: 100%;
+=             padding: 0;
+=             font-size: min(4rem, 10vw);
+-             font-weight: 800;
+-             font-family: "Cooper Hewitt";
++             font-weight: 100;
+=             text-align: left;
+-             margin-top: 0;
+-
+-             -webkit-text-fill-color: oklch(80% 0% 0deg); 
+-             -webkit-text-stroke-width: 0.02em;
+-             -webkit-text-stroke-color: oklch(20% 0% 0deg);
+-
+-             strong {
+-                 -webkit-text-fill-color: oklch(90% 0% 0deg); 
+-                 -webkit-text-stroke-color: oklch(25% 0% 0deg);
+-                 text-decoration: none;
+-             }
++             margin-top: 1rem;
+=         }
+=        </style>
+=    </head>
+```
+
+# Use CSS variables to control styling parameters
+
+
+
+``` diff
+index dffc4b1..81a59a4 100644
+--- a/index.html
++++ b/index.html
+@@ -18,15 +18,24 @@
+=         @import url("fonts/cooper-hewitt/cooper-hewitt.css");
+=
+=         html {
++             --content-width: 60rch;
++             --bg-color: oklch(35% 30% 260deg);
++             --fg-color: oklch(80% 0% 0deg); 
++             --accent-color: #fac036; /* This is the yellow color taken from the logo */
++             --contrast-bg-color: oklch(20% 0% 0deg);
++             --contrast-fg-color: oklch(80% 0% 0deg);
++             --popup-bg-color: oklch(from var(--fg-color) 75% c h);
++             --popup-fg-color: oklch(from var(--fg-color) 10% c h);;
++
+=             font-family: "Cooper Hewitt", sans-serif;
+=             font-weight: 500;
+=
+=         }
+=
+=         html, body {
+-             background: #003399;
++             background: var(--bg-color);
+=             min-height: 100%;
+-             color: #fdcb0b;
++             color: var(--fg-color);
+=             margin: 0;
+=             padding: 0;
+=         }
+@@ -49,6 +58,7 @@
+=         h2 {
+=             font-size: 1.4rem;
+=             align-self: start;
++             color: var(--accent-color);
+=             font-family: "Caveat";
+=             margin-bottom: 0;
+=         }
+@@ -57,15 +67,15 @@
+=             display: flex;
+=             flex-direction: column;
+=             align-items: center;
+-             max-width: 80ch;
++             max-width: var(--content-width);
+=             padding: 12px;
+=
+=
+=         }
+=
+=         footer {
+-             background: oklch(20% 0% 0deg);
+-             color: oklch(80% 0% 0deg);
++             background: var(--contrast-bg-color);
++             color: var(--contrast-fg-color);
+=             width: 100%;
+=             padding: 2rem 0;
+=             font-size: 0.8rem;
+@@ -76,9 +86,9 @@
+=         }
+=
+=         .local-group {
+-             background: hsl(0,0%,70%);
+-             color: hsl(0,0%,20%);
+=             padding: 2rem;
++             background: var(--popup-bg-color);
++             color: var(--popup-fg-color);
+=             margin: 1rem 0;
+=             width: 100%;
+=             border-radius: 0.4rem;
+```
+
+# Make the font and layout sizes respond to viewport
+
+
+
+``` diff
+index 81a59a4..f008635 100644
+--- a/index.html
++++ b/index.html
+@@ -30,6 +30,19 @@
+=             font-family: "Cooper Hewitt", sans-serif;
+=             font-weight: 500;
+=
++             font-size: 12px;  /* <-- 1rem */
++
++             @media(width > 480px) {
++                 font-size: 16px;  /* <-- 1rem */
++             }
++
++             @media(width > 560px) {
++                 font-size: 20px;  /* <-- 1rem */
++             }
++
++             @media(width > 780px) {
++                 font-size: 24px;  /* <-- 1rem */
++             } 
+=         }
+=
+=         html, body {
+@@ -111,7 +124,13 @@
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+-             font-size: min(4rem, 10vw);
++             font-size: max(
++                 1.4rem,     /* Never less than this */
++                 min(
++                     2.1rem,   /* Never more than this */
++                     5.5vw     /* Otherwise scale with the viewport width */
++                 )
++             );
+=             font-weight: 100;
+=             text-align: left;
+=             margin-top: 1rem;
+```
+
+# Hyphenate the paragraphs, tweak the line height
+
+
+
+``` diff
+index f008635..c9c26ab 100644
+--- a/index.html
++++ b/index.html
+@@ -66,6 +66,8 @@
+=
+=         p {
+=             text-align: justify;
++             line-height: 1.5;
++             hyphens: auto;
+=         }
+=
+=         h2 {
+```
+
+# Manually hyphenate some long dutch words
+
+
+
+``` diff
+index c9c26ab..112844c 100644
+--- a/index.html
++++ b/index.html
+@@ -201,7 +201,7 @@
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Bibliotheek Bussum</strong><br/>
+-                        Wilhelminaplantsoen 18<br/>
++                        Wil&shy;helm&shy;ina&shy;plant&shy;soen 18<br/>
+=                        1404 JB Bussum
+=                    </dd>
+=                </dl>
+@@ -231,8 +231,8 @@
+=                <dl>
+=                    <dt title="place">📍</dt>
+=                    <dd>
+-                        <strong>Duurzaamheidscentrum Hilversum,</strong><br/>
+-                        Bussumerstraat 69C<br/>
++                        <strong>Duur&shy;zaam&shy;heids&shy;cen&shy;trum Hilversum,</strong><br/>
++                        Bus&shy;sum&shy;er&shy;stra&shy;at 69C<br/>
+=                        1211 BJ Hilversum
+=                    </dd>
+=                </dl>
+```
+
+# Use a subtle background gradient
+
+
+
+``` diff
+index 112844c..38c443d 100644
+--- a/index.html
++++ b/index.html
+@@ -57,6 +57,10 @@
+=             display: flex;
+=             flex-direction: column;
+=             align-items: center;
++             background: linear-gradient(
++                 var(--bg-color),
++                 oklch(from var(--bg-color) 25% 35% h)
++             );
+=         }
+=
+=         #big-logo {
+@@ -84,8 +88,6 @@
+=             align-items: center;
+=             max-width: var(--content-width);
+=             padding: 12px;
+-
+-
+=         }
+=
+=         footer {
+```
+
+# Make the locations padding "stick out"
+
+The left side of all main text is now aligned, and the padding sticks
+out into the margin. When a viewport is too narrow, the padding
+shrinks to fit. Also, the borders are no longer round when they touch
+the edge of a viewport.
+
+``` diff
+index 38c443d..3d706b1 100644
+--- a/index.html
++++ b/index.html
+@@ -103,13 +103,30 @@
+=         }
+=
+=         .local-group {
+-             padding: 2rem;
++             /* Parameters to tweak */
++             --vertical-padding: 2rem;
++             --max-horizontal-padding: 2rem;
++
++             /* Intermediate calculations */
++             --margin-width: calc((100vw - 100%) / 2); /* The width between content and the edge of a viewport */
++             --horizontal-padding: min(
++                 var(--margin-width),          /* Take the whole margin... */
++                 var(--max-horizontal-padding) /* ...but no more than this */
++             );
++             
+=             background: var(--popup-bg-color);
+=             color: var(--popup-fg-color);
+=             margin: 1rem 0;
+=             width: 100%;
+-             border-radius: 0.4rem;
+-             box-sizing: border-box;
++             border-radius: min(
++                 0.4rem,
++                 var(--margin-width)
++             );
++
++             padding:
++                var(--vertical-padding)           
++                var(--horizontal-padding)
++             ;
+=
+=             strong {
+=                 font-weight: bold;
+```
+
+# Improve the semantics of locations data
+
+Fix the id of Hilversum location element.
+
+Make all the parameters of each location belong to a single definition
+list. This required a little tweaks to the CSS.
+
+``` diff
+index 3d706b1..a3fcf05 100644
+--- a/index.html
++++ b/index.html
+@@ -140,8 +140,14 @@
+=             
+=             dt {
+=                 float: left;
++                 clear: both;
++             }
++
++             dd:has(+ dt) {
++                 margin-bottom: 1rem;
+=             }
+=         }
++
+=         #reasons-why {
+=             width: 100%;
+=             padding: 0;
+@@ -214,19 +220,14 @@
+=                <dl>
+=                    <dt title="time">🕕</dt>
+=                    <dd>Every Tuesday, 18:00 - 20:00</dd>
+-                </dl>
+=
+-                <dl>
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Bibliotheek Bussum</strong><br/>
+=                        Wil&shy;helm&shy;ina&shy;plant&shy;soen 18<br/>
+=                        1404 JB Bussum
+=                    </dd>
+-                </dl>
+-
+-
+-                <dl>
++                    
+=                    <dt title="hosts">🫂</dt>
+=                    <dd><a href="https://tad-lispy.com/">Tad Lispy</a></dd>
+=                    <dd><a href="https://jewiet.com/">Fana Mehari</a></dd>
+@@ -237,7 +238,7 @@
+=                </dl>
+=            </section>
+=            
+-            <section class="local-group" id="foss-for-bussum">
++            <section class="local-group" id="duurzaamheidscentrum-hilversum">
+=                <h3>Hilversum, NL</h3>
+=                <dl>
+=                    <dt title="time">🕑</dt>
+@@ -245,19 +246,14 @@
+=                        See <a href="https://www.dchilversum.nl/agenda/">dchilversum.nl/agenda/</a><br />
+=                        (search for <em>Techtuinieren</em> and <em>Duurzaam Digitaal Spreekuur</em>).
+=                    </dd>
+-                </dl>
+-
+-                <dl>
++                    
+=                    <dt title="place">📍</dt>
+=                    <dd>
+=                        <strong>Duur&shy;zaam&shy;heids&shy;cen&shy;trum Hilversum,</strong><br/>
+=                        Bus&shy;sum&shy;er&shy;stra&shy;at 69C<br/>
+=                        1211 BJ Hilversum
+=                    </dd>
+-                </dl>
+-
+-
+-                <dl>
++                    
+=                    <dt title="hosts">🫂</dt>
+=                    <dd>Hiske</dd>
+=                    <dd>Geert</dd>
+```
+
+# Do not emphasize the punctuation
+
+
+
+``` diff
+index a3fcf05..d725020 100644
+--- a/index.html
++++ b/index.html
+@@ -192,10 +192,10 @@
+=                    it gets better every day.
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+-                    your <strong>intelligence</strong>, your <strong>well-being.</strong>
++                    your <strong>intelligence</strong>, your <strong>well-being</strong>.
+=                    It's <strong>sustainable</strong> and <strong>fair</strong>.
+=                    It belongs to you and me.
+-                    It makes us a <strong>community.</strong>
++                    It makes us a <strong>community</strong>.
+=                    You are among friends. You are not the product.
+=                    You deserve <strong>better</strong>.
+=            </p>
+```
\ No newline at end of file
new file mode 100644
index 0000000..bb69070
--- /dev/null
+++ b/content/devlog/2026-04-10-better-tech-club-website.md
@@ -0,0 +1,88 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 3
+
+
+# Add a hidden text for h1 element where logotype is
+
+This satisfies Firefox accessibility check. Honestly I'm not sure it
+adds any practical value, but why not?
+
+``` diff
+index d725020..9a0cb9c 100644
+--- a/index.html
++++ b/index.html
+@@ -81,6 +81,16 @@
+=             font-family: "Caveat";
+=             margin-bottom: 0;
+=         }
++
++         header {
++             h1 {
++                 font-size: 4rem;
++                 &:has(#big-logo) > span {
++                     display: none;
++                 }
++             }
++
++         }
+=         
+=         main {
+=             display: flex;
+@@ -180,7 +190,8 @@
+=                    src="better-tech-club_logotype.svg"
+=                    alt="Better Tech Club logo"
+=                    title="Better Tech Club"
+-                /> 
++                />
++                <span>Better Tech Club</span>
+=            </h1>
+=        </header>
+=
+```
+
+# Improve contrast of links for accessibility
+
+The links in location are now the same color as the rest of the text,
+only underlined. It also looks better.
+
+``` diff
+index 9a0cb9c..6d25b8f 100644
+--- a/index.html
++++ b/index.html
+@@ -143,6 +143,10 @@
+=                 text-decoration: none;
+=             }
+=
++             a:link, a:visited {
++                 color: inherit;
++             }
++
+=             h3 {
+=                 font-size: 2rem;
+=                 font-weight: 800;
+```
+
+# Remove justification from paragraphs
+
+It impacts accessibility.
+
+``` diff
+index 6d25b8f..8bd077f 100644
+--- a/index.html
++++ b/index.html
+@@ -69,7 +69,6 @@
+=         }
+=
+=         p {
+-             text-align: justify;
+=             line-height: 1.5;
+=             hyphens: auto;
+=         }
+```
\ No newline at end of file
new file mode 100644
index 0000000..77eddcb
--- /dev/null
+++ b/content/devlog/2026-04-11-better-tech-club-website.md
@@ -0,0 +1,28 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 1
+
+
+# List Jorrit as a host in Bussum
+
+
+
+``` diff
+index 8bd077f..5170b7c 100644
+--- a/index.html
++++ b/index.html
+@@ -249,6 +249,7 @@
+=                    <dd>Daniel Agorander</dd>
+=                    <dd>Hans</dd>
+=                    <dd>Marianne</dd>
++                    <dd>Jorrit Linnert</dd>
+=                </dl>
+=            </section>
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..d8c4970
--- /dev/null
+++ b/content/devlog/2026-04-11-devlog-excavator.md
@@ -0,0 +1,1261 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 9
+
+
+# Setup a devenv flake
+
+
+
+``` diff
+new file mode 100644
+index 0000000..c5d670d
+--- /dev/null
++++ b/.envrc
+@@ -0,0 +1,13 @@
++#!/usr/bin/env bash
++
++if ! has nix_direnv_version || ! nix_direnv_version 3.1.0; then
++  source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.1.0/direnvrc" "sha256-yMJ2OVMzrFaDPn7q8nCBZFRYpL/f0RcHzhmw/i6btJM="
++fi
++
++export DEVENV_IN_DIRENV_SHELL=true
++
++watch_file flake.nix
++watch_file flake.lock
++if ! use flake . --no-pure-eval; then
++  echo "devenv could not be built. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2
++fi
+```
+
+``` diff
+new file mode 100644
+index 0000000..69d93e1
+--- /dev/null
++++ b/.gitignore
+@@ -0,0 +1,2 @@
++.direnv
++.devenv
+```
+
+``` diff
+new file mode 100644
+index 0000000..7d5ec13
+--- /dev/null
++++ b/flake.lock
+@@ -0,0 +1,850 @@
++{
++  "nodes": {
++    "cachix": {
++      "inputs": {
++        "devenv": [
++          "devenv"
++        ],
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "git-hooks": [
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_2": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix"
++        ],
++        "git-hooks": "git-hooks",
++        "nixpkgs": "nixpkgs"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "cachix_3": {
++      "inputs": {
++        "devenv": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "git-hooks": "git-hooks_2",
++        "nixpkgs": "nixpkgs_2"
++      },
++      "locked": {
++        "lastModified": 1767714506,
++        "narHash": "sha256-WaTs0t1CxhgxbIuvQ97OFhDTVUGd1HA+KzLZUZBhe0s=",
++        "owner": "cachix",
++        "repo": "cachix",
++        "rev": "894c649f0daaa38bbcfb21de64be47dfa7cd0ec9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "latest",
++        "repo": "cachix",
++        "type": "github"
++      }
++    },
++    "crate2nix": {
++      "inputs": {
++        "cachix": "cachix_2",
++        "crate2nix_stable": "crate2nix_stable",
++        "devshell": "devshell_2",
++        "flake-compat": "flake-compat_2",
++        "flake-parts": "flake-parts_2",
++        "nix-test-runner": "nix-test-runner_2",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "pre-commit-hooks": "pre-commit-hooks_2"
++      },
++      "locked": {
++        "lastModified": 1772186516,
++        "narHash": "sha256-8s28pzmQ6TOIUzznwFibtW1CMieMUl1rYJIxoQYor58=",
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "rossng",
++        "repo": "crate2nix",
++        "rev": "ba5dd398e31ee422fbe021767eb83b0650303a6e",
++        "type": "github"
++      }
++    },
++    "crate2nix_stable": {
++      "inputs": {
++        "cachix": "cachix_3",
++        "crate2nix_stable": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable"
++        ],
++        "devshell": "devshell",
++        "flake-compat": "flake-compat",
++        "flake-parts": "flake-parts",
++        "nix-test-runner": "nix-test-runner",
++        "nixpkgs": "nixpkgs_3",
++        "pre-commit-hooks": "pre-commit-hooks"
++      },
++      "locked": {
++        "lastModified": 1769627083,
++        "narHash": "sha256-SUuruvw1/moNzCZosHaa60QMTL+L9huWdsCBN6XZIic=",
++        "owner": "nix-community",
++        "repo": "crate2nix",
++        "rev": "7c33e664668faecf7655fa53861d7a80c9e464a2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "ref": "0.15.0",
++        "repo": "crate2nix",
++        "type": "github"
++      }
++    },
++    "devenv": {
++      "inputs": {
++        "cachix": "cachix",
++        "crate2nix": "crate2nix",
++        "flake-compat": "flake-compat_3",
++        "flake-parts": "flake-parts_3",
++        "git-hooks": "git-hooks_3",
++        "nix": "nix",
++        "nixd": "nixd",
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "rust-overlay": "rust-overlay"
++      },
++      "locked": {
++        "lastModified": 1775848233,
++        "narHash": "sha256-+V6K66AsFCxD0PmKOASSSFUdEjmAtIwX4XlQ+2JBrmk=",
++        "owner": "cachix",
++        "repo": "devenv",
++        "rev": "cf4f57c61f5dc9d58300bdf18102d9cf5b4f29ea",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "devenv",
++        "type": "github"
++      }
++    },
++    "devshell": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "devshell_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768818222,
++        "narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
++        "owner": "numtide",
++        "repo": "devshell",
++        "rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "devshell",
++        "type": "github"
++      }
++    },
++    "flake-compat": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_2": {
++      "locked": {
++        "lastModified": 1733328505,
++        "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
++        "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
++        "revCount": 69,
++        "type": "tarball",
++        "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.1.0/01948eb7-9cba-704f-bbf3-3fa956735b52/source.tar.gz"
++      },
++      "original": {
++        "type": "tarball",
++        "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
++      }
++    },
++    "flake-compat_3": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1767039857,
++        "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=",
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab",
++        "type": "github"
++      },
++      "original": {
++        "owner": "edolstra",
++        "repo": "flake-compat",
++        "type": "github"
++      }
++    },
++    "flake-parts": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_2": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1768135262,
++        "narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "flake-parts_3": {
++      "inputs": {
++        "nixpkgs-lib": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772408722,
++        "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=",
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "flake-parts",
++        "type": "github"
++      }
++    },
++    "git-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_2",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1765404074,
++        "narHash": "sha256-+ZDU2d+vzWkEJiqprvV5PR26DVFN2vgddwG5SnPZcUM=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "2d6f58930fbcd82f6f9fd59fb6d13e37684ca529",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "git-hooks_3": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_5",
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772893680,
++        "narHash": "sha256-JDqZMgxUTCq85ObSaFw0HhE+lvdOre1lx9iI6vYyOEs=",
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "rev": "8baab586afc9c9b57645a734c820e4ac0a604af9",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "git-hooks.nix",
++        "type": "github"
++      }
++    },
++    "gitignore": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_2": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "cachix",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_3": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_4": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "pre-commit-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "gitignore_5": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "git-hooks",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1709087332,
++        "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
++        "type": "github"
++      },
++      "original": {
++        "owner": "hercules-ci",
++        "repo": "gitignore.nix",
++        "type": "github"
++      }
++    },
++    "nix": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "flake-compat"
++        ],
++        "flake-parts": [
++          "devenv",
++          "flake-parts"
++        ],
++        "git-hooks-nix": [
++          "devenv",
++          "git-hooks"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "nixpkgs-23-11": [
++          "devenv"
++        ],
++        "nixpkgs-regression": [
++          "devenv"
++        ]
++      },
++      "locked": {
++        "lastModified": 1775657489,
++        "narHash": "sha256-v1KwZrIMGpteHPwxXvbapc7o3iduhU61phPUfyrnjM8=",
++        "owner": "cachix",
++        "repo": "nix",
++        "rev": "5c0da4397902105a84611c6d49e9d39a618ca025",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "devenv-2.34",
++        "repo": "nix",
++        "type": "github"
++      }
++    },
++    "nix-test-runner": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nix-test-runner_2": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1588761593,
++        "narHash": "sha256-FKJykltAN/g3eIceJl4SfDnnyuH2jHImhMrXS2KvGIs=",
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "rev": "c45d45b11ecef3eb9d834c3b6304c05c49b06ca2",
++        "type": "github"
++      },
++      "original": {
++        "owner": "stoeffel",
++        "repo": "nix-test-runner",
++        "type": "github"
++      }
++    },
++    "nixd": {
++      "inputs": {
++        "flake-parts": [
++          "devenv",
++          "flake-parts"
++        ],
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ],
++        "treefmt-nix": "treefmt-nix"
++      },
++      "locked": {
++        "lastModified": 1773634079,
++        "narHash": "sha256-49qb4QNMv77VOeEux+sMd0uBhPvvHgVc0r938Bulvbo=",
++        "owner": "nix-community",
++        "repo": "nixd",
++        "rev": "8ecf93d4d93745e05ea53534e8b94f5e9506e6bd",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-community",
++        "repo": "nixd",
++        "type": "github"
++      }
++    },
++    "nixpkgs": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs-src": {
++      "flake": false,
++      "locked": {
++        "lastModified": 1773840656,
++        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_2": {
++      "locked": {
++        "lastModified": 1765186076,
++        "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixos-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_3": {
++      "locked": {
++        "lastModified": 1769433173,
++        "narHash": "sha256-Gf1dFYgD344WZ3q0LPlRoWaNdNQq8kSBDLEWulRQSEs=",
++        "owner": "NixOS",
++        "repo": "nixpkgs",
++        "rev": "13b0f9e6ac78abbbb736c635d87845c4f4bee51b",
++        "type": "github"
++      },
++      "original": {
++        "owner": "NixOS",
++        "ref": "nixpkgs-unstable",
++        "repo": "nixpkgs",
++        "type": "github"
++      }
++    },
++    "nixpkgs_4": {
++      "inputs": {
++        "nixpkgs-src": "nixpkgs-src"
++      },
++      "locked": {
++        "lastModified": 1774287239,
++        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
++        "owner": "cachix",
++        "repo": "devenv-nixpkgs",
++        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "ref": "rolling",
++        "repo": "devenv-nixpkgs",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_3",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "crate2nix_stable",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "pre-commit-hooks_2": {
++      "inputs": {
++        "flake-compat": [
++          "devenv",
++          "crate2nix",
++          "flake-compat"
++        ],
++        "gitignore": "gitignore_4",
++        "nixpkgs": [
++          "devenv",
++          "crate2nix",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1769069492,
++        "narHash": "sha256-Efs3VUPelRduf3PpfPP2ovEB4CXT7vHf8W+xc49RL/U=",
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "rev": "a1ef738813b15cf8ec759bdff5761b027e3e1d23",
++        "type": "github"
++      },
++      "original": {
++        "owner": "cachix",
++        "repo": "pre-commit-hooks.nix",
++        "type": "github"
++      }
++    },
++    "root": {
++      "inputs": {
++        "devenv": "devenv",
++        "nixpkgs": "nixpkgs_4",
++        "systems": "systems"
++      }
++    },
++    "rust-overlay": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1773630837,
++        "narHash": "sha256-zJhgAGnbVKeBMJOb9ctZm4BGS/Rnrz+5lfSXTVah4HQ=",
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "rev": "f600ea449c7b5bb596fa1cf21c871cc5b9e31316",
++        "type": "github"
++      },
++      "original": {
++        "owner": "oxalica",
++        "repo": "rust-overlay",
++        "type": "github"
++      }
++    },
++    "systems": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "treefmt-nix": {
++      "inputs": {
++        "nixpkgs": [
++          "devenv",
++          "nixd",
++          "nixpkgs"
++        ]
++      },
++      "locked": {
++        "lastModified": 1772660329,
++        "narHash": "sha256-IjU1FxYqm+VDe5qIOxoW+pISBlGvVApRjiw/Y/ttJzY=",
++        "owner": "numtide",
++        "repo": "treefmt-nix",
++        "rev": "3710e0e1218041bbad640352a0440114b1e10428",
++        "type": "github"
++      },
++      "original": {
++        "owner": "numtide",
++        "repo": "treefmt-nix",
++        "type": "github"
++      }
++    }
++  },
++  "root": "root",
++  "version": 7
++}
+```
+
+``` diff
+new file mode 100644
+index 0000000..f90aba3
+--- /dev/null
++++ b/flake.nix
+@@ -0,0 +1,42 @@
++{
++  inputs = {
++    nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
++    systems.url = "github:nix-systems/default";
++    devenv.url = "github:cachix/devenv";
++    devenv.inputs.nixpkgs.follows = "nixpkgs";
++  };
++
++  nixConfig = {
++    extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
++    extra-substituters = "https://devenv.cachix.org";
++  };
++
++  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++    let
++      forEachSystem = nixpkgs.lib.genAttrs (import systems);
++    in
++    {
++      devShells = forEachSystem
++        (system:
++          let
++            pkgs = nixpkgs.legacyPackages.${system};
++          in
++          {
++            default = devenv.lib.mkShell {
++              inherit inputs pkgs;
++              modules = [
++                {
++                  # https://devenv.sh/reference/options/
++                  packages = [ pkgs.hello ];
++
++                  enterShell = ''
++                    hello
++                  '';
++
++                  processes.hello.exec = "hello";
++                }
++              ];
++            };
++          });
++    };
++}
+```
+
+# Write some requirements and thoughts in a spec file
+
+
+
+``` diff
+new file mode 100644
+index 0000000..9a9a14c
+--- /dev/null
++++ b/spec/BASIC.md
+@@ -0,0 +1,37 @@
++# Basic
++
++This program generates a devlog for tad-lispy.com
++
++
++## Get all projects
++
++We need a mapping from `project-name` to `path`. This should sit in `projects.yaml`
++
++The listing of all paths with names guessed from path can be obtained like this:
++
++``` nushell
++glob ~/Projects/**/.git 
++| path dirname 
++| each { |p| { name: ($p | path basename), path: $p } } 
++| transpose --as-record -r 
++| save --force all-projects.yaml
++```
++
++
++## Get days
++
++I want a list with `start` and `end` timestamps. It should support `--since` and `--until`. Until should by default be 4 A.M. today.  Since will be supplied based on the last entry in the devlog (details tbd). First day should be from `since`, i.e. it probably won't be a full day, but a fraction.
++
++An arbitrary date with a given time can be obtained with the following:
++
++``` nu
++("04:00" | date from-human) - 1day
++```
++
++So maybe I can just loop until I reach the time before `since`, emit the last fraction and break?
++
++## Generate the drafts
++
++For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
++
++  - What about new projects that are not listed yet?
+```
+
+# Implement a days command to get a list of records
+
+Given a date since and an optional day start, it produces a list of
+records with `start` and `end` of each day.
+
+``` diff
+new file mode 100755
+index 0000000..2710393
+--- /dev/null
++++ b/devlog.nu
+@@ -0,0 +1,17 @@
++def days [
++    since: datetime,
++    --day-start: string = "04:00"
++] {
++    let until = $day_start | date from-human
++    # TODO: Allow setting --until: datetime and be smart about day-start - the last day might be a fraction!
++    
++    0..
++    | each { |n| $n * 1day }
++    | each { |duration| $until - $duration }
++    | each { |start| {
++        start: ([$start $since] | math max),
++        end: ($start + 1day)
++    } }
++    | take while { |day| $day.start < $day.end }
++}
++
+```
+
+``` diff
+index f90aba3..b6bf848 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -27,13 +27,7 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.hello ];
+-
+-                  enterShell = ''
+-                    hello
+-                  '';
+-
+-                  processes.hello.exec = "hello";
++                  packages = [ pkgs.nushell ];
+=                }
+=              ];
+=            };
+```
+
+# Make the script runnable with main function
+
+So it can be executed without sourcing it first, like this
+
+    nu devlog.nu 2026-03-21
+
+``` diff
+index 2710393..ba04ac8 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -15,3 +15,6 @@ def days [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
++def main [since: datetime] {
++  days $since
++}
+```
+
+# Expose the days subcommand, add a shebang
+
+Now the script can be run as
+
+    ./devlog days 2026-03-20
+
+``` diff
+index ba04ac8..2dd0fd5 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -1,4 +1,6 @@
+-def days [
++#!/usr/bin/env nu
++
++def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+=] {
+@@ -15,6 +17,7 @@ def days [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
+-def main [since: datetime] {
+-  days $since
++def main [] {
++    print "Not implemented yet"
++    exit 1
+=}
+```
+
+# Write a spec about unlisted projects
+
+
+
+``` diff
+index 9a9a14c..34979e9 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -34,4 +34,11 @@ So maybe I can just loop until I reach the time before `since`, emit the last fr
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
+=
+-  - What about new projects that are not listed yet?
++
++## Unlisted projects
++
++What about new projects that are not listed yet?
++
++If some work was done on such a project, there should be a warning about it.
++
++If a project is then added to the list, running the command again should not override existing drafts, but create new files for the newly listed projects.
+```
+
+# Write a command to list all projects
+
+It produces a large name -> path record.
+
+``` diff
+index 2dd0fd5..1f501f1 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -17,6 +17,17 @@ def "main days" [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
++def "main projects" [
++    path: path
++] {
++    $path
++    | path join "**/.git"
++    | glob $in
++    | path dirname
++    | each { |p| { name: ($p | path basename), path: $p } }
++    | transpose --as-record -r
++}
++
+=def main [] {
+=    print "Not implemented yet"
+=    exit 1
+```
+
+# Implement the project log sub-command
+
+It parses the output from `git log`, including a unified diff and
+extracts a Nushell table with `subject`, `body` and `diff` columns. The
+`diff` is split by file.
+
+``` diff
+index 1f501f1..632e9d5 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -28,7 +28,26 @@ def "main projects" [
+=    | transpose --as-record -r
+=}
+=
+-def main [] {
++def "main project log" [
++    path: path,
++    since: datetime,
++    until: datetime,
++] {
++    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++    cd $path
++    git log --since $since --until $until --unified --format=$"($log_format)"
++    | split row  "<--- commit --->"
++    | skip 1 # First is empty
++    | split column "<--- part --->"
++    | rename "subject" "body" "diff" 
++    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
++}
++
++def main [
++    since: datetime,
++    --path: path = "~/Projects",
++    --day-start: string = "04:00"
++] {
+=    print "Not implemented yet"
+=    exit 1
+=}
+```
+
+# WIP: Implement formatting project log as Markdown
+
+There is some issue with diffs containing binary data. I will need to
+investigate when I have fresh mind.
+
+``` diff
+index 632e9d5..a87f7bf 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -35,7 +35,14 @@ def "main project log" [
+=] {
+=    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
+=    cd $path
+-    git log --since $since --until $until --unified --format=$"($log_format)"
++
++    # Debugging:
++    # print $env.PWD
++    # let git_command = $'git log --since ($since | format date %+) --until ($until | format date %+) --unified --format="($log_format)"'
++    # print $git_command
++
++    # TODO: Handle binary stream somehow coming from Erna's log
++    git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+=    | split row  "<--- commit --->"
+=    | skip 1 # First is empty
+=    | split column "<--- part --->"
+@@ -43,11 +50,38 @@ def "main project log" [
+=    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
+=}
+=
++def "format commit" [] {
++    [
++        $"## ($in.subject | str trim)"
++        ""
++        ($in.body | str trim)
++        ""
++        ($in.diff | each { |diff| format diff } | str join "\n\n" )
++    ] | str join "\n"
++}
++
++def "format diff" [] {
++    $"``` diff\n($in | str trim)\n```"
++}
++
++def "format log" [
++    title: string
++] {
++    [
++        $"# ($title)"
++        $""
++        $"Commits: ($in | length)"
++        $""
++        ($in | each { | commit | format commit } | str join "\n\n")
++    ] | str join "\n"
++}
++
+=def main [
+=    since: datetime,
+=    --path: path = "~/Projects",
+=    --day-start: string = "04:00"
+=] {
+-    print "Not implemented yet"
+-    exit 1
++    # TODO: Handle multiple projects and write the markdown file
++    main project log $path $since (date now)
++    | format log "Test"
+=}
+```
\ No newline at end of file
new file mode 100644
index 0000000..c2bd98a
--- /dev/null
+++ b/content/devlog/2026-04-13-devlog-excavator.md
@@ -0,0 +1,354 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 7
+
+
+# Write about binary data in diffs
+
+
+
+``` diff
+index 34979e9..2768f3f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -42,3 +42,16 @@ What about new projects that are not listed yet?
+=If some work was done on such a project, there should be a warning about it.
+=
+=If a project is then added to the list, running the command again should not override existing drafts, but create new files for the newly listed projects.
++
++## Binary files issue
++
++A non-unicode fragment in the diff breaks my script. For example in a repo with some PDFs checked in I'm getting this:
++
++``` nushell-session
++❯ git log --since 2026-04-01T00:00:00+00:00 --until 2026-04-12T00:00:00+00:00 --unified --format="<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"     | split row  "<--- commit --->"
++Error: nu::shell::only_supports_this_input_type
++```
++
++The PDF files are mixed - they are mostly text, but can contain embedded binary blobs (like fonts or bitmap images).
++
++The solutions is the `.gitattributes` in a project repo to filter our any file that might contain binary fragments.
+```
+
+# Write about an idea to produce sample data
+
+
+
+``` diff
+index 2768f3f..415f213 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -2,6 +2,9 @@
+=
+=This program generates a devlog for tad-lispy.com
+=
++## Sample data
++
++IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+=## Get all projects
+=
+```
+
+# Work around `skip` swallowing errors
+
+I elaborate on in in the spec.
+
+``` diff
+index a87f7bf..a74113b 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -42,8 +42,11 @@ def "main project log" [
+=    # print $git_command
+=
+=    # TODO: Handle binary stream somehow coming from Erna's log
+-    git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
++    # This is a workaround for `skip` swallowing errors
++    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+=    | split row  "<--- commit --->"
++
++    $chunks
+=    | skip 1 # First is empty
+=    | split column "<--- part --->"
+=    | rename "subject" "body" "diff"
+```
+
+``` diff
+index 415f213..42c8077 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -58,3 +58,18 @@ Error: nu::shell::only_supports_this_input_type
+=The PDF files are mixed - they are mostly text, but can contain embedded binary blobs (like fonts or bitmap images).
+=
+=The solutions is the `.gitattributes` in a project repo to filter our any file that might contain binary fragments.
++
++A secondary problem is that Nushell's `skip` command seems to be swallowing the errors in a pipeline. If the preceding command fails (like above), it just produces empty list. Consider this, same as above but with an extra step:
++
++``` nushell-session
++❯ git log --since 2026-04-01T00:00:00+00:00 --until 2026-04-12T00:00:00+00:00 --unified --format="<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++| split row  "<--- commit --->" 
++| skip 1
++╭────────────╮
++│ empty list │
++╰────────────╯
++```
++
++This seems to be specific to `skip`. Other commands fail as expected.
++
++> TODO: Open an issue in Nushell. There is a similar one about `transpose`: <https://github.com/nushell/nushell/issues/14027>.
+```
+
+# Make the git log markers stricter
+
+The `<--- commit --->` and `<--- part --->` markers are now immediately
+preceded and followed by newline characters, to avoid confusion when
+those strings are used in code or docs - for example in this project.
+
+``` diff
+index a74113b..b87590b 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -33,7 +33,7 @@ def "main project log" [
+=    since: datetime,
+=    until: datetime,
+=] {
+-    let log_format = "<--- commit --->%n%s%n<--- part --->%b%n<--- part --->"
++    let log_format = "<--- commit --->%n%s%n<--- part --->%n%b%n<--- part --->%n"
+=    cd $path
+=
+=    # Debugging:
+@@ -44,13 +44,13 @@ def "main project log" [
+=    # TODO: Handle binary stream somehow coming from Erna's log
+=    # This is a workaround for `skip` swallowing errors
+=    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+-    | split row  "<--- commit --->"
++    | split row "\n<--- commit --->\n"
+=
+=    $chunks
+=    | skip 1 # First is empty
+-    | split column "<--- part --->"
++    | split column "\n<--- part --->\n"
+=    | rename "subject" "body" "diff" 
+-    | update "diff" { | row | $row.diff | split row --regex "diff --git .+" | skip 1 }
++    | update "diff" { | row | $row.diff | split row --regex "\ndiff --git .+" | skip 1 }
+=}
+=
+=def "format commit" [] {
+```
+
+# Make it iterate over days and write the documents
+
+So basically put it all together. The main command now  scans all git
+repositories under the `--project-dir` (defaults to `~/Projects`) and
+writes markdown documents to files named like `2026-04-13-my-project.md`
+to `--out-dir` (defaults to `./drafts/`). So there is one output file
+for each day and each project. Days without commits are skipped.
+
+When errors occur, extra diagnostic information is printed. It's a bit
+ugly. Debugging Nushell scripts seems tricky. Maybe I don't know how to
+do it properly.
+
+``` diff
+index b87590b..5bad215 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -81,10 +81,37 @@ def "format log" [
+=
+=def main [
+=    since: datetime,
+-    --path: path = "~/Projects",
++    --projects-dir: path = "~/Projects",
+=    --day-start: string = "04:00"
++    --out-dir: path = "drafts"
+=] {
+-    # TODO: Handle multiple projects and write the markdown file
+-    main project log $path $since (date now)
+-    | format log "Test"
++    mkdir $out_dir
++
++    for project in (main projects $projects_dir | transpose name path) {
++        let project_slug = $project.name | str kebab-case
++
++        # TODO: Iterate over days and write to a file
++        for day in (main days $since) {
++            let date = $day.start | format date %Y-%m-%d
++            let out_path = ($out_dir | path join $"($date)-($project_slug).md")
++
++            try {
++                # TODO: Catch and print errors
++                let log = main project log $project.path $day.start $day.end
++                if ($log | is-empty) {
++                    "No commits on that day"
++                    continue
++                }
++                $log
++                | format log $project.name
++                | save --force $out_path
++            } catch { |error|
++                print --stderr $"Project path: ($project.path)"
++                print --stderr $"Date: ($date)"
++                print --stderr $"Output path: ($out_path)"
++                print --stderr $error.rendered
++            }
++        }
++        
++    }
+=}
+```
+
+# Make the order of commits chronological
+
+The commits done earlier in the day should be listed first, unlike in
+git log, where they are listed in reverse chronological order.
+
+``` diff
+index 5bad215..cd1aa1a 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -97,7 +97,7 @@ def main [
+=
+=            try {
+=                # TODO: Catch and print errors
+-                let log = main project log $project.path $day.start $day.end
++                let log = main project log $project.path $day.start $day.end | reverse
+=                if ($log | is-empty) {
+=                    "No commits on that day"
+=                    continue
+```
+
+# Write a spec and partially implement configuration
+
+The name and ignore part are working, but there is no warning about
+recent activity. The difficulty is, that with current architecture it's
+difficult to print the warning only once. A refactoring is needed before
+this can be implemented.
+
+A sample configuration file is provided.
+
+``` diff
+index 69d93e1..74bb444 100644
+--- a/.gitignore
++++ b/.gitignore
+@@ -1,2 +1,4 @@
++/drafts/
++/devlog.toml
+=.direnv
+=.devenv
+```
+
+``` diff
+new file mode 100644
+index 0000000..698c93f
+--- /dev/null
++++ b/devlog-sample.toml
+@@ -0,0 +1,11 @@
++[[projects]]
++name = "Tad Better Behavior"
++path = "~/Projects/tad-better-behavior"
++    
++[[projects]]
++name = "Better Tech Club website"
++path = "~/Projects/better-tech-club/bettertech.eu"
++
++[[projects]]
++name = "DevLog"
++path = "."
+```
+
+``` diff
+index cd1aa1a..7622b93 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -19,13 +19,11 @@ def "main days" [
+=
+=def "main projects" [
+=    path: path
+-] {
++]: nothing -> list<path> {
+=    $path
+=    | path join "**/.git"
+=    | glob $in
+=    | path dirname
+-    | each { |p| { name: ($p | path basename), path: $p } }
+-    | transpose --as-record -r
+=}
+=
+=def "main project log" [
+@@ -84,12 +82,29 @@ def main [
+=    --projects-dir: path = "~/Projects",
+=    --day-start: string = "04:00"
+=    --out-dir: path = "drafts"
++    --config-file: path = "devlog.toml"
+=] {
++    let config = open $config_file
++    | update projects { update path { path expand } } # Resolve all project paths
++
++    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+=
+-    for project in (main projects $projects_dir | transpose name path) {
++    for project_path in (main projects $projects_dir) {
++        let project = $config.projects
++        | where path == $project_path
++        | first
++
++        if ($project | is-empty) {
++            continue
++        }
++
+=        let project_slug = $project.name | str kebab-case
+=
++        if ($project | get --optional ignore | default false ) {
++            continue
++        }
++
+=        # TODO: Iterate over days and write to a file
+=        for day in (main days $since) {
+=            let date = $day.start | format date %Y-%m-%d
+@@ -97,16 +112,18 @@ def main [
+=
+=            try {
+=                # TODO: Catch and print errors
+-                let log = main project log $project.path $day.start $day.end | reverse
++                let log = main project log $project_path $day.start $day.end | reverse
++
+=                if ($log | is-empty) {
+=                    "No commits on that day"
+=                    continue
+=                }
++
+=                $log
+=                | format log $project.name
+=                | save --force $out_path
+=            } catch { |error|
+-                print --stderr $"Project path: ($project.path)"
++                print --stderr $"Project path: ($project_path)"
+=                print --stderr $"Date: ($date)"
+=                print --stderr $"Output path: ($out_path)"
+=                print --stderr $error.rendered
+```
+
+``` diff
+index 42c8077..531b178 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -73,3 +73,12 @@ A secondary problem is that Nushell's `skip` command seems to be swallowing the
+=This seems to be specific to `skip`. Other commands fail as expected.
+=
+=> TODO: Open an issue in Nushell. There is a similar one about `transpose`: <https://github.com/nushell/nushell/issues/14027>.
++
++
++## Configuration file
++
++By default `./devlog.toml` shall be used, but it can be changed with `--config-file` flag. The file must list all the projects for which devlog is to be generated. The name of the project comes from there. See the devlog-sample.toml file.
++
++A project can be flagged to be ignored with the `ignore` key.
++
++Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
+```
\ No newline at end of file
new file mode 100644
index 0000000..b50488b
--- /dev/null
+++ b/content/devlog/2026-04-14-better-tech-club-website.md
@@ -0,0 +1,29 @@
+---
+title: Better Tech Club website
+extra:
+  projects:
+  - Better Tech Club website
+
+---
+
+Commits: 1
+
+
+# Emphasize "sustainable and fair" together
+
+To resonate with "love and care".
+
+``` diff
+index 5170b7c..d7d9ab5 100644
+--- a/index.html
++++ b/index.html
+@@ -207,7 +207,7 @@
+=                    Our tech <strong>respects</strong> you as a human being:
+=                    respects your <strong>dignity</strong>, your <strong>privacy</strong>,
+=                    your <strong>intelligence</strong>, your <strong>well-being</strong>.
+-                    It's <strong>sustainable</strong> and <strong>fair</strong>.
++                    It's <strong>sustainable and fair</strong>.
+=                    It belongs to you and me.
+=                    It makes us a <strong>community</strong>.
+=                    You are among friends. You are not the product.
+```
\ No newline at end of file
new file mode 100644
index 0000000..15947e4
--- /dev/null
+++ b/content/devlog/2026-04-14-devlog-excavator.md
@@ -0,0 +1,622 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 7
+
+
+# WIP: Setup TBB to evaluate the spec
+
+Yesterday I've made an attempt to implement a Nushell interpreter for
+Tad Better Behavior. I got stuck on handling I/O. An interpreter needs
+to first write a line to indicate that it's ready to handle input, and
+then handle it line by line. After each line received on `stdin` it
+needs to respond with one or more lines on `stdout` and wait for more
+input. Once the input stream is closed, an interpreter should terminate.
+
+I tried two approaches:
+
+1. Using `input` in a loop
+
+This works very well, except the interpreter won't terminate when the
+input is closed, leaving zombie processes after each evaluation.
+
+2. Using `lines` without any explicit input
+
+This is what I'm committing here. I've found this technique at
+https://github.com/nushell/nushell/issues/14901. It doesn't wait for
+input and terminates immediately, unless I remove (comment out) any
+output (to `stdout` and `stderr`) before calling the `lines` command.
+It seems like a bug in Nushell, so I've wrote an issue about it:
+https://github.com/nushell/nushell/issues/18033
+
+``` diff
+index 7d5ec13..671416e 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -165,11 +165,11 @@
+=        "rust-overlay": "rust-overlay"
+=      },
+=      "locked": {
+-        "lastModified": 1775848233,
+-        "narHash": "sha256-+V6K66AsFCxD0PmKOASSSFUdEjmAtIwX4XlQ+2JBrmk=",
++        "lastModified": 1776080969,
++        "narHash": "sha256-2uZxF6q0KOIH8tq3r65ZCz7dM+XYP3avtRP8IBq5zYY=",
+=        "owner": "cachix",
+=        "repo": "devenv",
+-        "rev": "cf4f57c61f5dc9d58300bdf18102d9cf5b4f29ea",
++        "rev": "8d558a84fa38242a7f13781670fee1a6a8902b48",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -565,11 +565,11 @@
+=        ]
+=      },
+=      "locked": {
+-        "lastModified": 1775657489,
+-        "narHash": "sha256-v1KwZrIMGpteHPwxXvbapc7o3iduhU61phPUfyrnjM8=",
++        "lastModified": 1775984952,
++        "narHash": "sha256-FciKF0weMXVirN+ZBSniR4wpKx168cBa9IXhuaLOkkU=",
+=        "owner": "cachix",
+=        "repo": "nix",
+-        "rev": "5c0da4397902105a84611c6d49e9d39a618ca025",
++        "rev": "e671135fc5b783798c444e4ece101f6b15ff0c46",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -656,11 +656,11 @@
+=    "nixpkgs-src": {
+=      "flake": false,
+=      "locked": {
+-        "lastModified": 1773840656,
+-        "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
++        "lastModified": 1775888245,
++        "narHash": "sha256-nwASzrRDD1JBEu/o8ekKYEXm/oJW6EMCzCRdrwcLe90=",
+=        "owner": "NixOS",
+=        "repo": "nixpkgs",
+-        "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
++        "rev": "13043924aaa7375ce482ebe2494338e058282925",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -707,11 +707,11 @@
+=        "nixpkgs-src": "nixpkgs-src"
+=      },
+=      "locked": {
+-        "lastModified": 1774287239,
+-        "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=",
++        "lastModified": 1776097194,
++        "narHash": "sha256-XD4DsgNcfXC5nlCxlAcCP5hSjTYlgLXEIoTj7fKkQg4=",
+=        "owner": "cachix",
+=        "repo": "devenv-nixpkgs",
+-        "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c",
++        "rev": "6e8a07b02f6f8557ffab71274feac9827bcc2532",
+=        "type": "github"
+=      },
+=      "original": {
+@@ -783,7 +783,8 @@
+=      "inputs": {
+=        "devenv": "devenv",
+=        "nixpkgs": "nixpkgs_4",
+-        "systems": "systems"
++        "systems": "systems",
++        "tad-better-behavior": "tad-better-behavior"
+=      }
+=    },
+=    "rust-overlay": {
+@@ -822,6 +823,45 @@
+=        "type": "github"
+=      }
+=    },
++    "systems_2": {
++      "locked": {
++        "lastModified": 1681028828,
++        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
++        "owner": "nix-systems",
++        "repo": "default",
++        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
++        "type": "github"
++      },
++      "original": {
++        "owner": "nix-systems",
++        "repo": "default",
++        "type": "github"
++      }
++    },
++    "tad-better-behavior": {
++      "inputs": {
++        "devenv": [
++          "devenv"
++        ],
++        "nixpkgs": [
++          "nixpkgs"
++        ],
++        "systems": "systems_2"
++      },
++      "locked": {
++        "lastModified": 1775638737,
++        "narHash": "sha256-h2QcCWhV7hA+v8Tmyh5zmiZmeDLj23Rh5ciJwWiuhJI=",
++        "ref": "refs/heads/main",
++        "rev": "ed447ca6ee1a377bf4afcde6a785fdc0870e4f13",
++        "revCount": 162,
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      },
++      "original": {
++        "type": "git",
++        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
++      }
++    },
+=    "treefmt-nix": {
+=      "inputs": {
+=        "nixpkgs": [
+```
+
+``` diff
+index b6bf848..5b67689 100644
+--- a/flake.nix
++++ b/flake.nix
+@@ -4,6 +4,11 @@
+=    systems.url = "github:nix-systems/default";
+=    devenv.url = "github:cachix/devenv";
+=    devenv.inputs.nixpkgs.follows = "nixpkgs";
++    tad-better-behavior = {
++      url = "git+http://codeberg.org/tad-lispy/tad-better-behavior";
++      inputs.nixpkgs.follows = "nixpkgs";
++      inputs.devenv.follows = "devenv";
++    };
+=  };
+=
+=  nixConfig = {
+@@ -11,7 +16,7 @@
+=    extra-substituters = "https://devenv.cachix.org";
+=  };
+=
+-  outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
++  outputs = { self, nixpkgs, devenv, systems, tad-better-behavior, ... } @ inputs:
+=    let
+=      forEachSystem = nixpkgs.lib.genAttrs (import systems);
+=    in
+@@ -20,6 +25,7 @@
+=        (system:
+=          let
+=            pkgs = nixpkgs.legacyPackages.${system};
++            tbb = tad-better-behavior.packages.${system};
+=          in
+=          {
+=            default = devenv.lib.mkShell {
+@@ -27,7 +33,10 @@
+=              modules = [
+=                {
+=                  # https://devenv.sh/reference/options/
+-                  packages = [ pkgs.nushell ];
++                  packages = [
++                    pkgs.nushell
++                    tbb.default
++                  ];
+=                }
+=              ];
+=            };
+```
+
+``` diff
+index 531b178..94eeb4c 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -1,3 +1,7 @@
++---
++interpreter: nu --stdin spec/interpreters/tbb.nu
++---
++
+=# Basic
+=
+=This program generates a devlog for tad-lispy.com
+```
+
+``` diff
+new file mode 100644
+index 0000000..2bc42df
+--- /dev/null
++++ b/spec/interpreters/tbb.nu
+@@ -0,0 +1,19 @@
++def main [] {
++    print --stderr "Interpreter listening..."
++
++    { type: InterpreterState, ready: true }
++    | to json --raw
++    | print
++
++    # FIXME: It doesn't wait for input if anything is printed
++    # See https://github.com/nushell/nushell/issues/18033
++    lines | each { str reverse | print --stderr }
++
++    # Alternative aproach to I/O. Also doesnt work:
++    # loop {
++    #     input | str reverse | print --stderr
++    # }
++
++    print --stderr "Interpreter done."
++}
++
+```
+
+# Elaborate on projects list in a front matter
+
+
+
+``` diff
+index 94eeb4c..9e97e08 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -39,7 +39,11 @@ So maybe I can just loop until I reach the time before `since`, emit the last fr
+=
+=## Generate the drafts
+=
+-For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day. The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to project page. Each commit should start with an `h2` followed by the message body and a complete diff.
++For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
++
++The project name should be listed in a front-matter (under `extra.projects`), so they can be linked to projects pages. It's plural, and should be an array, because sometimes work in one repository is related to multiple projects - for example integrating TBB can be linked to the integration, but also TBB.
++
++Each commit should start with an `h2` followed by the message body and a complete diff.
+=
+=
+=## Unlisted projects
+```
+
+# Let it write project name in front matter
+
+It writes it in two places:
+
+  - title
+  - extra.projects (configurable, a singleton list)
+
+The idea is, that title might be changed for editorial purposes (for example to
+reflect particular developments of the day) while projects list is more
+of a metadata (it can be used to link pages together). Also, projects
+are sometimes renamed. In that case, it's ok to change the metadata, but
+titles are often used to generate URLs, so it's better to keep them
+stable and not break any links.
+
+I demonstrate how to change the cell path of projects in
+`devlog-sample.toml`. Nushell is really nice to work with data formats
+and structures.
+
+``` diff
+index 698c93f..9a8d531 100644
+--- a/devlog-sample.toml
++++ b/devlog-sample.toml
+@@ -1,3 +1,10 @@
++[frontmatter]
++
++# By default projects are listed under extra.projects.  This example shows how
++# to use custom cell path to list them under taxonomies, for example to use with
++# Zola (https://www.getzola.org/documentation/content/taxonomies/).
++projects_cell_path = [ "taxonomies", "projects" ]
++
+=[[projects]]
+=name = "Tad Better Behavior"
+=path = "~/Projects/tad-better-behavior"
+@@ -7,5 +14,5 @@ name = "Better Tech Club website"
+=path = "~/Projects/better-tech-club/bettertech.eu"
+=
+=[[projects]]
+-name = "DevLog"
++name = "DevLog Extracavator"
+=path = "."
+```
+
+``` diff
+index 7622b93..d27f57c 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -67,8 +67,16 @@ def "format diff" [] {
+=
+=def "format log" [
+=    title: string
++    config: record
+=] {
++    let frontmatter = { title: $title }
++    | insert $config.frontmatter.projects_cell_path [ $title ]
++
+=    [
++        $"---"
++        ($frontmatter | to yaml)
++        $"---"
++        $""
+=        $"# ($title)"
+=        $""
+=        $"Commits: ($in | length)"
+@@ -84,8 +92,10 @@ def main [
+=    --out-dir: path = "drafts"
+=    --config-file: path = "devlog.toml"
+=] {
++    # Read the config file, process and set some defaults
+=    let config = open $config_file
+=    | update projects { update path { path expand } } # Resolve all project paths
++    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path } 
+=
+=    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+@@ -120,7 +130,7 @@ def main [
+=                }
+=
+=                $log
+-                | format log $project.name
++                | format log $project.name $config
+=                | save --force $out_path
+=            } catch { |error|
+=                print --stderr $"Project path: ($project_path)"
+```
+
+# Fix the Nushell TBB interpreter I/O problem
+
+Thanks to Juhan280 at GitHub:
+
+https://github.com/nushell/nushell/issues/18033#issuecomment-4241910862
+
+Apparently the first command takes over the input stream. It's still a
+bit fuzzy to me, but the solution with `tee` works, so I can continue
+from here. It's still a WIP, but at least the I/O seems to be working
+correctly.
+
+``` diff
+index 2bc42df..5a8bfa2 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,18 +1,12 @@
+=def main [] {
+-    print --stderr "Interpreter listening..."
+-
+-    { type: InterpreterState, ready: true }
+-    | to json --raw
+-    | print
+-
+-    # FIXME: It doesn't wait for input if anything is printed
+-    # See https://github.com/nushell/nushell/issues/18033
+-    lines | each { str reverse | print --stderr }
+-
+-    # Alternative aproach to I/O. Also doesnt work:
+-    # loop {
+-    #     input | str reverse | print --stderr
+-    # }
++    tee { # This preserves the input stream for the lines command
++        print --stderr "Interpreter listening..."
++        { type: InterpreterState, ready: true }
++        | to json --raw
++        | print
++    }
++    | lines
++    | each { str reverse | print --stderr }
+=
+=    print --stderr "Interpreter done."
+=}
+```
+
+# Setup the incoming handler in the TBB interpreter
+
+I have to focus on something else now, but I want to set the stage for
+next steps.
+
+``` diff
+index 5a8bfa2..4fefadb 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -6,8 +6,14 @@ def main [] {
+=        | print
+=    }
+=    | lines
+-    | each { str reverse | print --stderr }
++    | each { handle incoming }
+=
+=    print --stderr "Interpreter done."
+=}
+=
++def "handle incoming" [] {
++    $in
++    | from json
++    # TODO: Actually process TBB incoming messages and send responses
++    | print --stderr 
++}
+```
+
+# Implement POC TBB interpreter in Nushell
+
+All the basics are covered:
+
+ - Step implementation (by variant)
+ - Execution
+ - Arguments passing (no type casting (yet?))
+ - Extra data passing (code_blocks, tables, etc.)
+ - Success reporting
+ - Error reporting (including nice "did you mean?" on typos)
+
+No observations yet. Also the interpreter and internals are all mixed
+together.
+
+There is also some nonsense spec scenario to test it all. When evaluated
+it fails on purpose.
+
+``` diff
+index 9e97e08..d20b3a7 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -90,3 +90,15 @@ By default `./devlog.toml` shall be used, but it can be changed with `--config-f
+=A project can be flagged to be ignored with the `ignore` key.
+=
+=Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
++
++## Interpreter test
++
++This is not real spec, just a quick test of the WIP interpreter.
++
++  * Do something `nice` and then `sleep` for `2` hours
++  
++    ``` text
++    Zzzzz.....
++    ```
++
++  * Do the twist `7` times
+```
+
+``` diff
+index 4fefadb..69652ea 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,3 +1,19 @@
++let steps = {
++    "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
++        print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++        $data.code_blocks | first | get value | print --stderr 
++    },
++    "Do the twist {0} times": { |how_many, data|
++        $how_many | into int | let how_many
++        if $how_many > 5 {
++           error make "That's too many!"
++        }
++        for n in 1..$how_many {
++            $"Doing the twist ($n)" | print --stderr 
++        }
++    }
++}
++
+=def main [] {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+@@ -12,8 +28,27 @@ def main [] {
+=}
+=
+=def "handle incoming" [] {
+-    $in
+-    | from json
+-    # TODO: Actually process TBB incoming messages and send responses
+-    | print --stderr 
++    let incoming = $in | from json
++
++    print --stderr --raw  $incoming
++    match $incoming.type {
++        Execute => {
++            try {
++                let step = $incoming.step
++                print --stderr $"Executing step ($step.description)"
++                let closure = $steps | get $step.variant
++                do $closure ...$step.arguments $step
++                { type: Success } | to json --raw | print
++            } catch { |err|
++                {
++                    type: Failure,
++                    reason: $err.msg
++                    hint: $err.rendered
++                } | to json --raw | print
++            }
++        },
++        _ => {
++            error make "Unsupported message type: ($incoming.type)" 
++        }
++    }
+=}
+```
+
+# Separate plumbing from the TBB interpreter
+
+The "plumbing" involes setting up I/O, which IMO is a bit convoluted.
+Developers who implement interpreters shouldn't be bothered with it.
+They should just write steps' implementations and everything should
+work.
+
+Now the is a `tbb` module holds the reusable parts and plumbing, while a
+new `basic.nu` interpreter defines the steps and calls `tbb run`,
+passing the steps. The `tbb run` (previously `main`) does all the I/O
+setup.
+
+The only caveat is that `tbb run` must be the very first command in the
+interpreter. Otherwise the I/O is broken. See the (ongoing) discussion
+here:
+
+https://github.com/nushell/nushell/issues/18033#issuecomment-4241910862
+
+``` diff
+index d20b3a7..15b6d3f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -1,5 +1,5 @@
+=---
+-interpreter: nu --stdin spec/interpreters/tbb.nu
++interpreter: nu --stdin spec/interpreters/basic.nu
+=---
+=
+=# Basic
+```
+
+``` diff
+new file mode 100644
+index 0000000..77cd3e2
+--- /dev/null
++++ b/spec/interpreters/basic.nu
+@@ -0,0 +1,19 @@
++use tbb.nu
++
++def main [] {
++    tbb run {
++        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
++            print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++            $data.code_blocks | first | get value | print --stderr 
++        },
++        "Do the twist {0} times": { |how_many, data|
++            $how_many | into int | let how_many
++            if $how_many > 5 {
++            error make "That's too many!"
++            }
++            for n in 1..$how_many {
++                $"Doing the twist ($n)" | print --stderr 
++            }
++        }
++    }
++}
+```
+
+``` diff
+index 69652ea..afb7882 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,20 +1,4 @@
+-let steps = {
+-    "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-        print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-        $data.code_blocks | first | get value | print --stderr 
+-    },
+-    "Do the twist {0} times": { |how_many, data|
+-        $how_many | into int | let how_many
+-        if $how_many > 5 {
+-           error make "That's too many!"
+-        }
+-        for n in 1..$how_many {
+-            $"Doing the twist ($n)" | print --stderr 
+-        }
+-    }
+-}
+-
+-def main [] {
++export def run [steps: record]: string -> nothing {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+=        { type: InterpreterState, ready: true }
+@@ -22,12 +6,12 @@ def main [] {
+=        | print
+=    }
+=    | lines
+-    | each { handle incoming }
++    | each { handle incoming $steps }
+=
+=    print --stderr "Interpreter done."
+=}
+=
+-def "handle incoming" [] {
++def "handle incoming" [steps: record] {
+=    let incoming = $in | from json
+=
+=    print --stderr --raw  $incoming
+```
\ No newline at end of file
new file mode 100644
index 0000000..9360a72
--- /dev/null
+++ b/content/devlog/2026-04-15-devlog-excavator.md
@@ -0,0 +1,430 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 3
+
+
+# Implement state management for TBB interpreter
+
+It's implemented the functional / immutable way. Essentially each step
+is an iterator in a fold operation. If the step returns a record, it's
+going to be merged with current state and passed to the next steps as
+`data.state`.
+
+Currently there is a lot of noise on `stderr`. I decided not to clean it
+up, so later I can transform it to TBB observations.
+
+``` diff
+index 15b6d3f..d426ca8 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -95,10 +95,12 @@ Any project that is not listed, but had activity within the period for which a d
+=
+=This is not real spec, just a quick test of the WIP interpreter.
+=
++  * Do the twist `2` times
++
+=  * Do something `nice` and then `sleep` for `2` hours
+=  
+=    ``` text
+=    Zzzzz.....
+=    ```
+=
+-  * Do the twist `7` times
++  * Do the twist `4` times
+```
+
+``` diff
+index 77cd3e2..3b4cbac 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -7,13 +7,28 @@ def main [] {
+=            $data.code_blocks | first | get value | print --stderr 
+=        },
+=        "Do the twist {0} times": { |how_many, data|
++            # All arguments (except data) are passed as strings
++            # TODO: Can we cast them based on closure parameter types?
+=            $how_many | into int | let how_many
+-            if $how_many > 5 {
+-            error make "That's too many!"
+-            }
++
++            # This step demonstrates use of state. We count the total number of twists.
++            $data.state
++            | get --optional "twists"   # On first run it won't be there
++            | default 0                 # ...so we need an initial value
++            | let twists_so_far
++            
+=            for n in 1..$how_many {
+-                $"Doing the twist ($n)" | print --stderr 
++                let done_twists = $n + $twists_so_far
++
++                $"Doing the twist ($done_twists) 🕺" | print --stderr 
++
++                if $done_twists > 5 {
++                    error make "That's too many! My head is spinning 🤣"
++                }
+=            }
++
++            # Update the state for other steps. This will be merged.
++            { twists: ($twists_so_far + $how_many) }
+=        }
+=    }
+=}
+```
+
+``` diff
+index afb7882..e8512cd 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -6,23 +6,44 @@ export def run [steps: record]: string -> nothing {
+=        | print
+=    }
+=    | lines
+-    | each { handle incoming $steps }
++    | reduce --fold {} { |line, state|
++        print --stderr  "State before the step"
++        $state | print --stderr 
++        
++        $line
++        | handle incoming $state $steps
++        | let state_update
++
++        print --stderr "Record update"
++        $state_update | describe --detailed | print --stderr 
++
++        if ($state_update | describe | str starts-with "record") {
++            $state | merge $state_update
++        } else {
++            print --stderr $"Not a record: ($state_update)"
++            $state
++        }
++    }
+=
+=    print --stderr "Interpreter done."
+=}
+=
+-def "handle incoming" [steps: record] {
++def "handle incoming" [
++    state: record,
++    steps: record,
++] {
+=    let incoming = $in | from json
+=
+=    print --stderr --raw  $incoming
+=    match $incoming.type {
+=        Execute => {
+=            try {
+-                let step = $incoming.step
++                let step = $incoming.step | insert state $state
+=                print --stderr $"Executing step ($step.description)"
+=                let closure = $steps | get $step.variant
+-                do $closure ...$step.arguments $step
++                let state_update = do $closure ...$step.arguments $step
+=                { type: Success } | to json --raw | print
++                $state_update
+=            } catch { |err|
+=                {
+=                    type: Failure,
+```
+
+# Convert the stderr logging to TBB observations
+
+Recently I've started working on observations API for TBB. It allows to
+collect additional information during steps execution. Currently only
+two types of observation are implemented:
+
+  - text (just a string)
+  - snippet, rendered as a code block with:
+    - language (like json or rust)
+    - content (the code)
+    - optional metadata
+    - optional caption
+
+Accordingly TBB exports two commands:
+
+  - `observe text`
+  - `observe snippet`
+
+Both take content as input, allow a custom transformation before
+sending the observation (as demonstrated in basic.nu interpreter) and
+output the original value. This is important, as it allows to make
+observations from the middle of a pipeline.
+
+The `observe snippet` by default sends a formatted Nushell table, with
+language set to "table". To send code, one can use `--raw <language>`
+flag. If the language is anything else than Nuon (Nushell Object
+Notation), then the code should be a string (use transform if the input
+is not a string already). As a special (but likely common) case,
+structure data can be piped with `--raw nuon` and will be handled
+correctly (although not formatter, i.e. the code will be all on a single
+line). This is thanks to the fact that Nushell will serialize any
+data structure to a Nuon string.
+
+Finally the `--caption` flag is useful to explain what the snippet
+represents. The text command doesn't have such a flag, as a text
+observaion should be self-explanatory.
+
+The `tbb` module itself is making a lot of observations. I'm still
+trying to find out what is the best practice here, but I think it's good
+to make generous observations, as they will all be hidden in a
+successful scenario report. Should the scenario fail, the observations
+can aid debugging.
+
+In general, after the initial trouble with I/O, I think Nushell might be
+a great platform for TBB interpreters.
+
+``` diff
+index 671416e..745410f 100644
+--- a/flake.lock
++++ b/flake.lock
+@@ -849,11 +849,11 @@
+=        "systems": "systems_2"
+=      },
+=      "locked": {
+-        "lastModified": 1775638737,
+-        "narHash": "sha256-h2QcCWhV7hA+v8Tmyh5zmiZmeDLj23Rh5ciJwWiuhJI=",
++        "lastModified": 1776280929,
++        "narHash": "sha256-Z6wXuMFjoRzeCgMSEhb1H93w5SoqtfC539ZRdemaDEU=",
+=        "ref": "refs/heads/main",
+-        "rev": "ed447ca6ee1a377bf4afcde6a785fdc0870e4f13",
+-        "revCount": 162,
++        "rev": "b70531b7ce4b77625cd8824842d5b0cdb62a2b88",
++        "revCount": 163,
+=        "type": "git",
+=        "url": "http://codeberg.org/tad-lispy/tad-better-behavior"
+=      },
+```
+
+``` diff
+index 3b4cbac..801b3f1 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -3,8 +3,12 @@ use tbb.nu
+=def main [] {
+=    tbb run {
+=        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-            print --stderr $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-            $data.code_blocks | first | get value | print --stderr 
++            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
++            | tbb observe text --transform { str upcase }
++            $data.code_blocks
++            | first
++            | tbb observe snippet --caption "Received code block"
++            | ignore # Do not send any state update.
+=        },
+=        "Do the twist {0} times": { |how_many, data|
+=            # All arguments (except data) are passed as strings
+@@ -20,14 +24,15 @@ def main [] {
+=            for n in 1..$how_many {
+=                let done_twists = $n + $twists_so_far
+=
+-                $"Doing the twist ($done_twists) 🕺" | print --stderr 
++                $"Doing the twist ($done_twists) 🕺"
++                | tbb observe text 
+=
+=                if $done_twists > 5 {
+=                    error make "That's too many! My head is spinning 🤣"
+=                }
+=            }
+=
+-            # Update the state for other steps. This will be merged.
++            # Update the state for other steps. This record will be merged into the previous state.
+=            { twists: ($twists_so_far + $how_many) }
+=        }
+=    }
+```
+
+``` diff
+index e8512cd..45dc7f5 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -7,20 +7,20 @@ export def run [steps: record]: string -> nothing {
+=    }
+=    | lines
+=    | reduce --fold {} { |line, state|
+-        print --stderr  "State before the step"
+-        $state | print --stderr 
++        $state
++        | observe snippet --caption "State before the step" 
+=        
+=        $line
+=        | handle incoming $state $steps
+=        | let state_update
+=
+-        print --stderr "Record update"
+-        $state_update | describe --detailed | print --stderr 
+-
+-        if ($state_update | describe | str starts-with "record") {
++        if ($state_update | describe --detailed | $in.type == "record") {
++            $state_update
++            | observe snippet --caption "State update to be merged"
+=            $state | merge $state_update
+=        } else {
+-            print --stderr $"Not a record: ($state_update)"
++            $state_update
++            | observe snippet --caption "The value returned by the step is not a record; Not updating"
+=            $state
+=        }
+=    }
+@@ -32,14 +32,19 @@ def "handle incoming" [
+=    state: record,
+=    steps: record,
+=] {
+-    let incoming = $in | from json
++    $in
++    | observe snippet --raw "json" --caption  "Received input"
++    | from json
++    | observe snippet --caption  "Decoded control message"
++    | let incoming
+=
+-    print --stderr --raw  $incoming
+=    match $incoming.type {
+=        Execute => {
+=            try {
+-                let step = $incoming.step | insert state $state
+-                print --stderr $"Executing step ($step.description)"
++                $incoming.step
++                | insert state $state
++                | let step
++
+=                let closure = $steps | get $step.variant
+=                let state_update = do $closure ...$step.arguments $step
+=                { type: Success } | to json --raw | print
+@@ -57,3 +62,56 @@ def "handle incoming" [
+=        }
+=    }
+=}
++
++export def "observe snippet" [
++    --raw: string,
++    --caption: string,
++    --meta: string = "",
++    --transform: closure
++]: any -> any {
++    # By default transform is identity
++    $transform
++    | default { {||} }
++    | let transform
++
++    $in
++    | do $transform
++    | let transformed
++    | if ($raw | is-empty) { table --expand } else { $in }
++    | let formatted
++
++    {
++        type: Snippet
++        caption: $caption,
++        language: ($raw | default "table"),
++        meta: $meta,
++        content: ($formatted | default "nothing")
++    }
++    | to json --raw
++    | print
++
++    $in # Pass the value on
++}
++
++export def "observe text" [
++    --transform: closure
++] {
++    # By default transform is identity
++    $transform
++    | default { {||} }
++    | let transform
++
++    $in
++    | do $transform
++    | let formatted
++
++
++    {
++        type: Text
++        content: $formatted
++    }
++    | to json --raw
++    | print 
++
++    $in # Pass the value on
++}
+```
+
+# Allow setting initial state of a TBB interpreter
+
+Now with the `--initial-state` flag to `tbb run` command, an interpreter
+can set an initial state. This simplifies steps implementation, as they
+don't have to worry about expected state missing - as evidenced by the
+"Do the twist" step.
+
+The only remaining plumbing in the steps is type conversion from string.
+It would be very nice to have it done implicitly and in a generic
+fashion (i.e. in the `tbb` module).
+
+``` diff
+index 801b3f1..517943f 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -1,7 +1,7 @@
+=use tbb.nu
+=
+=def main [] {
+-    tbb run {
++    tbb run --initial-state { twists: 0 } {
+=        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+=            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+=            | tbb observe text --transform { str upcase }
+@@ -16,13 +16,8 @@ def main [] {
+=            $how_many | into int | let how_many
+=
+=            # This step demonstrates use of state. We count the total number of twists.
+-            $data.state
+-            | get --optional "twists"   # On first run it won't be there
+-            | default 0                 # ...so we need an initial value
+-            | let twists_so_far
+-            
+=            for n in 1..$how_many {
+-                let done_twists = $n + $twists_so_far
++                let done_twists = $n + $data.state.twists
+=
+=                $"Doing the twist ($done_twists) 🕺"
+=                | tbb observe text 
+@@ -33,7 +28,7 @@ def main [] {
+=            }
+=
+=            # Update the state for other steps. This record will be merged into the previous state.
+-            { twists: ($twists_so_far + $how_many) }
++            { twists: ($data.state.twists + $how_many) }
+=        }
+=    }
+=}
+```
+
+``` diff
+index 45dc7f5..b2d1284 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,4 +1,7 @@
+-export def run [steps: record]: string -> nothing {
++export def run [
++    steps: record
++    --initial-state: record = {}
++]: string -> nothing {
+=    tee { # This preserves the input stream for the lines command
+=        print --stderr "Interpreter listening..."
+=        { type: InterpreterState, ready: true }
+@@ -6,7 +9,7 @@ export def run [steps: record]: string -> nothing {
+=        | print
+=    }
+=    | lines
+-    | reduce --fold {} { |line, state|
++    | reduce --fold $initial_state { |line, state|
+=        $state
+=        | observe snippet --caption "State before the step" 
+=
+```
\ No newline at end of file
new file mode 100644
index 0000000..928595e
--- /dev/null
+++ b/content/devlog/2026-04-15-tad-better-behavior.md
@@ -0,0 +1,136 @@
+---
+title: Tad Better Behavior
+extra:
+  projects:
+  - Tad Better Behavior
+
+---
+
+Commits: 1
+
+
+# Allow an optional caption for snippet observations
+
+It's often useful to explain what the snippet is about. A dedicated
+caption should be better than sending a text observation right before
+the snippet. In HTML or other rich export formats it can be rendered
+in a pretty and semantically correct way, i.e. with structural
+connection to the snippet.
+
+``` diff
+index 96dc34a..eee3d46 100644
+--- a/samples/basic.py
++++ b/samples/basic.py
+@@ -58,8 +58,11 @@ def step_implementation_06(word: str, reverse: str, **kwargs):
+=@step("The following tables map words to their lengths")
+=def step_implementation_07(**kwargs):
+=    for table in kwargs["tables"]:
+-        send_text(f"Received a table with {len(table)} x {len(table[0])} cells")
+-        send_snippet("json", json.dumps(table, indent=2))
++        send_snippet(
++            "json",
++            json.dumps(table, indent=2),
++            caption = f"A {len(table)} x {len(table[0])} table"
++        )
+=        
+=        # Skip the first row - it's a heading
+=        for [word, length] in table[1:]:
+```
+
+``` diff
+index 86d94af..4787ef4 100644
+--- a/spec/basic-usage.md
++++ b/spec/basic-usage.md
+@@ -208,7 +208,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=          code blocks: 1, tables: 2
+=          source: samples/basic.md:59-93
+=
+-          > Received a table with 6 x 2 cells
++          A 6 x 2 table:
+=
+=          \``` json
+=          [
+@@ -254,8 +254,7 @@ When a directory is given as the last argument, load all documents inside (recur
+=          > Is 'minx' 4 characters long? I think it's 4.
+=
+=
+-          > Received a table with 4 x 2 cells
+-
++          A 4 x 2 table:
+=
+=          \``` json
+=          [
+```
+
+``` diff
+index cf3096f..8e8f0db 100644
+--- a/spec/tbb.py
++++ b/spec/tbb.py
+@@ -193,14 +193,15 @@ def send_text(content):
+=        "content": content,
+=    })
+=
+-def send_snippet(language, content, meta = ""):
++def send_snippet(language, content, meta = "", caption = None):
+=    """ Send a snippet of code to be displayed in a TBB report
+=    """
+=    send({
+=        "type": "Snippet",
+=        "language": language,
+=        "content": content,
+-        "meta": meta
++        "meta": meta,
++        "caption": caption,
+=    })
+=    
+=
+```
+
+``` diff
+index 57da103..6bc03b3 100644
+--- a/src/report.rs
++++ b/src/report.rs
+@@ -177,11 +177,13 @@ impl<'a> ScenarioReport<'a> {
+=                        language,
+=                        meta,
+=                        content,
++                        caption,
+=                    } => {
+=                        observations.push(Observation::Snippet {
+=                            language,
+=                            meta,
+=                            content,
++                            caption,
+=                        });
+=                    }
+=                    InterpreterMessage::Link { url, label } => {
+@@ -292,6 +294,7 @@ pub enum Observation {
+=        language: String,
+=        meta: String,
+=        content: String,
++        caption: Option<String>,
+=    },
+=    // Image,
+=    // Audio,
+@@ -310,7 +313,12 @@ impl Display for Observation {
+=                language,
+=                meta,
+=                content,
++                caption,
+=            } => {
++                if let Some(caption) = caption {
++                    writeln!(f, "{caption}:")?;
++                    writeln!(f, "")?;
++                }
+=                writeln!(f, "``` {language} {meta}")?;
+=                writeln!(f, "{content}")?;
+=                writeln!(f, "```")
+@@ -508,6 +516,7 @@ pub enum InterpreterMessage {
+=        language: String,
+=        meta: String,
+=        content: String,
++        caption: Option<String>,
+=    },
+=    Link {
+=        url: String,
+```
\ No newline at end of file
new file mode 100644
index 0000000..68868da
--- /dev/null
+++ b/content/devlog/2026-04-16-devlog-excavator.md
@@ -0,0 +1,453 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 3
+
+
+# Write a spec for a list subcommand
+
+The spec describes misadventures of Alice and Bob, working on a
+high-tech Project Alpha.
+
+The subcommand is not implemented yet, and the interpreter is not ready
+to evaluate it, but that's how we roll in the BDD club.
+
+``` diff
+index d426ca8..3303b7f 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -2,42 +2,149 @@
+=interpreter: nu --stdin spec/interpreters/basic.nu
+=---
+=
+-# Basic
++# The Dev Log Excavator
+=
+-This program generates a devlog for tad-lispy.com
++This program excavates a devlog (i.e. a bunch of .md files) from commit messages in multiple repositories.
+=
+-## Sample data
++
++## The `list` Subcommand
+=
+=IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+-## Get all projects
++  * Write `weblog.toml`
++    
++    ``` toml
++    [[projects]]
++    name = "Project Alpha"
++    path = "./project-alpha"
++    ```
++  
++  * Initialize a git repository `project-alpha`
+=
+-We need a mapping from `project-name` to `path`. This should sit in `projects.yaml`
++  * Write `README.md`
++  
++    ``` markdown
++    # This is Project Alpha
++    
++    The best project ever. Like seriosuly.
++    ```
++    
++  * On `2026-03-27 13:22` commit as `Alice <alice@example.com>`
++  
++    ``` text
++    Write a readme
++    
++    It's very exciting to start a new project.
++    ```
++    
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println ("Hello, World!")
++    }
++    ```
+=
+-The listing of all paths with names guessed from path can be obtained like this:
++  * On `2026-03-27 14:06` commit as `Bob <bob@example.com>`
++  
++    ``` text
++    Implement an MVP
++    
++    I need to keep my phone charged. Investors are going to call any minute now.
++    ```
++  
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println!("Hello, World!")
++    }
++    ```
+=
+-``` nushell
+-glob ~/Projects/**/.git 
+-| path dirname 
+-| each { |p| { name: ($p | path basename), path: $p } } 
+-| transpose --as-record -r 
+-| save --force all-projects.yaml
+-```
++  * Write `CHANGELOG.md`
++     
++    ``` markdown
++    # v1.0.0
++    
++    * Now it's working
++   ```
+=
++  * On `2026-03-28 03:06` commit as `Alice <alice@example.com>`
++  
++      Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
++      
++    ``` text
++    Make Project Alpha work
++    
++    Coding hard. I should have used Tad Better Behavior to test my stuff.
++    ```
+=
+-## Get days
++  * Write `LICENSE`
++  
++  ``` text
++  All rights reserved! You monkeys better not even look at my pro codes.
++  ```
++  
++  
++  * On `2026-04-01 09:03` commit as `Bob <bob@example.com>`
++  
++    Two days later
++      
++    ``` text
++    I've lawyered up
++    
++    With a perl like this project, I have to protect my IP.
++    ```
++    
++  * Write `src/main.rs`
++     
++    ``` rust
++    fn main() {
++        println ("Eat 💩, Bob!")
++    }
++    ```
+=
+-I want a list with `start` and `end` timestamps. It should support `--since` and `--until`. Until should by default be 4 A.M. today.  Since will be supplied based on the last entry in the devlog (details tbd). First day should be from `since`, i.e. it probably won't be a full day, but a fraction.
++  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
++  
+=
+-An arbitrary date with a given time can be obtained with the following:
++      
++    ``` text
++    I quit
++    
++    Bob is an asshole.
++    ```
+=
+-``` nu
+-("04:00" | date from-human) - 1day
+-```
++  * Run the `devlog list --projects-path .` command
++  
++  * Expect the output to contain `the heading row`
+=
+-So maybe I can just loop until I reach the time before `since`, emit the last fraction and break?
++    It contains column names, as produced by Nushell. The output format should be configurable.
++    
++    ``` regexp
++    
++    | day +\| time +\| sha +\| author +\| email +\| title +\| project +\| path +\|
++    ```
++  * Expect the output to contain `the first commit from Alice`
++  
++    ``` regex
++    | 2026-04-26 | 2026-04-27 13:22:00 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Make Project Alpha work +\| Project Alpha +| .+/project-alpha/ +|
++    ```
++
++  * Expect the output to contain `the late night commit from Alice`
++  
++    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
++    
++    ``` regex
++    | 2026-03-27 | 2026-03-28 03:06 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Write a readme +\| Project Alpha +| .+/project-alpha/ +|
++    ```
++
++  * Expect the output to contain `the silly commit from Bob`
++  
++    ``` regex
++    | 2026-04-01 | 2026-04-01 09:03 +\| [0-9a-f]+ +\| Bob +\| bob@example.com +\| I've lawyered up +\| Project Alpha +| .+/project-alpha/ +|
++    ```
+=
+-## Generate the drafts
++## The `excavate` Subcommand
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
+=
+```
+
+# Correct `devlog list` scenario
+
+The nushell tables are delimited not with pipe characters `|`, but with
+a special unicode symbol `│`. The good thing about it is that, unlike
+pipe characters, they don't need to be escaped.
+
+For now the command has `.nu` extension, so that how it needs to be
+called. I'm thinking about a way to change it. Maybe just rename the
+file?
+
+I've also removed the test scenario. It's going to be copied to the
+TBB project itself, together with `tbb.nu`.
+
+``` diff
+index 3303b7f..9a1451b 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -9,6 +9,10 @@ This program excavates a devlog (i.e. a bunch of .md files) from commit messages
+=
+=## The `list` Subcommand
+=
++``` yaml tbb
++tags: [ focus ]
++```
++
+=IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
+=
+=  * Write `weblog.toml`
+@@ -19,7 +23,7 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    path = "./project-alpha"
+=    ```
+=  
+-  * Initialize a git repository `project-alpha`
++  * Initialize a git repository at `project-alpha`
+=
+=  * Write `README.md`
+=  
+@@ -114,20 +118,25 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Bob is an asshole.
+=    ```
+=
+-  * Run the `devlog list --projects-path .` command
++  * Change directory to `..`
++  
++    Leave the repository and go back to where the config file is.
++
++  * Run the `devlog.nu list --projects-dir .` command
++  
++    TODO: Make it `devlog list`, without the extension,
+=  
+=  * Expect the output to contain `the heading row`
+=
+=    It contains column names, as produced by Nushell. The output format should be configurable.
+=    
+=    ``` regexp
+-    
+-    | day +\| time +\| sha +\| author +\| email +\| title +\| project +\| path +\|
++    │ day +│ time +│ sha +│ author +│ email +│ title +│ project +│ path +│
+=    ```
+=  * Expect the output to contain `the first commit from Alice`
+=  
+=    ``` regex
+-    | 2026-04-26 | 2026-04-27 13:22:00 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Make Project Alpha work +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-04-26 +│ 2026-04-27 13:22:00 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Make Project Alpha work +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=  * Expect the output to contain `the late night commit from Alice`
+@@ -135,13 +144,13 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    | 2026-03-27 | 2026-03-28 03:06 +\| [0-9a-f]+ +\| Alice +\| alice@example.com +\| Write a readme +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-03-27 │ 2026-03-28 03:06 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Write a readme +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+=  
+=    ``` regex
+-    | 2026-04-01 | 2026-04-01 09:03 +\| [0-9a-f]+ +\| Bob +\| bob@example.com +\| I've lawyered up +\| Project Alpha +| .+/project-alpha/ +|
++    │ 2026-04-01 │ 2026-04-01 09:03 +│ [0-9a-f]+ +│ Bob +│ bob@example.com +│ I've lawyered up +│ Project Alpha +│ .+/project-alpha/ +│
+=    ```
+=
+=## The `excavate` Subcommand
+@@ -198,16 +207,3 @@ A project can be flagged to be ignored with the `ignore` key.
+=
+=Any project that is not listed, but had activity within the period for which a devlog is being generated should produce a warning with useful instructions.
+=
+-## Interpreter test
+-
+-This is not real spec, just a quick test of the WIP interpreter.
+-
+-  * Do the twist `2` times
+-
+-  * Do something `nice` and then `sleep` for `2` hours
+-  
+-    ``` text
+-    Zzzzz.....
+-    ```
+-
+-  * Do the twist `4` times
+```
+
+# Write the real interpreter for the basic TBB suite
+
+The spec is not satisfied yet, so the evaluation fails, but I believe
+the interpreter is correct. Now finally off to work to implement the
+`devlog list` command 😅
+
+``` diff
+index 517943f..69c1644 100644
+--- a/spec/interpreters/basic.nu
++++ b/spec/interpreters/basic.nu
+@@ -1,34 +1,82 @@
+=use tbb.nu
+=
+=def main [] {
+-    tbb run --initial-state { twists: 0 } {
+-        "Do something {0} and then {1} for {2} hours": { |how, what, how_long, data|
+-            $"OK boss. I will do something ($how) for ($how_long) hours and then I'll ($what)"
+-            | tbb observe text --transform { str upcase }
++    tbb run --initial-state { pwd: (mktemp --directory ) } {
++        "Write {0}": { |filename, data|
++            $data.state.pwd
++            | path join $filename
++            | tbb observe text --transform { $"Writing content to ($in)" }
++            | let path
++            | path dirname
++            | tbb observe text --transform  { $"Parent directory ($in)" }
++            | mkdir $in
++            
++            
+=            $data.code_blocks
+=            | first
+-            | tbb observe snippet --caption "Received code block"
+-            | ignore # Do not send any state update.
++            | get value
++            | save --force $path
+=        },
+-        "Do the twist {0} times": { |how_many, data|
+-            # All arguments (except data) are passed as strings
+-            # TODO: Can we cast them based on closure parameter types?
+-            $how_many | into int | let how_many
+=
+-            # This step demonstrates use of state. We count the total number of twists.
+-            for n in 1..$how_many {
+-                let done_twists = $n + $data.state.twists
++        "Initialize a git repository at {0}": {|dirname, data|
++            cd $data.state.pwd
++            mkdir $dirname
++            cd $dirname
++            
++            git init
++            | complete
++            | tbb observe snippet --caption "Output from git init"
+=
+-                $"Doing the twist ($done_twists) 🕺"
+-                | tbb observe text 
+=
+-                if $done_twists > 5 {
+-                    error make "That's too many! My head is spinning 🤣"
+-                }
+-            }
++            { pwd: (pwd) }
++        },
++
++        "On {0} commit as {1}": { |time, author, data|
++            cd $data.state.pwd
+=
+-            # Update the state for other steps. This record will be merged into the previous state.
+-            { twists: ($data.state.twists + $how_many) }
++            git add .
++            
++            $data.code_blocks
++            | first
++            | get value
++            | git commit --date $time --author $author --message $in
++            | tbb observe text
++            | ignore
++        },
++        "Change directory to {0}": { |destination, data|
++            $data.state.pwd
++            | path join $destination
++            | { pwd: $in }
++        }
++        
++        "Run the {0} command": { |command, data|
++            pwd
++            # | path join "bin/"
++            | tbb observe text --transform  { $"Adding Devlog Excavator directory ($in) to PATH" }
++            | let devlog_path
++
++            $env.PATH = $env.PATH
++            | append $devlog_path
++            | tbb observe snippet --caption "Path environment variable"
++
++            cd $data.state.pwd
++
++            $command
++            | tbb shell $in
++            | { output: $in }
++        },
++        "Expect the output to contain {0}": { |label, data|
++            $data.code_blocks
++            | first
++            | get value
++            | let pattern
++            | tbb observe snippet --caption "The needle"
++            
++            $data.state.output
++            | ansi strip
++            | tbb observe snippet --caption "The haystack"
++            | tbb assert match  $pattern
+=        }
+=    }
+=}
++
+```
+
+``` diff
+index b2d1284..0bf7a1d 100644
+--- a/spec/interpreters/tbb.nu
++++ b/spec/interpreters/tbb.nu
+@@ -1,3 +1,5 @@
++use std/assert
++
+=export def run [
+=    steps: record
+=    --initial-state: record = {}
+@@ -118,3 +120,27 @@ export def "observe text" [
+=
+=    $in # Pass the value on
+=}
++
++export def "shell" [command: string]: string -> record {
++    $in
++    | sh -c $command
++    | complete
++    | observe snippet --caption $"Results of running `($command)`"
++    | if $in.exit_code != 0 {
++        error make {
++            msg: $"Command exited with code ($in.exit_code)",
++            labels: [{ text: $"Command:\n($command)", span: (metadata $command).span }]
++        }
++    } else {
++        $in.stdout
++    }
++}
++
++export def "assert match" [
++    pattern: string
++]: string -> string {
++    assert ($in | find --regex $pattern | is-not-empty) --error-label {
++        text: "Pattern not found in the input",
++        span: (metadata $pattern).span
++    }
++}
+```
\ No newline at end of file
new file mode 100644
index 0000000..2db1eb6
--- /dev/null
+++ b/content/devlog/2026-04-17-devlog-excavator.md
@@ -0,0 +1,474 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 4
+
+
+# Fix indentation in the spec
+
+Looks like TBB is really tripped off by misaligned backticks. It doesn't
+produce a readable error, sometimes fails to recognize steps beyond the
+borked region. This is really bad, because it may lead to positive
+evaluation result, while in reality some steps (or even whole scenarios)
+are not evaluated.
+
+``` diff
+index 9a1451b..e61e1af 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -71,11 +71,11 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    # v1.0.0
+=    
+=    * Now it's working
+-   ```
++    ```
+=
+=  * On `2026-03-28 03:06` commit as `Alice <alice@example.com>`
+=  
+-      Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
++    Notice that it's logically the same day - any work done until 04:00 AM is considered to belong to the previous day.
+=      
+=    ``` text
+=    Make Project Alpha work
+@@ -85,9 +85,9 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=
+=  * Write `LICENSE`
+=  
+-  ``` text
+-  All rights reserved! You monkeys better not even look at my pro codes.
+-  ```
++    ``` text
++    All rights reserved! You monkeys better not even look at my pro codes.
++    ```
+=  
+=  
+=  * On `2026-04-01 09:03` commit as `Bob <bob@example.com>`
+```
+
+# Implement the listing spec
+
+Also modify it in some respects. I decided not to have a sub-command for
+listing, but instead use the main command with `--dry-run` flag for the
+purpose of listing.
+
+Some parts of devlog code are dead now and will most likely be removed.
+The logic around getting the log is completely overhauled.
+
+``` diff
+index d27f57c..6677495 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -1,5 +1,100 @@
+=#!/usr/bin/env nu
+=
++use std/log
++
++def main [
++    --since: datetime = 1970-01-01          # How far back should we look?
++    --until: datetime                       # When did you last committed anything good?
++    --projects-dir: path = "~/Projects",    # Where do you keep your projects?
++    --day-start: string = "04:00"           # Until how late can you code?
++    --out-dir: path = "drafts"              # Where to write excavated posts
++    --config-file: path = "devlog.toml"     # The configuration file
++    --dry-run                               # Just list the commits to excavate
++] {
++    # Read the config file, process and set some defaults
++    # TODO: DRY with `main list`
++    open $config_file
++    | update projects { update path { path expand } } # Resolve all project paths
++    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path }
++    | let config
++
++    $until | default (date now) | let until
++    
++    $projects_dir
++    | projects
++    | each { project log $since $until }
++    | flatten
++    | update time { |commit| $commit.time | into datetime }
++    | insert day { 
++        get time
++        | if ($in | format date %T) < $day_start {
++           $in - 1day
++        } else {
++          $in
++        }
++        | format date %F
++    }
++    | insert project { |commit|
++        $config.projects
++        | where path == $commit.path
++        | first
++        | get name
++    }
++    | move day project author email subject time sha path --first
++    | let commits
++
++    if $dry_run {
++        $commits
++        | update time { format date }
++        | print 
++        exit 0
++    }
++    
++    # TODO: Allow setting in a config file
++    mkdir $out_dir
++
++    # for project_path in ($projects_dir | projects) {
++    #     let project = 
++    #     if ($project | is-empty) {
++    #         continue
++    #     }
++
++    #     let project_slug = $project.name | str kebab-case
++
++    #     if ($project | get --optional ignore | default false ) {
++    #         continue
++    #     }
++
++    #     # TODO: Iterate over days and write to a file
++    #     for day in (main days $since) {
++    #         let date = $day.start | format date %Y-%m-%d
++    #         let out_path = ($out_dir | path join $"($date)-($project_slug).md")
++
++    #         try {
++    #             # TODO: Catch and print errors
++    #             $project_path
++    #             | project log $day.start $day.end
++    #             | reverse
++    #             | let log
++
++    #             if ($log | is-empty) {
++    #                 "No commits on that day"
++    #                 continue
++    #             }
++
++    #             $log
++    #             | format log $project.name $config
++    #             | save --force $out_path
++    #         } catch { |error|
++    #             print --stderr $"Project path: ($project_path)"
++    #             print --stderr $"Date: ($date)"
++    #             print --stderr $"Output path: ($out_path)"
++    #             print --stderr $error.rendered
++    #         }
++    #     }
++        
++    # }
++}
+=def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+@@ -17,38 +112,54 @@ def "main days" [
+=    | take while { |day| $day.start < $day.end }
+=}
+=
+-def "main projects" [
+-    path: path
+-]: nothing -> list<path> {
+-    $path
++def "projects" []: path -> list<path> {
++    $in
+=    | path join "**/.git"
+=    | glob $in
+=    | path dirname
+=}
+=
+-def "main project log" [
+-    path: path,
++def "project log" [
+=    since: datetime,
+=    until: datetime,
+-] {
+-    let log_format = "<--- commit --->%n%s%n<--- part --->%n%b%n<--- part --->%n"
+-    cd $path
+-
+-    # Debugging:
+-    # print $env.PWD
+-    # let git_command = $'git log --since ($since | format date %+) --until ($until | format date %+) --unified --format="($log_format)"'
+-    # print $git_command
+-
+-    # TODO: Handle binary stream somehow coming from Erna's log
+-    # This is a workaround for `skip` swallowing errors
+-    let chunks = git log --since=($since | format date %+) --until=($until | format date %+) --patch --format=($log_format)
+-    | split row "\n<--- commit --->\n"
+-
+-    $chunks
+-    | skip 1 # First is empty
+-    | split column "\n<--- part --->\n"
+-    | rename "subject" "body" "diff" 
+-    | update "diff" { | row | $row.diff | split row --regex "\ndiff --git .+" | skip 1 }
++]: path -> list {
++    let project_path = $in
++
++    cd $project_path
++
++    let format = {
++      "%s": "subject",
++      "%ad": "time",
++      "%an": "author",
++      "%ae": "email",
++      "%H": "sha",
++    }
++
++    $format
++    | columns
++    | each { $"⸨($in)⸩" } # Wrap in a double quote
++    | str join " "
++    | let log_format
++
++    
++    $format
++    | values
++    | each { $"⸨{($in)}⸩" } # Wrap in a double quote and a curly brace
++    | str join " "
++    | let parse_format
++
++    log debug $"Log format ($log_format)"
++    log debug $"Parse format ($parse_format)"
++
++    $log_format
++    | $"git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)"
++    | log info $in
++
++    $log_format
++    | git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)
++    | parse $parse_format
++    | reverse
++    | insert path $project_path
+=}
+=
+=def "format commit" [] {
+@@ -84,61 +195,3 @@ def "format log" [
+=        ($in | each { | commit | format commit } | str join "\n\n")
+=    ] | str join "\n"
+=}
+-
+-def main [
+-    since: datetime,
+-    --projects-dir: path = "~/Projects",
+-    --day-start: string = "04:00"
+-    --out-dir: path = "drafts"
+-    --config-file: path = "devlog.toml"
+-] {
+-    # Read the config file, process and set some defaults
+-    let config = open $config_file
+-    | update projects { update path { path expand } } # Resolve all project paths
+-    | upsert frontmatter.projects_cell_path { default { [ extra projects ] } | into cell-path } 
+-
+-    # TODO: Allow setting in a config file
+-    mkdir $out_dir
+-
+-    for project_path in (main projects $projects_dir) {
+-        let project = $config.projects
+-        | where path == $project_path
+-        | first
+-
+-        if ($project | is-empty) {
+-            continue
+-        }
+-
+-        let project_slug = $project.name | str kebab-case
+-
+-        if ($project | get --optional ignore | default false ) {
+-            continue
+-        }
+-
+-        # TODO: Iterate over days and write to a file
+-        for day in (main days $since) {
+-            let date = $day.start | format date %Y-%m-%d
+-            let out_path = ($out_dir | path join $"($date)-($project_slug).md")
+-
+-            try {
+-                # TODO: Catch and print errors
+-                let log = main project log $project_path $day.start $day.end | reverse
+-
+-                if ($log | is-empty) {
+-                    "No commits on that day"
+-                    continue
+-                }
+-
+-                $log
+-                | format log $project.name $config
+-                | save --force $out_path
+-            } catch { |error|
+-                print --stderr $"Project path: ($project_path)"
+-                print --stderr $"Date: ($date)"
+-                print --stderr $"Output path: ($out_path)"
+-                print --stderr $error.rendered
+-            }
+-        }
+-        
+-    }
+-}
+```
+
+``` diff
+index e61e1af..cd8528d 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -7,15 +7,15 @@ interpreter: nu --stdin spec/interpreters/basic.nu
+=This program excavates a devlog (i.e. a bunch of .md files) from commit messages in multiple repositories.
+=
+=
+-## The `list` Subcommand
++## Listing Commits to Excavate
+=
+=``` yaml tbb
+=tags: [ focus ]
+=```
+=
+-IT should eventually be possible to evaluate this spec using TBB. The difficulty is, that any sample data to work on needs to be a git repository, while this project itself is version controlled using git. One way would be to have TBB make commits with fabricated dates, using `git commit --date`.
++Before you excavate, it might be smart to list the commits. You can use `--dry-run` flag for that. Consider the following scenario.
+=
+-  * Write `weblog.toml`
++  * Write `devlog.toml`
+=    
+=    ``` toml
+=    [[projects]]
+@@ -80,7 +80,7 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    ``` text
+=    Make Project Alpha work
+=    
+-    Coding hard. I should have used Tad Better Behavior to test my stuff.
++    Coding is hard for Bob. He should have used Tad Better Behavior to test his stuff before pushing it to prod!
+=    ```
+=
+=  * Write `LICENSE`
+@@ -109,8 +109,6 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    ```
+=
+=  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
+-  
+-
+=      
+=    ``` text
+=    I quit
+@@ -118,39 +116,44 @@ IT should eventually be possible to evaluate this spec using TBB. The difficulty
+=    Bob is an asshole.
+=    ```
+=
++TODO: Setup a second project.
++
+=  * Change directory to `..`
+=  
+=    Leave the repository and go back to where the config file is.
+=
+-  * Run the `devlog.nu list --projects-dir .` command
++  * Run the `devlog.nu --projects-dir . --dry-run` command
+=  
+=    TODO: Make it `devlog list`, without the extension,
+=  
+-  * Expect the output to contain `the heading row`
++  * Expect the output to contain `the header row`
+=
+=    It contains column names, as produced by Nushell. The output format should be configurable.
+=    
+=    ``` regexp
+-    │ day +│ time +│ sha +│ author +│ email +│ title +│ project +│ path +│
++    │ +# +│ ++day +│ +project +│ +author +│ +email +│ +subject +│ +time +│ +sha +│ +path +│
+=    ```
++
+=  * Expect the output to contain `the first commit from Alice`
+-  
++
+=    ``` regex
+-    │ 2026-04-26 +│ 2026-04-27 13:22:00 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Make Project Alpha work +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
++      > NOTE: To make the spec portable, the timezone, sha and part of the path has to be expressed as wildcard.
++
+=  * Expect the output to contain `the late night commit from Alice`
+=  
+-    Notice that the logical day is one before the actual day (in the second column), because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
++    Notice that the logical day (in the second column) is one before the actual day (in the seventh column). That's because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    │ 2026-03-27 │ 2026-03-28 03:06 +│ [0-9a-f]+ +│ Alice +│ alice@example.com +│ Write a readme +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+=  
+=    ``` regex
+-    │ 2026-04-01 │ 2026-04-01 09:03 +│ [0-9a-f]+ +│ Bob +│ bob@example.com +│ I've lawyered up +│ Project Alpha +│ .+/project-alpha/ +│
++    │ +3 +│ +2026-04-01 +│ +Project Alpha +│ +Bob +│ +bob@example.com +│ +I've lawyered up +│ +Wed, 1 Apr 2026 09:03:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=## The `excavate` Subcommand
+```
+
+# Write some thoughts about limiting time span and grouping
+
+
+
+``` diff
+index cd8528d..c0ffaca 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -156,6 +156,16 @@ TODO: Setup a second project.
+=    │ +3 +│ +2026-04-01 +│ +Project Alpha +│ +Bob +│ +bob@example.com +│ +I've lawyered up +│ +Wed, 1 Apr 2026 09:03:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
++## Grouped view
++
++When using `--dry-run` it might be useful to see the commits grouped by project and day. Maybe there should be another flag? Or value?
++
++
++## Limiting the time span
++
++With `--since` and `--until` flags you can select a span of time from which commits are excavated.
++
++
+=## The `excavate` Subcommand
+=
+=For each day run `git log` in each project. If there is any output, dump it to `devlog/<date>/<project-name>.md`. So each file should contain a log from a single project that was developed on a given day.
+```
+
+# Export the main function, let it return data
+
+Now it's possible to do something like:
+
+❯ use devlog.nu
+❯ devlog --projects-dir . --dry-run | group-by project day --to-table
+
+Helpful in development, but also can be useful in advanced use cases.
+
+``` diff
+index 6677495..f276b89 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -2,7 +2,7 @@
+=
+=use std/log
+=
+-def main [
++export def main [
+=    --since: datetime = 1970-01-01          # How far back should we look?
+=    --until: datetime                       # When did you last committed anything good?
+=    --projects-dir: path = "~/Projects",    # Where do you keep your projects?
+@@ -46,8 +46,7 @@ def main [
+=    if $dry_run {
+=        $commits
+=        | update time { format date }
+-        | print 
+-        exit 0
++        | return $in
+=    }
+=    
+=    # TODO: Allow setting in a config file
+@@ -95,6 +94,7 @@ def main [
+=        
+=    # }
+=}
++
+=def "main days" [
+=    since: datetime,
+=    --day-start: string = "04:00"
+```
\ No newline at end of file
new file mode 100644
index 0000000..41e3abd
--- /dev/null
+++ b/content/devlog/2026-04-18-devlog-excavator.md
@@ -0,0 +1,457 @@
+---
+title: Devlog Excavator
+extra:
+  projects:
+  - Devlog Excavator
+
+---
+
+Commits: 6
+
+
+# Fix some regular expressions in the spec
+
+Regular expressions are hard to debug, and this one was tricky, because
+it made the spec evaluation flaky - once in a while it would randomly
+fail. The problem was that only one space was allowed int the time
+column, after the value. Somehow, sometimes there would be more than
+one, which is fine, but would result in no matches to the pattern.
+
+Fortunately Nushell comes with a brilliant built-in `explore regex`
+command, that is a lifesaver in such circumstances.
+
+``` diff
+index c0ffaca..a7a3728 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -137,7 +137,7 @@ TODO: Setup a second project.
+=  * Expect the output to contain `the first commit from Alice`
+=
+=    ``` regex
+-    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
++    │ +0 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Write a readme +│ +Fri, 27 Mar 2026 13:22:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=      > NOTE: To make the spec portable, the timezone, sha and part of the path has to be expressed as wildcard.
+@@ -147,7 +147,7 @@ TODO: Setup a second project.
+=    Notice that the logical day (in the second column) is one before the actual day (in the seventh column). That's because work done at night is still counted toward the previous day. This can be controlled with `start-of-day` configuration parameter.
+=    
+=    ``` regex
+-    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} │ +[0-9a-f]+ +│ +.+/project-alpha +│
++    │ +2 +│ +2026-03-27 +│ +Project Alpha +│ +Alice +│ +alice@example.com +│ +Make Project Alpha work +│ +Sat, 28 Mar 2026 03:06:00 \+\d{4} +│ +[0-9a-f]+ +│ +.+/project-alpha +│
+=    ```
+=
+=  * Expect the output to contain `the silly commit from Bob`
+```
+
+# Correct the story timeline in the basic spec
+
+The final commit from Alice was dated out of order.
+
+``` diff
+index a7a3728..209b098 100644
+--- a/spec/BASIC.md
++++ b/spec/BASIC.md
+@@ -108,7 +108,7 @@ Before you excavate, it might be smart to list the commits. You can use `--dry-r
+=    }
+=    ```
+=
+-  * On `2026-03-28 14:18` commit as `Alice <alice@example.com>`
++  * On `2026-04-04 14:18` commit as `Alice <alice@example.com>`
+=      
+=    ``` text
+=    I quit
+```
+
+# Fix crashing when excavating unlisted projects
+
+By unlisted projects I mean ones that are not in the configuration file.
+The intention is to warn about any activity in such projects, because
+maybe I want to include them in my devlog.
+
+In such case the project lookup returned an empty list, and this was
+breaking the `first | get name` part of the pipeline.
+
+I'm still learning good techniques to debug complex Nushell code.
+Sometimes the errors are not clear, esp. in long pipelines. So I had to
+stuff some debug logging calls. And because this makes closures complex,
+I decided to name them and move the definitions out of the pipeline. I
+think it aids readability of my code.
+
+It's a pity that built-in log functions don't pass on piped values. It
+would be nice to write code like this:
+
+``` nushell
+{ a: 1, b: coocoo }
+| log info $"Got ($in)"
+| get b
+```
+
+Alas it won't work, because `log info` outputs nothing. The workaround
+is to explicitly return `$in`, like this:
+
+``` nushell
+{ a: 1, b: coocoo }
+| (log info $"Got ($in)"; $in)
+| get b
+```
+
+But that's brittle - it's very easy to accidentally not return it, and
+write a bug while debugging. Maybe I'll write a wrapper for this, a
+`spy` command that emmits logs, but also passes the value. I already
+have a similar mechanism in `tbb observe` family of commands.
+
+``` diff
+index f276b89..09691d2 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -19,14 +19,10 @@ export def main [
+=    | let config
+=
+=    $until | default (date now) | let until
+-    
+-    $projects_dir
+-    | projects
+-    | each { project log $since $until }
+-    | flatten
+-    | update time { |commit| $commit.time | into datetime }
+-    | insert day { 
+-        get time
++
++    let commit_day = { |commit|
++        $commit
++        | get time
+=        | if ($in | format date %T) < $day_start {
+=           $in - 1day
+=        } else {
+@@ -34,18 +30,35 @@ export def main [
+=        }
+=        | format date %F
+=    }
+-    | insert project { |commit|
++    let commit_project = { |commit|
+=        $config.projects
+=        | where path == $commit.path
+=        | first
+-        | get name
++        | if ($in | is-not-empty) { get name } # Kind of like Maybe.andThen ...
++    }
++    let extract_log = { |project_path|
++        $project_path
++        | project log $since $until
++        | do { 
++          $"Extracted ($in | length) commits from ($project_path)"
++          | log info $in
++          $in
++        }
+=    }
++
++    $projects_dir
++    | projects
++    | each $extract_log
++    | flatten
++    | update time { |commit| $commit.time | into datetime }
++    | insert day $commit_day
++    | insert project $commit_project
+=    | move day project author email subject time sha path --first
+=    | let commits
+=
+=    if $dry_run {
+=        $commits
+-        | update time { format date }
++        | update time { format date } # For the output, format date
+=        | return $in
+=    }
+=    
+@@ -148,15 +161,18 @@ def "project log" [
+=    | str join " "
+=    | let parse_format
+=
+-    log debug $"Log format ($log_format)"
+-    log debug $"Parse format ($parse_format)"
+-
+-    $log_format
+-    | $"git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)"
+-    | log info $in
+-
+=    $log_format
+=    | git log --date=iso-strict --since=($since | format date %+) --until=($until | format date %+) --format=($in)
++    | complete
++    | if ($in.exit_code != 0) {
++      log error $"Failed to run `git log` in ($project_path)."
++      log error $in.stderr
++      $in.stdout
++    } else {
++      log debug $"Done with `git log` in ($project_path)."
++      $in.stdout
++    }
++    | lines
+=    | parse $parse_format
+=    | reverse
+=    | insert path $project_path
+```
+
+# Re-implement writing to markdown files
+
+It's kind of a refactor, because it was possible to write a few days
+ago, but the code was a mess and it was hard to implement new needed
+features, like --until (already implemented) and unlisted projects
+warning (coming soon).
+
+``` diff
+index 09691d2..a262ed2 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -41,13 +41,13 @@ export def main [
+=        | project log $since $until
+=        | do { 
+=          $"Extracted ($in | length) commits from ($project_path)"
+-          | log info $in
++          | log debug $in
+=          $in
+=        }
+=    }
+=
+=    $projects_dir
+-    | projects
++    | project list
+=    | each $extract_log
+=    | flatten
+=    | update time { |commit| $commit.time | into datetime }
+@@ -55,6 +55,17 @@ export def main [
+=    | insert project $commit_project
+=    | move day project author email subject time sha path --first
+=    | let commits
++    | group-by --to-table day project
++    | sort-by day
++    | let entries
++
++    let stats = {
++        commits: ($commits | length),
++        projects: ($entries | get project | uniq | length),
++        days: ($entries | get day | uniq | length)
++    }
++
++    log info $"Excavated ($stats.commits) commits from ($stats.projects) projects across ($stats.days) days"
+=
+=    if $dry_run {
+=        $commits
+@@ -65,67 +76,24 @@ export def main [
+=    # TODO: Allow setting in a config file
+=    mkdir $out_dir
+=
+-    # for project_path in ($projects_dir | projects) {
+-    #     let project = 
+-    #     if ($project | is-empty) {
+-    #         continue
+-    #     }
+-
+-    #     let project_slug = $project.name | str kebab-case
+-
+-    #     if ($project | get --optional ignore | default false ) {
+-    #         continue
+-    #     }
+-
+-    #     # TODO: Iterate over days and write to a file
+-    #     for day in (main days $since) {
+-    #         let date = $day.start | format date %Y-%m-%d
+-    #         let out_path = ($out_dir | path join $"($date)-($project_slug).md")
+-
+-    #         try {
+-    #             # TODO: Catch and print errors
+-    #             $project_path
+-    #             | project log $day.start $day.end
+-    #             | reverse
+-    #             | let log
+-
+-    #             if ($log | is-empty) {
+-    #                 "No commits on that day"
+-    #                 continue
+-    #             }
+-
+-    #             $log
+-    #             | format log $project.name $config
+-    #             | save --force $out_path
+-    #         } catch { |error|
+-    #             print --stderr $"Project path: ($project_path)"
+-    #             print --stderr $"Date: ($date)"
+-    #             print --stderr $"Output path: ($out_path)"
+-    #             print --stderr $error.rendered
+-    #         }
+-    #     }
+-        
+-    # }
+-}
+=
+-def "main days" [
+-    since: datetime,
+-    --day-start: string = "04:00"
+-] {
+-    let until = $day_start | date from-human
+-    # TODO: Allow setting --until: datetime and be smart about day-start - the last day might be a fraction!
+-    
+-    0..
+-    | each { |n| $n * 1day }
+-    | each { |duration| $until - $duration }
+-    | each { |start| {
+-        start: ([$start $since] | math max),
+-        end: ($start + 1day)
+-    } }
+-    | take while { |day| $day.start < $day.end }
++    for entry in $entries {
++        $entry
++        | get day project
++        | str join "-"
++        | str kebab-case
++        | { parent: $out_dir, stem: $in, extension: "md" }
++        | path join
++        | let out_path
++        
++        log info $"Writing to ($out_path)..."
++        $entry
++        | format entry $in.project $config
++        | save --force $out_path
++    }
+=}
+=
+-def "projects" []: path -> list<path> {
++def "project list" []: path -> list<path> {
+=    $in
+=    | path join "**/.git"
+=    | glob $in
+@@ -178,21 +146,8 @@ def "project log" [
+=    | insert path $project_path
+=}
+=
+-def "format commit" [] {
+-    [
+-        $"## ($in.subject | str trim)"
+-        ""
+-        ($in.body | str trim)
+-        ""
+-        ($in.diff | each { |diff| format diff } | str join "\n\n" )
+-    ] | str join "\n"
+-}
+-
+-def "format diff" [] {
+-    $"``` diff\n($in | str trim)\n```"
+-}
+=
+-def "format log" [
++def "format entry" [
+=    title: string
+=    config: record
+=] {
+@@ -206,8 +161,34 @@ def "format log" [
+=        $""
+=        $"# ($title)"
+=        $""
+-        $"Commits: ($in | length)"
++        $"Commits: ($in.items | length)"
+=        $""
+-        ($in | each { | commit | format commit } | str join "\n\n")
++        ($in.items | each { | commit | $commit | format commit } | str join "\n\n")
++    ] | str join "\n"
++}
++
++def "format commit" [] {
++    $in | do {
++        cd $in.path
++        git show --no-patch --format="%b" $in.sha
++    }
++    | let body
++
++    $in | do {
++        cd $in.path
++        git show --format="" $in.sha
++    }
++    | let patch
++    
++    [
++        $"## ($in.subject | str trim)"
++        ""
++        ($body | str trim)
++        ""
++        ($patch | each { |diff| format diff } | str join "\n\n" )
+=    ] | str join "\n"
+=}
++
++def "format diff" [] {
++    $"``` diff\n($in | str trim)\n```"
++}
+```
+
+# Split patches by file, use `=` as context indicator
+
+I often have markdown code blocks nested in my diffs (coming from
+documentation or specs in markdown files). When those end up in devlog
+entries, then nested triple backticks (```) are tripping up many
+markdown tools (like syntax highlighters). Seems like tools "think" that
+those backtics demarkate the end of the diff block. In principle it
+should be unambiguous, because they are indented with at least one extra
+space compared to actual code block boundaries, but it is what it is.
+
+So to prevent this now we ask git to use equal sign `=` in front of any
+context line. This seems to do the trick.
+
+``` diff
+index a262ed2..f082bba 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -176,7 +176,8 @@ def "format commit" [] {
+=
+=    $in | do {
+=        cd $in.path
+-        git show --format="" $in.sha
++        git show --format="" --output-indicator-context='=' $in.sha
++        | split row --regex "(?m)^diff --git .+" | skip 1
+=    }
+=    | let patch
+=    
+@@ -185,7 +186,7 @@ def "format commit" [] {
+=        ""
+=        ($body | str trim)
+=        ""
+-        ($patch | each { |diff| format diff } | str join "\n\n" )
++        ($patch | each { format diff } | str join "\n\n" )
+=    ] | str join "\n"
+=}
+=
+```
+
+# Do not emit the title h1
+
+Instead make each commit subject an h1 and let the rendering
+system (like Zola) decide how to present. For example, I can use a
+template to to demote heading from the markdown document and insert a
+context dependent h1. If a devlog entry is presented as it's own page,
+it should include the date and project name. If it's rendered as a
+timeline under a project page, it should contain just the date.
+
+``` diff
+index f082bba..0b8fa4c 100755
+--- a/devlog.nu
++++ b/devlog.nu
+@@ -159,10 +159,10 @@ def "format entry" [
+=        ($frontmatter | to yaml)
+=        $"---"
+=        $""
+-        $"# ($title)"
+-        $""
++        # TODO: Write this in front-matter (extra.stats.commits or something)
+=        $"Commits: ($in.items | length)"
+=        $""
++        $""
+=        ($in.items | each { | commit | $commit | format commit } | str join "\n\n")
+=    ] | str join "\n"
+=}
+@@ -182,7 +182,7 @@ def "format commit" [] {
+=    | let patch
+=    
+=    [
+-        $"## ($in.subject | str trim)"
++        $"# ($in.subject | str trim)"
+=        ""
+=        ($body | str trim)
+=        ""
+```
\ No newline at end of file
new file mode 100644
index 0000000..bc3ac1b
--- /dev/null
+++ b/content/devlog/_index.md
@@ -0,0 +1,7 @@
+---
+title: Tad Devlog
+template: blog.html
+---
+
+I write as I work as I write.
+

Convert featured projects to pages in works section

I want to add fancy icons, technologies, techniques, disciplines and devlogs. So I need a place to put metadata, like the fornt-matter of a markdown document.

index 3201b16..2efbc94 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -1,6 +1,6 @@
=---
=title: "Tad Works"
-sort_by: "date"
+sort_by: "weight"
=template: "works.html"
=description: "Featured works of Tad Lispy"
=---
@@ -46,84 +46,6 @@ Here is what some of my clients have to say about me:
=> <cite>Neyts Zupan, Open Source geek & founder, Niteo</cite>
={\% end %}
=
-Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
-
-# Lead Studio
-
-  - data engineering
-  - business process automation
-  - web extensions
-  - user experience
-  - internal tooling
-  - LinkedIn Sales Navigator
-  - Google Cloud
-  - Elm programming
-  - JavaScript programming
-
-In 2021, we promised our client, Saleslift Studio, to deliver a working software solution to improve prospecting performance within a fixed time and at a fixed price. In just 6 weeks (a single development cycle), we provided them with a useful solution - Lead Studio. Further incremental development enabled them to improve a number of key performance indicators. Thanks to their partnership with Software Garden, prospecting specialists at Saleslift Studio are now able to enrich leads 20⨉ faster than before.
-
-[Read our case study](https://software.garden/lead-studio.html)
-
-
-# Agile Plan Exporter
-
-  - agile software development
-  - Rust programming
-  - collaboration
-  - free / open source software
-  - markdown processing
-  - iCalendar 
-
-At Software Garden we attempted to create a work environment where we can be efficient and happy at the same time. Part of it was agile planning - a simple and collaborative process where everyone had a chance to catch up with all the latest developments and choose the priorities they will work on. To facilitate it, we created several tools, including this one. It exports our schedule from a Markdown document,  to iCalendar format. Markdown is a flexible and lightweight plain text format, ideal for taking notes while planning, while iCalendar is the industry standard for calendaring data. This enabled  every team member to synchronize their personal calendars with our shared plan! 
-
-The tool might still be useful for you. [Learn how you can use it too](https://gitlab.com/software-garden/markdown-to-icalendar-export).
-
-
-# Elm Springs
-
-  - Elm programming
-  - physics simulation
-  - animations
-  - free / open source software
-
-An Elm package implementing a rough model of a physical mass attached to a spring, as described in physics by Hooke's law. Good for making smooth and organic looking animations or modeling oscillating values (for example emotions). High physical accuracy is not a priority - performance and API simplicity is more important.
-
-[See the package](https://package.elm-lang.org/packages/tad-lispy/springs/latest/).
+# Featured Projects
=
-
-# Ethical Software Garden
-
-  - collaboration
-  - digital ethics
-  - CMS
-  - GitLab API
-  - free / open source software
-  - GraphQL
-  
-
-After taking part in the Offsite Sustainability meetup hosted by [Railslove](https://railslove.com/) we realized that resources about digital ethics are very scattered. This website uses our GitLab GraphQL API and Elm Pages static site generator to produce a catalogue of articles, videos, websites etc. about digital ethics. The idea is to use GitLab issues, comments, reactions (up and down votes) and moderation to generate web content. The webpage is re-generated daily in a CI/CD pipeline for fast loading, but the content is also loaded live.
-
-[See the catalogue](https://ethical.software.garden/)
-
-
-# Elm Tree Workshop
-
-  - teaching
-  - Elm programming
-  - web development
-
-A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
-
-[Visit the website](https://elm-tree.software.garden/)
-
-
-# Word Snake
-
-  - game development
-  - web development
-  - education technology
-  - Elm programming
-
-Think fast - guess a password, collect letters and save the snake from a fire trap! In this simple word puzzle game you control a snake while guessing a password. Challenges are designed to let players learn various facts about the world or improve their arithmetic and logical thinking while playing. It's extra fun to play in a group on a phone or a tablet - one player controls the snake while others help to guess the password. It can be a nice family exercise that brings people together.
-
-[Play the game](https://word-snake.software.garden/ "Play Word Snake in your browser")
+Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
new file mode 100644
index 0000000..cb5136c
--- /dev/null
+++ b/content/works/agile-planner/index.md
@@ -0,0 +1,18 @@
+---
+title: Agile Planner
+weight: 3
+---
+
+
+# Agile Plan Exporter
+
+  - agile software development
+  - Rust programming
+  - collaboration
+  - free / open source software
+  - markdown processing
+  - iCalendar 
+
+At Software Garden we attempted to create a work environment where we can be efficient and happy at the same time. Part of it was agile planning - a simple and collaborative process where everyone had a chance to catch up with all the latest developments and choose the priorities they will work on. To facilitate it, we created several tools, including this one. It exports our schedule from a Markdown document,  to iCalendar format. Markdown is a flexible and lightweight plain text format, ideal for taking notes while planning, while iCalendar is the industry standard for calendaring data. This enabled  every team member to synchronize their personal calendars with our shared plan! 
+
+The tool might still be useful for you. [Learn how you can use it too](https://gitlab.com/software-garden/markdown-to-icalendar-export).
new file mode 100644
index 0000000..154cb72
--- /dev/null
+++ b/content/works/ehtical-software-garden/elm-tree-worksho/index.html
@@ -0,0 +1,14 @@
+---
+title: Elm Tree Workshop
+weight: 2
+---
+
+# Elm Tree Workshop
+
+  - teaching
+  - Elm programming
+  - web development
+
+A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
+
+[Visit the website](https://elm-tree.software.garden/)
new file mode 100644
index 0000000..8812b5b
--- /dev/null
+++ b/content/works/ehtical-software-garden/index.md
@@ -0,0 +1,18 @@
+---
+title: Ethical Software Garden
+weight: 3
+---
+
+# Ethical Software Garden
+
+  - collaboration
+  - digital ethics
+  - CMS
+  - GitLab API
+  - free / open source software
+  - GraphQL
+  
+
+After taking part in the Offsite Sustainability meetup hosted by [Railslove](https://railslove.com/) we realized that resources about digital ethics are very scattered. This website uses our GitLab GraphQL API and Elm Pages static site generator to produce a catalogue of articles, videos, websites etc. about digital ethics. The idea is to use GitLab issues, comments, reactions (up and down votes) and moderation to generate web content. The webpage is re-generated daily in a CI/CD pipeline for fast loading, but the content is also loaded live.
+
+[See the catalogue](https://ethical.software.garden/)
new file mode 100644
index 0000000..bc59274
--- /dev/null
+++ b/content/works/elm-springs/index.md
@@ -0,0 +1,16 @@
+---
+title: Elm Springs
+weight: 2
+---
+
+# Elm Springs
+
+  - Elm programming
+  - physics simulation
+  - animations
+  - free / open source software
+
+An Elm package implementing a rough model of a physical mass attached to a spring, as described in physics by Hooke's law. Good for making smooth and organic looking animations or modeling oscillating values (for example emotions). High physical accuracy is not a priority - performance and API simplicity is more important.
+
+[See the package](https://package.elm-lang.org/packages/tad-lispy/springs/latest/).
+
new file mode 100644
index 0000000..154cb72
--- /dev/null
+++ b/content/works/elm-tree-worksho/index.md
@@ -0,0 +1,14 @@
+---
+title: Elm Tree Workshop
+weight: 2
+---
+
+# Elm Tree Workshop
+
+  - teaching
+  - Elm programming
+  - web development
+
+A workshop that will give you a glimpse into the way software is created. It is intended for people with no prior experience in programming and doesn’t require any technical knowledge. Everybody is welcome! During this 5 days workshop (3 hours each day) you will learn to solve problems using a functional programming language. Together, we will build a program that simulates growth of a tree. In 2019 the workshop was presented to students of Utrecht University.
+
+[Visit the website](https://elm-tree.software.garden/)
new file mode 100644
index 0000000..b7a52b8
--- /dev/null
+++ b/content/works/lead-studio/index.md
@@ -0,0 +1,23 @@
+---
+title: Lead Studio
+weight: 1
+---
+
+# Lead Studio
+
+  - data engineering
+  - business process automation
+  - web extensions
+  - user experience
+  - internal tooling
+  - LinkedIn Sales Navigator
+  - Google Cloud
+  - Elm programming
+  - JavaScript programming
+
+In 2021, we promised our client, Saleslift Studio, to deliver a working software solution to improve prospecting performance within a fixed time and at a fixed price. In just 6 weeks (a single development cycle), we provided them with a useful solution - Lead Studio. Further incremental development enabled them to improve a number of key performance indicators. Thanks to their partnership with Software Garden, prospecting specialists at Saleslift Studio are now able to enrich leads 20⨉ faster than before.
+
+[Read our case study](https://software.garden/lead-studio.html)
+
+
+
new file mode 100644
index 0000000..f55c819
--- /dev/null
+++ b/content/works/tad-better-behavior/index.md
@@ -0,0 +1,9 @@
+---
+title: Tad Better Behavior
+weight: 0
+---
+
+# TBB: Tad Better Behavior
+
+A <abbrev title="Behhavior Driven Development">BDD</abbrev> tool that works well on Unix.
+
new file mode 100644
index 0000000..431d6d1
--- /dev/null
+++ b/content/works/word-snake/index.md
@@ -0,0 +1,15 @@
+---
+title: Word Snake
+weight: 2
+---
+
+# Word Snake
+
+  - game development
+  - web development
+  - education technology
+  - Elm programming
+
+Think fast - guess a password, collect letters and save the snake from a fire trap! In this simple word puzzle game you control a snake while guessing a password. Challenges are designed to let players learn various facts about the world or improve their arithmetic and logical thinking while playing. It's extra fun to play in a group on a phone or a tablet - one player controls the snake while others help to guess the password. It can be a nice family exercise that brings people together.
+
+[Play the game](https://word-snake.software.garden/ "Play Word Snake in your browser")
index 335ae7d..d5d8c82 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -42,9 +42,13 @@ html.home {
=            }
=        }
=    }
+}
=
-
-
+html.works-index {
+    h1 {
+        font-size: 1rem;
+        border-bottom: solid 2px currentColor;
+    }
=}
=
=nav.main-nav {
index dcead87..ec1694f 100644
--- a/templates/works.html
+++ b/templates/works.html
@@ -24,6 +24,15 @@
=
=<main>
=    {\{ section.content | safe \}}
+
+    <section id="featured-projects">
+        {\% for project in section.pages %}
+        <article>
+            <h2>{\{ project.title \}}</h2>
+            <p><a href="{\{ project.path \}}">Read more about {\{ project.title \}}</a> </p>
+        </article>
+        {\% endfor %}
+    </section>
=</main>
=
={\% include "includes/footer.html" %}

Port an improved rendering context inspector from escco.eu

Key features:

index cbbde5c..4e92e3d 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -37,16 +37,6 @@
=        {\% block content %}
=        {\% endblock content %}
=
-        {# Fix the closing comment bracket on this line to dump available data # }
-        {\%- if config.mode == "serve" %}
-        <article>
-            <header>Template context</header>
-            <pre><code>
-                {\{- __tera_context -\}}
-            </code></pre>
-        </article>
-        {\% endif -%}
-        {# #}
-
+        {\% include "shortcodes/debug.html" %}
=    </body>
=</html>
new file mode 100644
index 0000000..4414dbd
--- /dev/null
+++ b/templates/shortcodes/debug.html
@@ -0,0 +1,35 @@
+{\%- if config.mode == "serve" %}
+<dialog id="rendering-context-dialog" modal>
+    <article style="padding-bottom: 0">
+        <header style="margin-bottom: 1rem">
+            <button
+                aria-label="Close"
+                class="close outline"
+                command="close"
+                commandfor="rendering-context-dialog"
+            ></button>
+            Rendering context
+        </header>
+        <pre style="max-height: 60vh; overflow: scroll">{\{ __tera_context | escape | safe \}}</pre>
+    </article>
+</dialog>
+
+<button
+    command="show-modal"
+    commandfor="rendering-context-dialog"
+    accesskey="i"
+    title="Open rendering context dialog"
+    class="outline"
+    style="
+        position: fixed;
+        bottom: 2rem;
+        left: 2rem;
+        width: 2rem;
+        height: 2rem;
+        padding: 0;
+        margin: 0;
+        border-radius: 50%;
+        font-weight: 900;
+    "
+>{}</button>
+{\% endif -%}

Fix the GitLab link

I've accidentally used a link to my profile that only works for me when I'm logged in 🤦

index 2efbc94..e3a354d 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -48,4 +48,4 @@ Here is what some of my clients have to say about me:
=
=# Featured Projects
=
-Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/dashboard/projects/member) or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.
+Most of my work revolves around software development - custom work for clients, free software projects or training. Except for proprietary client projects, I publish most of it on [Codeberg](https://codeberg.org/tad-lispy), [GitLab](https://gitlab.com/tad-lispy "Tad Lispy on GitLab") or [GitHub](https://github.com/tad-lispy?tab=repositories). Below are selected examples of my work.

Edit a devlog entry

Mostly I want to see what's the experience of editing the entry emitted by Devlog Excavator. It's fine, but I see some operations that could have been already performed by Excavator:

  1. If the file is new (and not binary), then emit the file contents, not the diff.

  2. Group all the new binary files and emit a list of them.

  3. Modified binary files should also form a list.

  4. Modified files don't need the index <hex>..<hex> line at the beginning. It's not useful and can be distracting.

  5. All operations should be explained, like:

    Modified index.html:

    Deleted dont-touch-this.exe.

    New file at fonts/caveat/caveat.css:

    Renamed big.txt to tad.txt: (colon only if contents modified - then also diff).

    Modified binary files: (take singular and plural into account)

    Deleted binary files:

    New binary files:

  6. The order of operations should be as illustrated above.

So basically Excavator needs to be much smarter about processing patch.

index 17c5bff..1d68057 100644
--- a/content/devlog/2026-04-09-better-tech-club-website.md
+++ b/content/devlog/2026-04-09-better-tech-club-website.md
@@ -74,436 +74,144 @@ index 190ac4d..4bcf4cd 100644
=
=# Import the branding source SVG with a tagline
=
-
-
-``` diff
-new file mode 100644
-index 0000000..7ff8966
---- /dev/null
-+++ b/better-tech-club.svg
-@@ -0,0 +1,184 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="1000"
-+   height="1000"
-+   viewBox="0 0 1000 1000"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2"><inkscape:path-effect
-+       effect="powerstroke"
-+       message=""
-+       id="path-effect5"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       scale_width="1"
-+       interpolator_type="CentripetalCatmullRom"
-+       interpolator_beta="0.75"
-+       start_linecap_type="round"
-+       end_linecap_type="round"
-+       offset_points="2.3035803,8.7803873"
-+       linejoin_type="spiro"
-+       miter_limit="4"
-+       not_jump="true"
-+       sort_points="true" /><inkscape:path-effect
-+       effect="simplify"
-+       id="path-effect4"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       threshold="0.014201184"
-+       steps="1"
-+       smooth_angles="0"
-+       helper_size="0"
-+       simplify_individual_paths="false"
-+       simplify_just_coalesce="false"
-+       step="1" /></defs><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:page
-+       x="0"
-+       y="0"
-+       width="1000"
-+       height="1000"
-+       id="page5"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="logotype" /><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="0"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /><inkscape:page
-+       x="1010"
-+       y="0"
-+       width="32"
-+       height="32"
-+       id="page9"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="icon" /></sodipodi:namedview><metadata
-+     id="metadata5"><rdf:RDF><cc:Work
-+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"><text
-+       xml:space="preserve"
-+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;stroke:#ffffff;paint-order:markers stroke fill;stroke-width:10;stroke-dasharray:none"
-+       x="546.70502"
-+       y="380"
-+       id="text1"><tspan
-+         sodipodi:role="line"
-+         id="tspan1"
-+         x="546.70502"
-+         y="380">Big</tspan><tspan
-+         sodipodi:role="line"
-+         x="546.70502"
-+         y="559.08374"
-+         id="tspan2">Tech</tspan><tspan
-+         sodipodi:role="line"
-+         x="546.70502"
-+         y="738.16748"
-+         id="tspan3">Club</tspan></text><g
-+       id="g6-8"
-+       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
-+         fill="#fac036"
-+         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+         id="path1-0" /><path
-+         fill="#e48c15"
-+         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+         id="path2-8" /></g><text
-+       xml:space="preserve"
-+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#fac036;fill-opacity:1;stroke-width:1.69307"
-+       x="313.17581"
-+       y="386.3519"
-+       id="text4"
-+       transform="rotate(-15)"><tspan
-+         sodipodi:role="line"
-+         id="tspan4"
-+         x="313.17581"
-+         y="386.3519"
-+         style="stroke-width:1.69307">Better</tspan></text><path
-+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
-+       id="path-1"
-+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
-+       sodipodi:nodetypes="cc"
-+       transform="translate(362.34816,24.840675)"
-+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
-+       inkscape:path-effect="#path-effect4;#path-effect5" /><text
-+       xml:space="preserve"
-+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:143.267px;line-height:1.25;font-family:'Adwaita Mono';-inkscape-font-specification:'Adwaita Mono, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal"
-+       x="63.714287"
-+       y="580"
-+       id="text5"><tspan
-+         sodipodi:role="line"
-+         id="tspan5"
-+         x="63.714287"
-+         y="580" /></text></g><g
-+     id="g6"
-+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
-+       fill="#fac036"
-+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+       id="path1" /><path
-+       fill="#e48c15"
-+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+       id="path2" /></g><text
-+     xml:space="preserve"
-+     style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#fac036;fill-opacity:1;stroke-width:3.88772"
-+     x="495.45914"
-+     y="864.35309"
-+     id="text6"><tspan
-+       sodipodi:role="line"
-+       id="tspan6"
-+       x="211.18976"
-+       y="864.35309"
-+       style="stroke-width:3.88772">Neighborhood communities</tspan><tspan
-+       sodipodi:role="line"
-+       x="211.18976"
-+       y="942.10736"
-+       style="stroke-width:3.88772"
-+       id="tspan7">for digital independence</tspan></text></svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..6fe07e0
---- /dev/null
-+++ b/better-tech-club_icon.svg
-@@ -0,0 +1,84 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="32"
-+   height="32"
-+   viewBox="0 0 32 32"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2" /><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="-1010"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /><inkscape:page
-+       x="0"
-+       y="0"
-+       width="32"
-+       height="32"
-+       id="page9"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="icon" /></sodipodi:namedview><metadata
-+     id="metadata5"><rdf:RDF><cc:Work
-+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"
-+     transform="translate(-1010)"><g
-+       id="g6-8"
-+       transform="matrix(0.25803766,0,0,0.25803766,748.86854,-0.51542493)"><path
-+         fill="#fac036"
-+         d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+         id="path1-0" /><path
-+         fill="#e48c15"
-+         d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+         id="path2-8" /></g></g></svg>
-```
-
-``` diff
-new file mode 100644
-index 0000000..470c6e3
---- /dev/null
-+++ b/better-tech-club_logotype.svg
-@@ -0,0 +1,137 @@
-+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-+<svg
-+   width="1000"
-+   height="1000"
-+   viewBox="0 0 1000 1000"
-+   version="1.1"
-+   id="svg8"
-+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
-+   xml:space="preserve"
-+   sodipodi:docname="better-tech-club.svg"
-+   inkscape:export-filename="export/better-tech-club.png"
-+   inkscape:export-xdpi="12.288"
-+   inkscape:export-ydpi="12.288"
-+   inkscape:export-batch-name="better-tech-club"
-+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
-+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-+   xmlns="http://www.w3.org/2000/svg"
-+   xmlns:svg="http://www.w3.org/2000/svg"
-+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-+   xmlns:cc="http://creativecommons.org/ns#"
-+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
-+     id="defs2"><inkscape:path-effect
-+       effect="powerstroke"
-+       message=""
-+       id="path-effect5"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       scale_width="1"
-+       interpolator_type="CentripetalCatmullRom"
-+       interpolator_beta="0.75"
-+       start_linecap_type="round"
-+       end_linecap_type="round"
-+       offset_points="2.3035803,8.7803873"
-+       linejoin_type="spiro"
-+       miter_limit="4"
-+       not_jump="true"
-+       sort_points="true" /><inkscape:path-effect
-+       effect="simplify"
-+       id="path-effect4"
-+       is_visible="true"
-+       lpeversion="1.3"
-+       threshold="0.014201184"
-+       steps="1"
-+       smooth_angles="0"
-+       helper_size="0"
-+       simplify_individual_paths="false"
-+       simplify_just_coalesce="false"
-+       step="1" /></defs><sodipodi:namedview
-+     id="base"
-+     pagecolor="#3d3d3d"
-+     bordercolor="#666666"
-+     borderopacity="1.0"
-+     inkscape:pageopacity="0.0"
-+     inkscape:pageshadow="2"
-+     inkscape:zoom="0.70710678"
-+     inkscape:cx="382.54477"
-+     inkscape:cy="569.92807"
-+     inkscape:document-units="px"
-+     inkscape:current-layer="svg8"
-+     inkscape:document-rotation="0"
-+     showgrid="true"
-+     units="px"
-+     scale-x="1"
-+     inkscape:showpageshadow="0"
-+     inkscape:pagecheckerboard="1"
-+     inkscape:deskcolor="#d1d1d1"
-+     inkscape:window-width="1920"
-+     inkscape:window-height="1011"
-+     inkscape:window-x="0"
-+     inkscape:window-y="0"
-+     inkscape:window-maximized="1"
-+     inkscape:export-bgcolor="#2c2c2c00"
-+     showguides="false"><inkscape:page
-+       x="0"
-+       y="0"
-+       width="1000"
-+       height="1000"
-+       id="page5"
-+       margin="0"
-+       bleed="0"
-+       inkscape:label="logotype" /><inkscape:grid
-+       id="grid6"
-+       units="px"
-+       originx="0"
-+       originy="0"
-+       spacingx="1"
-+       spacingy="1"
-+       empcolor="#0099e5"
-+       empopacity="0.30196078"
-+       color="#0099e5"
-+       opacity="0.14901961"
-+       empspacing="5"
-+       enabled="true"
-+       visible="true" /></sodipodi:namedview><metadata
-+     id="metadata5"><rdf:RDF><cc:Work
-+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
-+     inkscape:label="Layer 1"
-+     inkscape:groupmode="layer"
-+     id="layer1"><g
-+       id="text1"
-+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
-+       aria-label="Big&#10;Tech&#10;Club"><path
-+         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
-+         id="path11" /><path
-+         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
-+         id="path12" /><path
-+         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
-+         id="path13" /></g><path
-+       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
-+       id="text4"
-+       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
-+       transform="rotate(-15)"
-+       aria-label="Better" /><path
-+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
-+       id="path-1"
-+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
-+       sodipodi:nodetypes="cc"
-+       transform="translate(362.34816,24.840675)"
-+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
-+       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
-+     id="g6"
-+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
-+       fill="#fac036"
-+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
-+       id="path1" /><path
-+       fill="#e48c15"
-+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
-+       id="path2" /></g><g
-+     id="text6"
-+     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
-+     aria-label="Neighborhood communities&#10;for digital independence"><path
-+       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
-+       id="path14" /><path
-+       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
-+       id="path15" /></g></svg>
-```
+It's exported using Inkscape from our branding repository.
+
+<svg
+   width="1000"
+   height="1000"
+   viewBox="0 0 1000 1000"
+   version="1.1"
+   id="svg8"
+   inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
+   xml:space="preserve"
+   sodipodi:docname="better-tech-club.svg"
+   inkscape:export-filename="export/better-tech-club.png"
+   inkscape:export-xdpi="12.288"
+   inkscape:export-ydpi="12.288"
+   inkscape:export-batch-name="better-tech-club"
+   inkscape:export-batch-path="/home/tad/Projects/better-tech-club/bettertech.eu"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+     id="defs2"><inkscape:path-effect
+       effect="powerstroke"
+       message=""
+       id="path-effect5"
+       is_visible="true"
+       lpeversion="1.3"
+       scale_width="1"
+       interpolator_type="CentripetalCatmullRom"
+       interpolator_beta="0.75"
+       start_linecap_type="round"
+       end_linecap_type="round"
+       offset_points="2.3035803,8.7803873"
+       linejoin_type="spiro"
+       miter_limit="4"
+       not_jump="true"
+       sort_points="true" /><inkscape:path-effect
+       effect="simplify"
+       id="path-effect4"
+       is_visible="true"
+       lpeversion="1.3"
+       threshold="0.014201184"
+       steps="1"
+       smooth_angles="0"
+       helper_size="0"
+       simplify_individual_paths="false"
+       simplify_just_coalesce="false"
+       step="1" /></defs><sodipodi:namedview
+     id="base"
+     pagecolor="#3d3d3d"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.70710678"
+     inkscape:cx="382.54477"
+     inkscape:cy="569.92807"
+     inkscape:document-units="px"
+     inkscape:current-layer="svg8"
+     inkscape:document-rotation="0"
+     showgrid="true"
+     units="px"
+     scale-x="1"
+     inkscape:showpageshadow="0"
+     inkscape:pagecheckerboard="1"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:window-width="1920"
+     inkscape:window-height="1011"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:export-bgcolor="#2c2c2c00"
+     showguides="false"><inkscape:page
+       x="0"
+       y="0"
+       width="1000"
+       height="1000"
+       id="page5"
+       margin="0"
+       bleed="0"
+       inkscape:label="logotype" /><inkscape:grid
+       id="grid6"
+       units="px"
+       originx="0"
+       originy="0"
+       spacingx="1"
+       spacingy="1"
+       empcolor="#0099e5"
+       empopacity="0.30196078"
+       color="#0099e5"
+       opacity="0.14901961"
+       empspacing="5"
+       enabled="true"
+       visible="true" /></sodipodi:namedview><metadata
+     id="metadata5"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"><g
+       id="text1"
+       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
+       aria-label="Big&#10;Tech&#10;Club"><path
+         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
+         id="path11" /><path
+         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
+         id="path12" /><path
+         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
+         id="path13" /></g><path
+       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
+       id="text4"
+       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
+       transform="rotate(-15)"
+       aria-label="Better" /><path
+       d="m 150.88794,368.4693 c 7.31554,-2.00094 18.83461,-5.04469 34.36407,-8.65975 13.05626,-3.03757 27.18717,-6.07186 42.6891,-9.10242 4.8934,-0.95611 9.8388,-1.89523 14.83747,-2.8172 9.88311,-1.82286 21.28291,-3.82014 34.15686,-5.89576 15.38054,-2.47835 32.31787,-4.98013 50.6507,-7.34484 14.65599,-1.88907 29.99427,-3.66403 45.85765,-5.21938 12.25521,-1.20021 24.67246,-2.25533 37.19864,-3.09997 10.12954,-0.68148 20.08581,-1.21018 29.93743,-1.54329 7.71104,-0.25917 15.00954,-0.38748 22.06882,-0.3667 6.67163,0.0217 12.56499,0.1727 18.04391,0.45452 5.51563,0.2865 9.54696,0.65139 12.61841,0.99447 a 8.7803873,8.7803873 90 0 0 1.94942,-17.45224 c -3.41735,-0.38172 -7.79502,-0.77488 -13.66132,-1.07959 -5.81007,-0.29886 -11.98914,-0.45533 -18.89595,-0.47785 -7.31018,-0.0215 -14.82552,0.11142 -22.71495,0.37659 -10.08011,0.34084 -20.23422,0.88062 -30.52587,1.57302 -12.72868,0.85828 -25.3244,1.92892 -37.73113,3.14397 -16.06081,1.57471 -31.57723,3.37048 -46.39075,5.27986 -18.53118,2.39029 -35.65144,4.91909 -51.1994,7.42442 -13.01484,2.09833 -24.54502,4.11837 -34.54769,5.96328 -5.05877,0.93306 -10.06493,1.8837 -15.02062,2.85199 -15.69802,3.0689 -30.03254,6.14643 -43.30111,9.2334 -15.79087,3.67591 -27.53122,6.77745 -35.01671,8.82487 a 8.7803873,8.7803873 90 0 0 4.63302,16.9386 z"
+       id="path-1"
+       style="fill:#fac036;fill-opacity:1;fill-rule:nonzero;stroke:#ffcc00;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
+       sodipodi:nodetypes="cc"
+       transform="translate(362.34816,24.840675)"
+       inkscape:original-d="M 148.57143,360 C 262.13134,328.93022 430.52677,310 494.28571,317.14286"
+       inkscape:path-effect="#path-effect4;#path-effect5" /></g><g
+     id="g6"
+     transform="matrix(3.6714119,0,0,3.6714119,-3645.4352,278.54007)"><path
+       fill="#fac036"
+       d="m 1108.66,32.68 c -4.62,-8.6 -7.22,-13.43 -12.79,-20.46 -5.56,-7.03 -12.14,-14.07 -19.5,-7.78 -3.72,3.17 -2.6,8.21 0.17,13.22 -0.47,-0.31 0.43,2.16 -0.01,1.83 -8.35,-6.37 -10.13,-5.67 -13.01,-3.39 -6.84,5.41 4.96,16.47 8.81,22.4 0.66,1.02 3.07,1.97 3.64,2.91 0.39,0.64 0.76,1.26 1.11,1.86 -0.43,-0.13 -0.87,-0.26 -1.32,-0.39 -4.04,-1.13 -13.32,-2.35 -17.54,-0.76 -26.18,9.88 -24.86,14.19 -22.85,19.85 2.01,5.66 9.35,9.84 21.35,2.38 14.81,-6.12 27.11,2.08 27.11,10.6 0,11.7 -3.83,18.31 -13.88,18.31 -15.89,0 -16.74,-12.96 -25.23,-21.45 -2.29,-2.29 -7.79,-2.96 -11.04,-0.61 -7.58,5.49 -2.68,16.88 -0.79,20.69 3.96,7.97 8.84,19.53 21.69,29.95 6.76,5.48 23.53,4.64 33.23,2.66 18.44,-3.76 22.15,-16.01 28.07,-36.98 2.23,-7.89 2.53,-14.24 2.53,-23.05 0,-8.81 -5.45,-23.78 -9.75,-31.79 z"
+       id="path1" /><path
+       fill="#e48c15"
+       d="m 1108.3,60.49 c -1.18,-5.04 -10.83,-12.92 -14.85,-15.52 -0.41,-2.2 -6.34,-15.14 -10.18,-20.25 -2.13,-2.84 -6.07,-6.68 -7.46,-8.44 0,0 0.34,1.39 -0.65,2.19 0.38,0.46 6.15,7.73 8.55,13.13 2.4,5.4 4.39,11.24 4.39,11.24 -2.61,-0.87 -12.93,-4.33 -15.78,-4.34 0,0 1,0.9 0.98,2.56 -0.02,1.55 -2.17,0.73 -0.98,1.08 7.62,2.21 18.26,4.85 24.82,11.13 2.59,2.49 6.42,7.22 8.22,10.33 1.3,2.22 3.26,-1.74 2.94,-3.11 z"
+       id="path2" /></g><g
+     id="text6"
+     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
+     aria-label="Neighborhood communities&#10;for digital independence"><path
+       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
+       id="path14" /><path
+       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
+       id="path15" /></g></svg>
=
=``` diff
=index 4bcf4cd..c2242e1 100644
@@ -560,48 +268,6 @@ index 6fe07e0..dcf30e6 100644
==     units="px"
=```
=
-``` diff
-index 470c6e3..344c3bc 100644
---- a/better-tech-club_logotype.svg
-+++ b/better-tech-club_logotype.svg
-@@ -57,7 +57,7 @@
-=     inkscape:cx="382.54477"
-=     inkscape:cy="569.92807"
-=     inkscape:document-units="px"
--     inkscape:current-layer="svg8"
-+     inkscape:current-layer="layer1"
-=     inkscape:document-rotation="0"
-=     showgrid="true"
-=     units="px"
-@@ -103,11 +103,11 @@
-=       style="font-size:143.267px;line-height:1.25;font-family:'EB Garamond';-inkscape-font-specification:'EB Garamond, @wght=700';font-variation-settings:'wght' 700;stroke:#ffffff;stroke-width:10;paint-order:markers stroke fill"
-=       aria-label="Big&#10;Tech&#10;Club"><path
-=         d="m 552.0059,380.71633 q -1.28941,0 -2.14901,-0.71633 -0.71633,-0.57307 -0.71633,-1.43267 0,-2.149 3.15187,-3.00861 4.87108,-1.2894 6.87682,-3.0086 2.149,-1.71921 2.149,-6.30375 v -65.18649 q 0,-4.58454 -1.86247,-6.59028 -1.86247,-2.149 -6.87682,-3.15187 -1.86247,-0.4298 -2.5788,-1.14614 -0.71634,-0.8596 -0.71634,-1.86247 0,-0.8596 0.85961,-1.43267 0.8596,-0.71633 2.149,-0.71633 4.58454,0 7.59315,0.28653 3.00861,0.28653 5.58741,0.57307 2.72208,0.14327 6.30375,0.14327 3.29514,0 6.01722,-0.28654 2.72207,-0.4298 6.01721,-0.71633 3.43841,-0.28654 8.30949,-0.28654 17.04877,0 25.78806,4.87108 8.88255,4.72781 8.88255,16.4757 0,4.44128 -2.00574,8.45276 -2.00574,3.86821 -5.15761,6.44701 -2.29227,2.00574 -4.87108,3.29514 -2.43554,1.28941 -5.58741,2.14901 -0.57307,0.14327 -0.57307,0.71633 0,0.57307 0.57307,0.71634 3.72494,0.8596 7.73642,2.29227 4.01147,1.2894 7.44988,3.86821 3.58168,2.57881 5.58741,6.73355 2.14901,4.01147 2.14901,10.31522 0,8.02295 -2.57881,12.75077 -2.43554,4.58454 -6.01721,7.02008 -3.43841,2.43554 -6.44702,4.01147 -4.72781,2.29228 -10.74502,3.43841 -6.01722,1.14614 -14.3267,1.14614 -4.72781,0 -9.59889,-0.28654 Q 577.65069,380 572.34981,380 q -3.00861,0 -6.59028,0.14327 -3.58168,0.14326 -7.16335,0.28653 -3.43841,0.28653 -6.59028,0.28653 z m 40.11476,-8.02295 q 4.29801,0 8.02295,-2.5788 3.86821,-2.57881 6.01721,-6.87682 2.29227,-4.44128 2.29227,-10.02869 0,-4.87108 -1.2894,-8.16622 -1.14614,-3.29514 -2.86534,-5.30088 -1.57594,-2.00573 -3.00861,-3.0086 -1.14613,-1.00287 -4.15474,-2.00574 -2.86534,-1.14614 -7.16335,-1.14614 -2.43554,0 -4.58454,1.28941 -2.00574,1.14613 -2.00574,3.4384 v 25.215 q 0,4.72781 2.29227,7.02008 2.29227,2.149 6.44702,2.149 z m -3.00861,-45.5589 q 3.43841,0 6.30375,-0.71634 2.86534,-0.8596 5.87394,-3.15187 1.00287,-1.00287 2.72208,-4.01148 1.86247,-3.15187 1.86247,-9.02582 0,-6.01721 -1.57594,-10.02869 -1.57594,-4.01147 -4.87108,-6.01721 -3.15187,-2.00574 -8.45275,-2.00574 -4.01148,0 -5.87395,1.57594 -1.7192,1.43267 -1.7192,4.44127 v 23.92559 q 0,2.86534 2.00574,4.01148 2.00573,1.00287 3.72494,1.00287 z m 52.5789,53.29532 q -0.8596,0 -1.57593,-0.4298 -0.71634,-0.57307 -0.71634,-1.43267 0,-1.14614 0.71634,-1.86247 0.71633,-0.71634 1.86247,-1.00287 3.72494,-0.8596 5.15761,-1.86247 1.57594,-1.14614 1.57594,-3.43841 v -30.94567 q 0,-4.87108 -1.57594,-6.87682 -1.43267,-2.149 -4.58454,-2.5788 -0.85961,-0.14327 -1.28941,-0.8596 -0.4298,-0.71634 -0.4298,-1.71921 0,-2.149 1.57594,-2.43554 7.44988,-1.43267 13.18056,-4.01147 5.87395,-2.57881 9.02582,-4.01148 2.29228,-1.14614 2.86534,-1.14614 1.86248,0 1.86248,1.71921 -0.14327,2.43554 -0.71634,6.16048 -0.4298,3.58167 -0.8596,7.44988 -0.28654,3.86821 -0.28654,7.44989 v 31.662 q 0,2.00574 1.43267,3.15188 1.57594,1.14613 5.44415,2.29227 1.14614,0.4298 1.86247,1.00287 0.71634,0.57307 0.71634,1.7192 0,1.86247 -2.14901,1.86247 -2.72207,0 -5.73068,-0.14326 -3.00861,-0.14327 -5.87395,-0.28654 -2.72207,-0.14326 -5.30087,-0.14326 -2.43554,0 -5.15762,0.14326 -2.5788,0.14327 -5.44414,0.28654 -2.72208,0.28653 -5.58742,0.28653 z m 15.75937,-71.06043 q -4.44127,0 -7.87968,-3.29514 -3.29514,-3.29514 -3.29514,-7.87969 0,-4.87107 3.29514,-8.16621 3.43841,-3.29515 7.87968,-3.29515 5.01435,0 8.30949,3.29515 3.29514,3.29514 3.29514,8.16621 0,4.58455 -3.29514,7.87969 -3.29514,3.29514 -8.30949,3.29514 z m 52.14921,112.03479 q -14.04017,0 -21.91985,-4.44127 -7.73642,-4.29801 -7.73642,-11.89117 0,-4.29801 1.00287,-7.02008 1.00287,-2.5788 4.58454,-5.15761 2.72207,-2.00574 5.30088,-4.01148 2.57881,-2.00573 4.44128,-3.29514 l 7.02008,2.43554 q -4.44128,2.57881 -7.02008,5.58741 -2.43554,3.00861 -2.43554,7.02009 0,5.87394 4.87108,9.74215 5.01434,3.86821 12.46422,3.86821 9.88543,0 14.04017,-3.86821 2.57881,-2.5788 4.15474,-5.87394 1.57594,-3.15188 1.57594,-6.44702 0,-2.29227 -1.57594,-3.72494 -1.57593,-1.43267 -5.73068,-2.43554 -4.01147,-1.00287 -11.31809,-1.7192 -14.89977,-1.43267 -21.20352,-5.58742 -6.30374,-4.15474 -6.30374,-11.03155 0,-1.28941 0.71633,-2.57881 0.8596,-1.43267 3.15188,-3.00861 2.29227,-1.7192 4.15474,-3.0086 1.86247,-1.43267 3.15187,-2.57881 1.28941,-1.2894 1.71921,-2.29227 l 7.16335,2.43554 q -2.86534,1.00287 -4.72781,2.72207 -1.71921,1.7192 -1.71921,3.00861 0,1.57593 1.86247,2.5788 1.86247,1.00287 6.30375,1.71921 4.44128,0.57306 12.17769,1.14613 15.47284,1.28941 22.49292,4.87108 7.02009,3.43841 7.02009,10.17196 0,5.87394 -3.29514,11.60462 -3.29515,5.87395 -8.73929,10.60176 -5.44415,4.87108 -12.1777,7.59315 -6.59028,2.86534 -13.46709,2.86534 z m 1.86247,-61.46154 q 4.58454,0 7.16335,-5.01434 2.72207,-5.15762 2.72207,-13.4671 0,-5.30088 -1.43267,-9.16909 -1.2894,-4.01148 -3.58168,-6.16048 -2.29227,-2.29227 -5.44414,-2.29227 -2.72207,0 -5.01435,2.29227 -2.29227,2.29227 -3.72494,6.16048 -1.2894,3.72494 -1.2894,8.73929 0,5.30088 1.43267,9.59889 1.43267,4.29801 3.86821,6.87681 2.43554,2.43554 5.30088,2.43554 z m -1.57594,6.30375 q -6.30375,0 -12.46423,-3.00861 -6.01721,-3.15187 -10.02869,-8.59602 -3.86821,-5.44414 -3.86821,-12.17769 0,-7.16335 4.01148,-12.75077 4.15474,-5.58741 10.74502,-8.59602 6.73355,-3.15187 14.18344,-3.15187 4.44127,0 8.30948,1.00287 4.01148,1.00287 8.73929,1.7192 2.72207,0.57307 5.44414,0.8596 2.72208,0.28654 6.01722,0.28654 2.149,0 4.29801,-0.14327 2.149,-0.28653 3.58167,-0.28653 2.29228,0 2.29228,3.15187 0,2.72207 -1.86248,5.15761 -0.8596,1.00287 -1.86247,1.00287 h -3.86821 q -3.72494,0 -5.01434,1.14614 -0.28653,0.28653 -0.4298,0.71633 -0.14327,0.28654 -0.28654,1.57594 0,1.14614 0,4.44128 0,7.44988 -3.8682,13.75363 -3.86821,6.30375 -10.17196,10.17196 -6.30375,3.72494 -13.8969,3.72494 z"
--         id="path11" /><path
-+         id="path15" /><path
-=         d="m 576.21802,559.51355 q -1.00287,0 -2.14901,-0.4298 -1.14613,-0.57307 -1.14613,-1.57594 0,-1.2894 1.00287,-2.00574 1.00287,-0.71633 2.43554,-1.00287 5.44414,-1.14613 7.87968,-3.0086 2.57881,-1.86247 2.57881,-6.44702 v -59.16927 q 0,-5.58741 -0.28654,-8.16622 -0.28653,-2.72207 -0.8596,-3.58167 -0.4298,-1.00287 -1.14614,-1.28941 -1.2894,-0.71633 -3.4384,-0.71633 -2.00574,-0.14327 -3.29514,-0.14327 h -3.15188 q -4.58454,0 -8.73929,2.29227 -4.01147,2.14901 -6.44701,5.44415 -0.71634,1.00287 -2.14901,2.86534 -1.2894,1.7192 -2.86534,3.15187 -1.43266,1.28941 -2.86533,1.28941 -1.14614,0 -1.57594,-0.71634 -0.4298,-0.8596 -0.4298,-1.86247 0,-1.7192 0.8596,-3.58167 2.72207,-5.44415 4.01147,-9.31236 1.28941,-3.86821 1.71921,-8.88255 0.28653,-2.14901 1.2894,-2.86534 1.00287,-0.8596 2.29227,-0.8596 1.00287,0 2.14901,1.86247 1.14613,1.86247 2.43554,3.0086 1.43267,1.14614 4.72781,1.71921 3.43841,0.57307 5.58741,0.57307 h 53.86839 q 3.58168,0 6.01722,-0.71634 2.5788,-0.71633 3.86821,-1.43267 2.29227,-1.2894 3.58167,-2.86534 1.43267,-1.57594 3.29514,-1.57594 0.8596,0 1.14614,0.71634 0.4298,0.57307 0.4298,1.7192 0,0.57307 -0.14327,1.43267 0,0.8596 -0.14327,1.57594 -0.71633,2.72207 -1.43267,5.30088 -0.71633,2.43554 -1.14613,4.72781 -0.4298,2.29227 -0.4298,4.72781 v 2.86534 q 0,2.29227 -0.57307,3.72494 -0.4298,1.43267 -1.86247,1.43267 -1.2894,0 -2.14901,-1.2894 -0.8596,-1.43267 -1.86247,-4.44128 -1.57593,-5.15761 -4.72781,-7.59315 -3.0086,-2.43554 -9.31235,-2.43554 h -7.44989 q -2.43554,0 -4.01147,1.14614 -1.43267,1.00287 -2.14901,4.29801 -0.71633,3.15187 -0.71633,9.74215 v 57.73661 q 0,4.298 2.29227,6.30374 2.43554,1.86247 8.02295,3.29514 1.43267,0.4298 2.43554,1.00287 1.00287,0.57307 1.00287,1.86247 0,1.00287 -0.8596,1.57594 -0.8596,0.57307 -2.14901,0.57307 -3.15187,0 -7.16335,-0.28654 -3.86821,-0.14326 -7.87968,-0.28653 -3.86821,-0.14327 -6.73355,-0.14327 -3.00861,0 -6.87682,0.14327 -3.72494,0.14327 -7.59315,0.28653 -3.72494,0.28654 -7.02008,0.28654 z m 86.41863,1.57594 q -7.73642,0 -13.8969,-4.01148 -6.01722,-4.15474 -9.59889,-11.17483 -3.43841,-7.16335 -3.43841,-16.18917 0,-9.02582 4.15474,-16.33243 4.15475,-7.44989 11.3181,-11.7479 7.16335,-4.44128 15.75937,-4.44128 6.16048,0 11.03156,2.72208 4.87107,2.5788 7.73641,7.02008 3.00861,4.44128 3.00861,10.02869 0,5.44415 -4.44128,5.44415 h -28.6534 q -2.00573,0 -3.0086,1.14613 -0.8596,1.14614 -0.8596,3.86821 0,5.44415 2.43553,10.02869 2.43554,4.44128 6.59029,7.02008 4.15474,2.57881 9.59889,2.57881 4.15474,0 7.59315,-1.57594 3.58167,-1.57593 7.02008,-4.29801 0.57307,-0.4298 1.00287,-0.71633 0.57307,-0.4298 1.00287,-0.4298 1.43267,0 1.43267,1.86247 0,1.57594 -1.14614,4.29801 -1.43267,3.58167 -4.87108,7.16335 -3.29514,3.43841 -8.30948,5.58741 -5.01435,2.14901 -11.46136,2.14901 z m -7.02009,-44.69931 h 8.59602 q 4.01148,0 5.58742,-0.14326 1.57593,-0.14327 2.86534,-0.57307 0.71633,-0.28654 1.14613,-1.43267 0.4298,-1.14614 0.4298,-2.57881 0,-3.86821 -2.72207,-6.30375 -2.5788,-2.43554 -6.44701,-2.43554 -3.00861,0 -5.73068,1.71921 -2.57881,1.57594 -4.29801,4.29801 -1.57594,2.5788 -1.43267,5.44414 0,2.00574 2.00573,2.00574 z m 66.50444,44.69931 q -7.59315,0 -13.75363,-4.01148 -6.01722,-4.15474 -9.59889,-11.03156 -3.43841,-7.02008 -3.43841,-15.75937 0,-9.31235 4.29801,-16.76224 4.29801,-7.44988 11.46136,-11.89116 7.30662,-4.44128 16.18917,-4.44128 11.7479,0 19.48431,7.73642 1.28941,1.43267 1.28941,2.57881 0,0.8596 -1.28941,2.5788 -1.2894,1.57594 -2.86534,2.86534 -1.57593,1.28941 -2.72207,1.28941 -1.2894,0 -2.57881,-0.71634 -1.14613,-0.8596 -2.29227,-1.86247 -3.72494,-3.15187 -7.59315,-5.01434 -3.72494,-2.00574 -6.44701,-2.00574 -5.44415,0 -8.30949,4.58454 -2.72207,4.44128 -2.72207,14.61324 0,7.02008 2.149,12.17769 2.29227,5.01435 6.44702,7.73642 4.15474,2.72207 10.02869,2.72207 4.29801,0 7.44988,-1.2894 3.15188,-1.43267 6.59028,-4.29801 0.71634,-0.4298 1.14614,-0.8596 0.57307,-0.4298 1.2894,-0.4298 1.71921,0 1.71921,2.29227 0,0.57307 -0.28654,1.7192 -0.14327,1.00287 -0.8596,2.29227 -1.2894,2.86534 -5.01434,6.44702 -3.58168,3.58167 -8.59602,6.16048 -5.01435,2.57881 -11.17483,2.57881 z m 32.77943,-1.57594 q -2.86534,0 -2.86534,-2.00574 0,-1.86247 3.29514,-2.86534 2.149,-0.71633 3.72494,-1.57594 1.57594,-0.8596 1.7192,-4.01147 V 480.2869 q 0,-3.86821 -1.00286,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.57594,-0.28653 -1.57594,-2.149 0,-1.86247 1.43267,-2.14901 3.29515,-0.71633 7.44989,-2.00573 4.29801,-1.43267 8.30948,-2.86534 4.01148,-1.57594 6.16049,-2.29227 1.14613,-0.42981 1.86247,-0.42981 0.8596,0 1.14613,0.57307 0.28654,0.4298 0.28654,1.14614 0,0.71633 -0.28654,2.149 -0.14327,1.28941 -0.28653,3.29514 -0.14327,1.86247 -0.28654,4.44128 v 33.09468 q 0,1.43267 0.14327,2.5788 0.14327,1.14614 0.71634,1.57594 2.149,-1.86247 5.15761,-4.01148 3.0086,-2.29227 6.87681,-4.01147 4.01148,-1.71921 8.88256,-1.71921 7.59315,0 12.75076,5.44415 5.15761,5.30088 5.15761,14.89977 v 31.2322 q 0,3.00861 1.57594,4.15475 1.57594,1.00287 3.58167,1.7192 1.57594,0.4298 2.29228,1.14614 0.8596,0.57306 0.8596,1.7192 0,2.00574 -3.15188,2.00574 -3.4384,0 -5.58741,-0.28654 -2.149,-0.14326 -4.15474,-0.28653 -1.86247,-0.14327 -4.87108,-0.14327 -3.15187,0 -4.87108,0.14327 -1.7192,0.14327 -3.58167,0.28653 -1.86247,0.28654 -5.30088,0.28654 -3.58168,0 -3.58168,-2.14901 0,-1.14613 0.85961,-1.7192 1.00286,-0.71634 2.149,-1.00287 1.86247,-0.71633 3.43841,-1.86247 1.57594,-1.14614 1.57594,-4.29801 v -28.2236 q 0,-3.15187 -1.28941,-5.58741 -1.2894,-2.57881 -3.43841,-4.01148 -2.00573,-1.57593 -4.44127,-1.57593 -2.14901,0 -4.72781,0.71633 -2.57881,0.71634 -5.01435,2.43554 -1.14613,0.8596 -1.57594,2.00574 -0.28653,1.00287 -0.28653,3.15187 v 31.37547 q 0,2.86534 1.43267,4.01148 1.43267,1.00287 3.29514,1.7192 1.2894,0.4298 2.14901,1.14614 0.8596,0.57307 0.8596,1.7192 0,2.14901 -2.57881,2.14901 -2.86534,0 -5.44414,-0.28654 -2.43554,-0.14326 -4.72781,-0.28653 -2.14901,-0.14327 -4.72781,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z"
--         id="path12" /><path
-+         id="path16" /><path
-=         d="m 604.72815,740.17323 q -11.17482,0 -20.91698,-3.29514 -9.74216,-3.43841 -17.19204,-9.59889 -7.44988,-6.30374 -11.60463,-15.04303 -4.15474,-8.73929 -4.15474,-19.34105 0,-9.88542 3.86821,-18.76797 4.01147,-9.02582 11.60463,-15.90264 7.59315,-7.02008 18.1949,-11.03156 10.74503,-4.15474 24.21213,-4.15474 4.58454,0 9.16909,0.71633 4.72781,0.57307 9.02582,1.71921 4.44127,1.14613 8.02295,2.43554 1.2894,0.57306 2.149,1.57593 1.00287,0.85961 1.14614,2.57881 0.57307,4.72781 0.8596,9.16909 0.28653,4.44127 0.28653,8.02295 0,1.57594 -1.14613,2.149 -1.14614,0.57307 -2.57881,0.14327 -1.2894,-0.57307 -1.86247,-2.29227 -1.00287,-3.29514 -2.43554,-6.59028 -1.2894,-3.29514 -4.01147,-5.73068 -2.86534,-2.86534 -8.02295,-4.72781 -5.01435,-1.86247 -12.1777,-1.86247 -7.30662,0 -13.32383,3.15187 -5.87395,3.15187 -10.17196,8.59602 -4.15474,5.44415 -6.44701,12.32096 -2.29227,6.87682 -2.29227,14.3267 0,9.45562 2.00573,17.62184 2.00574,8.02295 6.16048,13.8969 4.15475,5.87395 10.17196,9.16909 6.01722,3.29514 14.18343,3.29514 10.60176,0 17.19204,-4.44128 6.59029,-4.58454 11.03156,-13.8969 1.14614,-2.5788 3.15188,-2.43553 2.149,0.14326 2.149,2.43553 0,1.86247 -0.4298,4.58455 -0.28653,2.5788 -1.00287,5.58741 -0.71633,3.00861 -1.7192,6.16048 -0.57307,1.71921 -1.57594,2.72207 -0.8596,0.85961 -2.29227,1.57594 -5.44415,2.29227 -12.89403,3.72494 -7.44988,1.43267 -16.33244,1.43267 z m 48.71073,-1.57593 q -1.28941,0 -2.14901,-0.4298 -0.71633,-0.57307 -0.71633,-1.57594 0,-1.14614 0.8596,-1.71921 0.8596,-0.71633 2.43554,-1.14613 2.149,-0.71634 3.72494,-1.57594 1.7192,-0.8596 1.7192,-3.86821 v -68.91142 q 0,-3.86821 -1.14613,-6.73355 -1.00287,-2.86534 -4.58455,-3.58168 -1.43267,-0.28653 -1.43267,-2.149 0,-1.86247 1.28941,-2.14901 3.72494,-0.71633 8.02295,-2.00574 4.29801,-1.43267 8.16622,-2.86534 3.86821,-1.57593 6.01721,-2.29227 1.14614,-0.4298 1.86247,-0.4298 0.8596,0 1.14614,0.57307 0.28653,0.4298 0.28653,1.14614 0,1.00286 -0.4298,3.72494 -0.28653,2.72207 -0.4298,6.16048 v 79.22665 q 0,3.15187 1.57594,4.01147 1.7192,0.71634 3.86821,1.43267 1.57593,0.57307 2.43554,1.14614 0.8596,0.57307 0.8596,1.7192 0,1.00287 -0.8596,1.57594 -0.71634,0.4298 -2.00574,0.4298 -2.72208,0 -5.44415,-0.14326 -2.5788,-0.14327 -5.15761,-0.14327 -2.43554,-0.14327 -5.01434,-0.14327 -2.43554,0 -4.87108,0.14327 -2.29227,0.14327 -4.72781,0.28653 -2.43554,0.28654 -5.30088,0.28654 z m 84.06909,2.5788 q -1.14613,0 -1.14613,-1.43267 0,-1.7192 0.28653,-4.58454 0.4298,-2.86534 0.4298,-4.44128 0,-0.57307 -0.14327,-1.00287 0,-0.4298 -0.14326,-0.57307 -3.86821,4.72782 -9.88542,8.02296 -6.01722,3.15187 -12.75077,3.15187 -4.44127,0 -8.02295,-2.57881 -3.58167,-2.72207 -5.73068,-7.30661 -2.00574,-4.58455 -2.00574,-10.31523 v -26.79092 q 0,-3.29515 -1.2894,-5.30088 -1.14614,-2.00574 -4.44128,-2.72208 -0.8596,-0.14326 -1.57593,-0.71633 -0.57307,-0.71634 -0.57307,-2.00574 0,-1.00287 0.57307,-1.57594 0.57306,-0.71633 1.57593,-0.8596 6.01722,-0.28653 10.88829,-1.14613 4.87108,-1.00287 9.88543,-2.29228 0.71633,-0.14326 1.43267,-0.28653 0.8596,-0.28653 1.57593,-0.28653 2.00574,0 1.86248,2.00573 -0.57307,3.29514 -0.85961,5.58742 -0.28653,2.149 -0.28653,5.44414 v 27.50727 q 0,3.4384 1.14614,6.01721 1.14613,2.57881 3.15187,4.01148 2.00574,1.43267 4.44128,1.57593 2.29227,0 4.44127,-0.57307 2.29228,-0.57306 4.29801,-2.5788 0.8596,-0.71634 1.86247,-2.86534 1.00287,-2.29227 1.00287,-6.01722 v -23.06598 q 0,-2.57881 -1.00287,-4.15474 -1.00287,-1.71921 -2.72207,-2.72208 -1.7192,-1.00287 -4.01147,-1.14613 -1.57594,-0.14327 -2.57881,-0.71634 -0.8596,-0.71633 -0.8596,-2.43554 0,-1.43267 1.00287,-2.149 1.00287,-0.71634 2.43554,-0.71634 7.30661,-0.4298 11.60462,-0.71633 4.29801,-0.4298 7.02008,-0.8596 2.72208,-0.42981 5.44415,-1.00287 0.4298,-0.14327 1.00287,-0.28654 0.57307,-0.14326 0.8596,-0.14326 2.14901,0 2.14901,1.7192 0,0.4298 -0.14327,1.00287 -0.14327,0.57307 -0.4298,1.14613 -0.14327,0.57307 -0.4298,2.57881 -0.14327,1.86247 -0.4298,4.01148 -0.14327,2.149 -0.14327,3.4384 v 33.23795 q 0,3.29514 0.71633,4.44127 0.85961,1.00287 1.86248,1.00287 0.71633,0 2.149,0.14327 1.43267,0 1.86247,0 1.2894,0 2.00574,0.71634 0.71633,0.71633 0.71633,1.86247 0,1.2894 -0.57306,2.149 -0.4298,0.71634 -1.86247,0.8596 -6.87682,0.57307 -12.46423,2.43554 -5.44415,1.71921 -9.45563,3.29514 -0.8596,0.28654 -1.86247,0.57307 -1.00287,0.4298 -1.86247,0.4298 z m 68.76825,-1.00287 q -4.15475,0 -7.73642,-0.71633 -3.43841,-0.71634 -6.30375,-1.43267 -2.149,-0.71634 -4.01147,-1.14614 -1.71921,-0.4298 -2.86534,-0.4298 -1.43267,0 -2.72208,0.57307 -1.2894,0.4298 -2.43554,1.2894 -1.2894,1.00287 -2.00573,1.00287 -1.28941,0 -2.00574,-0.57307 -0.57307,-0.57306 -0.57307,-1.2894 0,-1.2894 0.71633,-5.01434 0.85961,-3.72495 0.71634,-9.31236 l -0.57307,-63.75381 q 0,-3.72495 -1.14613,-6.59029 -1.00287,-3.0086 -4.44128,-3.72494 -0.71634,-0.14326 -1.2894,-0.71633 -0.42981,-0.57307 -0.42981,-1.57594 0,-0.71633 0.42981,-1.2894 0.4298,-0.57307 1.14613,-0.71634 3.15188,-0.57307 7.30662,-1.86247 4.15474,-1.43267 8.02295,-2.86534 4.01148,-1.57594 6.16048,-2.29227 1.43267,-0.57307 2.00574,-0.57307 0.8596,0 1.14614,0.57307 0.4298,0.4298 0.4298,1.14614 0,0.8596 -0.4298,3.58167 -0.28654,2.72207 -0.28654,5.44415 v 30.65913 q 0,1.86248 0.28654,3.00861 0.28653,1.00287 1.00286,1.00287 4.44128,-3.00861 9.16909,-4.58454 4.87108,-1.71921 9.16909,-1.71921 7.44988,0 13.4671,3.86821 6.01721,3.86821 9.45562,10.60176 3.58167,6.73355 3.58167,15.1863 0,10.02869 -4.44127,17.90838 -4.44128,7.73641 -12.32096,12.03442 -7.73642,4.29801 -18.19491,4.29801 z m 2.5788,-6.01721 q 3.86821,0 6.59028,-3.29514 2.72208,-3.43841 4.15475,-9.02582 1.57593,-5.58742 1.57593,-12.1777 0,-5.73068 -1.57593,-11.60462 -1.43267,-5.87395 -4.72781,-9.74216 -3.15188,-4.01148 -8.16622,-4.01148 -2.57881,0 -6.01722,0.85961 -3.4384,0.71633 -5.58741,2.43554 v 30.51587 q 0,4.58454 1.86247,8.30948 2.00574,3.72494 5.15761,5.73068 3.15188,2.00574 6.73355,2.00574 z"
--         id="path13" /></g><path
-+         id="path17" /></g><path
-=       d="m 362.90082,400.17788 q -10.43013,-6.79171 -14.06854,-11.88549 -3.63842,-4.85122 2.91073,-8.97476 1.45537,-0.97024 4.60866,1.69793 3.39585,2.42561 5.5789,4.60866 4.85122,4.36609 11.88549,5.33634 7.27683,1.2128 16.25159,-1.21281 10.18756,-3.15329 17.70695,-8.73219 7.76196,-5.82147 14.55366,-14.06854 5.09378,-6.54915 7.03427,-14.06854 1.94049,-7.76195 1.45537,-14.3111 -0.24256,-6.54915 -2.66817,-9.21732 -6.06403,-8.48963 -16.97927,-11.64293 -10.67269,-3.39585 -25.22635,0.48513 -1.69792,0.24256 -5.09378,0.97024 -3.39585,0.72768 -6.06402,1.45537 -2.66817,0.48512 -2.91074,0.48512 -1.69792,0.48512 -2.66817,1.2128 -0.97024,0.48512 -2.42561,3.63842 -1.2128,2.91073 -3.88097,10.67268 -2.66817,7.51939 -8.00452,22.31561 -5.09378,14.79623 -8.24707,21.10281 -2.91073,6.06403 -5.33634,5.57891 -2.18305,-0.72769 -5.5789,-5.33635 -1.94049,-3.39585 -2.42561,-6.54914 -0.48513,-3.39586 1.94048,-7.76196 1.21281,-2.18305 1.94049,-3.88097 0.72768,-1.94049 1.94049,-6.54915 1.2128,-3.63841 4.60866,-12.61317 3.63841,-9.21732 8.48963,-21.34537 4.85122,-12.37061 10.18757,-25.46891 5.33634,-13.09829 10.18756,-24.74122 5.09378,-11.64293 8.48963,-19.64744 3.39586,-7.51939 4.12354,-10.91524 0.72768,-3.39586 -0.48512,-3.63842 0,-1.2128 -0.72768,-2.18305 -0.72769,-1.2128 -0.48513,-2.18305 0,-0.97024 3.1533,-2.66817 3.39585,-1.69793 7.27683,-3.15329 4.12353,-1.45537 6.30658,-0.97025 1.21281,0 2.91073,0 1.69793,-0.24256 1.69793,-1.2128 0.72768,0 4.60866,-0.48512 3.88098,-0.48512 8.48964,0 16.25158,1.45536 25.22634,9.45988 8.97476,7.76195 8.7322,21.34536 -0.24256,4.12354 -4.3661,11.15781 -3.88098,7.03427 -9.70244,14.06854 -5.5789,7.03427 -10.91525,11.88549 -3.15329,2.66817 -6.79171,5.5789 -3.39585,2.66817 -6.06402,4.60866 -2.42561,1.69793 -2.42561,1.69793 0,0 1.94049,0.72768 1.94049,0.72768 4.12353,1.45537 11.15781,4.12353 18.43464,10.43012 7.27683,6.30659 9.945,17.46439 0.97025,3.63842 0,8.97476 -0.72768,5.33634 -2.18305,10.67268 -1.45536,5.09378 -3.15329,8.7322 -1.69793,1.69793 -2.66817,3.63841 -0.97024,1.69793 -0.97024,1.69793 0,0.48512 -1.94049,3.88098 -1.94049,3.15329 -4.60866,7.03427 -2.66817,3.88097 -5.09378,6.79171 -2.42561,1.94048 -5.82147,4.60865 -3.15329,2.66818 -7.27683,5.09379 -3.88097,2.42561 -8.48963,4.12353 -6.79171,2.91073 -14.79622,3.88098 -7.76196,1.2128 -14.79623,0.24256 -7.03426,-0.72768 -11.40036,-3.39585 z m 11.88549,-93.38599 q 0,0 4.3661,-0.72768 4.60865,-0.97025 9.945,-1.94049 5.33634,-1.21281 7.76195,-2.18305 1.2128,-0.72768 3.39585,-1.94049 2.42561,-1.2128 4.85122,-3.63841 3.39586,-3.1533 8.48964,-8.97476 5.33634,-6.06403 10.43012,-12.61317 5.09378,-6.79171 7.76195,-12.12805 5.57891,-8.7322 6.06403,-12.85574 0.48512,-4.3661 -2.66817,-7.51939 -2.18305,-2.66817 -7.51939,-3.39585 -5.09379,-0.97025 -10.91525,-0.48512 -5.82146,0.24256 -9.945,1.45536 -3.15329,0.97025 -4.85122,2.42561 -1.69793,1.21281 -1.69793,3.88098 0,2.18305 -1.45536,4.3661 -1.21281,1.94048 -2.42561,3.15329 -0.24256,1.69793 -1.21281,3.15329 -0.97024,1.21281 -0.97024,1.21281 0,0.97024 -3.39586,8.00451 -3.39585,7.03427 -6.7917,16.25159 -4.3661,10.43012 -6.79171,16.97927 -2.42561,6.30658 -2.42561,7.51939 z m 131.46817,71.07037 q -5.09378,4.3661 -11.88548,5.09378 -6.54915,0.72769 -12.85574,-1.94048 -6.30658,-2.91074 -10.43012,-8.7322 -4.12354,-5.33634 -5.33634,-12.12805 -1.21281,-7.03427 -0.24256,-18.19208 0.72768,-9.45987 6.06402,-18.91975 5.33634,-9.70244 12.85573,-17.22184 7.76196,-7.51939 15.28135,-10.43012 3.63841,-2.42561 6.06402,-2.18305 2.66817,0 8.00452,0.48512 5.5789,0.72769 8.24707,2.18305 2.91073,1.45537 4.60866,3.88098 3.63841,3.63841 4.85122,7.27683 1.2128,3.39585 1.2128,6.79171 -0.97024,5.33634 -7.27683,13.09829 -6.06402,7.51939 -16.00902,12.37061 -5.33634,1.69793 -11.64293,1.45537 -6.30659,-0.24256 -10.43012,-3.15329 -4.60866,-1.94049 -6.06403,0.72768 -1.45536,2.42561 -2.66817,12.12805 -0.97024,9.21732 1.45537,13.58342 2.42561,4.12353 6.54914,4.85122 4.85122,0.97024 7.51939,1.45536 2.91074,0.24256 7.03427,-2.18305 3.88098,-2.42561 4.85122,-2.66817 0.97025,-0.48512 1.45537,-0.97024 0.72768,-0.72769 3.15329,-3.1533 1.69793,-1.69792 2.66817,-2.42561 0.97025,-0.97024 2.18305,-0.97024 1.21281,0 2.18305,1.21281 0.97025,0.97024 1.94049,1.45536 2.42561,0 0.97024,2.91073 -1.2128,2.91074 -5.09378,7.03427 -3.88097,3.88098 -9.21732,7.27683 z m -0.24256,-51.42293 q 2.66818,-1.2128 5.57891,-3.39585 2.91073,-2.42561 4.85122,-5.09379 2.18305,-2.91073 2.18305,-4.85122 0,-3.39585 -3.1533,-5.5789 -3.15329,-2.42561 -9.45988,-0.72768 -2.66817,0.72768 -6.06402,3.63841 -3.39586,2.66817 -6.54915,6.06403 -2.91073,3.39585 -4.85122,6.06402 -1.69793,2.66818 -1.2128,3.1533 0.72768,1.2128 4.12353,1.94049 3.39586,0.48512 7.51939,0.24256 4.3661,-0.24256 7.03427,-1.45537 z m 55.54667,58.21464 q -2.66817,-0.48512 -5.57891,-2.66817 -2.66817,-2.42561 -4.85122,-5.33634 -1.94048,-3.1533 -2.66817,-5.57891 0,-0.48512 -0.72768,-1.2128 -0.48512,-0.72768 -0.48512,-0.72768 -0.97025,-0.72769 -1.21281,-6.30659 0,-5.82146 0.72769,-12.85573 0.72768,-7.03427 1.69792,-11.15781 1.21281,-3.88097 3.63842,-10.43012 2.42561,-6.79171 4.12353,-12.12805 l 6.54915,-14.06854 -9.70244,-2.66817 q -1.69793,-0.48512 -2.91073,-1.94049 -0.97024,-1.45537 -0.97024,-2.42561 0,-1.94049 2.18304,-4.60866 2.18305,-2.91073 3.1533,-2.91073 1.2128,0.24256 4.3661,0.24256 3.39585,0 6.54914,-0.24256 3.1533,-0.24256 3.88098,-0.48512 0.97024,-0.48512 1.94049,-1.21281 0.97024,-0.97024 1.45536,-2.66817 1.21281,-2.66817 2.18305,-4.85122 0.97025,-2.42561 2.66817,-5.33634 1.69793,-3.15329 2.66817,-5.33634 1.21281,-2.18305 3.63842,-6.06403 1.2128,-1.69793 2.66817,-4.12354 1.45537,-2.42561 3.63842,-4.12353 2.18304,-1.94049 4.36609,-1.69793 2.42561,0 6.06403,3.15329 1.94049,2.42561 2.18305,3.63842 0.24256,1.2128 -1.94049,4.60866 -1.94049,4.12353 -4.60866,8.24707 -2.42561,4.12354 -4.60866,8.24708 -3.88097,5.33634 -1.45536,6.06402 2.42561,0.72768 13.58341,-0.97024 7.03427,-1.21281 10.18756,0.72768 3.1533,1.69793 3.63842,5.82146 0.72768,5.82147 -1.21281,7.03427 -1.94048,1.21281 -11.1578,1.21281 -5.82147,0.97024 -9.945,1.2128 -4.12354,0 -6.06403,0 -3.15329,0.24256 -4.12354,0.24256 -0.97024,0 -2.91073,0.48513 -1.94049,0.48512 -2.91073,1.69792 -0.72768,0.97025 -1.69793,2.91074 -0.97024,0.97024 -2.91073,5.09378 -1.94049,4.12353 -4.85122,8.97475 -3.39585,10.18757 -5.82146,20.37513 -2.42561,9.945 -3.88098,19.40488 -0.97024,6.06402 0.24256,8.48963 1.21281,2.18305 6.30659,2.66817 2.66817,0.24257 8.48963,0 6.06403,-0.48512 9.45988,-1.45536 2.66817,-1.21281 5.57891,-2.42561 2.91073,-1.45537 5.33634,-2.91073 2.18305,-1.21281 4.3661,-2.42561 2.18304,-1.45537 2.18304,-1.45537 1.21281,-1.94049 2.66818,-1.2128 1.45536,0.72768 2.42561,3.63841 0,2.91073 -1.21281,6.06403 -1.2128,3.15329 -8.97476,7.51939 -10.91524,6.79171 -20.13256,8.24707 -8.97476,1.21281 -15.28134,0 z m 91.44534,1.21281 q -3.39585,-0.97025 -5.5789,-2.18305 -2.18305,-1.45537 -5.82147,-4.60866 -2.91073,-3.88098 -4.60866,-7.27683 -1.45536,-3.39586 -1.94048,-7.76195 -0.48513,-4.60866 -0.48513,-11.64293 0,-2.91073 0.97025,-8.7322 1.2128,-5.82146 2.66817,-12.12805 1.69793,-6.54915 2.91073,-11.64293 1.45537,-5.09378 1.69793,-6.54914 0.72768,-3.1533 -2.42561,-3.63842 -3.1533,-0.48512 -7.03427,-0.24256 -3.63842,0 -4.85122,-0.72768 -0.97025,-0.24256 -0.97025,-0.72769 0,-0.72768 0,-0.72768 0,-0.97024 -0.24256,-1.2128 0,-0.48513 -0.72768,-1.69793 -0.48512,-0.97025 0.48512,-2.66817 1.21281,-1.94049 3.88098,-2.42561 2.18305,-0.48512 5.82146,-0.72769 3.88098,-0.48512 7.76195,-1.69792 3.88098,-1.45537 6.30659,-4.3661 2.18305,-5.33634 5.09378,-11.88549 2.91073,-6.54915 5.57891,-11.64293 2.91073,-5.33634 3.88097,-6.54915 4.12354,-2.18304 6.06403,-1.69792 1.94048,0.24256 4.36609,4.12353 1.21281,1.69793 1.69793,2.66818 0.72768,0.97024 0.24256,2.91073 -0.48512,1.94049 -2.66817,6.06402 -1.94049,4.12354 -6.06402,11.88549 -1.21281,2.42561 -2.18305,4.3661 -0.97025,1.69793 -0.97025,1.69793 0.97025,0.24256 2.91074,0.24256 1.94048,0 4.85122,-0.24256 2.66817,-0.48512 6.7917,-0.72769 4.12354,-0.48512 6.54915,0 5.5789,0 8.24707,2.18305 2.66818,1.94049 2.91074,6.79171 0.48512,2.66817 -1.21281,3.15329 -1.45536,0.48513 -8.00451,0.48513 -2.18305,0 -6.79171,0.24256 -4.60866,0.24256 -9.70244,0.48512 -4.85122,0.24256 -8.48963,0.72768 -3.39586,0.24256 -3.39586,0.72769 -0.72768,0.48512 -2.42561,4.60865 -1.45537,4.12354 -3.15329,9.45988 -1.45537,5.09379 -2.66817,9.21732 -1.69793,8.24708 -2.66817,16.49415 -0.72769,8.24707 -0.24257,14.3111 0.48513,6.06402 2.66818,8.48963 2.18304,2.18305 8.48963,0.97025 6.30659,-1.45537 10.18756,-4.60866 4.3661,-3.63842 7.03427,-3.63842 2.91073,0 3.1533,2.66818 0.48512,2.42561 -2.66818,7.03426 -2.91073,4.3661 -7.27683,7.76196 -4.36609,3.15329 -9.21731,4.60866 -4.60866,1.2128 -8.7322,0 z m 73.25327,1.2128 q -10.67269,0 -17.46439,-8.00451 -6.79171,-8.24708 -6.54915,-20.37513 0.48512,-8.73219 3.39585,-18.67719 3.1533,-10.18757 8.24708,-19.40488 5.09378,-9.45988 11.1578,-16.49415 6.06403,-7.03427 12.61317,-9.945 2.42561,-1.21281 5.09379,-1.94049 2.91073,-0.72768 5.82146,-0.72768 2.66817,0 5.5789,0.97024 2.91073,0.72768 4.85122,1.69793 4.12354,1.69792 6.30659,4.12353 2.18305,2.42561 3.88098,7.51939 0.72768,4.60866 0.72768,6.54915 0,1.94049 -1.21281,5.82147 -2.91073,8.73219 -7.51939,15.03878 -4.60866,6.30658 -12.37061,10.67268 -1.94049,1.21281 -4.60866,1.94049 -2.42561,0.48512 -5.09378,0.48512 -4.85122,0 -9.45988,-1.69792 -4.3661,-1.94049 -7.03427,-5.57891 l -1.69792,-1.94049 -0.72769,1.94049 q -2.42561,6.54915 -3.88097,12.12805 -1.21281,5.57891 -1.21281,10.18756 0,2.91074 0.48512,5.57891 0.72769,2.66817 1.94049,4.60866 0.97025,1.45536 3.15329,2.18305 2.42561,0.48512 5.09379,0.48512 1.69792,0 3.39585,0 1.94049,-0.24256 3.63841,-0.97025 4.12354,-1.45536 6.54915,-3.15329 2.66817,-1.69793 5.33634,-3.63841 l 0.97025,-0.48513 h -0.24256 q 2.91073,-1.45536 5.09378,-2.91073 2.42561,-1.45536 2.42561,-1.45536 0.97024,0 1.94049,-1.21281 1.94048,-0.97024 4.85122,0.72768 3.15329,1.69793 3.15329,4.3661 -0.24256,1.21281 -2.18305,3.88098 -1.94049,2.42561 -4.3661,4.60866 -2.18305,2.18305 -3.63841,2.42561 -0.24256,0.24256 -1.69793,0.97024 -1.45537,0.48512 -1.94049,0.97025 h 0.24256 q -2.18305,2.91073 -4.3661,2.91073 h -1.94048 q -0.97025,1.69792 -6.30659,3.88097 -5.33634,1.94049 -10.43012,1.94049 z m 10.91524,-53.36342 q 4.3661,0 7.51939,-2.42561 3.39586,-2.66817 5.82147,-5.82146 4.85122,-6.54915 5.5789,-12.61318 0.97024,-6.30658 -1.45537,-8.73219 -1.45536,-0.72769 -2.66817,-0.72769 -0.97024,-0.24256 -4.12353,0.72769 -2.18305,0.48512 -6.06403,3.63841 -3.88097,3.1533 -7.76195,7.03427 -3.63842,3.88098 -5.5789,6.54915 l -3.1533,5.09378 q 1.94049,-0.72768 3.63842,-0.72768 1.94049,-0.24256 2.18305,0.24256 0,2.18305 0.72768,4.12354 0.97024,1.69792 2.18305,2.66817 1.45537,0.97024 3.15329,0.97024 z m 56.75947,47.05684 q -1.2128,2.42561 -3.63841,1.45536 -2.18305,-0.97024 -3.63842,-1.94049 -1.69793,0 -2.91073,-0.97024 -1.21281,-0.97024 -1.69793,-2.91073 -0.48512,-1.45537 -0.24256,-3.39586 0.24256,-2.18305 0.97024,-4.85122 0.97025,-2.91073 1.94049,-6.30658 1.94049,-8.00452 2.66817,-11.64293 0.72769,-3.63842 1.45537,-6.30659 0.72768,-2.66817 1.94049,-7.76195 1.94049,-4.85122 3.15329,-9.45988 1.21281,-4.60866 3.63842,-9.21732 1.69792,-6.30658 4.12353,-11.88549 2.66817,-5.82146 5.09378,-9.70244 0.48513,-0.72768 1.69793,-1.94048 1.45537,-1.21281 2.42561,-1.21281 1.94049,-1.94049 3.39586,-1.45537 1.69792,0.24257 4.12353,2.18305 2.91073,3.1533 2.18305,7.27683 -0.48512,4.12354 -5.82146,12.12805 -2.91073,7.51939 -5.33634,13.0983 -2.42562,5.33634 -3.39586,10.18756 2.66817,-3.88098 5.82147,-7.03427 3.39585,-3.39585 5.5789,-5.5789 5.33634,-5.33634 8.73219,-7.76195 3.63842,-2.42561 8.48964,-5.57891 2.91073,-1.94049 5.5789,-3.39585 2.66817,-1.69793 5.82147,-2.42561 3.39585,-0.72768 7.27683,0 2.42561,-0.24256 3.88097,1.45536 1.69793,1.69793 2.66817,4.60866 0.97025,2.91074 1.21281,6.79171 -5.5789,-1.2128 -9.945,0.48512 -4.3661,1.45537 -7.51939,3.63842 -2.91074,2.18305 -4.60866,3.39585 -3.63842,2.42561 -9.21732,6.54915 -5.5789,3.88098 -11.15781,9.45988 -4.36609,4.85122 -7.51939,8.24707 -2.91073,3.39586 -4.85122,6.06403 -1.69793,2.66817 -2.66817,5.5789 -2.42561,5.5789 -5.09378,12.12805 -2.66817,6.54915 -4.60866,8.00452 z"
-=       id="text4"
-=       style="font-size:242.561px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Normal';fill:#fac036;stroke-width:1.69307"
-@@ -130,8 +130,8 @@
-=       id="path2" /></g><g
-=     id="text6"
-=     style="font-weight:bold;font-size:62.2034px;line-height:1.25;font-family:Caveat;-inkscape-font-specification:'Caveat, Bold';text-align:center;text-anchor:middle;fill:#fac036;stroke-width:3.88772"
--     aria-label="Neighborhood communities&#10;for digital independence"><path
--       d="m 218.46753,869.64038 q -1.24406,-0.68424 -1.67949,-1.61729 -0.43542,-0.93305 -0.37322,-2.05271 0.12441,-1.11966 0.43543,-2.30153 0.49762,-1.99051 1.05745,-3.29678 0.62204,-1.36847 1.18187,-2.79915 0.62203,-1.49288 1.05746,-3.79441 0.99525,-2.30153 1.74169,-4.35424 0.80865,-2.05271 1.24407,-3.35898 0.43542,-1.30627 0.43542,-1.30627 0.0622,-0.24882 0.49763,-1.30627 0.49763,-1.05746 1.18186,-2.55034 0.74645,-1.55509 1.43068,-3.11017 1.05746,-2.98577 1.99051,-5.03848 0.93305,-2.11491 1.8661,-3.79441 0.99526,-1.67949 2.11492,-3.35898 0.74644,-1.30627 2.11491,-1.55508 1.36848,-0.24882 2.61255,0.31101 1.24407,0.49763 1.61729,1.7417 0.31101,0.62203 0.49762,1.43068 0.24882,0.80864 0.43543,2.42593 0.24881,1.55508 0.31101,4.54085 0.12441,3.54559 0.12441,6.53135 0.0622,2.92356 0.24881,5.4117 0.24882,2.48814 0.80865,4.54085 0.18661,1.11966 0.37322,2.73695 0.18661,1.55508 0.37322,3.11017 0.24881,1.55508 0.49763,2.61254 0.24881,0.99525 0.49762,0.99525 0.31102,0 0.68424,-0.49762 0.43542,-0.55983 1.11966,-2.30153 0.68424,-1.74169 1.7417,-5.34949 1.05746,-3.6078 2.55034,-9.70373 0.31101,-1.05746 0.80864,-3.42119 0.55983,-2.36373 0.80865,-4.78966 0.43542,-1.55509 0.87084,-3.42119 0.43543,-1.8661 0.74644,-3.29678 0.37322,-1.43068 0.37322,-1.61729 0,-0.43542 0,-0.74644 0.0622,-0.31101 0,-0.62203 0.31102,0 0.55983,-0.80864 0.24882,-0.87085 0.24882,-1.49289 0,-1.05745 0.24881,-1.67949 0.31102,-0.68424 0.62204,-0.99525 0.68423,-1.24407 1.74169,-1.24407 1.11966,-0.0622 2.05271,0.62203 0.93305,0.62204 1.11966,1.55509 0.12441,0.68424 -0.37322,3.11017 -0.43542,2.36373 -1.36847,6.40695 0,0.68424 -0.37322,2.23932 -0.37322,1.55509 -0.80865,3.29678 -0.37322,1.7417 -0.55983,2.98576 -0.24881,1.61729 -0.55983,3.04797 -0.31101,1.36848 -0.62203,1.30627 -1.61729,7.02899 -3.42119,12.00526 -1.74169,4.91407 -3.11017,8.02424 -1.49288,3.42118 -3.85661,4.35423 -2.30152,0.99526 -4.29203,-1.55508 -1.18187,-1.61729 -1.99051,-3.17237 -0.80865,-1.55509 -1.30627,-3.67 -0.49763,-2.11492 -0.87085,-5.3495 -0.37322,-2.61254 -0.68424,-5.10068 -0.24881,-2.55033 -0.37322,-5.16288 -0.12441,-2.67474 -0.0622,-5.66051 0.0622,-3.54559 -0.31102,-4.16762 -0.31102,-0.62204 -0.93305,0.68423 -0.62203,1.30627 -1.43068,3.5456 -0.43542,1.24406 -1.05746,2.86135 -0.55983,1.55509 -1.18186,3.11017 -0.62203,1.55509 -1.05746,2.67475 -0.43542,1.11966 -0.55983,1.43068 -0.37322,0.74644 -0.87085,1.99051 -0.49762,1.18186 -0.80864,2.55034 -2.23932,5.84712 -3.35898,10.07695 -1.05746,4.16762 -1.55509,5.5361 -0.62203,1.74169 -1.18186,2.11491 -0.49763,0.37322 -2.05272,-0.49762 z m 50.50915,-6.53136 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.8039,4.29203 -1.43067,2.30153 -4.04322,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43542,0.62203 -0.37322,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43067,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93306,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30153,-0.18661 -0.49762,0.12441 -1.18186,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99574,15.05322 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24881,0 1.05746,0.24881 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23932,2.17711 z m 9.14384,38.3173 q -1.74169,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49762,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80864 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.7417,0.0622 0.87084,0.24881 0.99525,0.62203 0.18661,0.43543 0.37322,0.87085 0.18661,0.49763 0.43543,0.87085 0.31101,0.43542 0.55983,0.74644 0.68423,1.05746 1.49288,1.43068 0.80864,0.43542 1.24407,0.1244 1.05745,-0.80864 1.55508,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68424,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43543,-1.24407 0.31101,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36848,0.87085 -2.30153,1.7417 -0.93305,0.87084 -2.55034,1.55508 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79915,-0.37322 -0.87085,-0.49763 -1.43068,-0.99525 -0.49763,-0.55983 -0.87085,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.1244,-3.04797 0.31101,-2.11491 1.11966,-4.22983 0.74644,-1.55508 2.17712,-3.35898 1.43067,-1.8039 3.04796,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.7417,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05745,0.1244 1.61729,0.49762 0.55983,0.31102 1.80389,1.36848 0.80865,0.80864 1.99051,2.11491 1.18187,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87084,1.8661 -0.55983,0.80865 -1.18187,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18186,4.22983 -0.87085,2.30153 -1.36848,4.29204 l -0.99525,3.85661 q -1.55509,5.28729 -3.42119,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24407,-0.0622 2.11491,-0.24881 0.93306,-0.24882 1.7417,-0.99526 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43543,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62203,1.8661 -0.55983,2.98576 0.12441,1.11967 0.74644,1.36848 z m 36.82443,7.96203 q -1.55508,0.74644 -3.04796,0.55983 -1.43068,-0.24881 -2.42594,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.1244,-0.99525 0.37322,-2.05271 0.24881,-1.11966 0.62203,-2.23932 0.18661,-0.55983 0.49763,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24882,0 -0.62204,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55508,1.36848 -2.86135,2.86136 -1.24407,1.43068 -2.23932,2.86135 -0.93306,1.36848 -1.49289,2.55034 -0.49762,1.18187 -0.49762,1.99051 0,0.93305 -0.93305,1.30627 -0.93306,0.37322 -1.61729,-0.0622 -1.18187,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49762,-5.22508 0.31102,-2.30153 0.99526,-4.97628 0.74644,-2.73695 1.9283,-6.65576 0.80865,-2.17712 1.49289,-4.10542 0.68423,-1.99051 1.18186,-3.35899 0.55983,-1.36847 0.68424,-1.67949 0.31102,-0.31102 0.80864,-1.49288 0.49763,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24882,-0.37322 0.43543,-0.68423 0.37322,-0.87085 0.62203,-1.18187 0.31102,-0.37322 0.55983,-0.37322 0.31102,0 0.99526,0.31102 0.74644,0.31101 1.36847,0.80864 0.68424,0.43543 0.80865,0.93305 0.43542,0.87085 0.49762,1.8039 0.0622,0.87085 -0.43542,2.17712 -0.49763,1.30627 -1.7417,3.6078 -0.99525,1.9283 -1.80389,3.98102 -0.80865,2.05271 -1.55509,4.29203 -0.31102,0.93305 -0.80864,2.48814 -0.49763,1.49288 -0.99526,3.11017 -0.43542,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49763,-0.0622 0.99526,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55983,-0.49763 0.99525,-0.99526 0.49763,-0.62203 1.18187,-1.43067 0.74644,-0.87085 1.55508,-1.61729 0.87085,-0.80865 1.55509,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18186,0 1.99051,0.68424 0.80864,0.68423 1.36847,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99525,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43542,1.11966 0,0 0.62204,-0.37322 0.68423,-0.37322 1.43068,-0.80864 1.80389,-1.18187 2.61254,-0.74644 0.80864,0.43542 0.80864,1.11966 0,0.55983 -0.43542,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80865,0.87085 -0.80864,0.74644 -1.80389,1.49288 -0.93306,0.68424 -1.49289,0.80864 z m 12.19183,-2.17712 q 0,-0.49762 -0.12441,-0.93305 -0.1244,-0.43542 0.12441,-0.68423 l 0.49763,0.1244 q -0.24882,0.0622 -0.99526,0.0622 -0.68424,-0.0622 -1.30627,-0.18661 -0.55983,-0.18661 -0.62203,-0.31102 0.0622,-1.05746 0.1244,-1.61729 0.12441,-0.55983 0.31102,-0.93305 0,-0.55983 0.37322,-1.43068 0.37322,-0.87085 0.62203,-1.8039 0.24882,-1.05745 0.62204,-3.17237 0.43542,-2.11492 1.24407,-4.04322 0.49762,-1.61729 1.24406,-4.04322 0.74645,-2.48814 1.43068,-4.10543 0.74644,-2.86135 1.36848,-4.60305 0.68423,-1.8039 1.36847,-3.23457 0.74644,-1.49289 1.61729,-3.35899 0.24881,-0.49763 0.49763,-1.24407 0.24881,-0.80864 0.43542,-1.36847 0.55983,-0.99526 1.55509,-1.24407 1.05745,-0.24881 1.8039,0.49763 0.68423,0.68424 1.05745,1.24407 0.37322,0.49762 0.18661,1.67949 -0.1244,1.11966 -1.18186,3.7322 -0.43543,0.62204 -0.99526,2.11492 -0.49762,1.43068 -0.93305,2.55034 -0.93305,2.17712 -1.49288,3.7322 -0.55983,1.55509 -1.05746,3.17237 -0.43542,1.7417 -1.11966,3.42119 -0.68423,1.61729 -1.30627,3.5456 l -0.99525,0.31101 q 0.43542,-0.55983 1.05745,-1.30627 0.68424,-0.74644 1.24407,-1.36847 0.62204,-0.62204 0.80865,-0.80865 1.67949,-1.43068 3.7322,-2.48813 2.05271,-1.05746 3.85661,-1.49289 1.8661,-0.49762 2.79915,-0.1244 1.11967,0.37322 2.17712,1.61729 1.05746,1.18186 1.43068,2.98576 0.49763,0.99525 -0.12441,2.61254 -0.55983,1.61729 -1.74169,3.79441 -1.05746,1.9283 -2.42593,3.7322 -1.36848,1.7417 -2.61255,2.92356 -0.43542,0.24882 -1.11966,0.87085 -0.62203,0.55983 -1.11966,1.11966 -1.30627,1.18187 -3.23457,1.7417 -1.86611,0.49762 -3.79441,0.49762 -1.92831,-0.0622 -3.42119,-0.62203 -1.43068,-0.55983 -1.8661,-1.55509 z m 1.8661,-2.61254 q 0.31102,0.0622 0.62203,0.12441 0.31102,0 0.68424,0 1.36848,-0.18661 2.17712,-0.12441 0.87085,0 1.67949,-0.18661 0.87085,-0.18661 1.99051,-0.87085 1.61729,-1.24406 2.67475,-2.67474 1.11966,-1.43068 2.30152,-2.92356 1.05746,-1.36848 1.6795,-2.73695 0.62203,-1.43068 0.62203,-2.48814 0,-0.55983 -0.31102,-0.55983 -0.1244,0 -1.11966,0.37322 -0.99525,0.31102 -2.05271,0.80865 -0.99526,0.43542 -1.30627,0.74644 0,0.24881 -0.37322,0.43542 -0.37322,0.12441 -0.37322,0.12441 -1.92831,1.43068 -2.86136,2.23932 -0.87085,0.74644 -1.61729,1.67949 -0.43542,0.62204 -0.68424,0.93305 -0.24881,0.24882 -0.43542,0.49763 -0.18661,0.18661 -0.55983,0.74644 -0.37322,0.55983 -1.11966,1.7417 -0.43542,0.80864 -0.87085,1.55508 -0.43542,0.74644 -0.74644,0.87085 z m 28.48917,6.34475 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.19184,7.15339 q -0.55983,-0.43543 -1.24407,-1.11966 -0.62203,-0.68424 -0.43542,-1.92831 0.18661,-1.7417 0.49763,-3.04797 0.31102,-1.36847 0.74644,-3.11017 0.12441,-0.74644 0.62203,-2.55034 0.55983,-1.80389 1.30627,-3.91881 0.74645,-2.11492 1.55509,-3.98102 0.80864,-1.9283 1.43068,-2.86135 0.68423,-0.62204 1.99051,-0.62204 1.36847,0 1.8661,0.49763 0.68424,0.55983 0.43542,1.99051 -0.24881,1.36847 -1.74169,4.29203 -0.31102,0.74644 -0.80865,1.61729 -0.43542,0.80865 -0.62203,1.36848 -0.18661,0.49762 0.12441,0.43542 0.37322,-0.68424 1.36847,-1.55509 0.99525,-0.93305 2.11492,-1.80389 1.11966,-0.87085 2.11491,-1.55509 0.99526,-0.68424 1.36848,-0.87085 0.49762,-0.31101 1.11966,-0.49762 0.68423,-0.24882 0.93305,-0.37322 1.43068,-0.68424 3.11017,-0.49763 1.74169,0.12441 2.11491,1.05746 0.0622,0.49762 0.37322,0.74644 0.37322,0.24881 0.37322,0.24881 0.24882,0 0.24882,0.18661 0.0622,0.18661 0.0622,0.18661 0,0.43542 -0.87085,1.24407 -0.80864,0.80864 -1.80389,0.87085 -0.80865,0.0622 -1.43068,0.31101 -0.62204,0.24882 -1.49288,0.62204 -2.36373,1.36847 -4.29204,2.42593 -1.8661,1.05746 -3.85661,3.23458 -0.43542,0.49762 -0.93305,0.93305 -0.49763,0.43542 -0.99525,1.24407 -0.31102,0.31101 -0.62204,1.36847 -0.31102,1.05746 -0.55983,2.05271 -0.18661,0.93305 -0.18661,1.11966 0,0 -0.18661,0.62204 -0.18661,0.55983 -0.62203,1.11966 -0.74644,0.99525 -1.49289,1.24407 -0.68423,0.24881 -1.67949,-0.74644 z m 41.17868,0.68423 q -1.55509,0.74644 -3.04797,0.55983 -1.43068,-0.24881 -2.42593,-1.55508 -0.93305,-1.36848 -0.93305,-3.98102 0,-0.68424 0.0622,-1.61729 0.12441,-0.99525 0.37322,-2.05271 0.24882,-1.11966 0.62204,-2.23932 0.18661,-0.55983 0.49762,-1.11966 0.37322,-0.55983 0.12441,-0.55983 -0.24881,0 -0.62203,0.31101 -0.31102,0.31102 -0.49763,0.49763 -1.55509,1.36848 -2.86136,2.86136 -1.24406,1.43068 -2.23932,2.86135 -0.93305,1.36848 -1.49288,2.55034 -0.49763,1.18187 -0.49763,1.99051 0,0.93305 -0.93305,1.30627 -0.93305,0.37322 -1.61729,-0.0622 -1.18186,-0.68424 -2.17712,-2.11492 -0.93305,-1.43067 -0.74644,-3.7322 0.18661,-2.92356 0.49763,-5.22508 0.31102,-2.30153 0.99525,-4.97628 0.74645,-2.73695 1.92831,-6.65576 0.80864,-2.17712 1.49288,-4.10542 0.68424,-1.99051 1.18187,-3.35899 0.55983,-1.36847 0.68423,-1.67949 0.31102,-0.31102 0.80865,-1.49288 0.49762,-1.24407 0.87085,-2.48814 0.43542,-1.24407 0.43542,-1.49288 0,-0.49763 0.18661,-0.87085 0.24881,-0.37322 0.43542,-0.68423 0.37322,-0.87085 0.62204,-1.18187 0.31101,-0.37322 0.55983,-0.37322 0.31101,0 0.99525,0.31102 0.74644,0.31101 1.36848,0.80864 0.68423,0.43543 0.80864,0.93305 0.43542,0.87085 0.49763,1.8039 0.0622,0.87085 -0.43543,2.17712 -0.49762,1.30627 -1.74169,3.6078 -0.99526,1.9283 -1.8039,3.98102 -0.80864,2.05271 -1.55508,4.29203 -0.31102,0.93305 -0.80865,2.48814 -0.49763,1.49288 -0.99525,3.11017 -0.43543,1.55508 -0.74644,2.79915 -0.31102,1.24407 -0.31102,1.61729 0,0.43542 0.49763,0.43542 0.49762,-0.0622 0.99525,-0.74644 0.24881,-0.49763 0.80864,-0.93305 0.55984,-0.49763 0.99526,-0.99526 0.49763,-0.62203 1.18186,-1.43067 0.74644,-0.87085 1.55509,-1.61729 0.87085,-0.80865 1.55508,-1.30627 0.74644,-0.49763 1.24407,-0.49763 1.18187,0 1.99051,0.68424 0.80864,0.68423 1.36848,2.11491 0.18661,0.18661 0.37322,0.49763 0.18661,0.24881 0.24881,0.37322 0.31102,0.24881 0.31102,1.99051 0,1.67949 -0.99526,4.66525 -0.55983,2.30153 -0.68424,3.42119 -0.0622,1.11966 0.43543,1.11966 0,0 0.62203,-0.37322 0.68424,-0.37322 1.43068,-0.80864 1.8039,-1.18187 2.61254,-0.74644 0.80865,0.43542 0.80865,1.11966 0,0.55983 -0.43543,1.30627 -0.37322,0.74644 -0.37322,0.99525 0,0 0,0.0622 0,0 0,0.24881 0,0.12441 -0.80864,0.87085 -0.80865,0.74644 -1.8039,1.49288 -0.93305,0.68424 -1.49288,0.80864 z m 13.06268,0.55983 q -0.80864,0 -1.30627,-0.31101 -0.43543,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24881,-0.37322 0.37322,0 0.24882,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42593,0.99525 1.43068,0.62203 1.99051,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55984,2.67475 -3.04797,6.22034 -1.55509,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30627,-3.35899 0.24882,-0.37322 0.31102,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43542,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55509,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.74169,0.43542 1.24407,-0.37322 2.98577,-2.05271 z m 17.85233,7.52661 q -1.30627,0.24881 -1.9905,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55983,-0.18661 0.18661,0 0.93306,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18187,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.5456,1.24407 z m 0.18661,-5.22508 q 0.24882,0 0.87085,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43542,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68424,-0.31101 -0.62203,0 -0.87084,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99526,-1.24407 -1.05745,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99525,0.37322 z m 32.40795,6.46915 q -0.68423,0.24881 -1.55508,0.24881 -0.80865,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17711 0.43542,-1.49289 0.18661,-1.86611 -0.24882,-0.37322 -1.49289,-0.43542 -1.43067,-0.0622 -2.98576,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31102 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49763 0.43542,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24882 0.1244,0.93305 0.18661,0.68424 0.62204,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05745 -2.23933,-3.91881 -0.43542,-2.86136 0.74644,-6.34475 1.18187,-2.79915 2.61255,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61254,-6.53136 0.62204,-1.18187 0.74644,-1.8039 0.18662,-0.68424 0.43543,-0.93305 l 1.74169,-0.55983 q 0.68424,-0.18661 1.55509,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49289 -0.55984,2.61255 -0.1244,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37323,0.74644 -0.31101,0.43542 -0.74644,0.74644 z m 31.59939,-0.49763 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61254 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24881 1.8039,-0.24881 0.99526,0.24881 2.17712,0.80864 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.12441,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31101,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 21.21138,0.31102 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49763,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18186,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49763,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 12.75167,6.53135 q -0.18661,-0.24881 -0.80864,-0.62203 -0.62203,-0.37322 -0.62203,-0.62204 0,-0.1244 -0.0622,-0.31101 0,-0.18661 -0.24881,-0.18661 -0.18661,-0.18661 0.18661,-1.36848 0.43542,-1.18186 1.11966,-2.79915 0.74644,-1.61729 1.55509,-3.11017 0.80864,-1.55509 1.36847,-2.48814 0.31102,-0.18661 0.37322,-0.49762 0.12441,-0.37322 0,-0.37322 0,0 0.31102,-0.55983 0.37322,-0.62204 0.55983,-0.80865 0.49763,-0.87085 0.74644,-1.74169 0.24881,-0.93305 0.12441,-1.55509 -0.24882,-0.31102 -0.55983,-0.18661 -0.31102,0.12441 -0.31102,0.12441 -0.24881,0.0622 -0.74644,0.24881 -0.43543,0.12441 -0.80865,0.37322 -1.43067,0.99526 -2.11491,0.99526 -0.62204,0 -1.24407,-1.49289 -0.24881,-0.68423 -0.18661,-1.30627 0.0622,-0.62203 0.49763,-0.99525 0.49762,-0.43543 1.24407,-0.87085 0.74644,-0.49763 0.99525,-0.68424 0.68424,-0.43542 1.9283,-0.93305 1.24407,-0.49762 1.49289,-0.55983 1.61728,-0.49763 2.73695,0 1.11966,0.43543 1.67949,1.7417 0.87085,1.05746 0.87085,2.23932 0,1.18186 -0.87085,2.92356 l -0.62204,0.93305 q -0.31101,0.62203 -0.1244,0.62203 0.24881,0 0.55983,-0.43542 0.18661,-0.24881 0.74644,-0.74644 0.55983,-0.49763 0.74644,-0.49763 0,0 0.12441,-0.0622 0.18661,-0.0622 0.18661,-0.49763 0.18661,-0.18661 0.37322,-0.37322 0.24881,-0.18661 0.24881,-0.18661 0.24881,0 0.62203,-0.24881 0.43543,-0.31102 1.43068,-1.11966 0.68424,-0.49763 1.24407,-0.49763 1.43068,-0.43542 2.30153,0.93305 0.93305,1.36848 0.93305,3.54559 l -1.30627,3.35899 2.23932,-2.73695 q 0.37322,-0.49763 0.74644,-0.87085 0.43542,-0.37322 0.74644,-0.62203 0.12441,-0.43543 0.37322,-0.49763 0.24881,-0.0622 0.24881,-0.0622 0,0 0.12441,0 0.12441,-0.0622 0.12441,-0.24882 0.31101,-0.24881 0.68423,-0.43542 0.37323,-0.24881 0.49763,-0.49763 1.05746,-0.43542 2.55034,-0.12441 1.49288,0.24882 2.11492,1.55509 0.43542,0.74644 0.80864,1.30627 0.37322,0.55983 0.37322,1.67949 -0.12441,0.93305 -0.24881,1.30627 -0.0622,0.37322 -0.12441,0.80865 -0.0622,0.37322 -0.18661,1.36847 -0.24881,0.49763 -0.31102,1.05746 0,0.55983 0,1.05746 0,0.80864 0.0622,1.11966 0.0622,0.24881 0.49762,0.24881 0.87085,-0.18661 1.43068,-0.55983 0.62204,-0.43542 1.36848,-1.11966 0.93305,-0.87085 1.61729,-0.24881 0.74644,0.55983 0.93305,1.30627 0.1244,0.24881 -0.24882,1.11966 -0.37322,0.87085 -0.87084,1.67949 -0.49763,0.80865 -0.80865,0.80865 -0.18661,0 -0.74644,0.49762 -0.55983,0.49763 -0.87085,0.68424 -0.43542,0.43543 -0.87084,0.80865 -0.37322,0.37322 -0.87085,0.37322 -0.24882,0 -0.62204,0.18661 -0.31101,0.1244 -0.74644,0.1244 -0.62203,0.18661 -1.9283,-0.18661 -1.24407,-0.37322 -1.61729,-1.74169 -0.24881,-0.68424 -0.74644,-1.7417 -0.43543,-1.05746 -0.18661,-2.61254 0.24881,-1.11966 0.31102,-2.05271 0.0622,-0.93305 0.24881,-1.30627 0,-0.18661 0,-0.87085 0,-0.74644 -0.18661,-0.74644 -0.24881,0 -0.93305,0.62203 -0.68424,0.62204 -1.61729,1.67949 -0.93305,0.99526 -1.92831,2.17712 -0.93305,1.18187 -1.67949,2.36373 -0.55983,0.68424 -0.99525,1.67949 -0.43543,0.99526 -0.62204,1.11966 -0.43542,0.49763 -1.49288,0.12441 -0.99525,-0.37322 -1.49288,-1.18186 -0.18661,-0.37322 -0.43542,-0.43543 -0.24882,-0.1244 -0.43543,-0.37322 -0.1244,-0.31101 0,-1.18186 0.18661,-0.87085 0.80865,-2.79915 0.68423,-2.11492 1.18186,-3.79441 0.55983,-1.7417 0.55983,-1.7417 0,-0.24881 -0.93305,0.49763 -0.93305,0.68424 -2.17712,1.74169 -0.55983,0.68424 -1.49288,1.7417 -0.87085,1.05746 -2.05271,2.48814 -1.11966,1.43067 -2.55034,3.35898 -1.8039,2.55034 -2.73695,3.11017 -0.87085,0.55983 -1.55509,-0.31102 z m 39.56134,0.24882 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68424,-3.35898 0.43542,-1.86611 0.87084,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49763,-1.18187 0.31101,-0.31101 1.05745,-0.37322 0.74644,-0.0622 1.49289,0.18661 0.74644,0.18661 0.99525,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05746,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36373,3.04797 0.74644,2.17712 0.49762,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62203,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 V 855.458 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68423,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18186,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43067,-0.0622 -1.36848,-0.43543 -1.7417,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49763,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80864,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43542,1.11966 -0.80864,1.43068 -0.37323,0.24881 -1.05746,-0.0622 z m 46.83916,1.9283 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74644,-2.55034 -0.12441,-0.49763 -0.12441,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87084,0.68424 -1.74169,1.11967 -2.05271,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24881,-2.98576 0.1244,-2.17712 0.62203,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49289,1.18186 0.37322,0.62204 0,2.36373 -0.37323,1.67949 -1.49289,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55984,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49288,5.22509 -1.18187,2.55034 -1.61729,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74645,1.49288 0.1244,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.80389,0.1244 -0.93306,-0.1244 -1.55509,-0.55983 z m 29.67108,-1.36847 q -1.36847,-0.12441 -2.30152,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.1244,-1.05745 0.1244,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.1244,-0.93305 -0.49762,-1.11966 -0.31102,-0.24881 -1.11966,0.0622 -1.30628,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87084 -0.43543,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99525 0.12441,-1.8039 0.18661,-0.80864 0.49762,-1.67949 0.37323,-0.87085 0.87085,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68423,-1.9905 0.49763,-1.11967 0.93306,-2.11492 0.68423,-1.61729 1.05745,-2.79915 0.37322,-1.18187 0.62204,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24406,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.86611,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49763,-0.37322 0.49762,-0.37322 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24406,-0.93305 1.9905,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93306,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43543 0.43542,0.99526 0.24882,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80864,0.74644 -1.61729,0.93305 z m 11.63201,1.43067 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43543,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43543,1.49288 0.0622,2.92356 -0.31102,1.36847 -2.23933,2.17711 z m 10.13909,26.24984 q -0.87084,-0.24881 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31101,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24882,-2.11491 0.31101,-1.36848 0.62203,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24406,-0.18661 -0.24882,-0.0622 -0.24882,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24881,-0.1244 -0.43542,-0.43542 -0.12441,-0.24881 0.31101,-0.93305 0.43543,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.6795,-0.18661 1.11966,-0.1244 2.23932,-0.43542 1.18186,-0.37322 1.8039,-1.11966 0.55983,-1.36848 1.24406,-2.92356 0.68424,-1.61729 1.30628,-2.79915 0.62203,-1.24407 0.87084,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05746 0.31101,0.43542 0.49762,0.62203 0.24882,0.18661 0.18662,0.55983 0,0.37322 -0.49763,1.36847 -0.43543,0.93306 -1.49288,2.92356 -0.31102,0.62204 -0.55983,1.11967 -0.24882,0.43542 -0.24882,0.43542 0.24882,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11492,0.80864 0.68423,0.80865 0.74644,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62203,0.49763 -2.30153,0.49763 -0.55983,0 -1.61728,0.0622 -1.05746,0.0622 -2.17712,0.12441 -1.11966,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62203,0.99525 -0.37322,0.80865 -0.80865,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17712 -0.74644,1.18186 -2.11492,1.9905 -1.36847,0.80865 -2.79915,1.11967 -1.43068,0.37322 -2.48814,0.0622 z m 14.43116,-2.42593 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37323,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49289,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62204,1.7417 -1.6795,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.80389,-0.68423 -0.99526,-0.68424 -1.8039,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 13.80913,24.63255 q -1.86611,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62204,-0.80865 -1.18187,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.7417,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47864,-3.04797 0.87085,-0.31102 1.7417,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99525,0.99526 1.30627,1.92831 0.31102,0.93305 0.24881,1.8039 -0.31101,1.99051 -1.80389,4.29203 -1.43068,2.30153 -4.04323,3.42119 -1.05745,0.43542 -2.48813,0.55983 -1.43068,0.12441 -3.91882,-0.37322 -1.49288,-0.31102 -1.9905,0.31102 -0.43543,0.62203 -0.37323,2.42593 0.12441,1.11966 0.49763,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62203,-0.24881 1.55508,-0.68423 0.49763,-0.31102 0.93306,-0.68424 0.49762,-0.37322 0.93305,-0.74644 0.49762,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62203,-0.31102 0.31102,-0.0622 0.62204,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62203,0.68423 0.80864,1.30627 0,0.49763 -0.62203,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99526,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55508,-1.43067 0.68424,-0.80865 0.68424,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87085,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68424,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49763,0.62203 -0.68424,0.99525 0.24882,0.31102 0.99526,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 15.73741,15.55085 q -3.29679,0 -4.85187,-2.11491 -0.43542,-0.99526 -0.43542,-1.99051 0.0622,-1.05746 0.49762,-1.49288 0.43543,-0.49763 1.05746,0.18661 0.80865,0.49762 2.30153,0.49762 0.74644,0 1.30627,0 0.62203,-0.0622 1.43068,-0.1244 1.43067,-0.12441 1.8039,-0.87085 0.43542,-0.74644 -0.18662,-1.24407 h 0.0622 q -1.67949,-0.43542 -3.29678,-1.24407 -1.61729,-0.80864 -2.73695,-1.8039 -1.11966,-1.05745 -1.30627,-1.9905 -0.49763,-2.05272 0.24881,-4.22984 0.74644,-2.17711 2.17712,-3.7944 0.55983,-0.37322 1.55508,-1.05746 0.99526,-0.74644 1.43068,-0.80864 v 0.0622 q 1.18187,-1.24407 2.67475,-1.99051 1.49288,-0.80864 3.48339,-1.49288 l 0.99525,-0.12441 q 0.74644,-0.12441 1.30628,-0.12441 -0.0622,0 0.31101,0.12441 0.37322,0.12441 0.62204,0.18661 0.37322,0.18661 0.74644,0.18661 0.87084,0.12441 1.67949,0.93305 0.87085,0.74644 1.36847,1.8039 0.55983,0.99526 0.43543,1.8661 -0.18661,1.43068 -1.05746,2.86136 -0.87085,1.36847 -1.8661,1.55508 0.1244,-0.0622 -0.24882,-0.24881 -0.37322,-0.18661 -0.68423,-0.37322 l -0.24882,0.12441 q 0,0 -0.0622,-0.18661 0,-0.18661 -0.12441,-0.43543 -0.24881,-0.43542 -0.37322,-0.93305 -0.0622,-0.49762 0,-1.11966 0.12441,-0.68424 0.0622,-0.80864 -0.0622,-0.12441 -0.74644,-0.18661 -0.80865,-0.18661 -2.05272,0.18661 -1.24407,0.31101 -2.30152,1.11966 -1.24407,0.80864 -1.8661,1.30627 -0.55984,0.49763 -0.87085,0.99525 -0.31102,0.43543 -0.68424,1.30628 -0.24881,0.43542 -0.43542,0.80864 -0.18661,0.31102 -0.18661,0.62203 0,0.62204 1.05745,1.30628 1.05746,0.62203 3.17238,1.49288 1.67949,0.68423 2.17712,1.8661 0.55983,1.18186 0.99525,2.23932 0.12441,0.24881 0.24881,0.93305 0.18661,0.62204 0.0622,0.74644 0.1244,0.12441 0.1244,0.24882 v -0.0622 q 0.49763,0.93305 -0.18661,1.99051 -0.62203,0.99526 -1.9905,1.8661 -1.36848,0.80865 -3.11017,1.18187 h 0.0622 q -0.93305,0.12441 -1.8661,0.18661 -0.87085,0.0622 -1.67949,0.0622 z"
--       id="path14" /><path
-+     aria-label="neighbourhood communities&#10;for digital independence"><path
-+       d="m 234.42265,862.86021 q -1.36847,-0.12441 -2.30153,-0.55983 -0.87084,-0.49763 -1.43067,-1.92831 -0.24882,-0.99525 -0.24882,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05745 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31101,-0.24881 -1.11966,0.0622 -1.30627,0.62204 -2.86135,1.67949 -1.49289,0.99526 -3.17238,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05271,2.42593 -0.62204,0.93305 -1.30628,0.93305 -0.49762,0.24881 -1.05745,-0.12441 -0.55983,-0.37322 -1.18187,-0.87084 -0.43542,-0.49763 -1.05746,-1.24407 -0.55983,-0.80865 -0.68423,-1.05746 0,-0.99525 0.1244,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24882,-0.49762 0.55983,-1.05746 0.24882,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.1244,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30628,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43542,0.99526 -0.93305,1.8661 -0.43542,0.80865 -0.43542,1.11967 0,0 0.49762,-0.37322 0.49763,-0.37322 1.18187,-0.87085 0.68423,-0.55983 1.18186,-0.87085 0.31102,-0.31102 1.36848,-1.11966 1.05745,-0.87085 2.30152,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49762 1.7417,-0.99525 1.05745,-0.55983 1.30627,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43543 1.67949,1.05746 0.80865,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24882,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.1244,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24882,0.87085 0.18661,0.43543 0.43542,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 19.22083,0.24881 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.12441 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18661 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68423 0.49762,-0.31102 0.93305,-0.68424 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 13.99575,15.05322 q -1.49288,0 -2.61255,-1.55508 -1.05745,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.12441,-0.93305 0.24881,-1.9283 0.24882,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.7322 0.49763,-1.92831 0.87085,-3.29679 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.6795,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31102,1.49288 -0.24881,3.17237 -0.24882,2.86136 -0.49763,3.91881 -0.24882,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68423,-0.37322 -0.43543,-0.0622 -1.11967,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30627 0.24882,0 1.05746,0.24881 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42594 0.43542,1.49288 0.0622,2.92356 -0.31101,1.36847 -2.23932,2.17711 z m 7.52656,37.94408 q -0.68424,0.0622 -2.11492,-0.31102 -1.43067,-0.31102 -2.79915,-1.24407 -1.67949,-1.43068 -2.30152,-2.36373 -0.62204,-0.93305 -0.68424,-1.67949 0,-0.68424 0.0622,-1.24407 0.31102,-1.36847 1.30627,-1.30627 1.05746,0.0622 1.61729,0.55983 0.62203,0.49763 1.30627,1.18187 0.74644,0.74644 1.43068,1.30627 0.74644,0.55983 1.24407,0.49763 1.24407,-0.12441 2.05271,-1.05746 0.80864,-0.87085 1.61729,-2.79915 0.49763,-1.36848 0.74644,-2.36373 0.31102,-0.99526 0.62203,-2.17712 0.31102,-1.18187 0.74644,-3.17238 0.31102,-1.43067 0.43543,-1.9905 0.18661,-0.62204 0.18661,-0.74645 0,-0.18661 -0.0622,-0.18661 0,0 -0.43543,0.24882 -0.43542,0.24881 -1.24407,0.55983 -0.74644,0.31102 -1.67949,0.62203 -1.74169,0.55983 -3.48339,0.99526 -1.74169,0.37322 -2.67474,0.0622 -0.93306,-0.37322 -1.49289,-1.24407 -0.55983,-0.87085 -0.74644,-1.8661 -0.1244,-0.99525 -0.0622,-1.61729 0.12441,-0.49763 0.55983,-1.61729 0.43542,-1.11966 0.99525,-2.36373 0.55983,-1.24406 1.05746,-2.17711 0.49763,-0.93306 0.80865,-0.99526 0.24881,-0.12441 0.43542,-0.49763 0.24881,-0.43542 0.24881,-0.68423 0.0622,-0.24882 0.49763,-0.80865 0.49763,-0.55983 2.79915,-2.17712 2.30153,-2.17712 4.16763,-3.23457 1.8661,-1.11966 3.42119,-1.24407 0.43542,0.0622 0.80864,0.0622 0.43543,0 0.43543,0 0,0 0.68423,0.18661 0.68424,0.18661 1.36848,0.49763 0.80864,0.31102 1.74169,1.49288 0.93305,1.11966 1.61729,2.48814 0.68424,1.36847 0.74644,2.48813 -0.0622,1.36848 -0.62203,2.73695 -0.55983,1.36848 -1.05746,1.30627 -0.49763,-0.0622 -1.11966,0.37322 -0.55983,0.37322 -0.87085,1.49289 -0.18661,0.24881 -0.43542,0.80864 -0.24881,0.49763 -0.55983,0.99525 -0.0622,0.31102 -0.31102,1.55509 -0.24881,1.18186 -0.62203,2.67475 -0.31102,1.43067 -0.55983,2.67474 -0.24882,1.18187 -0.31102,1.55509 -0.0622,0.24881 -0.31102,1.18186 -0.24881,0.87085 -0.62203,1.99051 -0.31102,1.11966 -0.68424,2.05271 -0.24881,1.8039 -0.99525,3.11017 -0.74644,1.36848 -1.61729,2.42593 -1.43068,1.55509 -2.86136,2.17712 -1.36847,0.68424 -2.42593,0.80865 z m -1.18187,-21.77119 q 0.18662,0.49763 0.99526,0.37322 0.87085,-0.12441 2.36373,-0.55983 1.8039,-0.74644 2.67474,-1.18187 0.93306,-0.43542 1.43068,-1.11966 0.37322,-0.49763 0.68424,-0.99525 0.37322,-0.49763 0.68424,-0.87085 0.1244,-0.12441 0.37322,-0.43542 0.31101,-0.31102 0.49763,-0.55983 0.37322,-0.24882 0.62203,-0.43543 0.31102,-0.24881 0.55983,-0.43542 0.31102,-0.12441 0.55983,-0.55983 0.24881,-0.49763 0.12441,-0.99526 -0.0622,-0.43542 -0.55983,-1.18186 -0.49763,-0.80865 -1.36848,-1.24407 -0.80864,-0.49763 -1.9283,0.68424 -1.05746,1.18186 -3.42119,3.17237 -1.36848,1.49288 -2.42593,2.79915 -1.05746,1.24407 -1.55509,2.17712 -0.49763,0.87085 -0.31102,1.36848 z m 40.74325,9.2683 q -1.18186,0.31102 -2.48813,0.43543 -1.24407,0.18661 -2.17712,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49762,-0.99526 -0.68424,-0.1244 -2.17712,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.9283,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74644,0.74644 -1.11966,0 -2.05272,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68423,-1.43067 0,-0.24882 0.31101,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43543,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80865,-2.36373 1.43068,-4.16763 0.24882,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24407,-3.11017 0.62203,-1.55509 0.87084,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24881,0 0.55983,0 0.31101,-0.0622 0.31101,-0.0622 0,-0.12441 0.80865,0.24881 0.87085,0.37322 1.67949,0.93305 0.87085,0.49763 0.87085,0.87085 0.31101,0.80864 0.0622,2.11491 -0.24881,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24406,3.35899 -0.24882,0.43542 -0.74644,1.55508 -0.43543,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99526,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23458,-3.35898 1.55508,-1.49289 2.86135,-2.36373 1.36848,-0.93305 2.42594,-0.80865 0.55983,0.12441 1.43067,0.80865 0.93305,0.62203 1.7417,1.49288 0.87085,0.80864 1.11966,1.55508 0.24881,0.87085 0.31102,1.6795 0.1244,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49762,3.04796 -0.12441,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 14.43115,0.0622 q -1.24407,-0.12441 -1.99051,-0.62204 -0.68424,-0.55983 -1.05746,-1.36847 -0.49762,-0.55983 -0.62203,-0.87085 -0.0622,-0.31102 0,-0.55983 0.31102,0 0.55983,0 0.24881,-0.0622 0.31102,-0.24881 0,-0.18661 0.18661,-0.24882 0.24881,-0.0622 0.49763,0 1.18186,0.0622 2.86135,-0.80864 1.7417,-0.87085 3.79441,-2.42593 2.05271,-1.61729 4.10542,-3.48339 1.61729,-2.11492 2.23933,-3.11017 0.68423,-0.99526 0.68423,-1.49288 0.0622,-0.55984 -0.24881,-1.11967 -0.24881,-0.49762 -1.18186,-0.49762 -0.93306,0 -2.86136,1.24406 -2.67475,1.6795 -4.29204,3.11017 -1.61728,1.43068 -2.98576,3.23458 -0.49763,0.62204 -1.11966,1.36848 -0.55983,0.68423 -0.99525,1.18186 -0.37323,0.49763 -0.37323,0.49763 0,0.24881 -0.74644,0.62203 -0.68423,0.37322 -1.18186,0.37322 -0.24881,-0.1244 -0.68424,-0.43542 -0.37322,-0.37322 -0.49763,-0.93305 -0.55983,-0.43543 -0.93305,-0.74644 -0.37322,-0.37322 -0.37322,-1.18187 0,-0.49762 0.12441,-1.24407 0.18661,-0.74644 0.49763,-1.9283 0.37322,-1.61729 0.80864,-3.35898 0.43543,-1.8039 0.80865,-3.04797 0.43542,-1.30627 0.62203,-1.43068 0,0 0.24881,-0.55983 0.24882,-0.55983 0.24882,-1.30627 0.1244,-0.74644 0.37322,-1.30627 0.31101,-0.55983 0.31101,-0.80865 0.24882,-0.18661 0.74645,-1.49288 0.49762,-1.30627 1.24406,-3.42119 0,-0.18661 0.43543,-1.18186 0.43542,-1.05746 1.05745,-2.42593 0.62204,-1.43068 1.24407,-2.92356 0.68424,-1.55509 1.11966,-2.73695 0.74644,-1.05746 1.24407,-2.11492 0.55983,-1.11966 0.99526,-1.30627 0.31101,-0.0622 1.05745,0.24881 0.80865,0.31102 1.61729,0.80865 0.80865,0.49763 1.11966,0.99525 0.18661,0.31102 0.18661,0.62204 0.0622,0.31101 -0.24881,1.05745 -0.31102,0.68424 -1.05746,2.30153 -0.74644,1.55509 -2.11491,4.41644 -1.7417,3.73221 -2.73695,6.22034 -0.93305,2.48814 -1.55509,4.29204 -0.55983,1.8039 -1.18186,3.42118 l -0.31102,1.36848 1.61729,-1.8039 q 0.62203,-0.62203 1.30627,-1.18186 0.68424,-0.55984 1.49288,-1.11967 0.49763,-0.37322 1.30627,-0.74644 0.87085,-0.43542 1.6795,-0.74644 0.80864,-0.31101 1.18186,-0.37322 0.18661,-0.0622 1.24407,-0.24881 1.11966,-0.24882 2.17712,-0.24882 1.36847,0 2.36373,0.99526 1.05745,0.93305 1.8661,2.30152 0.68424,1.30628 0.49763,3.35899 -0.18661,1.99051 -1.05746,3.42119 -0.31102,0.24881 -0.62204,0.68423 -0.31101,0.37322 -0.31101,0.62204 -0.0622,0.43542 -1.11966,1.8039 -1.05746,1.30627 -2.11492,2.48813 -1.11966,1.18187 -2.73695,2.36373 -1.61729,1.11966 -3.23458,2.05271 -1.55508,0.87085 -2.67474,1.24407 -0.49763,0.0622 -1.43068,0.24881 -0.93305,0.12441 -1.43068,0.24882 z m 25.69001,0.93305 q -0.80864,0.0622 -1.30627,-0.18661 -0.49763,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11966,-3.35898 0.31102,-0.68424 0.87085,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42593,-2.55034 1.11967,-0.99525 2.48814,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49288,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49762,1.8039 0.31101,4.29203 -0.1244,2.42593 -2.11491,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18187,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43542,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80865,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61729,2.11491 -0.55983,0.93305 -1.05745,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49763,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 25.68998,8.70847 q -0.62203,-0.62203 -0.99525,-1.67949 -0.37322,-1.11966 -0.74645,-2.55034 -0.1244,-0.49763 -0.1244,-1.11966 0.0622,-0.62203 0,-0.99526 -0.18661,0.43543 -0.62204,1.11967 -0.37322,0.68423 -0.74644,0.99525 -0.24881,0.24881 -1.11966,0.99525 -0.87085,0.68424 -1.74169,1.11967 -2.05272,1.30627 -3.67,1.24406 -1.55509,-0.1244 -2.73695,-1.61728 -0.99526,-0.80865 -1.61729,-2.05272 -0.62204,-1.24406 -0.24882,-2.98576 0.12441,-2.17712 0.62204,-4.22983 0.49763,-2.11492 2.05271,-5.59831 1.30627,-2.55034 1.99051,-3.98101 0.68424,-1.43068 0.87085,-1.6795 0.93305,-0.31101 2.30152,0.0622 1.36848,0.31101 1.49288,1.18186 0.37322,0.62204 0,2.36373 -0.37322,1.67949 -1.49288,3.85661 -0.87084,2.11492 -1.67949,4.10543 -0.74644,1.9905 -0.93305,3.35898 -0.12441,1.36847 0.74644,1.67949 0.55983,0.31102 1.61729,-0.0622 1.11966,-0.37322 2.61254,-2.23932 1.49288,-1.86611 3.17238,-5.90933 0.49762,-1.24407 0.74644,-2.17712 0.24881,-0.99525 0.31101,-2.17712 -0.1244,-0.74644 0.37322,-1.55508 0.55983,-0.80864 1.30628,-1.24407 0.24881,-0.31102 0.68423,-0.55983 0.43543,-0.31102 0.55983,0 l 0.99526,-0.0622 q 0.24881,-0.0622 0.55983,0.49762 0.31102,0.55984 0.62203,0.80865 0.68424,0.55983 0.62204,2.42593 -0.0622,1.8661 -1.49289,5.22509 -1.18186,2.55034 -1.61728,3.85661 -0.37322,1.30627 -0.43543,2.55034 0,1.11966 0.18661,1.9283 0.18661,0.74644 1.11966,1.55509 0.68424,0.43542 0.74644,1.49288 0.12441,0.99525 0.0622,1.74169 -0.12441,0.55984 -0.99526,0.74645 -0.80864,0.24881 -1.8039,0.1244 -0.93305,-0.1244 -1.55508,-0.55983 z m 13.31157,-1.18186 q -0.18661,0.0622 -0.80864,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55984,-0.18661 -0.68424,-0.31102 -0.24882,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.8661 0.43543,-1.24407 0.87085,-2.61255 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.12441,-1.49288 -0.18661,-0.49763 -1.05745,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93305,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30628 0.62204,-0.49763 1.36848,-1.36848 0.80864,-0.93305 1.61729,-1.74169 0.99525,-0.68424 2.36373,-1.36848 1.36847,-0.74644 1.9905,-0.74644 0.68424,0 1.6795,0.68424 0.99525,0.62203 1.24406,1.11966 0.62204,1.05746 0.87085,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55984,0.37322 -0.49762,0.49762 -1.24406,1.24406 -0.68424,0.74645 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49763,1.36848 -1.05746,1.55509 z m 39.81022,0.87084 q -1.18186,0.31102 -2.48814,0.43543 -1.24406,0.18661 -2.17711,-0.74644 -0.55983,-0.87085 -0.99526,-1.55509 -0.43542,-0.68423 -0.55983,-2.42593 -0.0622,-1.18186 0.12441,-2.55034 0.24881,-1.43068 0.18661,-2.05271 0.49763,-2.30153 0.24881,-3.29678 -0.18661,-0.99526 -0.49763,-0.99526 -0.68423,-0.1244 -2.17711,0.99526 -1.43068,1.11966 -3.42119,3.17237 -1.92831,1.99051 -4.16763,4.54085 -1.18186,1.61729 -1.74169,2.42593 -0.49763,0.74644 -0.74645,0.74644 -1.11966,0 -2.05271,-0.37322 -0.93305,-0.37322 -1.49288,-1.05746 -0.55983,-0.68423 -0.68424,-1.43067 0,-0.24882 0.31102,-1.30627 0.31102,-1.11967 0.74644,-2.55034 0.43542,-1.43068 0.80865,-2.67475 0.43542,-1.24407 0.62203,-1.7417 0.55983,-1.61728 1.30627,-3.91881 0.80864,-2.36373 1.43068,-4.16763 0.24881,-0.80864 0.87085,-2.30152 0.62203,-1.55509 1.24406,-3.11017 0.62204,-1.55509 0.87085,-2.30153 0.18661,-0.49763 0.68424,-1.74169 0.49763,-1.30628 1.05746,-2.86136 0.62203,-1.55509 1.11966,-2.86136 0.55983,-1.36847 0.74644,-1.99051 -0.0622,-0.55983 0.0622,-0.99525 0.18661,-0.49763 0.37322,-0.74644 0.24882,0 0.55983,0 0.31102,-0.0622 0.31102,-0.0622 0,-0.12441 0.80864,0.24881 0.87085,0.37322 1.6795,0.93305 0.87084,0.49763 0.87084,0.87085 0.31102,0.80864 0.0622,2.11491 -0.24882,1.24407 -1.30627,3.79441 -0.68424,0.99526 -1.36848,2.98576 -0.62203,1.99051 -1.24407,3.35899 -0.24881,0.43542 -0.74644,1.55508 -0.43542,1.05746 -1.05746,2.55034 -0.55983,1.43068 -1.11966,3.04797 -0.55983,1.61729 -0.99525,3.17237 -0.62203,1.49288 -0.43542,1.99051 0.18661,0.49763 1.49288,-1.11966 1.74169,-1.8661 3.23457,-3.35898 1.55509,-1.49289 2.86136,-2.36373 1.36848,-0.93305 2.42593,-0.80865 0.55983,0.12441 1.43068,0.80865 0.93305,0.62203 1.7417,1.49288 0.87084,0.80864 1.11966,1.55508 0.24881,0.87085 0.31101,1.6795 0.12441,0.80864 0.0622,2.30152 -0.0622,1.43068 -0.31102,4.29204 -0.37322,2.11491 -0.49763,3.04796 -0.1244,0.87085 0.0622,1.24407 0.24881,0.37322 0.74644,0.80864 0.93305,0.74645 0.74644,1.8039 -0.18661,0.99526 -1.05746,1.49288 z m 12.31623,-0.0622 q -1.30628,0.24881 -1.99051,-0.12441 -0.62204,-0.43542 -1.30628,-1.05745 -0.99525,-0.49763 -1.80389,-1.36848 -0.80865,-0.93305 -1.24407,-1.9283 -0.43543,-0.99526 -0.37322,-1.55509 0.18661,-2.17712 0.99525,-4.72746 0.87085,-2.55034 2.17712,-4.97627 1.36848,-2.42593 3.04797,-4.29203 1.74169,-1.92831 3.7322,-2.79916 1.24407,-0.49762 2.67475,-0.37322 1.43068,0.12441 1.9283,1.18187 0.93305,1.8039 -0.43542,2.30152 -0.18661,0 -0.43542,0.18661 -0.24882,0.12441 -0.24882,0.37322 0.24882,0.12441 1.36848,0.0622 1.11966,-0.12441 2.23932,-0.37322 1.18186,-0.31102 1.55508,-0.62204 0.37322,-0.18661 0.55984,-0.18661 0.18661,0 0.93305,0.12441 1.05745,0.31102 1.05745,0.74644 0,0.24881 0.18661,0.80864 0.18661,0.49763 0.43543,0.49763 0.43542,0.0622 0.18661,0.87085 -0.18661,0.80864 -1.43068,1.67949 -1.18186,0.74644 -1.49288,0.99526 -0.24882,0.18661 -0.0622,0.87084 0.49763,1.18187 -0.0622,2.86136 -0.55983,1.67949 -1.8661,3.48339 -1.30627,1.8039 -3.11017,3.42119 -1.7417,1.55508 -3.67,2.67474 -1.8661,1.05746 -3.54559,1.24407 z m 0.18661,-5.22508 q 0.24881,0 0.87084,-0.24882 0.62204,-0.31101 0.99526,-0.49763 0.24881,-0.24881 0.62203,-0.55983 0.43543,-0.37322 0.68424,-0.43542 0.24881,0 0.31102,-0.18661 0.0622,-0.24881 0.43542,-0.93305 0.37322,-0.74644 1.49288,-2.17712 1.24407,-1.36847 1.61729,-2.17712 0.37322,-0.87085 0.0622,-1.8661 -0.0622,-0.24881 -0.37322,-0.31102 -0.24881,-0.0622 -0.68423,-0.31101 -0.62204,0 -0.87085,0.31101 -0.18661,0.24882 -0.87085,-0.31101 l -0.99525,-1.24407 -1.05746,1.05746 q -0.99526,0.99525 -1.8039,2.48813 -0.74644,1.49288 -1.18187,3.04797 -0.43542,1.55508 -0.55983,2.73695 -0.0622,0.93305 0.31102,1.24407 0.37322,0.31101 0.99526,0.37322 z m 22.5176,6.28254 q -0.80864,0.0622 -1.30627,-0.18661 -0.49762,-0.18661 -1.24407,-0.62204 -1.36847,-1.05745 -2.30152,-2.61254 -0.87085,-1.55508 -0.80865,-2.61254 0.12441,-0.55983 0,-0.99526 -0.0622,-0.43542 -0.0622,-0.43542 -0.37322,-0.31102 -0.24881,-0.37322 0.1244,-0.12441 0.18661,-0.37322 0.49762,-0.12441 0.1244,-0.68424 -0.18661,-0.49762 0.18661,-2.23932 0.43543,-1.8039 1.11967,-3.35898 0.31101,-0.68424 0.87084,-1.8039 0.62204,-1.11966 1.36848,-2.23932 0.74644,-1.18187 1.36847,-1.86611 1.36848,-1.55508 2.42594,-2.55034 1.11966,-0.99525 2.48813,-1.49288 1.24407,-0.49762 2.48814,-0.43542 1.30627,0.0622 2.30152,0.87085 1.49289,0.43542 2.67475,1.36847 1.18186,0.87085 1.61729,2.48814 0.49763,1.8039 0.31102,4.29203 -0.12441,2.42593 -2.11492,6.28255 -1.18187,2.42593 -2.36373,3.91881 -1.11966,1.49288 -2.73695,2.86136 -1.18186,0.99525 -3.04797,1.74169 -1.8661,0.74644 -3.29678,1.05746 z m 5.4117,-9.39271 q 0.80864,-1.11967 1.24407,-2.17712 0.49762,-1.05746 0.93305,-2.92356 0.18661,-0.68424 0.18661,-1.67949 0.0622,-0.99526 -0.0622,-1.8039 -0.0622,-0.87085 -0.43543,-0.93305 -0.80864,-0.31102 -1.67949,0 -0.80864,0.24881 -1.92831,1.49288 -0.99525,1.11966 -1.61728,2.11491 -0.55983,0.93305 -1.05746,2.30153 -0.43543,1.30627 -0.99526,3.42119 -0.49762,2.05271 -0.0622,3.29678 0.49763,1.24406 1.8661,0.68423 1.36848,-0.55983 3.6078,-3.7944 z m 28.05371,10.01474 q -0.80864,0.18661 -1.61729,-0.43542 -0.74644,-0.55983 -1.05746,-1.24407 -0.37322,-0.99525 -0.49762,-1.8661 -0.0622,-0.93305 -0.12441,-2.11492 l -0.0622,-2.11491 -2.55034,2.30152 q -2.11492,1.99051 -3.98102,2.86136 -1.8039,0.80864 -3.29678,0.80864 -0.68424,-0.1244 -1.67949,-0.87084 -0.93305,-0.80865 -1.7417,-1.7417 -0.74644,-0.99525 -1.05745,-1.61729 -0.37323,-0.87084 -0.24882,-2.42593 0.18661,-1.55508 0.74644,-3.42119 0.62204,-1.8661 1.49288,-3.67 0.93306,-1.8039 2.11492,-3.11017 2.05271,-3.11017 5.10068,-3.85661 3.04797,-0.80864 5.41169,0.49763 1.11967,0.55983 1.61729,0.43542 0.49763,-0.1244 0.62204,-0.80864 0.24881,-0.99526 0.55983,-1.8661 0.31101,-0.87085 0.87084,-2.61255 1.55509,-4.72745 2.67475,-7.4022 1.18187,-2.67475 2.11492,-4.66526 0.68423,-1.43067 1.36847,-1.9905 0.68424,-0.55983 1.18187,-0.49763 0.68423,0 1.67949,0.49763 1.05746,0.49762 1.36847,1.36847 0.24882,0.55983 0.18661,1.18187 0,0.62203 -0.37322,1.30627 -0.80864,1.49288 -1.9283,3.98101 -1.05746,2.42594 -2.17712,5.3495 -1.05746,2.92356 -1.99051,5.78491 -0.93305,2.86136 -1.55509,5.03848 -0.37322,1.36847 -0.62203,3.48339 -0.18661,2.11491 -0.31102,4.35424 -0.0622,2.17712 0,3.91881 0.0622,1.67949 0.18661,2.17712 0.37322,1.24407 0,1.8661 -0.37322,0.62204 -1.05745,0.80865 -0.68424,0.24881 -1.36848,0.31101 z m -10.26356,-7.52661 q 0.87085,-0.31102 1.55508,-0.74644 0.68424,-0.43542 1.61729,-1.11966 1.86611,-1.43068 2.67475,-2.48814 0.87085,-1.05745 1.36847,-2.61254 0.31102,-0.93305 0,-1.61729 -0.24881,-0.68423 -0.93305,-1.30627 -0.68423,-0.55983 -1.74169,-0.43542 -1.05746,0.0622 -2.42593,1.30627 -1.49289,1.36847 -2.55034,3.17237 -1.05746,1.8039 -1.7417,5.16288 -0.12441,0.62204 0.43542,0.87085 0.55984,0.24882 1.7417,-0.18661 z m 38.75278,5.84712 q -1.36847,0 -2.05271,-0.12441 -0.62204,-0.1244 -0.93305,-0.37322 -0.31102,-0.24881 -0.80865,-0.68423 -0.24881,-0.49763 -0.87084,-1.24407 -0.62204,-0.80865 -0.87085,-1.05746 -0.24882,-0.93305 -0.18661,-2.55034 0.1244,-1.61729 0.55983,-3.48339 0.43542,-1.8661 1.05746,-3.35898 0.24881,-0.49763 0.43542,-0.99526 0.18661,-0.49762 0.18661,-0.49762 0,-0.31102 0.74644,-1.49289 0.80864,-1.18186 1.7417,-2.48813 0.99525,-1.30627 1.61728,-1.8661 0.43543,-0.49763 1.30628,-1.05746 0.93305,-0.55983 1.61728,-0.80865 0.68424,-0.24881 1.86611,-0.62203 1.18186,-0.43542 2.11491,-0.43542 0.87085,0 1.8661,0.37322 0.99526,0.37322 1.6795,1.30627 1.11966,1.11966 1.43067,2.67474 0.31102,1.55509 0.0622,2.67475 -0.31102,1.24407 -1.24407,2.05271 -0.93305,0.74644 -1.99051,0.80865 -1.05746,0 -1.8661,-0.87085 -0.24882,-0.49763 -0.24882,-0.80864 0,-0.37323 0.24882,-1.05746 0.24881,-0.87085 0.24881,-1.55509 0,-0.68423 -0.55983,-0.68423 -0.80864,0 -1.30627,0.49762 -0.49763,0.43543 -1.49288,1.49288 -0.43543,0.49763 -1.11966,1.43068 -0.68424,0.93305 -1.36848,2.05271 -0.62203,1.05746 -1.11966,2.17712 -0.68424,2.05272 -0.87085,2.67475 -0.1244,0.55983 -0.1244,0.55983 0,0.24881 -0.0622,0.49763 -0.0622,0.18661 -0.0622,0.43542 0,0.74644 0.87085,1.18187 0.68423,0.43542 1.11966,0.43542 0.49763,-0.0622 1.8661,-0.68424 0.99525,-0.49763 1.8661,-1.30627 0.93305,-0.80864 1.92831,-1.43068 0.68424,-0.43542 1.05746,-0.74644 0.43542,-0.31102 0.43542,-0.0622 0,0.24881 0.18661,0.24881 0.18661,0 0.43542,-0.24881 0.37322,-0.49763 0.93305,-0.37322 0.55984,0.0622 0.99526,0.31101 0.49763,0.24882 0.49763,0.43543 -0.12441,0.55983 0.24881,0.93305 0,0.24881 -0.18661,0.68424 -0.12441,0.37322 -0.37322,0.62203 -0.31102,0.43542 -0.93305,1.24407 -0.55983,0.80864 -1.05746,1.43068 -0.49763,0.62203 -0.49763,0.62203 -0.24881,-0.0622 -0.49762,0.12441 -0.18661,0.18661 -0.43543,0.43542 -0.49763,0.43543 -0.93305,0.68424 -0.43542,0.18661 -0.68424,0.18661 -0.43542,0.24881 -0.68423,0.31102 -0.18661,0.0622 -0.18661,0.31101 -0.62204,0.62204 -2.23933,0.87085 -1.61728,0.18661 -3.35898,0.18661 z m 21.14918,0.0622 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18187,-1.24407 -1.92831,-2.67475 -0.68423,-1.43067 -0.49762,-2.48813 0.18661,-0.49763 0.1244,-0.93305 0,-0.49763 0,-0.49763 -0.31101,-0.31102 -0.18661,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.12441,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11966,-1.61729 0.74644,-1.05745 1.61729,-2.05271 0.93305,-1.05746 1.67949,-1.67949 1.55509,-1.30627 2.86136,-2.11492 1.36847,-0.80864 2.73695,-1.11966 1.36847,-0.31101 2.79915,-0.31101 1.49288,0 2.42594,0.99525 1.43067,0.62203 1.9905,1.67949 0.62204,1.05746 0.80865,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04797,3.48339 -1.49288,1.24407 -3.29678,2.30153 -1.30627,0.87085 -2.79915,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18186 1.9283,-2.61254 0.62204,-1.43068 1.30628,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24406,-0.37322 2.98576,-2.05271 z m 15.17761,5.97153 q -1.18187,-0.49763 -1.92831,-1.49289 -0.68424,-1.05745 -0.68424,-2.55033 0,-0.62204 0.24882,-2.11492 0.24881,-1.49288 0.68423,-3.35898 0.43543,-1.86611 0.87085,-3.48339 0.62204,-1.11967 0.80865,-2.23933 0.24881,-1.11966 0.24881,-1.36847 0.12441,-0.74644 0.43542,-1.99051 0.31102,-1.24407 0.62204,-2.23932 0.37322,-1.05746 0.49762,-1.18187 0.31102,-0.31101 1.05746,-0.37322 0.74644,-0.0622 1.49288,0.18661 0.74644,0.18661 0.99526,0.80865 0.68424,0.74644 0.74644,2.23932 0.12441,1.49288 -0.55983,3.48339 -0.55983,1.24407 -1.11966,2.92356 -0.55983,1.67949 -0.99526,3.11017 -0.37322,1.36847 -0.43542,1.8661 l -2.23932,-0.0622 q 1.05745,-0.99526 1.99051,-2.05271 0.93305,-1.11967 1.36847,-1.7417 1.05746,-1.43068 1.8039,-2.36373 0.80864,-0.99525 2.05271,-2.36373 1.24407,-1.43068 2.67475,-1.99051 1.43068,-0.62203 2.11491,-0.62203 1.36848,0.24881 2.42594,1.43068 1.11966,1.11966 1.36847,3.35898 0,0.87085 -0.18661,2.05271 -0.12441,1.18187 -0.12441,1.18187 0,0 0.99526,-1.24407 1.05746,-1.24407 2.79915,-2.79915 1.18187,-0.87085 2.30153,-0.99526 1.11966,-0.18661 1.99051,0.74644 1.61728,0.87085 2.36372,3.04797 0.74645,2.17712 0.49763,4.91407 -0.18661,1.61729 0,2.61254 0.24882,0.93305 0.49763,1.67949 0.80864,1.11966 0.24881,1.99051 -0.55983,0.80865 -0.99525,0.80865 -0.62204,0 -1.8661,-0.24882 -1.24407,-0.24881 -2.30153,-0.87085 -0.99525,-0.62203 -0.99525,-1.67949 v -3.8566 q 0,-1.36847 -0.12441,-1.99051 -0.0622,-0.68423 -0.31102,-0.87084 -0.68424,-0.37322 -1.67949,0.55983 -0.99525,0.93305 -2.17712,2.67474 -1.11966,1.67949 -2.42593,3.79441 -1.18187,1.92831 -1.92831,2.36373 -0.74644,0.37322 -1.43068,-0.0622 -1.36847,-0.43543 -1.74169,-1.18187 -0.31102,-0.80864 -0.0622,-1.8039 0.31101,-1.05746 0.74644,-2.73695 0.49762,-1.67949 0.93305,-3.23457 0.43542,-1.61729 0.55983,-2.36373 -0.24881,-0.49763 -0.87085,-0.31102 -0.55983,0.12441 -1.18186,0.55983 -0.74644,0.49763 -1.61729,1.05746 -0.80865,0.55983 -1.92831,2.36373 -0.74644,1.18186 -1.67949,2.61254 -0.93305,1.36848 -1.74169,2.48814 -0.74644,1.11966 -1.24407,1.55508 -0.43543,1.11966 -0.80865,1.43068 -0.37322,0.24881 -1.05745,-0.0622 z m 61.14594,0.55983 q -0.43542,-0.12441 -1.36847,-0.80865 -0.93305,-0.68423 -1.6795,-2.05271 -0.68423,-1.36847 -0.62203,-3.54559 0.0622,-1.86611 0.24881,-2.61255 0.24882,-0.80864 -0.18661,-0.87084 -0.31101,-0.0622 -1.24406,0.55983 -0.93306,0.62203 -2.42594,1.99051 -1.49288,1.36847 -3.60779,3.60779 -0.74644,0.62204 -1.6795,1.55509 -0.87084,0.87085 -1.80389,1.30627 -0.87085,0.43542 -1.55509,-0.18661 l -0.62203,-0.55983 q -0.43543,-0.37322 -0.74644,-0.99526 -0.31102,-0.62203 -0.18661,-1.05745 l 1.74169,-4.85187 q 0.74644,-1.61729 0.99526,-2.36373 0.31101,-0.74644 0.24881,-0.93305 0,-0.18661 -0.31102,-0.12441 -0.37322,0.0622 -1.05746,0.68424 -0.68423,0.55983 -0.93305,0.93305 -0.24881,0 -0.68423,0.49763 -0.37322,0.49763 -0.74645,0.87085 -0.37322,0.37322 -1.30627,1.43068 -0.93305,0.99525 -1.99051,2.11491 -0.80864,0.74644 -1.8661,1.99051 -1.05745,1.24407 -1.8661,2.23932 -0.80864,0.99526 -0.99525,0.99526 -1.11966,-0.0622 -2.05272,-0.74644 -0.87084,-0.68424 -1.18186,-1.6795 -0.37322,-0.68423 -0.0622,-2.48813 0.31101,-1.8661 1.18186,-5.90932 0.24881,-0.93306 0.43542,-1.61729 0.24882,-0.68424 0.49763,-1.36848 0.24882,-0.68424 0.55983,-1.55508 0.37322,-0.87085 0.93305,-2.11492 0.31102,-0.87085 0.24882,-1.61729 -0.0622,-0.80864 -0.12441,-1.30627 0,-0.93305 0.55983,-1.49288 0.62203,-0.55983 1.36848,-0.74644 0.74644,-0.24881 1.18186,-0.12441 1.7417,0.18661 2.36373,1.24407 0.62203,1.05746 0.68424,2.05271 0.0622,0.93305 -0.24882,1.67949 -0.31101,0.74645 -0.49762,1.24407 l -0.68424,1.67949 q -0.62204,1.43068 -0.93305,2.11492 -0.24882,0.62203 -0.31102,0.87085 0,0.18661 0,0.37322 0.0622,0.18661 0.55983,-0.18661 0.49763,-0.37322 1.18187,-0.99526 0.74644,-0.68423 1.36847,-1.18186 1.11966,-0.93305 2.36373,-1.8661 1.30627,-0.99526 2.55034,-1.7417 1.24407,-0.74644 2.05271,-0.99525 1.05746,0.18661 1.92831,1.05745 0.93305,0.87085 1.18186,1.49289 0.31102,0.93305 0.0622,1.67949 -0.18661,0.74644 -0.31101,1.36847 -0.0622,0.24882 -0.24882,0.93305 -0.18661,0.68424 -0.37322,1.30628 -0.18661,0.55983 -0.18661,0.55983 0,0 0.37322,-0.37322 0.37322,-0.37322 0.99526,-0.87085 0.62203,-0.55983 1.24407,-0.99526 3.11017,-2.36373 4.91406,-2.98576 1.86611,-0.68424 3.17238,1.05746 0.74644,0.68424 0.93305,1.8661 0.24881,1.18186 0.24881,3.17237 0.0622,0.80865 0.12441,1.8039 0.12441,0.99526 0.24881,1.7417 0.18661,0.74644 0.31102,0.93305 0.18661,0.24881 0.68424,0.49763 0.49762,0.18661 0.93305,0.31101 0.87085,0.43543 0.93305,1.61729 0.12441,1.11966 -0.87085,1.7417 -0.93305,0.55983 -1.99051,0.68423 -0.99525,0.12441 -2.05271,0.0622 z m 21.52241,1.8661 q -0.43542,0.24881 -1.18186,-0.18661 -0.68424,-0.43543 -1.36848,-1.30627 -0.43542,-0.74644 -0.68424,-1.49288 -0.18661,-0.80865 -0.18661,-2.36373 0.0622,-1.24407 0,-1.6795 0,-0.49762 -0.55983,-0.0622 -0.49762,0.37322 -2.05271,1.8661 -1.55508,1.55509 -2.98576,2.67475 -1.36848,1.05746 -2.23932,0.99525 -0.43543,0 -1.18187,-0.55983 -0.74644,-0.55983 -1.43068,-1.36847 -0.68423,-0.87085 -0.99525,-1.61729 -0.37322,-1.49288 -0.0622,-3.85661 0.37322,-2.36373 1.18186,-4.91407 0.80864,-2.61254 1.8039,-4.85186 1.05746,-2.30153 2.05271,-3.67001 1.05746,-1.43067 1.8039,-1.36847 1.05746,0.12441 1.8039,1.05746 0.80864,0.87085 1.24407,1.9283 0.24881,0.43543 0.18661,0.74644 0,0.31102 -0.49763,0.74644 -0.55983,0.74645 -1.36848,2.17712 -0.74644,1.36848 -1.55508,2.98577 -0.74644,1.61729 -1.36848,3.11017 -0.55983,1.43068 -0.80864,2.36373 -0.24881,0.93305 0,0.93305 0.87085,0 1.61729,-0.43543 0.74644,-0.49762 1.8661,-1.55508 1.30627,-1.30627 2.30153,-2.61254 0.99525,-1.36848 2.05271,-3.11017 0.80864,-1.24407 1.67949,-2.73695 0.93305,-1.49289 1.18186,-2.11492 0.87085,-1.61729 1.30628,-2.42593 0.43542,-0.80865 1.05745,-0.99526 0.31102,0 0.87085,0 0.55983,0 0.55983,0 0.37322,0.0622 0.87085,0.55983 0.49763,0.24882 0.99525,0.68424 0.55983,0.43543 0.55983,0.74644 -0.24881,0.62204 -0.80864,1.8661 -0.49763,1.18187 -0.74644,1.7417 -1.18186,2.67475 -2.30153,5.28729 -1.05745,2.55034 -1.55508,5.22508 -0.12441,0.87085 -0.0622,2.05272 0.1244,1.11966 0.37322,1.61728 0.18661,0.37322 0.43542,0.87085 0.31102,0.43543 0.68424,0.74644 0.55983,0.37322 -0.0622,0.93305 -0.55983,0.55983 -1.43067,0.99526 -0.80865,0.37322 -0.99526,0.37322 z m 27.74275,-0.62204 q -0.93305,0 -1.8039,-0.55983 -0.87085,-0.62203 -1.43068,-1.67949 -0.55983,-1.11966 -0.55983,-2.61254 0,-0.93305 0.31102,-2.61254 0.37322,-1.7417 1.05746,-4.35424 0.1244,-0.87085 0.18661,-1.11966 0.1244,-0.24882 0.1244,-0.49763 0,-0.12441 -0.0622,-0.18661 0,-0.12441 -0.12441,-0.12441 -0.49762,0 -1.36847,0.68424 -0.80865,0.62203 -1.8661,1.49288 -0.18661,0.12441 -0.43543,0.31102 -0.18661,0.18661 -0.43542,0.37322 -0.18661,0.18661 -0.43543,0.37322 -0.62203,0.37322 -1.9283,1.43068 -1.24407,1.05746 -2.61254,2.23932 -1.30627,1.18187 -2.30153,1.99051 -0.49763,0.37322 -0.87085,0.62203 -0.31101,0.24882 -0.43542,0.24882 -0.12441,0 -0.99525,-0.31102 -0.80865,-0.37322 -1.61729,-0.99525 -0.74644,-0.68424 -0.74644,-1.55509 0,-0.55983 0.43542,-2.23932 0.49763,-1.67949 1.36847,-3.98102 0.87085,-2.30152 1.99051,-4.66525 0.24882,-0.55983 0.37322,-1.49289 0.12441,-0.93305 0.24882,-1.80389 0.18661,-0.93306 0.62203,-1.36848 0.18661,-0.31102 0.43543,-0.43542 0.31101,-0.18661 0.62203,-0.18661 0.62203,0 1.18186,0.31101 0.55983,0.24882 1.05746,0.87085 0.93305,0.99526 0.99526,2.36373 0.1244,1.30627 -0.18661,2.55034 -0.31102,1.24407 -0.68424,2.05271 -0.37322,0.74644 -0.37322,0.62204 0.24881,-0.12441 0.68424,-0.62204 0.49762,-0.49762 1.67949,-1.18186 1.61729,-1.24407 2.48813,-1.7417 0.87085,-0.55983 1.30627,-0.80864 0.49763,-0.24882 0.87085,-0.55983 0.31102,-0.24882 0.43543,-0.31102 0.18661,-0.0622 0.18661,-0.0622 0,0 0,0 0,0 0,0 0.18661,0 0.62203,-0.24882 0.49763,-0.24881 0.93305,-0.24881 0.62204,0 1.30627,0.31102 0.68424,0.24881 1.18187,0.74644 0.49762,0.43542 0.49762,0.93305 0,0.18661 0.12441,0.31102 0.12441,0.1244 0.24881,0.31101 0.31102,0.37322 0.68424,1.05746 0.43543,0.62203 0.43543,2.05271 0,0.99526 -0.43543,2.92356 -0.43542,1.92831 -0.93305,3.79441 -0.49763,1.92831 -0.49763,3.11017 0.0622,1.11966 0.24882,1.7417 0.18661,0.55983 0.18661,0.93305 0,0.49762 -0.49763,1.18186 -0.49763,0.62203 -1.49288,0.62203 z m 10.63678,-1.80389 q -0.24881,0 -1.05746,-0.37322 -0.80864,-0.37322 -0.80864,-0.37322 0,-0.24882 -0.18661,-0.62204 -0.12441,-0.37322 -0.12441,-0.62203 -0.43542,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24406 0.37322,-0.68424 0.99526,-2.05272 0.68424,-1.43068 1.43068,-3.17237 0.80864,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18186,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.1244,-0.62203 0.80864,-1.05745 0.80865,-0.55983 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62204,1.18186 0.62204,2.79915 0,0.43542 -0.62204,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99525,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43542,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.80389,-1.7417 -0.80865,-1.05746 -0.80865,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93305 0.49763,0 1.18187,0.18661 0.68423,0.18661 1.11966,0.43542 0.68423,1.55508 1.8039,2.67475 1.11966,1.05745 1.11966,2.42593 0,1.36847 -0.68424,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 7.58875,29.60882 q -3.04796,-0.0622 -3.91881,-1.74169 -0.80864,-1.61729 -0.43542,-4.10543 0.37322,-1.18186 0.43542,-2.11491 0.12441,-0.99526 0.55983,-1.24407 0,0 0.0622,-0.18661 0.12441,-0.18661 -0.0622,-0.37322 0,-0.80865 0.55983,-2.23932 0.12441,-0.37322 0.31102,-0.87085 0.24881,-0.55983 0.24881,-0.55983 -0.31101,-0.49763 0,-0.80865 0.31102,-0.31101 0.62204,-0.55983 0.37322,-0.31101 0.0622,-0.68423 -0.12441,-0.24882 0.31102,-1.11967 0.43542,-0.93305 0.99525,-1.9283 0.55983,-0.99526 0.74644,-1.55509 0,-0.1244 0.31102,-0.87084 0.31102,-0.74644 0.74644,-1.7417 0.43542,-0.99525 0.80864,-1.8039 0.43543,-0.80864 0.55983,-1.05745 0.62204,-0.31102 -0.49762,-0.43543 -1.11966,-0.12441 -2.36373,-0.0622 -1.92831,-0.0622 -3.11017,-0.18661 -1.11966,-0.12441 -1.8661,-0.55983 -0.74644,-0.87085 -0.18661,-2.05272 0.55983,-1.24406 1.80389,-1.30627 0.80865,-0.0622 1.24407,-0.0622 0.49763,0 1.24407,-0.0622 0.80864,-0.12441 2.48814,-0.31102 l 3.17237,-0.24881 0.18661,-1.05746 q 0.49763,-0.80865 0.68424,-1.05746 0.18661,-0.24881 0.24881,-0.49763 0.0622,-0.31101 0.18661,-1.05745 0,0 0.55983,-0.99526 0.55983,-1.05746 0.68424,-2.17712 0.74644,-1.24407 1.30627,-2.23932 0.55983,-1.05746 0.68424,-1.30627 1.05746,-1.55509 2.05271,-1.67949 1.05746,-0.12441 1.99051,0.49762 0.55983,0.31102 1.05746,0.80865 0.49762,0.43542 0.62203,1.18186 0.12441,0.68424 -0.55983,1.8039 -0.12441,0.24881 -0.37322,0.93305 -0.24881,0.62204 -0.37322,1.05746 -0.37322,0.43542 -0.93305,1.43068 -0.49763,0.93305 -0.68424,1.9283 -0.49763,1.05746 -0.62203,1.30627 -0.12441,0.24882 -0.37322,0.24882 0.1244,0.62203 0.74644,0.62203 0.62203,-0.0622 2.05271,-0.1244 1.18186,-0.12441 1.61729,-0.24882 0.49763,-0.18661 1.11966,0.12441 0.31102,0.43542 0.31102,1.30627 0.0622,0.80864 -0.18661,1.61729 -0.24882,0.74644 -0.68424,0.93305 -0.31102,0 -1.30627,0.37322 -0.93305,0.31102 -2.36373,0.37322 l -3.29678,0.31102 -1.05746,2.11491 q -0.43542,0.80865 -0.74644,1.49288 -0.31102,0.62204 -0.43542,0.74645 0,0.37322 -0.43543,1.11966 -0.37322,0.74644 -0.80864,1.61729 -0.37322,1.05745 -0.87085,1.9283 -0.43542,0.87085 -0.43542,0.87085 -0.24882,0 -0.24882,0.37322 0.31102,0.74644 -0.18661,1.11966 -0.31101,0.18661 -0.55983,0.55983 -0.18661,0.31102 -0.18661,0.31102 0.24882,0.24881 0.0622,0.62203 -0.1244,0.37322 -0.37322,0.80865 0,0.49762 -0.31101,1.43067 -0.24882,0.93305 -0.55983,1.7417 0.0622,1.11966 0.1244,1.43068 0.0622,0.31101 0.31102,0.24881 0.31102,0.0622 0.87085,0 0.55983,-0.0622 0.80864,-0.0622 0.93305,-0.43543 -0.87085,4.35424 -0.99525,1.55508 -1.9905,2.55033 -0.99526,1.05746 -1.30628,1.05746 z m 14.99096,-4.78966 q -0.49762,-0.49763 -0.74644,-1.49288 -0.18661,-0.99526 -0.1244,-1.92831 0.0622,-0.99525 0.31101,-1.49288 0,-0.49763 0.12441,-0.74644 0.18661,-0.31102 0.12441,-0.55983 -0.0622,-0.24881 0.1244,-0.87085 0.18661,-0.62203 0.37322,-1.18186 0.43543,-0.99526 0.99526,-2.55034 0.55983,-1.61729 1.11966,-3.23458 0.55983,-1.67949 0.93305,-2.86135 0.37322,-1.24407 0.43542,-1.49289 0,-0.74644 0.99526,-0.80864 0.74644,-0.24881 1.8039,0.62203 1.05745,0.87085 1.67949,1.86611 0.49763,0.49762 0.37322,1.30627 -0.12441,0.80864 -0.80865,2.30152 -0.24881,0.49763 -0.62203,1.6795 -0.31102,1.11966 -0.43542,1.8661 -0.24882,0.49762 -0.62204,1.43068 -0.31101,0.87084 -0.55983,1.67949 -0.1244,0.31101 -0.24881,1.18186 -0.12441,0.80865 -0.31102,1.67949 -0.18661,0.87085 -0.49763,1.36848 -0.55983,2.55034 -1.9905,2.98576 -1.36848,0.43543 -2.42594,-0.74644 z m 6.71797,-24.94356 q -0.68424,-0.49763 -1.05746,-1.18187 -0.31101,-0.74644 -0.37322,-1.30627 0,-0.55983 0.12441,-0.68424 0.62203,-0.68423 1.05746,-1.80389 0.49762,-1.11967 1.05745,-2.05272 0.12441,-0.18661 0.31102,-0.49762 0.24881,-0.37322 0.49763,-0.43543 0.74644,-0.49763 2.05271,0.0622 1.36848,0.55983 1.99051,1.55508 0.55983,1.18187 0.31102,2.42593 -0.18661,1.24407 -1.30628,2.61255 -0.93305,1.24406 -2.36372,1.61728 -1.43068,0.31102 -2.30153,-0.31101 z m 11.5698,27.12068 q -3.42119,0 -5.28729,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23932 0.80865,-4.91407 0.87084,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.67949,-1.9283 3.35898,-2.67474 0.62204,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61729,0.12441 0.93305,0.0622 1.7417,0.37322 1.43067,0.43542 2.48813,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.1244,1.36847 -0.12441,0.68424 -0.43543,1.36848 -0.80864,2.05271 -2.48813,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49763,0.24882 -0.99526,0.37323 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99525,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31101,0.62203 q -0.43543,1.18187 -0.62204,1.99051 -0.1244,0.80865 -0.1244,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43543,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11967,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55509,-1.05746 l 0.24881,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24881,-0.24882 0.55983,-0.24882 0.87084,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30628,1.61729 -0.74644,0.74644 -1.55508,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61728,0.93305 -1.36848,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99525,-0.18661 0.49763,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.92831,-2.73695 0.43542,-1.6795 -0.31102,-2.55034 -0.12441,-0.18661 -0.31102,-0.24882 -0.18661,-0.1244 -0.43542,-0.1244 -0.68424,0 -1.55509,0.43542 -0.80864,0.43542 -1.61728,1.24407 -0.80865,0.80864 -1.49289,1.9283 l -0.80864,1.30628 q 0.12441,-0.0622 0.18661,-0.0622 0.12441,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11967,0.37322 z m 14.5556,14.24458 q -2.11492,-0.87085 -3.11017,-1.8039 -0.93305,-0.99525 -0.74644,-1.7417 0.1244,-0.37322 0.43542,-0.68423 0.31102,-0.31102 1.36847,-0.24882 1.11967,0 3.42119,0.55983 0.68424,0 1.36848,-0.0622 0.68423,-0.0622 1.24406,-0.18661 0.62204,-0.12441 0.99526,-0.31102 0.31102,-0.1244 0.18661,-0.31101 -0.12441,-0.24882 -0.43543,-0.49763 -0.24881,-0.31102 -0.55983,-0.37322 -0.31101,-0.12441 -0.55983,-0.12441 -0.1244,-0.31101 -0.55983,-0.62203 -0.37322,-0.31102 -0.93305,-0.68424 -1.36847,-1.11966 -2.48813,-1.99051 -1.11967,-0.87085 -0.87085,-1.30627 0,-0.24881 0,-0.24881 0,-0.0622 0,-0.0622 -0.43543,0 -0.80865,-1.18186 -0.37322,-1.24407 -0.37322,-2.23932 0,-1.24407 0.49763,-2.48814 0.55983,-1.24407 1.36848,-2.36373 0.87084,-1.11966 1.74169,-1.99051 1.18187,-1.11966 2.48814,-2.17712 1.36847,-1.11966 2.92356,-1.9905 1.61728,-0.87085 3.54559,-1.36848 0.87085,-0.18661 1.99051,-0.18661 1.11966,0 1.61729,0.31102 0.49762,-0.31102 1.24407,0.18661 0.74644,0.43542 1.49288,1.24407 0.74644,0.80864 1.11966,1.61728 0,0.74644 -0.0622,1.86611 0,1.05745 -0.1244,1.8661 -0.12441,0.80864 -0.55983,0.80864 0,0 -0.18661,0.0622 -0.12441,0 -0.12441,0.31101 0,0.62204 -0.93305,1.43068 -1.18187,0.80864 -2.23932,1.30627 -1.05746,0.49763 -1.61729,0.0622 -0.37322,-0.24882 -0.68424,-0.49763 -0.31102,-0.24882 -0.55983,-0.62204 0,0 -0.18661,-0.24881 -0.12441,-0.31102 -0.12441,-0.55983 0,-0.24881 0.18661,-0.43542 0.18661,-0.24882 0.18661,-0.24882 0.87085,-0.80864 1.30628,-1.49288 0.49762,-0.68424 0.68423,-1.18186 0.18661,-0.55983 0.18661,-0.87085 0,-0.37322 -0.18661,-0.43542 -0.1244,-0.12441 -0.62203,-0.12441 -0.31102,0 -1.36848,0.49763 -0.99525,0.49762 -2.11491,1.24406 -1.11966,0.68424 -1.7417,1.24407 -0.24881,0.43543 -0.37322,0.55983 -0.0622,0.12441 -0.31101,0.12441 0,-0.24881 -0.31102,0.0622 -0.31102,0.31102 -0.74644,0.87085 -0.43543,0.55983 -0.87085,1.18186 -0.43542,0.62204 -0.68424,0.99526 -0.0622,0.55983 -0.31101,1.05746 -0.18661,0.43542 -0.12441,0.93305 0.0622,0.62203 0.62203,1.18186 0.55983,0.55983 1.61729,1.43068 2.17712,1.61729 3.23458,2.55034 1.11966,0.93305 1.55508,1.49288 0.43543,0.55983 0.55983,1.11966 1.05746,1.92831 0.24882,3.35899 -0.80865,1.36847 -2.48814,2.11491 -0.62203,0.31102 -2.17712,0.55983 -1.55508,0.31102 -3.29678,0.24882 -1.67949,0 -2.86135,-0.49763 z"
-+       id="path18" /><path
-=       d="m 253.42585,949.63395 q -0.37322,0.24881 -1.6795,-0.62203 -1.30627,-0.80865 -2.17711,-1.8039 -0.43543,-0.49763 -0.55984,-1.05746 -0.1244,-0.55983 0.0622,-2.11492 0.24881,-0.68423 0.24881,-1.30627 0.0622,-0.62203 0.0622,-0.87085 0,-0.37322 0.18661,-1.74169 0.24881,-1.36848 0.49762,-2.86136 0.24882,-1.55508 0.43543,-2.36373 0,-0.0622 0.0622,-0.43542 0.12441,-0.37322 0.18661,-0.55983 0.12441,-0.55983 0.31102,-1.36848 0.18661,-0.80864 0.37322,-2.17711 0.49762,-1.55509 0.80864,-3.04797 0.37322,-1.55509 0.37322,-2.11492 0,-1.11966 0.87085,-1.61729 0.0622,-0.31101 0.37322,-0.93305 0.31102,-0.68423 0.55983,-1.11966 1.24407,-3.54559 2.05271,-5.66051 0.80865,-2.11491 1.67949,-3.67 0.37322,-1.05746 0.80865,-2.17712 0.49763,-1.11966 0.99525,-1.74169 0.43543,-0.87085 1.49288,-2.11492 1.11967,-1.30627 2.36373,-2.48813 1.24407,-1.18187 1.99051,-1.7417 1.36848,-0.68424 2.55034,-1.11966 1.18187,-0.43542 2.48814,-0.43542 1.18186,0 2.05271,0.55983 0.93305,0.49762 2.73695,2.11491 0.62203,0.80865 0.62203,1.55509 0,0.74644 -0.31101,1.24407 -0.43543,0.99525 -1.30627,2.48813 -0.87085,1.43068 -1.6795,2.61254 -0.80864,1.11967 -1.18186,1.18187 -0.74644,0.43542 -1.55509,0.24881 -0.80864,-0.18661 -0.80864,-1.11966 0,-0.43542 0,-0.80864 0.0622,-0.37322 0.0622,-0.37322 0.18661,-0.80865 0.43543,-1.43068 0.31101,-0.62204 0.55983,-1.05746 0.49762,-0.80864 0.24881,-1.55508 -0.18661,-0.74644 -1.55508,-0.62204 -0.18661,0.12441 -0.74644,0.62204 -0.49763,0.43542 -1.11967,1.05745 -0.55983,0.55983 -0.99525,1.11967 -0.43542,0.49762 -0.43542,0.68423 0,0 -0.37322,0.68424 -0.31102,0.62203 -0.99526,1.43068 -0.43542,0.62203 -0.74644,1.18186 -0.31102,0.55983 -0.31102,0.87085 0,0.24881 -0.0622,0.43542 -0.0622,0.18661 -0.31102,0.18661 0,0 -0.24881,0.62204 -0.18661,0.62203 -0.68424,1.49288 -0.24881,0.62203 -0.55983,1.18186 -0.24881,0.49763 -0.49763,0.74645 l -0.0622,0.1244 q 0,0 -0.31102,0.74644 -0.24881,0.68424 -0.55983,1.43068 -0.31101,0.74644 -0.31101,0.87085 0,0.24881 0.74644,0.24881 0.74644,0 1.8039,-0.18661 1.05745,-0.24881 2.05271,-0.49763 0.87085,-0.24881 1.24407,-0.24881 0.37322,0 1.18186,0.24881 0.49763,0.31102 0.80864,1.11967 0.31102,0.74644 0.43543,1.55508 0.18661,0.74644 0.0622,1.11966 -0.0622,0.24882 -1.43068,0.68424 -1.30627,0.43542 -2.61254,0.68424 -1.11966,0.24881 -2.55034,0.55983 -1.36847,0.24881 -2.42593,0.55983 -1.05746,0.24881 -1.11966,0.49763 -0.24882,0 -0.43543,0.31101 -0.1244,0.31102 -0.1244,0.55983 0,0.80865 -0.31102,1.30627 -0.12441,0.37322 -0.43542,1.55509 -0.24882,1.11966 -0.55983,2.48814 -0.24882,1.30627 -0.49763,2.48813 -0.18661,1.11966 -0.18661,1.49288 -0.37322,0.43543 -0.43543,1.11966 -0.0622,0.62204 -0.0622,1.11967 -0.24881,0.49762 -0.31102,0.93305 -0.0622,0.37322 -0.0622,0.62203 0,0.0622 0,0.24881 0,0.18661 -0.0622,0.37322 -0.0622,0.62204 -0.18661,1.61729 -0.0622,1.05746 -0.0622,2.05271 l -0.18661,1.8039 q -0.0622,0.80865 -0.24881,1.36848 -0.12441,0.62203 -0.43542,0.93305 z m 20.02944,-7.96204 q -0.80864,0 -1.30627,-0.31101 -0.43542,-0.31102 -1.11966,-0.87085 -1.18186,-1.24407 -1.9283,-2.67475 -0.68424,-1.43067 -0.49763,-2.48813 0.18661,-0.49763 0.12441,-0.93305 0,-0.49763 0,-0.49763 -0.31102,-0.31102 -0.18662,-0.37322 0.12441,-0.12441 0.24882,-0.37322 0.37322,0 0.24881,-0.68424 -0.1244,-0.49763 0.37322,-2.11491 0.55983,-1.6795 1.49288,-3.17238 0.37322,-0.62203 1.11967,-1.61729 0.74644,-1.05745 1.61728,-2.05271 0.93305,-1.05746 1.6795,-1.67949 1.55508,-1.30627 2.86135,-2.11492 1.36848,-0.80864 2.73695,-1.11966 1.36848,-0.31101 2.79915,-0.31101 1.49289,0 2.42594,0.99525 1.43068,0.62203 1.99051,1.67949 0.62203,1.05746 0.80864,2.73695 0.18661,1.8661 -0.37322,4.60305 -0.55983,2.67475 -3.04797,6.22034 -1.55508,2.23933 -3.04796,3.48339 -1.49289,1.24407 -3.29678,2.30153 -1.30628,0.87085 -2.79916,1.05746 -1.49288,0.18661 -2.92356,0.31101 z m 6.34475,-7.58881 q 1.36847,-1.18187 1.92831,-2.61254 0.62203,-1.43068 1.30627,-3.35899 0.24881,-0.37322 0.31101,-1.24406 0.12441,-0.87085 0.0622,-1.6795 -0.0622,-0.87084 -0.43543,-0.99525 -0.55983,-0.43542 -1.11966,-0.18661 -0.55983,0.18661 -1.43068,0.80864 -1.8661,1.55509 -3.48339,3.6078 -1.55508,1.99051 -2.17712,4.91407 -0.18661,1.55508 0.31102,2.36373 0.55983,0.74644 1.7417,0.43542 1.24407,-0.37322 2.98576,-2.05271 z m 16.9193,6.71797 q -0.18661,0.0622 -0.80865,-0.0622 -0.55983,-0.1244 -1.18186,-0.31101 -0.55983,-0.18661 -0.68424,-0.31102 -0.24881,-0.24881 -0.68424,-0.87085 -0.43542,-0.68424 -0.49763,-1.8039 0,-1.11966 1.05746,-2.67474 0.31102,-0.62204 0.74644,-1.86611 0.43543,-1.24406 0.87085,-2.61254 0.49763,-1.43068 0.87085,-2.55034 0.43542,-1.11966 0.62203,-1.55508 0.12441,-1.05746 -0.1244,-1.49288 -0.18661,-0.49763 -1.05746,-0.55983 -0.62204,0 -0.99526,-0.43543 -0.31101,-0.43542 -0.31101,-1.55508 0.1244,-0.87085 0.43542,-1.49288 0.37322,-0.68424 0.99525,-1.11967 0.62204,-0.31101 1.55509,-0.43542 0.99525,-0.12441 1.9283,-0.0622 0.93306,0.0622 1.30628,0.43542 0.43542,0.24881 0.68423,1.11966 0.31102,0.80865 0.49763,1.67949 0.18661,0.87085 0.24881,1.30627 0.62204,-0.49762 1.36848,-1.36847 0.80864,-0.93305 1.61729,-1.7417 0.99525,-0.68423 2.36373,-1.36847 1.36847,-0.74644 1.99051,-0.74644 0.68423,0 1.67949,0.68424 0.99525,0.62203 1.24407,1.11966 0.62203,1.05746 0.87084,2.23932 0.31102,1.11966 -0.37322,1.99051 -0.62203,0.80864 -1.74169,1.61729 -1.11966,0.74644 -2.79916,0.43542 -0.37322,-0.12441 -0.80864,-0.93305 -0.37322,-0.80864 -0.43542,-1.18186 0,-0.18661 -0.55983,0.37322 -0.49763,0.49762 -1.24407,1.24406 -0.68424,0.74644 -1.30627,1.36848 -1.05746,1.30627 -2.23933,3.54559 -1.18186,2.23933 -2.79915,5.4117 -0.74644,1.55508 -1.24407,2.98576 -0.49762,1.36848 -1.05745,1.55509 z m 48.45651,2.05271 q -0.68423,0.24881 -1.55508,0.24881 -0.80864,0.0622 -1.8661,-0.74644 -0.62204,-0.68424 -0.87085,-1.43068 -0.18661,-0.74644 -0.18661,-2.30152 0.12441,-0.93305 0.49763,-2.67475 0.37322,-1.8039 0.80864,-3.7322 0.49763,-1.99051 0.87085,-3.5456 0.43542,-1.61728 0.68424,-2.17712 0.43542,-1.49288 0.18661,-1.8661 -0.24882,-0.37322 -1.49288,-0.43542 -1.43068,-0.0622 -2.98577,1.36847 -1.55508,1.43068 -3.54559,4.54085 -1.49288,2.30153 -1.8039,3.79441 -0.31102,1.43068 -0.0622,1.99051 0.1244,0.24881 0.43542,0.31101 0.37322,0 0.87085,-0.18661 0.55983,-0.18661 1.18186,-0.49762 0.43543,-0.24882 1.05746,-0.49763 0.68424,-0.31102 1.30627,-0.55983 0.37322,0 0.49763,0.43542 0.18661,0.43543 0.18661,1.05746 0,0.24881 0.12441,0.93305 0.18661,0.68424 0.62203,0.93305 0.24881,0.24882 -1.05746,1.05746 -1.24407,0.74644 -3.23458,1.8661 -1.8661,0.43543 -2.79915,0.43543 -0.87085,0 -1.9283,-0.80865 -1.7417,-1.05746 -2.23933,-3.91881 -0.43542,-2.86136 0.74645,-6.34475 1.18186,-2.79915 2.61254,-4.78966 1.49288,-2.05271 3.11017,-3.7322 0.24881,-0.24882 1.55508,-0.99526 1.30627,-0.74644 2.67475,-1.18186 1.55508,-0.49763 2.61254,-0.37322 1.11966,0.0622 2.11492,0.74644 1.11966,0.24881 1.49288,-0.0622 0.43542,-0.31101 0.99525,-1.74169 1.11966,-3.11017 2.36373,-6.28254 1.24407,-3.23458 2.61255,-6.53136 0.62203,-1.18187 0.74644,-1.8039 0.18661,-0.68424 0.43542,-0.93305 l 1.7417,-0.55983 q 0.68423,-0.18661 1.55508,0.62203 0.93305,0.80865 1.18186,1.55509 0,0.55983 -0.49762,2.48813 -0.49763,1.86611 -1.61729,4.47865 -0.99526,2.30152 -1.99051,4.66525 -0.93305,2.30153 -1.8039,4.91407 -0.68424,1.92831 -1.24407,3.11017 -0.55983,1.18187 -0.74644,2.05271 -0.37322,1.61729 -0.93305,2.92356 -0.49763,1.24407 -0.68424,1.7417 -0.80864,2.36373 -1.24406,3.91881 -0.43543,1.49288 -0.55983,2.61255 -0.12441,1.05745 -0.0622,2.11491 0.0622,0.99526 0.24882,2.30153 0,0.24881 -0.37322,0.74644 -0.31102,0.43542 -0.74645,0.74644 z m 13.43597,-0.80865 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.1244,-1.43068 0.12441,-0.93305 0.24882,-1.9283 0.24881,-1.18187 0.68423,-3.04797 0.43543,-1.8661 0.93306,-3.73221 0.49762,-1.9283 0.87084,-3.29678 0.37322,-1.43067 0.43543,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43542,1.18187 0.12441,0.68423 -0.18661,1.9905 -0.24881,1.30628 -0.99525,3.85662 -0.68424,2.48813 -1.05746,4.04322 -0.31101,1.49288 -0.24881,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72271,-25.81441 q -0.24881,0.18661 -0.49762,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62204,-0.55983 -1.11966,-1.11966 -0.43543,-0.55983 -0.43543,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68423,-2.55034 0.55983,-1.24407 1.49289,-1.30628 0.24881,0 1.05745,0.24882 0.87085,0.24881 1.8039,0.62203 0.49763,0.93305 0.93305,2.42593 0.43543,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23933,2.17712 z m 9.14385,38.3173 q -1.7417,0.68424 -3.67,-0.24882 -1.8661,-0.87084 -3.23458,-2.79915 -0.24881,-0.37322 -0.74644,-1.36847 -0.49763,-0.93305 -0.99525,-2.05272 -0.43543,-1.11966 -0.68424,-1.9283 -0.18661,-0.80865 0,-0.93305 0.24881,-0.68424 1.11966,-0.80865 0.87085,-0.1244 1.74169,0.0622 0.87085,0.24881 0.99526,0.62203 0.18661,0.43542 0.37322,0.87085 0.18661,0.49763 0.43542,0.87085 0.31102,0.43542 0.55983,0.74644 0.68424,1.05745 1.49288,1.43068 0.80865,0.43542 1.24407,0.1244 1.05746,-0.80864 1.55509,-1.9283 0.55983,-1.05746 1.43068,-3.79441 0.68423,-2.30153 1.18186,-3.98102 0.49763,-1.67949 1.05746,-3.11017 0.18661,-0.74644 0.43542,-1.24407 0.31102,-0.55983 0.55983,-0.80864 h 0.37322 q -1.36847,0.87085 -2.30152,1.74169 -0.93305,0.87085 -2.55034,1.55509 -0.37322,0.43542 -1.8661,0.55983 -1.43068,0.0622 -2.79916,-0.37322 -0.87084,-0.49763 -1.43068,-0.99525 -0.49762,-0.55984 -0.87084,-1.24407 -0.31102,-0.68424 -0.68424,-1.61729 -0.43542,-0.93305 -0.12441,-3.04797 0.31102,-2.11491 1.11966,-4.22983 0.74645,-1.55508 2.17712,-3.35898 1.43068,-1.8039 3.04797,-3.23458 1.61729,-1.49288 2.92356,-1.8661 0.49763,-0.24881 1.74169,-0.55983 1.24407,-0.37322 2.36373,-0.0622 1.05746,0.1244 1.61729,0.49762 0.55983,0.31102 1.8039,1.36848 0.80865,0.80864 1.99051,2.11491 1.18186,1.24407 1.49288,2.11492 0.43543,0.93305 0.18661,2.05271 -0.24881,1.05746 -0.87085,1.8661 -0.55983,0.80865 -1.18186,1.61729 -0.62203,0.80865 -0.93305,2.23932 -0.31102,1.86611 -1.18187,4.22983 -0.87084,2.30153 -1.36847,4.29204 l -0.99526,3.85661 q -1.55508,5.28729 -3.42118,7.65102 -1.8661,2.42593 -3.11017,3.11017 z m -1.30627,-21.39797 q 1.24406,-0.0622 2.11491,-0.24882 0.93305,-0.24881 1.7417,-0.99525 0.80864,-0.80864 1.8661,-2.42593 1.05746,-1.49288 1.49288,-2.73695 0.43542,-1.24407 0.31102,-2.79915 -0.0622,-0.99526 -0.55983,-1.30628 -0.49763,-0.31101 -1.30627,-0.18661 -1.18187,0.18661 -2.11492,0.99526 -0.93305,0.74644 -2.17712,2.36373 -0.93305,1.24407 -1.55508,2.98576 -0.62204,1.8661 -0.55983,2.98576 0.1244,1.11966 0.74644,1.36848 z m 18.78544,6.90458 q -0.24882,0 -1.05746,-0.37322 -0.80864,-0.37323 -0.80864,-0.37323 0,-0.24881 -0.18661,-0.62203 -0.12441,-0.37322 -0.12441,-0.62203 -0.43543,-0.24882 -0.87085,-0.80865 -0.43542,-0.55983 -0.18661,-1.24407 0.37322,-0.68423 0.99525,-2.05271 0.68424,-1.43068 1.43068,-3.17237 0.80865,-1.8039 1.49288,-3.48339 0.68424,-1.67949 1.18187,-2.86136 0.49763,-1.24407 0.55983,-1.49288 0,-0.24881 0.0622,-0.87085 0.12441,-0.62203 0.80865,-1.05745 0.80864,-0.55984 1.67949,-0.0622 0.87085,0.49763 1.49288,1.7417 0.62203,1.18186 0.62203,2.79915 0,0.43542 -0.62203,2.23932 -0.62203,1.7417 -1.67949,4.16763 -0.99526,2.42593 -2.23932,4.91407 -0.93305,1.8039 -1.43068,2.55034 -0.43543,0.68424 -1.11966,0.68424 z m 8.45966,-23.82391 q -0.74644,0 -1.8039,-0.68423 -0.99525,-0.68424 -1.8039,-1.7417 -0.80864,-1.05746 -0.80864,-2.23932 0,-0.31102 0.55983,-1.11966 0.55983,-0.87085 1.05746,-1.67949 0.55983,-0.80865 0.55983,-0.93306 0.49762,0 1.18186,0.18661 0.68424,0.18662 1.11966,0.43543 0.68424,1.55508 1.8039,2.67474 1.11966,1.05746 1.11966,2.42594 0,1.36847 -0.68423,2.05271 -0.68424,0.62203 -2.30153,0.62203 z m 9.89029,26.24984 q -0.87085,-0.24882 -1.74169,-0.87085 -0.87085,-0.62203 -1.8039,-1.43068 -0.74644,-0.99525 -1.05746,-1.8039 -0.31102,-0.87084 -0.37322,-1.9905 0,-1.18187 0,-2.98577 0,-0.74644 0.24881,-2.11491 0.31102,-1.36848 0.62204,-2.86136 0.37322,-1.49288 0.68424,-2.61254 0.31101,-1.18187 0.37322,-1.55509 0.18661,-0.80864 -0.62204,-0.93305 -0.80864,-0.12441 -1.8039,-0.0622 -0.93305,0 -1.24407,-0.18661 -0.24881,-0.0622 -0.24881,-0.62204 0,-0.62203 0,-0.62203 0,-0.24881 -0.24881,-0.31102 -0.24882,-0.1244 -0.43543,-0.43542 -0.1244,-0.24881 0.31102,-0.93305 0.43542,-0.68424 1.11966,-0.80865 0.55983,-0.1244 1.67949,-0.18661 1.11967,-0.1244 2.23933,-0.43542 1.18186,-0.37322 1.80389,-1.11966 0.55984,-1.36848 1.24407,-2.92356 0.68424,-1.61729 1.30627,-2.79915 0.62204,-1.24407 0.87085,-1.55509 1.05746,-0.55983 2.17712,-0.43542 1.11966,0.0622 1.7417,1.05745 0.31101,0.43543 0.49762,0.62204 0.24882,0.18661 0.18661,0.55983 0,0.37322 -0.49762,1.36847 -0.43543,0.93306 -1.49289,2.92356 -0.31101,0.62204 -0.55983,1.11967 -0.24881,0.43542 -0.24881,0.43542 0.24881,0.0622 0.74644,0.0622 0.49763,0 1.24407,-0.0622 0.68424,-0.12441 1.49288,-0.18661 0.80865,-0.12441 1.43068,0 1.43068,0 2.11491,0.80864 0.68424,0.80865 0.74645,2.05272 0.1244,0.68423 -0.49763,1.18186 -0.62204,0.49763 -2.30153,0.49763 -0.55983,0 -1.61729,0.0622 -1.05745,0.0622 -2.17711,0.12441 -1.11967,0.0622 -1.92831,0.18661 -0.74644,0.0622 -0.74644,0.18661 -0.18661,0.1244 -0.62204,0.99525 -0.37322,0.80865 -0.80864,1.99051 -0.37322,1.18187 -0.68424,2.23932 -0.43542,2.11492 -0.62203,4.10543 -0.18661,1.99051 -0.0622,3.48339 0.18661,1.43068 0.74644,2.05271 0.55983,0.55983 1.67949,0 1.18186,-0.62203 2.17712,-1.43068 1.11966,-0.93305 1.9283,-0.55983 0.80865,0.31102 0.99526,1.36848 0.24881,0.99525 -0.55983,2.17711 -0.74644,1.18187 -2.11492,1.99051 -1.36847,0.80865 -2.79915,1.11966 -1.43068,0.37323 -2.48814,0.0622 z m 13.99572,-1.67949 q -0.24881,-0.49763 -1.11966,-0.99526 -0.80864,-0.49763 -0.80864,-0.74644 0,-0.24881 -0.31102,-0.74644 -0.24882,-0.55983 -0.49763,-0.80864 -0.31102,-0.37322 0.18661,-1.8039 0.49763,-1.49288 1.49288,-3.6078 0.99526,-2.11491 2.17712,-4.29203 0.49763,-0.49763 0.99526,-1.30628 0.49762,-0.80864 0.74644,-1.05745 0,-0.24882 0.18661,-0.43543 0.18661,-0.24881 0.43542,-0.24881 l 0.49763,-0.99525 q 0.12441,-0.24882 0.74644,-0.99526 0.68424,-0.74644 1.61729,-1.61729 0.93305,-0.93305 1.8661,-1.74169 0.99525,-0.80865 1.61729,-1.18187 1.30627,-0.87085 2.67474,-0.80864 1.43068,0.0622 2.42594,0.87085 0.18661,0.18661 0.80864,0.74644 0.68424,0.55983 1.49288,1.24406 0.87085,0.68424 1.49288,1.24407 l 2.30153,2.05271 -1.05746,3.11017 q -0.80864,2.48814 -0.43542,4.35424 0.37322,1.8661 1.18186,3.23458 0.31102,0.68424 0.80865,1.05746 0.55983,0.37322 1.43068,0.49762 0.49762,0.0622 0.93305,0.37322 0.43542,0.31102 0.43542,0.99526 0,1.49288 -0.55983,2.17712 -0.49763,0.62203 -1.11966,0.74644 -2.05271,0.24881 -3.91882,-0.43542 -1.8661,-0.68424 -3.35898,-3.5456 -0.24881,-0.37322 -0.68424,-1.36847 -0.37322,-1.05746 -0.43542,-1.36848 -0.24881,0.31102 -0.68424,0.80865 -0.37322,0.43542 -0.74644,0.80864 -4.41644,4.47865 -7.58881,5.84712 -3.11017,1.30627 -5.22509,-0.0622 z m 3.42119,-5.16289 q 0.43542,0.0622 1.36847,-0.43542 0.93305,-0.55983 2.48814,-1.8039 2.11491,-1.8039 3.48339,-2.98576 1.36847,-1.18187 2.67475,-3.04797 l 1.36847,-2.23932 q -0.62203,-1.43068 -1.11966,-1.8661 -0.49763,-0.43543 -0.99526,-0.43543 -0.80864,0 -1.9283,1.05746 -1.11966,0.99526 -2.55034,2.98577 -1.36848,1.9283 -3.11017,4.85186 -0.80864,1.36848 -1.24407,2.67475 z m 23.26403,8.33526 q -0.80865,-0.31102 -1.30627,-0.99525 -0.49763,-0.62204 -0.55983,-1.86611 -0.0622,-0.80864 0.0622,-2.36373 0.12441,-1.61728 0.43542,-3.23457 0,-0.12441 0,-0.24882 0.0622,-0.18661 0.0622,-0.24881 0.0622,-0.24881 0.1244,-0.74644 0.0622,-0.55983 0.12441,-0.87085 0.12441,-0.37322 0.12441,-0.0622 l 0.37322,-1.67949 q 0.24881,-1.11966 0.55983,-2.30153 0.31102,-1.18186 0.55983,-2.05271 0.31102,-0.93305 0.37322,-1.05746 0,0 0.18661,-0.68424 0.24881,-0.74644 0.49763,-1.49288 0.99525,-3.11017 1.8661,-5.16288 0.93305,-2.05271 1.61729,-2.98576 0.0622,-0.18661 0.18661,-0.43543 0.1244,-0.31101 0.18661,-0.49762 0,-0.68424 0.0622,-0.99526 0.12441,-0.31102 0.31102,-0.55983 0.12441,-0.24881 0.37322,-0.62203 0.24881,-0.43543 0.55983,-1.05746 l 0.24881,-0.68424 q 0.37322,-0.80864 0.93305,-1.8661 0.55983,-1.11966 0.80865,-1.67949 0.18661,-0.55983 0.74644,-1.30627 0.55983,-0.80865 1.24407,-1.05746 l -0.0622,-0.0622 q 0.31102,-0.55984 1.18187,-0.87085 0.87085,-0.37322 1.43068,-0.37322 0.87084,0 1.30627,0.49762 0.49762,0.49763 0.49762,1.36848 0,0.93305 -0.0622,1.36847 0,0.37322 -0.43542,0.87085 h 0.0622 q 0.12441,-0.12441 -0.0622,0.37322 -0.18661,0.49763 -0.31102,0.68424 -0.12441,0.31102 -0.31102,0.68424 -0.1244,0.37322 -0.31101,0.55983 -0.18661,0.24881 -0.99526,1.74169 -0.80864,1.43068 -1.8039,3.42119 -0.99525,1.9283 -1.9283,3.79441 -0.87085,1.8039 -1.24407,2.79915 l -0.31102,0.93305 q -0.0622,0.24881 -0.0622,0.37322 -0.18661,0.43543 -0.37322,0.87085 -0.18661,0.43542 -0.37322,0.74644 l -0.99526,3.85661 -0.24881,1.30627 -0.55983,1.43068 -0.37322,1.18186 q -0.12441,0.37323 -0.18661,0.80865 -0.0622,0.43542 -0.24881,0.62203 0,0.0622 -0.0622,0.18661 0,0.0622 0,0.12441 -0.24881,0.99525 -0.87084,2.79915 -0.55984,1.8039 -0.68424,3.98102 0,0.0622 -0.0622,0.12441 0,0.0622 0,0.1244 -0.18661,1.30628 -0.80864,1.99051 -0.55983,0.74644 -1.49288,0.49763 z m 30.10644,-1.92831 q -1.49288,0 -2.61254,-1.55508 -1.05746,-1.61729 -1.30627,-3.85661 0.0622,-0.49763 0.12441,-1.43068 0.1244,-0.93305 0.24881,-1.9283 0.24881,-1.18187 0.68424,-3.04797 0.43542,-1.8661 0.93305,-3.73221 0.49763,-1.9283 0.87085,-3.29678 0.37322,-1.43067 0.43542,-1.67949 0.37322,-0.87084 1.67949,-0.43542 1.30627,0.43542 2.23932,1.8661 0.37322,0.49763 0.43543,1.18187 0.1244,0.68423 -0.18661,1.9905 -0.24882,1.30628 -0.99526,3.85662 -0.68423,2.48813 -1.05745,4.04322 -0.31102,1.49288 -0.24882,3.17237 -0.24881,2.86136 -0.49763,3.91881 -0.24881,0.99526 -0.74644,0.93305 z m 5.72272,-25.81441 q -0.24882,0.18661 -0.49763,0.18661 -0.18661,-0.0622 -0.68424,-0.37322 -0.43542,-0.0622 -1.11966,-0.55983 -0.62203,-0.55983 -1.11966,-1.11966 -0.43542,-0.55983 -0.43542,-0.68424 -0.0622,-0.62203 0.0622,-1.9905 0.18661,-1.36848 0.68424,-2.55034 0.55983,-1.24407 1.49288,-1.30628 0.24881,0 1.05746,0.24882 0.87084,0.24881 1.80389,0.62203 0.49763,0.93305 0.93306,2.42593 0.43542,1.49289 0.0622,2.92356 -0.31102,1.36848 -2.23932,2.17712 z m 23.38843,24.38374 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35899,2.79916 -1.36847,1.49288 -2.05271,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43543,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87084,-1.99051 0.24882,-0.43542 0.43543,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49762,-1.11967 0.93305,-2.11492 0.68423,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43542,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31101,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68423,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30627,-0.55983 0.62204,0 1.49289,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.1244,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06795,1.43067 q -0.93305,0.0622 -1.74169,0.0622 -0.74644,0 -1.18187,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24882,-0.24881 -0.99526,0.55983 -0.74644,0.80865 -1.74169,1.55509 -1.92831,2.17712 -3.42119,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.9905,-1.11966 -0.80865,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24882,-2.79916 0.31102,-2.55033 1.11967,-4.60305 0.80864,-2.11491 2.42593,-4.41644 0.74644,-0.99525 1.99051,-2.17712 1.30627,-1.18186 2.79915,-2.17712 1.49288,-1.05745 2.67475,-1.49288 1.80389,-0.80864 2.98576,-0.74644 1.24407,0.0622 2.42593,0.37322 0.87085,0.43543 1.36848,0.43543 0.55983,0 0.80864,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62204,-1.43067 l 1.36847,-4.04323 q 0.68424,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42594,-2.55034 1.05745,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80864,1.8661 0.12441,1.05746 -0.55983,2.48814 -0.43542,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68423,1.61729 -1.43067,3.23458 -0.68424,1.61729 -1.43068,3.54559 -0.24882,0.99526 -0.68424,2.30153 -0.37322,1.30627 -0.62203,2.36373 -0.18661,0.99525 -0.43543,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93305,1.86611 -0.43543,1.36847 -0.74644,2.92356 -0.24882,1.55508 -0.43543,2.55034 -0.1244,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86136,-2.61254 0.93305,-0.93305 1.9283,-2.05271 0.99526,-1.18187 1.8039,-2.30153 0.87085,-1.11966 1.36848,-1.9283 0.49762,-0.80865 0.49762,-1.05746 0,-0.31102 -0.49762,-0.55983 -0.43543,-0.24882 -1.05746,-0.37322 -0.62204,-0.18661 -1.11966,-0.0622 -1.49289,0.43543 -2.42594,1.30627 -0.87084,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67474,3.91882 -0.99526,1.8661 -1.24407,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 25.37899,4.41644 q -2.42593,-0.99526 -3.35898,-3.23458 -0.93305,-2.23932 -0.49763,-5.97153 0.12441,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87084,-0.80864 -0.68424,-0.62203 -0.62204,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24882,-0.68424 0.43543,-0.74644 0.43542,-0.18661 0.87084,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24882,0 0.74644,0.31102 0.55984,0.31101 0.55984,0.55983 0.24881,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18186,-2.05272 0.62203,-0.99525 1.55509,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99525,-0.74644 1.67949,-1.11966 0.31102,-0.12441 1.18186,-0.37322 0.93306,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.92831,1.61729 0.80864,0.55983 1.05745,1.74169 0.31102,1.11966 0.24882,2.36373 -0.0622,1.24407 -0.49763,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11966,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80864,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93305,-0.1244 -1.30627,-0.31101 -0.43543,-0.24882 -0.74644,0.18661 -0.24882,0.37322 -0.43543,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24882,0.74644 0.43542,0.74644 0.87084,1.11966 0.43543,0.31102 1.61729,0.18661 1.18187,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24882,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05745,1.30627 -0.80865,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55509,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68424,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43068,-1.67949 0.24881,-0.68424 0.24881,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49763,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24407,0.62204 -0.43542,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11966,1.30627 -0.37322,0.55984 -0.12441,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87085,0.0622 1.18186,0.0622 z m 9.33052,29.67102 q -0.43543,-0.18661 -1.36848,-0.93305 -0.87084,-0.74644 -1.61729,-1.61729 -0.68423,-0.80864 -0.68423,-1.18186 0,-0.37322 0.31101,-1.99051 0.31102,-1.55508 0.80865,-3.85661 0.55983,-2.23932 1.18186,-4.60305 0.68424,-2.30153 1.36848,-4.10543 0.1244,-0.31101 0.80864,-2.05271 0.74644,-1.8039 1.43068,-4.35424 0.49763,-1.61728 1.30627,-3.67 0.80865,-2.05271 1.67949,-4.10542 0.87085,-2.11492 1.43068,-3.7322 0.55983,-1.61729 1.24407,-3.23458 0.68424,-1.67949 0.74644,-1.92831 0.12441,-0.37322 0.68424,-0.62203 0.62203,-0.31102 1.24407,-0.49763 0.62203,-0.24881 0.80864,-0.31101 1.11966,-0.31102 1.92831,0.93305 0.31101,0.55983 0.1244,1.55508 -0.1244,0.93305 -0.62203,2.05271 l -0.43543,1.24407 2.23933,-0.49763 q 0.55983,0 1.55508,0.0622 0.99526,0.0622 1.92831,0.1244 0.99525,0.0622 1.36847,0.18661 1.49288,0.0622 2.05271,0.55984 0.62204,0.49762 1.05746,1.30627 0.31102,0.31101 0.74644,0.87084 0.43543,0.49763 0.49763,0.99526 0.24881,1.05746 -0.18661,2.48813 -0.37322,1.43068 -1.18186,2.92356 -0.74645,1.43068 -1.8039,2.67475 -0.99526,1.18187 -1.92831,1.8039 -0.62203,0.24881 -1.11966,0.55983 -0.49763,0.24881 -0.49763,0.24881 -0.0622,0.31102 -1.30627,1.05746 -1.18186,0.74644 -2.79915,1.43068 -1.55509,0.62203 -2.79915,0.80864 -0.43543,0.0622 -1.24407,0.12441 -0.80865,0.0622 -1.24407,-0.18661 -0.68424,-0.12441 -0.93305,-0.12441 -0.24882,0 -0.24882,0.24882 -0.0622,0.1244 -0.87084,1.99051 -0.80865,1.8661 -1.67949,5.16288 -1.18187,3.60779 -1.92831,5.90932 -0.74644,2.36373 -1.18186,3.67 -0.37322,1.30627 -0.55984,1.8661 -0.18661,0.62204 -0.31101,0.74644 z m 8.02424,-24.81915 q 0.18661,0.37322 1.30627,0.24881 1.11966,-0.18661 2.55034,-0.74644 1.43068,-0.55983 2.55034,-1.30627 1.18186,-0.80865 1.36847,-1.67949 1.36848,-1.55509 1.92831,-2.23933 0.55983,-0.74644 -0.0622,-1.18186 -0.68423,-0.99525 -1.99051,-0.93305 -1.24406,0.0622 -3.98101,1.55508 -1.05746,0.37322 -1.43068,0.68424 -0.37322,0.24882 -0.62204,0.80865 -0.18661,0.55983 -0.74644,1.80389 -0.55983,1.36848 -0.74644,2.05272 -0.18661,0.68423 -0.1244,0.93305 z m 30.16864,8.45966 q -1.8661,1.05746 -3.98102,1.24407 -2.05271,0.1244 -3.85661,-0.55983 -1.8039,-0.74644 -2.92356,-2.17712 -0.62203,-0.80865 -1.18186,-2.55034 -0.55983,-1.8039 -0.18661,-4.85187 0.37322,-2.86135 1.74169,-5.78491 1.43068,-2.92356 3.48339,-5.16288 2.05271,-2.23933 4.47865,-3.04797 0.87084,-0.31102 1.74169,-0.43542 0.93305,-0.18662 2.42593,-0.0622 1.43068,0.18661 2.55034,0.74644 1.11966,0.49763 1.61729,1.11966 0.99526,0.99526 1.30627,1.92831 0.31102,0.93305 0.24882,1.8039 -0.31102,1.99051 -1.8039,4.29203 -1.43068,2.30153 -4.04322,3.42119 -1.05746,0.43542 -2.48814,0.55983 -1.43068,0.12441 -3.91881,-0.37322 -1.49288,-0.31102 -1.99051,0.31102 -0.43543,0.62203 -0.37322,2.42593 0.1244,1.11966 0.49762,1.99051 0.43543,0.80864 1.55509,1.11966 1.43068,0.24881 2.05271,0.0622 0.62204,-0.24881 1.55509,-0.68424 0.49762,-0.31101 0.93305,-0.68423 0.49763,-0.37322 0.93305,-0.74644 0.49763,-0.37322 0.80864,-0.55983 0.31102,-0.24882 0.62204,-0.31102 0.31101,-0.0622 0.62203,-0.0622 0.68424,0.0622 1.30627,0.74644 0.62204,0.68423 0.80865,1.30627 0,0.49763 -0.62204,1.43068 -0.62203,0.87084 -1.67949,1.8661 -0.99525,0.93305 -2.23932,1.67949 z m -0.80865,-13.87136 q 0.43543,-0.18661 1.24407,-0.87085 0.87085,-0.68423 1.55509,-1.43067 0.68423,-0.80865 0.68423,-1.24407 0,-0.68424 -0.93305,-1.18187 -0.87084,-0.49762 -2.30152,-0.18661 -0.49763,0.12441 -1.18187,0.68424 -0.68423,0.55983 -1.36847,1.30627 -0.68424,0.68424 -1.18187,1.36848 -0.49762,0.62203 -0.68423,0.99525 0.24881,0.31102 0.99525,0.49763 0.74644,0.18661 1.61729,0.18661 0.93305,0 1.55508,-0.12441 z m 30.91507,13.62255 q -1.36848,-0.12441 -2.30153,-0.55983 -0.87085,-0.49763 -1.43068,-1.92831 -0.24881,-0.99525 -0.24881,-2.05271 0.0622,-1.11966 0.18661,-2.11492 0.12441,-1.05746 0.12441,-1.8039 0,-0.1244 0,-0.49762 0,-0.37322 0,-0.68424 -0.12441,-0.93305 -0.49763,-1.11966 -0.31102,-0.24882 -1.11966,0.0622 -1.30627,0.62204 -2.86136,1.67949 -1.49288,0.99526 -3.17237,2.36373 -1.61729,1.30627 -3.35898,2.79916 -1.36848,1.49288 -2.05272,2.42593 -0.62203,0.93305 -1.30627,0.93305 -0.49763,0.24881 -1.05746,-0.12441 -0.55983,-0.37322 -1.18186,-0.87085 -0.43542,-0.49762 -1.05746,-1.24406 -0.55983,-0.80865 -0.68424,-1.05746 0,-0.99526 0.12441,-1.8039 0.18661,-0.80864 0.49763,-1.67949 0.37322,-0.87085 0.87085,-1.99051 0.24881,-0.43542 0.43542,-0.87085 0.24881,-0.49762 0.55983,-1.05746 0.24881,-0.87084 0.68424,-1.9905 0.49763,-1.11967 0.93305,-2.11492 0.68424,-1.61729 1.05746,-2.79915 0.37322,-1.18187 0.62203,-2.55034 -0.0622,-0.12441 0.0622,-0.37322 0.12441,-0.24882 0.37322,-0.31102 h 0.0622 0.0622 q 0.43543,-0.31102 1.61729,-0.0622 1.24407,0.18661 1.8661,0.68423 1.30627,1.11967 1.24407,2.92356 -0.0622,1.8039 -1.8661,4.72746 -0.43543,0.99526 -0.93305,1.8661 -0.43543,0.80865 -0.43543,1.11967 0,0 0.49763,-0.37322 0.49763,-0.37323 1.18186,-0.87085 0.68424,-0.55983 1.18187,-0.87085 0.31102,-0.31102 1.36847,-1.11966 1.05746,-0.87085 2.30153,-1.8039 1.24407,-0.93305 1.99051,-1.43068 0.68424,-0.49763 1.74169,-0.99525 1.05746,-0.55983 1.30628,-0.55983 0.62203,0 1.49288,0.43542 0.93305,0.43542 1.67949,1.05746 0.80864,0.55983 0.93305,1.05746 0,0.24881 -0.0622,0.68423 -0.0622,0.37322 -0.0622,0.68424 -0.0622,0.99526 -0.0622,2.42593 0.0622,1.36848 0.0622,2.79916 0,1.36847 -0.24881,2.48813 0,0 0.0622,0.12441 0.0622,0.0622 0.12441,0.24881 -0.0622,0.0622 -0.0622,0.24882 0.0622,0.1244 0.0622,0.1244 0.12441,0.43543 0.24881,0.87085 0.18661,0.43542 0.43543,0.99526 0.24881,0.49762 0.55983,1.30627 -0.0622,0.80864 -0.93305,1.61729 -0.80865,0.74644 -1.61729,0.93305 z m 25.06797,1.43067 q -0.93305,0.0622 -1.7417,0.0622 -0.74644,0 -1.18186,-0.24882 -1.11966,-0.93305 -1.49288,-1.49288 -0.31102,-0.55983 -0.31102,-1.24407 0.0622,-0.87084 0.0622,-1.74169 0,-0.93305 0,-1.43068 -0.24881,-0.24881 -0.99525,0.55983 -0.74644,0.80865 -1.7417,1.55509 -1.9283,2.17712 -3.42118,3.17237 -1.49288,0.93305 -2.73695,1.05746 -1.24407,0.18661 -2.48814,0.0622 -1.11966,-0.12441 -1.99051,-1.11966 -0.80864,-0.99525 -1.24407,-2.42593 -0.37322,-1.43068 -0.24881,-2.79916 0.31102,-2.55033 1.11966,-4.60305 0.80865,-2.11491 2.42594,-4.41644 0.74644,-0.99525 1.9905,-2.17712 1.30628,-1.18186 2.79916,-2.17712 1.49288,-1.05745 2.67474,-1.49288 1.8039,-0.80864 2.98577,-0.74644 1.24406,0.0622 2.42593,0.37322 0.87085,0.43543 1.36847,0.43543 0.55983,0 0.80865,-0.62204 0.37322,-0.49763 0.55983,-1.24407 0.18661,-0.74644 0.62203,-1.43067 l 1.36848,-4.04323 q 0.68423,-1.67949 1.61729,-3.85661 0.93305,-2.17712 2.11491,-4.85186 1.43068,-2.42593 2.42593,-2.55034 1.05746,-0.12441 2.17712,1.11966 0.74644,0.74644 0.80865,1.8661 0.1244,1.05746 -0.55983,2.48814 -0.43543,0.68424 -0.93305,1.74169 -0.49763,0.99526 -1.18187,2.36373 -0.68424,1.61729 -1.43068,3.23458 -0.68423,1.61729 -1.43068,3.54559 -0.24881,0.99526 -0.68423,2.30153 -0.37322,1.30627 -0.62204,2.36373 -0.18661,0.99525 -0.43542,1.8661 -0.18661,0.80864 -0.43542,0.80864 -0.49763,0.43543 -0.93306,1.86611 -0.43542,1.36847 -0.74644,2.92356 -0.24881,1.55508 -0.43542,2.55034 -0.12441,0.74644 -0.18661,2.11491 -0.0622,1.30627 -0.0622,2.55034 0,1.18187 0,1.61729 0,1.18186 -0.18661,1.67949 -0.12441,0.43542 -0.49763,0.43542 z m -14.05797,-4.91406 q 1.43068,0 2.67475,-1.18187 1.30627,-1.24407 2.86135,-2.61254 0.93305,-0.93305 1.92831,-2.05271 0.99525,-1.18187 1.8039,-2.30153 0.87084,-1.11966 1.36847,-1.9283 0.49763,-0.80865 0.49763,-1.05746 0,-0.31102 -0.49763,-0.55983 -0.43542,-0.24882 -1.05746,-0.37322 -0.62203,-0.18661 -1.11966,-0.0622 -1.49288,0.43543 -2.42593,1.30627 -0.87085,0.87085 -2.55034,2.73695 -1.67949,2.05272 -2.67475,3.91882 -0.99525,1.8661 -1.24406,3.04796 -0.18661,1.11967 0.43542,1.11967 z m 27.4939,6.09593 q -3.42118,0 -5.28728,-1.99051 -1.8039,-1.99051 -1.8039,-6.09593 0,-2.23933 0.80864,-4.91407 0.87085,-2.67475 2.23932,-5.22509 1.43068,-2.55034 3.11017,-4.41644 1.6795,-1.9283 3.35899,-2.67474 0.62203,-0.31102 1.30627,-0.43543 0.74644,-0.18661 1.43068,-0.18661 0.74644,0 1.61728,0.12441 0.93306,0.0622 1.7417,0.37322 1.43068,0.43542 2.48814,1.67949 1.11966,1.24407 1.11966,3.6078 0,0.62203 -0.12441,1.36847 -0.12441,0.68424 -0.43542,1.36848 -0.80865,2.05271 -2.48814,3.91881 -1.61729,1.8661 -3.42119,2.61254 -0.49762,0.24882 -0.99525,0.37322 -0.43542,0.0622 -0.93305,0.0622 -1.30627,0 -2.36373,-0.37322 -0.99526,-0.37322 -1.8661,-0.99526 l -0.49763,-0.43542 -0.31102,0.62203 q -0.43542,1.18187 -0.62203,1.99051 -0.12441,0.80865 -0.12441,1.18187 0,0.74644 0.0622,1.55508 0.0622,0.74644 0.37322,1.24407 0.24881,0.31102 0.62203,0.49763 0.43542,0.18661 1.05746,0.18661 0.37322,0 0.68424,0 0.37322,-0.0622 0.62203,-0.12441 1.11966,-0.24881 1.8039,-0.80864 0.74644,-0.62204 1.55508,-1.05746 l 0.24882,-0.12441 -0.0622,-0.18661 q 1.05746,-0.55983 1.43068,-0.68424 0.37322,-0.18661 0.55983,-0.31101 0.24882,-0.24882 0.55983,-0.24882 0.87085,-0.1244 1.67949,0.49763 0.87085,0.55983 0.87085,1.43068 0,0.37322 -0.55983,1.18186 -0.49763,0.80865 -1.30627,1.61729 -0.74644,0.74644 -1.55509,1.18187 -0.18661,0.0622 -0.37322,0.18661 -0.18661,0.0622 -0.37322,0.18661 h 0.0622 q -0.55983,0.74644 -1.11966,0.74644 h -0.49763 q -0.24881,0.43542 -1.61729,0.93305 -1.36847,0.55983 -2.67475,0.55983 z m 3.23458,-14.99102 q 0.55983,0 0.99526,-0.18661 0.49762,-0.18661 0.93305,-0.43542 1.49288,-1.05746 1.9283,-2.73695 0.43543,-1.6795 -0.31102,-2.55034 -0.1244,-0.18661 -0.31101,-0.24882 -0.18661,-0.1244 -0.43543,-0.1244 -0.68423,0 -1.55508,0.43542 -0.80865,0.43542 -1.61729,1.24407 -0.80864,0.80864 -1.49288,1.9283 l -0.80865,1.30628 q 0.12441,-0.0622 0.18662,-0.0622 0.1244,-0.0622 0.18661,-0.0622 0.55983,0 0.74644,0.37322 0.18661,0.37322 0.43542,0.74644 0.31102,0.37322 1.11966,0.37322 z m 14.4934,11.75644 q -0.24882,0 -1.18187,-0.43542 -0.93305,-0.49763 -1.18186,-0.74644 -0.43543,-0.49763 -0.55983,-1.05746 -0.12441,-0.62203 -0.12441,-2.36373 0,-1.99051 0.80865,-4.47864 0.80864,-2.55034 2.73694,-6.78017 l 2.55034,-5.16289 q 0.31102,-0.43542 0.55983,-0.74644 0.24882,-0.37322 0.55984,-0.68423 0.1244,0 0.31101,0 0.24882,0 0.37322,0.0622 0.55983,0.0622 1.7417,0.68424 1.24407,0.62203 1.49288,1.8661 0,0.80864 -0.24881,1.9283 -0.24882,1.05746 -1.49289,2.79916 -0.49762,0.62203 -0.99525,1.80389 -0.43542,1.18187 -0.80864,2.23933 -0.0622,0.1244 -0.37322,0.62203 -0.24882,0.43543 -0.49763,0.93305 -0.24882,0.43543 -0.24882,0.55983 l -0.24881,0.55983 2.67475,-2.61254 q 2.79915,-2.79915 4.72746,-3.98102 1.9283,-1.18186 3.23457,-0.99525 1.36848,0.18661 2.17712,1.55508 0.43543,0.62204 0.62204,1.36848 0.18661,0.68424 0.24881,1.61729 0.0622,0.93305 -0.0622,2.36373 v 3.54559 q 1.18186,-0.31102 1.80389,-0.49763 0.62204,-0.24881 1.24407,-0.43542 0.49763,-0.12441 0.99526,-0.24881 0.55983,-0.12441 1.36847,-0.18661 -0.0622,0.80864 -0.68424,1.9905 -0.62203,1.18187 -1.55508,2.36373 -0.87085,1.18187 -1.92831,1.99051 -0.99525,0.80865 -1.8661,0.80865 -0.80864,0 -1.8661,-0.49763 -1.05746,-0.55983 -1.8039,-2.11492 -0.24881,-0.80864 -0.49763,-1.8661 -0.24881,-1.05746 -0.24881,-2.23932 v -2.73695 q 0,-0.37322 -0.0622,-0.49763 0,-0.18661 -0.0622,-0.18661 -0.24881,0 -1.61729,1.30627 -1.30627,1.30627 -2.67474,2.73695 -2.86136,2.98577 -4.78966,4.41644 -1.86611,1.43068 -2.55034,1.43068 z m 32.84336,2.36373 q -1.8039,0.31102 -3.60779,-0.31102 -1.7417,-0.62203 -2.92356,-1.9905 -1.11967,-1.43068 -1.11967,-3.42119 -0.18661,-1.8661 0.31102,-4.41644 0.55983,-2.61255 1.61729,-5.22509 1.11966,-2.61254 2.55034,-4.41644 1.24407,-1.49288 2.48814,-2.73695 1.24406,-1.24407 2.23932,-1.67949 0.87085,-0.37322 2.11491,-0.55983 1.30627,-0.24882 1.8039,-0.24882 0.99526,0.24882 2.17712,0.80865 1.24407,0.55983 1.24407,1.30627 0,0 0.12441,0.18661 0.18661,0.12441 0.18661,0.12441 0.37322,0 0.80864,0.93305 0.49763,0.87085 0.74644,2.05271 0.24881,1.11966 -0.12441,1.8039 -0.24881,1.18186 -0.99525,2.30153 -0.68424,1.11966 -1.18186,1.11966 -0.24882,0 -0.49763,0.0622 -0.18661,0 -0.18661,0.31102 0,0.31101 -0.68424,0.31101 -0.62203,0 -1.30627,-0.24881 -0.68424,-0.24881 -0.87085,-0.74644 0,-0.31102 0.12441,-0.80864 0.1244,-0.49763 0.37322,-1.6795 0.37322,-1.74169 0.0622,-2.30152 -0.31102,-0.62204 -1.55508,-0.12441 -1.55509,0.87085 -2.55034,2.05271 -0.99526,1.11966 -1.8039,3.17238 -0.74644,2.05271 -1.67949,5.72271 -0.37322,1.43068 -0.12441,2.23932 0.31102,0.80865 0.49763,0.87085 0.87085,0.24881 1.8661,0.12441 1.05746,-0.18661 1.74169,-0.55983 0.99526,-0.49763 1.7417,-1.05746 0.80864,-0.62204 1.7417,-1.30627 0.31101,-0.18661 0.55983,-0.68424 0.24881,-0.55983 0.74644,-0.80865 0.49762,-0.74644 1.24406,-0.74644 0.80865,-0.0622 1.55509,-0.0622 0.49763,0.12441 1.05746,0.62203 0.55983,0.49763 0.80864,0.99526 0.31102,0.43542 -0.0622,0.62203 -0.24882,0 -0.31102,0.18661 0,0.12441 0,0.12441 0.12441,0.24881 -0.55983,1.11966 -0.62203,0.87085 -1.61729,1.8661 -0.99525,0.99526 -1.9283,1.7417 -0.87085,0.68424 -1.24407,0.68424 -0.62204,0 -0.62204,0.37322 0,0.1244 -0.93305,0.62203 -0.87084,0.49763 -2.05271,0.99525 -1.11966,0.49763 -1.99051,0.68424 z m 19.28308,-0.80864 q -2.42593,-0.99526 -3.35899,-3.23458 -0.93305,-2.23932 -0.49762,-5.97153 0.1244,-1.9283 -0.12441,-2.55034 -0.24881,-0.68423 -0.93305,-1.30627 -0.18661,-0.24881 -0.87085,-0.80864 -0.68424,-0.62203 -0.62203,-0.93305 -0.0622,-0.43543 0.18661,-1.05746 0.24881,-0.68424 0.43542,-0.74644 0.43543,-0.18661 0.87085,-0.43542 0.49763,-0.24882 0.74644,-0.12441 0.24881,0 0.74644,0.31102 0.55983,0.31101 0.55983,0.55983 0.24882,0.43542 0.74644,-0.37322 0.55983,-0.80865 1.18187,-2.05272 0.62203,-0.99525 1.55508,-1.8661 0.93305,-0.87085 1.8661,-1.55508 0.99526,-0.74644 1.6795,-1.11966 0.31101,-0.12441 1.18186,-0.37322 0.93305,-0.24882 1.92831,-0.37322 0.99525,-0.18662 1.49288,-0.12441 1.11966,0.0622 2.36373,0.93305 1.24407,0.87085 1.9283,1.61729 0.80865,0.55983 1.05746,1.74169 0.31102,1.11966 0.24881,2.36373 -0.0622,1.24407 -0.49762,2.11492 -0.18661,0.62203 -1.30627,1.74169 -1.11967,1.11966 -2.48814,2.17712 -1.30627,0.99526 -2.23932,1.36848 -0.80865,0.18661 -1.92831,0.31101 -1.11966,0.0622 -2.11491,0 -0.93306,-0.1244 -1.30628,-0.31101 -0.43542,-0.24882 -0.74644,0.18661 -0.24881,0.37322 -0.43542,2.11491 -0.0622,0.68424 0,1.18187 0.12441,0.49762 0.24881,0.74644 0.43543,0.74644 0.87085,1.11966 0.43542,0.31102 1.61729,0.18661 1.18186,-0.12441 2.36373,-1.43068 1.24407,-1.36847 2.23932,-2.17712 0.24881,-0.43542 1.05746,-0.55983 0.87085,-0.18661 2.05271,0.12441 0.68424,0.43542 0.62204,1.36847 0,0.93305 -0.99526,2.73695 -0.18661,0.43543 -1.05746,1.30627 -0.80864,0.80865 -1.8039,1.6795 -0.93305,0.80864 -1.55508,1.18186 -1.8661,0.99525 -3.67,0.93305 -1.8039,-0.0622 -3.29678,-0.62203 z m 4.60305,-13.99577 q 0.93305,-0.24881 1.55509,-0.49762 0.68423,-0.24882 1.30627,-0.80865 0.62203,-0.55983 1.43067,-1.67949 0.24882,-0.68424 0.24882,-1.18187 0.0622,-0.49762 -0.0622,-0.62203 -0.49762,-0.49763 -1.11966,-0.31102 -0.55983,0.12441 -1.24406,0.62204 -0.43543,0.18661 -1.24407,0.80864 -0.74644,0.55983 -1.49288,1.30627 -0.68424,0.68424 -1.11967,1.30627 -0.37322,0.55984 -0.1244,0.68424 -0.12441,0.24882 0.68424,0.31102 0.87084,0.0622 1.18186,0.0622 z"
--       id="path15" /></g></svg>
-+       id="path19" /></g></svg>
-```
=
=# Move the logotype from main to header landmark
=
@@ -633,279 +299,10 @@ index c2242e1..7bec032 100644
==            <p id="reasons-why">
=```
=
-# Setup proper web-fonts: Caveat and Cooper Hewitt
-
-
-
-``` diff
-new file mode 100644
-index 0000000..dae61c1
-Binary files /dev/null and b/fonts/caveat/caveat-bold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..976da36
-Binary files /dev/null and b/fonts/caveat/caveat-medium.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0b78323
-Binary files /dev/null and b/fonts/caveat/caveat-semibold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..d511f3d
---- /dev/null
-+++ b/fonts/caveat/caveat.css
-@@ -0,0 +1,33 @@
-+/* caveat-bold */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
-+}
-+/* caveat-medium */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
-+}
-+/* caveat */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
-+}
-+/* caveat-semibold */
-+@font-face {
-+	font-family: "Caveat";
-+	font-style: normal;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
-+}
-+
-```
-
-``` diff
-new file mode 100644
-index 0000000..f80cf2c
-Binary files /dev/null and b/fonts/caveat/caveat.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..8227633
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..939ad21
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-bold.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0949007
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..0e0b918
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-book.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..8131611
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..2c425cd
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-heavy.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..7db7058
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..e6cafd9
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-light.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..9c8fa26
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..76336be
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-medium.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..b5b8f36
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold-italic.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..a32e7c2
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-semibold.woff2 differ
-```
=
-``` diff
-new file mode 100644
-index 0000000..9c1cccf
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin-italic.woff2 differ
-```
+# Setup proper web-fonts: Caveat and Cooper Hewitt
=
-``` diff
-new file mode 100644
-index 0000000..9eaf98b
-Binary files /dev/null and b/fonts/cooper-hewitt/cooper-hewitt-thin.woff2 differ
-```
-
-``` diff
-new file mode 100644
-index 0000000..54ff088
---- /dev/null
-+++ b/fonts/cooper-hewitt/cooper-hewitt.css
-@@ -0,0 +1,113 @@
-+/* cooper-hewitt-bold */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
-+}
-+/* cooper-hewitt-bold-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 700;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-book */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
-+}
-+/* cooper-hewitt-book-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-heavy */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
-+}
-+/* cooper-hewitt-heavy-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 400;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-light */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 300;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
-+}
-+/* cooper-hewitt-light-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 300;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-medium */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
-+}
-+/* cooper-hewitt-medium-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 500;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-semibold */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
-+}
-+/* cooper-hewitt-semibold-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 600;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
-+}
-+/* cooper-hewitt-thin */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: normal;
-+	font-weight: 100;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
-+}
-+/* cooper-hewitt-thin-italic */
-+@font-face {
-+	font-family: "Cooper Hewitt";
-+	font-style: italic;
-+	font-weight: 100;
-+	font-stretch: 100%;
-+	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
-+}
-+
-```
+Modified `index.html`:
=
=``` diff
=index 7bec032..dffc4b1 100644
@@ -1005,6 +402,182 @@ index 7bec032..dffc4b1 100644
==    </head>
=```
=
+New file at `/fonts/caveat/caveat.css`:
+
+``` css
+/* caveat-bold */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("Caveat Bold"), local("Caveat-Bold"), url(caveat-bold.woff2) format("woff2");
+}
+/* caveat-medium */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("Caveat Medium"), local("Caveat-Medium"), url(caveat-medium.woff2) format("woff2");
+}
+/* caveat */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("Caveat Regular"), local("Caveat-Regular"), url(caveat.woff2) format("woff2");
+}
+/* caveat-semibold */
+@font-face {
+	font-family: "Caveat";
+	font-style: normal;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("Caveat SemiBold"), local("Caveat-SemiBold"), url(caveat-semibold.woff2) format("woff2");
+}
+```
+
+
+New file at `/fonts/cooper-hewitt/cooper-hewitt.css`:
+
+``` css
+/* cooper-hewitt-bold */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Bold"), url(cooper-hewitt-bold.woff2) format("woff2");
+}
+/* cooper-hewitt-bold-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 700;
+	font-stretch: 100%;
+	src: local("CooperHewitt-BoldItalic"), url(cooper-hewitt-bold-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-book */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Book"), url(cooper-hewitt-book.woff2) format("woff2");
+}
+/* cooper-hewitt-book-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-BookItalic"), url(cooper-hewitt-book-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-heavy */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Heavy"), url(cooper-hewitt-heavy.woff2) format("woff2");
+}
+/* cooper-hewitt-heavy-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 400;
+	font-stretch: 100%;
+	src: local("CooperHewitt-HeavyItalic"), url(cooper-hewitt-heavy-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-light */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 300;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Light"), url(cooper-hewitt-light.woff2) format("woff2");
+}
+/* cooper-hewitt-light-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 300;
+	font-stretch: 100%;
+	src: local("CooperHewitt-LightItalic"), url(cooper-hewitt-light-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-medium */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Medium"), url(cooper-hewitt-medium.woff2) format("woff2");
+}
+/* cooper-hewitt-medium-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 500;
+	font-stretch: 100%;
+	src: local("CooperHewitt-MediumItalic"), url(cooper-hewitt-medium-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-semibold */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Semibold"), url(cooper-hewitt-semibold.woff2) format("woff2");
+}
+/* cooper-hewitt-semibold-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 600;
+	font-stretch: 100%;
+	src: local("CooperHewitt-SemiboldItalic"), url(cooper-hewitt-semibold-italic.woff2) format("woff2");
+}
+/* cooper-hewitt-thin */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: normal;
+	font-weight: 100;
+	font-stretch: 100%;
+	src: local("CooperHewitt-Thin"), url(cooper-hewitt-thin.woff2) format("woff2");
+}
+/* cooper-hewitt-thin-italic */
+@font-face {
+	font-family: "Cooper Hewitt";
+	font-style: italic;
+	font-weight: 100;
+	font-stretch: 100%;
+	src: local("CooperHewitt-ThinItalic"), url(cooper-hewitt-thin-italic.woff2) format("woff2");
+}
+```
+
+New binary assets:
+
+- caveat-bold.woff2 
+- caveat-medium.woff2 
+- caveat-semibold.woff2 
+- caveat.woff2 
+- cooper-hewitt-bold-italic.woff2 
+- cooper-hewitt-bold.woff2 
+- cooper-hewitt-book-italic.woff2 
+- cooper-hewitt-book.woff2 
+- cooper-hewitt-heavy-italic.woff2 
+- cooper-hewitt-heavy.woff2 
+- cooper-hewitt-light-italic.woff2 
+- cooper-hewitt-light.woff2 
+- cooper-hewitt-medium-italic.woff2 
+- cooper-hewitt-medium.woff2 
+- cooper-hewitt-semibold-italic.woff2 
+- cooper-hewitt-semibold.woff2 
+- cooper-hewitt-thin-italic.woff2 
+- cooper-hewitt-thin.woff2 
+
=# Use CSS variables to control styling parameters
=
=
@@ -1353,4 +926,4 @@ index a3fcf05..d725020 100644
==                    You are among friends. You are not the product.
==                    You deserve <strong>better</strong>.
==            </p>
-```
\ No newline at end of file
+```

Display devlog under a project description

I introduced the project.html template, used by all pages in the works section. The template queries pages in the devlog section, (i.e. devlog entries). Only the entries that include the given project name in extra.projects are rendered.

Many project don't have a devlog yet. Others are confidential client projects and will never have a public devlog. In those cases the "Devlog" section heading is hidden. It's not easy with Zola, but quite simple using modern CSS with :not and :has pseudo-classes.

Because entries are sometimes long, I decided to make the date heading of each entry a sticky element.

Speaking of headings, devlog entry documents contain heading hierarchy starting at h1. When embeded in a project page, the heading have to be de-moted by 3 levels, so that each commit subject is in an h4 element (following project name (h1), Devlog section heading (h2) and the date heading (h3)). For this I brought the demote-headings macro, that I've developed last year for similar purpose in the Escco website.

index e3a354d..1cb38af 100644
--- a/content/works/_index.md
+++ b/content/works/_index.md
@@ -2,6 +2,7 @@
=title: "Tad Works"
=sort_by: "weight"
=template: "works.html"
+page_template: "project.html"
=description: "Featured works of Tad Lispy"
=---
=
index d5d8c82..e5f6040 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -51,6 +51,26 @@ html.works-index {
=    }
=}
=
+html.project {
+    #devlog-heading {
+        color: var(--muted-color);
+    }
+
+    #devlog-heading:not(:has(+ .devlog-entry)) {
+        display: none;
+    }
+
+    .devlog-entry {
+        h3 {
+            font-size: 1rem;
+            border-bottom: solid 2px currentColor;
+            position: sticky;
+            top: 0;
+            background: var(--background-color);
+        }
+    }
+}
+
=nav.main-nav {
=    justify-content: start;
=
new file mode 100644
index 0000000..8184f40
--- /dev/null
+++ b/templates/components.html
@@ -0,0 +1,16 @@
+{\% macro demote_headings (content, levels=1) %}
+  {\% set_global demoted = content %}
+  {\% for i in range(start=1, end=6) %}
+  {\% set n = 6 - i %}
+  {\% set m = n + levels %}
+  {\% set from_opening = "<h" ~ n %}
+  {\% set into_opening = "<h" ~ m %}
+  {\% set from_closing = "</h" ~ n %}
+  {\% set into_closing = "</h" ~ m %}
+  {\% set_global demoted = demoted
+     | replace (from=from_opening, to=into_opening)
+     | replace (from=from_closing, to=into_closing)
+  %}
+  {\% endfor %}
+  {\{ demoted | safe \}}
+{\% endmacro table_of_contents %}
new file mode 100644
index 0000000..d80af22
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,45 @@
+{\% extends "base.html" %}
+
+{\% import "components.html" as components %}
+
+{\% block variables %}
+{\{ super() \}}
+{\% set page_class  = "page project" %}
+{\% set title = page.title | markdown(inline=true) | striptags %}
+{\% set description = page.summary | default(value="A project by Tad Lispy.") | striptags %}
+{\% set devlog = get_section(path="devlog/_index.md") %}
+{\% endblock variables %}
+
+{\% block content %}
+<header>
+    <nav aria-label="breadcrumb">
+        <ul>
+            <li><a href="{\{ get_url(path='@/_index.md') \}}">Tad Lispy</a></li>
+            <li><a href="{\{ get_url(path='@/works/_index.md') \}}">Works</a></li>
+            <li><strong>{\{ page.title | markdown(inline=true) | safe \}}</strong></li>
+        </ul>
+    </nav>
+</header>
+
+<main>
+
+    {\{ page.content | safe \}}
+
+    {# NOTE: If there is no devlog, then the heading will be hidden using CSS #}
+    <h2 id="devlog-heading">Devlog</h2>
+
+    {\% for entry in devlog.pages %}
+    {\% if entry.extra.projects is containing(page.title) %}
+    <section class="devlog-entry">
+        <h3><time datetime="{\{ entry.date \}}">{\{ entry.date | date(format="%A, %F")\}}</time></h3>
+
+        {\{- components::demote_headings (content=entry.content, levels=3)
+        | safe
+        -\}}
+    </section>
+    {\% endif %}
+    {\% endfor %}
+</main>
+
+{\% include "includes/footer.html" %}
+{\% endblock content %}