molcrafts-zensical-theme 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2026, MolCrafts
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,142 @@
1
+ Metadata-Version: 2.4
2
+ Name: molcrafts-zensical-theme
3
+ Version: 0.1.0
4
+ Summary: MolCrafts theme extension for Zensical documentation sites.
5
+ Author: MolCrafts
6
+ License-Expression: BSD-3-Clause
7
+ Project-URL: Homepage, https://github.com/MolCrafts/molcrafts-zensical-theme
8
+ Project-URL: Repository, https://github.com/MolCrafts/molcrafts-zensical-theme
9
+ Project-URL: Issues, https://github.com/MolCrafts/molcrafts-zensical-theme/issues
10
+ Keywords: molcrafts,zensical,documentation,theme
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Documentation
19
+ Classifier: Topic :: Software Development :: Documentation
20
+ Requires-Python: >=3.12
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: zensical>=0.0.45
24
+ Dynamic: license-file
25
+
26
+ # MolCrafts Zensical Theme
27
+
28
+ Shared Zensical theme extension for MolCrafts documentation sites.
29
+
30
+ ## Install
31
+
32
+ The theme is not on PyPI yet, so consuming sites cannot pin it as a normal
33
+ dependency — install it into the same environment that builds the docs:
34
+
35
+ ```bash
36
+ pip install -e .
37
+ ```
38
+
39
+ > **Note:** because there is no released package, a site's `zensical.toml` can
40
+ > reference `theme.name = "molcrafts"` but its `pyproject.toml` cannot yet
41
+ > declare the theme in a dependency group. Doc builds therefore depend on this
42
+ > package being installed out-of-band (editable install, or once published, a
43
+ > version/git pin). Publishing to PyPI would make doc builds reproducible from
44
+ > a dependency group alone.
45
+
46
+ ## Use
47
+
48
+ Add the theme to a Zensical project:
49
+
50
+ ```toml
51
+ [project]
52
+ site_name = "MolCrafts Project"
53
+ site_url = "https://example.molcrafts.org/"
54
+
55
+ [project.theme]
56
+ name = "molcrafts"
57
+
58
+ [project.extra.molcrafts]
59
+ product = "molpy"
60
+ accent = "#0284c7"
61
+ accent_soft = "rgba(2, 132, 199, 0.14)"
62
+ ```
63
+
64
+ All three values are optional. `product` tags the page
65
+ (`html[data-molcrafts-product="…"]`) so site or theme CSS can target one
66
+ product. `accent` sets the product accent (links, hovers, hero eyebrows);
67
+ `accent_soft` is its translucent companion and, when omitted, is derived from
68
+ `accent` via `color-mix`. Sites that set none of these fall back to the brand
69
+ forest/sand accent. The theme ships no per-product color map — each product
70
+ declares its own accent in its `zensical.toml`; the colors the old map used to
71
+ assign are kept for reference in a comment at the top of
72
+ `assets/stylesheets/molcrafts.css`.
73
+
74
+ The theme defaults to Zensical's `modern` variant, MolCrafts brand colors from
75
+ `moko.svg`, Inter text, JetBrains Mono code, light/dark palettes, navigation
76
+ tabs, section indexes, instant navigation, code-copy controls, search
77
+ highlighting and suggestions, and TOC following. Consuming sites should not
78
+ re-list these `features`/`palette` in their own `zensical.toml` — the theme
79
+ already supplies them, and an inline list only risks drifting from the defaults.
80
+
81
+ ## Home page
82
+
83
+ The theme ships a manual-style landing layout that a stock Zensical site does
84
+ not have. It has two parts: a **hero** driven by page front-matter, and a set of
85
+ **manual-home components** you compose in Markdown/HTML in the page body.
86
+
87
+ ### Hero (front-matter)
88
+
89
+ Set a `hero` mapping in the home page's front-matter; the theme's `main.html`
90
+ renders it above the content. Every field is optional except that a hero only
91
+ renders when the `hero` key is present. The eyebrow above the title is always
92
+ "Manual" — it is not configurable.
93
+
94
+ ```yaml
95
+ ---
96
+ title: molpack
97
+ hide: [navigation, toc]
98
+ hero:
99
+ title: molpack # defaults to site_name if omitted
100
+ description: One or two sentences of positioning.
101
+ actions: # buttons; style "primary" fills, else outline
102
+ - { label: Get started, href: getting_started/, style: primary }
103
+ - { label: Guide, href: concepts/ }
104
+ install: # right-hand card with a copy button;
105
+ label: Install # plain string works too, shorthand
106
+ command: pip install molpack # for { command: … }
107
+ badges: # badge row under the install card
108
+ - img: https://img.shields.io/pypi/v/molpack
109
+ href: https://pypi.org/project/molpack/
110
+ alt: PyPI version
111
+ ---
112
+ ```
113
+
114
+ ### Manual-home components (body)
115
+
116
+ Wrap the body in `.molcrafts-manual-home` and compose these building blocks (all
117
+ are plain HTML with `markdown` where inner Markdown is wanted):
118
+
119
+ | Class | Purpose |
120
+ |---|---|
121
+ | `molcrafts-manual-section` | A titled row; pair with `molcrafts-manual-section__header` + `molcrafts-manual-eyebrow` |
122
+ | `molcrafts-manual-index` | Numbered "find the right page" entry list (`<a><span>01</span><strong>…</strong><em>…</em></a>`) |
123
+ | `molcrafts-workflow-list` | Side-labelled `<article>`s, each with a `molcrafts-workflow-list__meta` tag and a code block |
124
+ | `molcrafts-feature-matrix` | Two-column `<dl>` of capability `<dt>`/`<dd>` pairs |
125
+ | `molcrafts-doc-map` | Grid of `<section><h3>…</h3><p>…</p></section>` linking to nav areas |
126
+ | `molcrafts-sr-only` | Visually-hidden `<h1>` so the page still has a heading for a11y/search |
127
+
128
+ See `examples/basic/docs/index.md` for a complete, copyable example, and the
129
+ molpy / molpack `docs/index.md` for production use.
130
+
131
+ ## Local Example
132
+
133
+ ```bash
134
+ zensical build -f examples/basic/zensical.toml
135
+ zensical serve -f examples/basic/zensical.toml
136
+ ```
137
+
138
+ The usage surface is Zensical-native: configure sites with `zensical.toml`.
139
+ Zensical 0.0.45 still discovers packaged themes through the historical
140
+ `mkdocs.themes` entry point and reads theme-package defaults from
141
+ `mkdocs_theme.yml`; this package uses those hooks only for Zensical theme
142
+ discovery, not for `mkdocs.yml` configuration.
@@ -0,0 +1,117 @@
1
+ # MolCrafts Zensical Theme
2
+
3
+ Shared Zensical theme extension for MolCrafts documentation sites.
4
+
5
+ ## Install
6
+
7
+ The theme is not on PyPI yet, so consuming sites cannot pin it as a normal
8
+ dependency — install it into the same environment that builds the docs:
9
+
10
+ ```bash
11
+ pip install -e .
12
+ ```
13
+
14
+ > **Note:** because there is no released package, a site's `zensical.toml` can
15
+ > reference `theme.name = "molcrafts"` but its `pyproject.toml` cannot yet
16
+ > declare the theme in a dependency group. Doc builds therefore depend on this
17
+ > package being installed out-of-band (editable install, or once published, a
18
+ > version/git pin). Publishing to PyPI would make doc builds reproducible from
19
+ > a dependency group alone.
20
+
21
+ ## Use
22
+
23
+ Add the theme to a Zensical project:
24
+
25
+ ```toml
26
+ [project]
27
+ site_name = "MolCrafts Project"
28
+ site_url = "https://example.molcrafts.org/"
29
+
30
+ [project.theme]
31
+ name = "molcrafts"
32
+
33
+ [project.extra.molcrafts]
34
+ product = "molpy"
35
+ accent = "#0284c7"
36
+ accent_soft = "rgba(2, 132, 199, 0.14)"
37
+ ```
38
+
39
+ All three values are optional. `product` tags the page
40
+ (`html[data-molcrafts-product="…"]`) so site or theme CSS can target one
41
+ product. `accent` sets the product accent (links, hovers, hero eyebrows);
42
+ `accent_soft` is its translucent companion and, when omitted, is derived from
43
+ `accent` via `color-mix`. Sites that set none of these fall back to the brand
44
+ forest/sand accent. The theme ships no per-product color map — each product
45
+ declares its own accent in its `zensical.toml`; the colors the old map used to
46
+ assign are kept for reference in a comment at the top of
47
+ `assets/stylesheets/molcrafts.css`.
48
+
49
+ The theme defaults to Zensical's `modern` variant, MolCrafts brand colors from
50
+ `moko.svg`, Inter text, JetBrains Mono code, light/dark palettes, navigation
51
+ tabs, section indexes, instant navigation, code-copy controls, search
52
+ highlighting and suggestions, and TOC following. Consuming sites should not
53
+ re-list these `features`/`palette` in their own `zensical.toml` — the theme
54
+ already supplies them, and an inline list only risks drifting from the defaults.
55
+
56
+ ## Home page
57
+
58
+ The theme ships a manual-style landing layout that a stock Zensical site does
59
+ not have. It has two parts: a **hero** driven by page front-matter, and a set of
60
+ **manual-home components** you compose in Markdown/HTML in the page body.
61
+
62
+ ### Hero (front-matter)
63
+
64
+ Set a `hero` mapping in the home page's front-matter; the theme's `main.html`
65
+ renders it above the content. Every field is optional except that a hero only
66
+ renders when the `hero` key is present. The eyebrow above the title is always
67
+ "Manual" — it is not configurable.
68
+
69
+ ```yaml
70
+ ---
71
+ title: molpack
72
+ hide: [navigation, toc]
73
+ hero:
74
+ title: molpack # defaults to site_name if omitted
75
+ description: One or two sentences of positioning.
76
+ actions: # buttons; style "primary" fills, else outline
77
+ - { label: Get started, href: getting_started/, style: primary }
78
+ - { label: Guide, href: concepts/ }
79
+ install: # right-hand card with a copy button;
80
+ label: Install # plain string works too, shorthand
81
+ command: pip install molpack # for { command: … }
82
+ badges: # badge row under the install card
83
+ - img: https://img.shields.io/pypi/v/molpack
84
+ href: https://pypi.org/project/molpack/
85
+ alt: PyPI version
86
+ ---
87
+ ```
88
+
89
+ ### Manual-home components (body)
90
+
91
+ Wrap the body in `.molcrafts-manual-home` and compose these building blocks (all
92
+ are plain HTML with `markdown` where inner Markdown is wanted):
93
+
94
+ | Class | Purpose |
95
+ |---|---|
96
+ | `molcrafts-manual-section` | A titled row; pair with `molcrafts-manual-section__header` + `molcrafts-manual-eyebrow` |
97
+ | `molcrafts-manual-index` | Numbered "find the right page" entry list (`<a><span>01</span><strong>…</strong><em>…</em></a>`) |
98
+ | `molcrafts-workflow-list` | Side-labelled `<article>`s, each with a `molcrafts-workflow-list__meta` tag and a code block |
99
+ | `molcrafts-feature-matrix` | Two-column `<dl>` of capability `<dt>`/`<dd>` pairs |
100
+ | `molcrafts-doc-map` | Grid of `<section><h3>…</h3><p>…</p></section>` linking to nav areas |
101
+ | `molcrafts-sr-only` | Visually-hidden `<h1>` so the page still has a heading for a11y/search |
102
+
103
+ See `examples/basic/docs/index.md` for a complete, copyable example, and the
104
+ molpy / molpack `docs/index.md` for production use.
105
+
106
+ ## Local Example
107
+
108
+ ```bash
109
+ zensical build -f examples/basic/zensical.toml
110
+ zensical serve -f examples/basic/zensical.toml
111
+ ```
112
+
113
+ The usage surface is Zensical-native: configure sites with `zensical.toml`.
114
+ Zensical 0.0.45 still discovers packaged themes through the historical
115
+ `mkdocs.themes` entry point and reads theme-package defaults from
116
+ `mkdocs_theme.yml`; this package uses those hooks only for Zensical theme
117
+ discovery, not for `mkdocs.yml` configuration.
@@ -0,0 +1,52 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "molcrafts-zensical-theme"
7
+ version = "0.1.0"
8
+ description = "MolCrafts theme extension for Zensical documentation sites."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "BSD-3-Clause"
12
+ authors = [
13
+ { name = "MolCrafts" }
14
+ ]
15
+ keywords = ["molcrafts", "zensical", "documentation", "theme"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
+ "Topic :: Documentation",
25
+ "Topic :: Software Development :: Documentation",
26
+ ]
27
+ dependencies = [
28
+ "zensical>=0.0.45",
29
+ ]
30
+
31
+ [project.urls]
32
+ Homepage = "https://github.com/MolCrafts/molcrafts-zensical-theme"
33
+ Repository = "https://github.com/MolCrafts/molcrafts-zensical-theme"
34
+ Issues = "https://github.com/MolCrafts/molcrafts-zensical-theme/issues"
35
+
36
+ [project.entry-points."mkdocs.themes"]
37
+ molcrafts = "molcrafts_zensical_theme"
38
+
39
+ [tool.setuptools]
40
+ package-dir = {"" = "src"}
41
+
42
+ [tool.setuptools.packages.find]
43
+ where = ["src"]
44
+ include = ["molcrafts_zensical_theme*"]
45
+
46
+ [tool.setuptools.package-data]
47
+ molcrafts_zensical_theme = [
48
+ "mkdocs_theme.yml",
49
+ "main.html",
50
+ "assets/images/*.svg",
51
+ "assets/stylesheets/*.css",
52
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,3 @@
1
+ """MolCrafts Zensical theme package."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1 @@
1
+ <svg id="svg" version="1.1" width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="svgg"><path id="path0" d="M193.750 86.981 C 152.530 91.116,124.499 121.704,119.740 167.743 C 119.408 170.948,119.054 173.655,118.951 173.757 C 118.849 173.859,116.257 173.649,113.191 173.290 C 96.333 171.316,90.579 171.777,91.608 175.019 C 92.139 176.694,93.119 176.891,108.008 178.326 C 111.445 178.658,115.225 179.097,116.406 179.303 C 117.588 179.508,123.564 180.294,129.688 181.048 C 144.219 182.838,144.955 182.967,145.576 183.816 C 146.675 185.319,145.374 187.228,143.465 186.916 C 139.425 186.255,122.555 184.284,120.313 184.211 L 119.336 184.180 119.336 188.666 L 119.336 193.152 114.844 193.836 C 96.006 196.703,90.080 199.064,93.397 202.381 C 94.384 203.369,95.310 203.298,101.169 201.784 C 110.681 199.327,144.117 194.092,145.098 194.906 C 147.621 197.000,145.336 198.318,136.914 199.627 C 128.427 200.946,119.128 202.617,118.877 202.868 C 118.783 202.961,118.374 204.661,117.968 206.645 C 116.784 212.423,115.287 215.075,110.123 220.536 C 95.455 236.050,89.971 244.149,85.894 256.317 C 83.531 263.370,82.149 273.164,82.762 278.516 L 83.008 280.664 90.942 280.859 L 98.875 281.055 99.994 283.707 C 103.783 292.694,114.678 304.282,119.347 304.293 C 122.335 304.300,123.027 303.202,123.839 297.168 C 124.376 293.178,124.548 293.060,125.812 295.801 C 129.166 303.075,135.211 309.375,138.836 309.375 C 141.910 309.375,142.897 307.581,144.585 298.927 C 146.106 291.126,146.051 291.190,147.644 295.410 C 150.992 304.285,154.896 308.546,158.140 306.869 C 161.984 304.881,167.080 294.896,169.320 284.961 L 170.201 281.055 200.002 281.055 L 229.803 281.055 231.043 285.742 C 233.813 296.205,238.706 305.589,242.131 307.008 C 245.465 308.389,249.943 303.232,252.711 294.824 C 253.771 291.604,254.094 291.539,254.627 294.434 C 257.005 307.335,257.946 309.375,261.520 309.375 C 265.054 309.375,271.246 302.929,274.465 295.898 C 275.801 292.979,275.948 293.124,276.535 297.928 C 277.161 303.049,278.032 304.297,280.980 304.297 C 285.833 304.297,295.839 293.544,300.357 283.474 L 301.530 280.859 309.150 280.859 C 318.494 280.859,317.778 281.514,317.454 273.265 C 316.754 255.439,309.458 240.935,292.060 222.782 C 284.388 214.776,283.253 212.845,282.002 205.660 C 281.526 202.930,281.231 202.604,278.906 202.237 C 278.154 202.118,274.990 201.585,271.875 201.053 C 268.760 200.521,264.805 199.875,263.086 199.617 C 255.155 198.428,254.297 198.102,254.297 196.276 C 254.297 194.090,256.755 194.257,278.125 197.887 C 291.956 200.237,294.995 200.819,299.538 201.988 C 304.795 203.340,305.607 203.378,306.664 202.320 C 309.789 199.196,304.822 197.046,288.281 194.361 L 280.664 193.125 280.554 188.540 L 280.444 183.954 279.187 184.169 C 278.495 184.288,273.975 184.832,269.141 185.378 C 264.307 185.924,259.297 186.514,258.008 186.689 C 254.679 187.142,253.472 186.350,254.274 184.239 C 254.744 183.003,254.594 183.039,264.063 181.842 C 268.467 181.285,275.938 180.312,280.664 179.679 C 285.391 179.046,293.026 178.171,297.632 177.734 C 306.799 176.864,308.296 176.422,308.520 174.517 C 308.822 171.946,304.620 171.561,291.029 172.915 C 287.262 173.290,283.389 173.605,282.422 173.615 L 280.664 173.633 280.175 168.359 C 275.459 117.459,238.340 82.508,193.750 86.981 M171.371 135.587 C 180.598 140.053,182.695 156.491,175.109 164.888 C 169.578 171.010,159.933 169.372,156.018 161.645 C 149.036 147.869,159.623 129.900,171.371 135.587 M237.858 135.530 C 248.577 140.999,249.009 162.089,238.512 167.477 C 236.955 168.276,235.792 168.535,233.151 168.670 L 229.778 168.841 227.640 167.262 C 222.767 163.662,220.313 158.538,220.313 151.964 C 220.313 139.802,229.452 131.242,237.858 135.530 M166.454 147.733 C 163.752 149.462,162.188 154.781,163.271 158.557 C 165.651 166.858,175.350 164.519,175.382 155.636 C 175.406 149.003,170.817 144.940,166.454 147.733 M227.694 147.754 C 223.466 150.556,223.310 159.548,227.438 162.621 C 232.118 166.106,237.681 161.440,236.969 154.627 C 236.335 148.553,231.687 145.109,227.694 147.754 M204.867 163.879 C 221.924 168.322,222.148 188.350,205.189 192.745 C 188.585 197.047,174.861 180.074,186.016 169.032 C 190.887 164.210,198.328 162.176,204.867 163.879 M147.322 256.176 C 155.582 258.394,161.379 264.052,162.917 271.399 C 164.658 279.713,160.050 301.953,156.587 301.953 C 155.676 301.953,151.328 291.062,147.788 279.916 C 146.327 275.317,144.387 273.631,142.695 275.488 C 141.049 277.296,140.941 277.988,140.461 289.853 C 139.809 305.979,139.179 306.753,133.356 298.594 C 130.800 295.012,127.202 286.568,125.007 279.002 C 124.052 275.712,122.937 274.618,121.161 275.230 C 118.952 275.991,118.619 277.620,118.430 288.560 C 118.225 300.416,118.215 300.441,115.019 297.027 C 104.188 285.454,102.040 270.663,110.107 263.195 C 117.561 256.293,135.296 252.948,147.322 256.176 M273.124 255.675 C 281.867 257.204,289.320 261.085,292.562 265.796 C 297.729 273.307,294.443 287.155,285.159 296.991 C 281.940 300.401,281.877 300.282,281.743 290.516 C 281.600 280.122,281.393 278.063,280.329 276.479 C 278.383 273.581,276.314 274.880,274.999 279.824 C 272.129 290.618,264.175 304.747,261.799 303.271 C 260.249 302.309,260.037 300.945,259.717 289.852 C 259.394 278.639,259.174 277.036,257.754 275.523 C 255.329 272.942,254.120 274.596,250.424 285.547 C 247.392 294.532,244.874 300.978,244.090 301.758 C 243.228 302.616,241.477 299.753,240.097 295.228 C 231.813 268.069,239.385 255.293,263.867 255.122 C 267.547 255.096,270.991 255.302,273.124 255.675 " stroke="none" fill="#18432b" fill-rule="evenodd"></path><path id="path1" d="M0.000 200.000 L 0.000 400.000 200.000 400.000 L 400.000 400.000 400.000 200.000 L 400.000 0.000 200.000 0.000 L 0.000 0.000 0.000 200.000 M207.772 86.729 C 247.727 90.265,277.508 124.119,280.708 169.640 C 280.927 172.757,281.087 173.436,281.601 173.430 C 281.945 173.426,284.424 173.162,287.109 172.844 C 303.402 170.914,308.984 171.316,308.984 174.421 C 308.984 176.710,306.860 177.372,296.484 178.315 C 292.725 178.656,285.166 179.533,279.688 180.263 C 274.209 180.993,266.650 181.971,262.891 182.437 C 255.166 183.394,254.588 183.582,254.762 185.085 C 254.921 186.468,256.504 186.439,270.094 184.805 C 281.887 183.387,280.959 183.071,281.013 188.531 L 281.055 192.731 288.672 193.985 C 304.043 196.515,307.813 197.846,307.812 200.745 C 307.812 203.527,305.534 204.044,299.931 202.535 C 290.775 200.068,256.247 194.504,255.248 195.334 C 253.303 196.948,255.286 197.980,262.374 199.045 C 265.773 199.555,270.576 200.331,273.047 200.769 C 275.518 201.207,278.242 201.677,279.102 201.813 C 281.693 202.223,281.917 202.476,282.433 205.561 C 283.549 212.243,285.334 215.415,291.489 221.647 C 309.565 239.951,317.182 254.868,317.847 273.267 C 318.161 281.964,318.901 281.250,309.573 281.250 L 301.985 281.250 299.769 285.583 C 294.041 296.781,284.399 305.956,279.692 304.689 C 277.430 304.080,276.910 303.194,276.199 298.734 L 275.560 294.727 274.527 296.753 C 267.578 310.387,258.285 313.992,256.103 303.902 C 255.755 302.293,255.162 299.535,254.786 297.772 C 253.933 293.776,253.719 293.761,252.178 297.584 C 249.054 305.331,244.673 309.216,241.399 307.143 C 237.640 304.763,231.835 292.751,230.063 283.689 L 229.585 281.245 200.059 281.345 L 170.532 281.445 170.206 283.203 C 167.793 296.180,160.647 308.504,156.037 307.640 C 153.273 307.121,149.336 301.885,147.503 296.289 C 146.405 292.936,146.279 293.056,145.155 298.519 C 143.130 308.359,142.360 309.766,138.994 309.766 C 134.961 309.766,128.838 303.681,125.675 296.529 C 124.754 294.448,124.499 294.779,124.055 298.633 C 123.475 303.655,121.723 305.490,118.254 304.708 C 113.430 303.620,104.611 294.067,100.319 285.280 L 98.351 281.250 90.825 281.250 C 82.012 281.250,82.443 281.460,82.137 277.006 C 80.976 260.054,89.632 241.387,107.080 223.218 C 115.114 214.852,116.510 212.559,117.665 205.823 C 118.333 201.931,116.752 202.420,141.560 198.436 C 144.724 197.928,146.177 196.516,144.752 195.334 C 143.833 194.571,110.497 199.860,101.474 202.199 C 93.733 204.206,90.928 203.347,92.431 199.429 C 92.995 197.959,100.254 195.721,108.984 194.326 C 111.240 193.966,114.404 193.456,116.016 193.194 L 118.945 192.718 118.804 188.401 C 118.712 185.607,118.810 183.993,119.081 183.826 C 119.509 183.561,130.366 184.669,138.132 185.770 C 143.884 186.585,145.079 186.466,145.240 185.062 C 145.434 183.384,145.361 183.367,129.492 181.441 C 124.980 180.894,118.828 180.109,115.820 179.697 C 112.813 179.285,107.187 178.665,103.320 178.320 C 93.200 177.414,91.016 176.722,91.016 174.420 C 91.016 171.241,97.141 170.831,113.602 172.905 C 119.375 173.632,118.613 174.393,119.351 167.162 C 124.581 115.883,161.166 82.604,207.772 86.729 M163.970 135.357 C 151.196 140.049,151.012 163.568,163.715 167.788 C 175.132 171.580,183.720 154.552,176.872 141.703 C 174.095 136.494,168.443 133.714,163.970 135.357 M230.138 135.512 C 221.805 138.390,218.042 151.593,222.848 161.092 C 228.233 171.734,240.492 170.591,244.598 159.064 C 249.140 146.316,240.343 131.988,230.138 135.512 M233.281 147.119 C 237.604 149.318,238.881 157.746,235.510 161.836 C 230.828 167.515,223.160 162.551,223.993 154.379 C 224.635 148.079,228.787 144.834,233.281 147.119 M172.569 147.517 C 175.968 150.109,176.940 157.353,174.384 161.041 C 170.000 167.365,162.490 163.690,162.504 155.228 C 162.515 148.647,168.270 144.238,172.569 147.517 M195.508 164.230 C 178.472 168.519,178.238 187.970,195.168 192.380 C 207.430 195.573,219.743 186.002,217.025 175.391 C 214.954 167.307,204.606 161.939,195.508 164.230 M128.383 255.871 C 104.070 259.709,98.229 277.628,115.157 296.450 C 117.884 299.482,117.966 299.305,117.986 290.309 C 118.009 279.974,118.344 277.225,119.758 275.748 C 122.120 273.283,124.102 274.582,125.624 279.595 C 128.245 288.224,131.386 295.180,134.611 299.497 C 138.363 304.520,139.533 303.976,139.750 297.105 C 140.323 279.003,140.683 276.215,142.624 274.856 C 145.614 272.761,146.307 273.935,151.937 290.625 C 153.422 295.030,155.836 300.720,156.354 301.041 C 157.653 301.844,160.686 294.110,161.970 286.719 C 164.915 269.770,160.137 260.098,147.070 256.559 C 143.893 255.699,132.201 255.268,128.383 255.871 M255.575 256.064 C 238.447 259.064,233.300 272.297,240.464 294.921 C 243.353 304.047,243.807 303.629,249.578 286.523 C 253.389 275.232,254.401 273.568,256.933 274.436 C 259.397 275.281,259.801 277.191,260.134 289.553 C 260.425 300.372,260.587 301.633,261.823 302.659 C 263.974 304.444,272.284 289.052,274.989 278.274 C 275.871 274.759,278.167 273.586,280.194 275.613 C 281.681 277.100,282.067 279.638,282.315 289.551 C 282.438 294.438,282.649 298.438,282.785 298.438 C 283.279 298.438,287.442 293.891,288.830 291.837 C 294.170 283.928,296.140 272.983,293.183 267.645 C 288.236 258.714,270.910 253.379,255.575 256.064 " stroke="none" fill="#fbf6e4" fill-rule="evenodd"></path><path id="path2" d="M191.406 86.765 C 152.644 90.660,123.881 122.752,119.351 167.162 C 118.613 174.393,119.375 173.632,113.602 172.905 C 97.141 170.831,91.016 171.241,91.016 174.420 C 91.016 176.722,93.200 177.414,103.320 178.320 C 107.187 178.665,112.813 179.285,115.820 179.697 C 118.828 180.109,124.980 180.894,129.492 181.441 C 145.361 183.367,145.434 183.384,145.240 185.062 C 145.079 186.466,143.884 186.585,138.132 185.770 C 130.366 184.669,119.509 183.561,119.081 183.826 C 118.810 183.993,118.712 185.607,118.804 188.401 L 118.945 192.718 116.016 193.194 C 114.404 193.456,111.240 193.966,108.984 194.326 C 100.254 195.721,92.995 197.959,92.431 199.429 C 90.928 203.347,93.733 204.206,101.474 202.199 C 110.497 199.860,143.833 194.571,144.752 195.334 C 146.177 196.516,144.724 197.928,141.560 198.436 C 116.752 202.420,118.333 201.931,117.665 205.823 C 116.510 212.559,115.114 214.852,107.080 223.218 C 89.632 241.387,80.976 260.054,82.137 277.006 C 82.443 281.460,82.012 281.250,90.825 281.250 L 98.351 281.250 100.319 285.280 C 104.611 294.067,113.430 303.620,118.254 304.708 C 121.723 305.490,123.475 303.655,124.055 298.633 C 124.499 294.779,124.754 294.448,125.675 296.529 C 128.838 303.681,134.961 309.766,138.994 309.766 C 142.360 309.766,143.130 308.359,145.155 298.519 C 146.279 293.056,146.405 292.936,147.503 296.289 C 149.336 301.885,153.273 307.121,156.037 307.640 C 160.647 308.504,167.793 296.180,170.206 283.203 L 170.532 281.445 200.059 281.345 L 229.585 281.245 230.063 283.689 C 231.835 292.751,237.640 304.763,241.399 307.143 C 244.673 309.216,249.054 305.331,252.178 297.584 C 253.719 293.761,253.933 293.776,254.786 297.772 C 255.162 299.535,255.755 302.293,256.103 303.902 C 258.285 313.992,267.578 310.387,274.527 296.753 L 275.560 294.727 276.199 298.734 C 276.910 303.194,277.430 304.080,279.692 304.689 C 284.399 305.956,294.041 296.781,299.769 285.583 L 301.985 281.250 309.573 281.250 C 318.901 281.250,318.161 281.964,317.847 273.267 C 317.182 254.868,309.565 239.951,291.489 221.647 C 285.334 215.415,283.549 212.243,282.433 205.561 C 281.917 202.476,281.693 202.223,279.102 201.813 C 278.242 201.677,275.518 201.207,273.047 200.769 C 270.576 200.331,265.773 199.555,262.374 199.045 C 255.286 197.980,253.303 196.948,255.248 195.334 C 256.247 194.504,290.775 200.068,299.931 202.535 C 305.534 204.044,307.812 203.527,307.812 200.745 C 307.813 197.846,304.043 196.515,288.672 193.985 L 281.055 192.731 281.013 188.531 C 280.959 183.071,281.887 183.387,270.094 184.805 C 256.504 186.439,254.921 186.468,254.762 185.085 C 254.588 183.582,255.166 183.394,262.891 182.437 C 266.650 181.971,274.209 180.993,279.688 180.263 C 285.166 179.533,292.725 178.656,296.484 178.315 C 306.860 177.372,308.984 176.710,308.984 174.421 C 308.984 171.316,303.402 170.914,287.109 172.844 C 284.424 173.162,281.945 173.426,281.601 173.430 C 281.087 173.436,280.927 172.757,280.708 169.640 C 277.028 117.298,238.978 81.986,191.406 86.765 M207.193 87.117 C 246.909 90.407,275.947 122.732,280.175 168.359 L 280.664 173.633 282.422 173.615 C 283.389 173.605,287.262 173.290,291.029 172.915 C 304.620 171.561,308.822 171.946,308.520 174.517 C 308.296 176.422,306.799 176.864,297.632 177.734 C 293.026 178.171,285.391 179.046,280.664 179.679 C 275.938 180.312,268.467 181.285,264.063 181.842 C 254.594 183.039,254.744 183.003,254.274 184.239 C 253.472 186.350,254.679 187.142,258.008 186.689 C 259.297 186.514,264.307 185.924,269.141 185.378 C 273.975 184.832,278.495 184.288,279.187 184.169 L 280.444 183.954 280.554 188.540 L 280.664 193.125 288.281 194.361 C 304.822 197.046,309.789 199.196,306.664 202.320 C 305.607 203.378,304.795 203.340,299.538 201.988 C 294.995 200.819,291.956 200.237,278.125 197.887 C 256.755 194.257,254.297 194.090,254.297 196.276 C 254.297 198.102,255.155 198.428,263.086 199.617 C 264.805 199.875,268.760 200.521,271.875 201.053 C 274.990 201.585,278.154 202.118,278.906 202.237 C 281.231 202.604,281.526 202.930,282.002 205.660 C 283.253 212.845,284.388 214.776,292.060 222.782 C 309.458 240.935,316.754 255.439,317.454 273.265 C 317.778 281.514,318.494 280.859,309.150 280.859 L 301.530 280.859 300.357 283.474 C 295.839 293.544,285.833 304.297,280.980 304.297 C 278.032 304.297,277.161 303.049,276.535 297.928 C 275.948 293.124,275.801 292.979,274.465 295.898 C 271.246 302.929,265.054 309.375,261.520 309.375 C 257.946 309.375,257.005 307.335,254.627 294.434 C 254.094 291.539,253.771 291.604,252.711 294.824 C 249.943 303.232,245.465 308.389,242.131 307.008 C 238.706 305.589,233.813 296.205,231.043 285.742 L 229.803 281.055 200.002 281.055 L 170.201 281.055 169.320 284.961 C 167.080 294.896,161.984 304.881,158.140 306.869 C 154.896 308.546,150.992 304.285,147.644 295.410 C 146.051 291.190,146.106 291.126,144.585 298.927 C 142.897 307.581,141.910 309.375,138.836 309.375 C 135.211 309.375,129.166 303.075,125.812 295.801 C 124.548 293.060,124.376 293.178,123.839 297.168 C 123.027 303.202,122.335 304.300,119.347 304.293 C 114.678 304.282,103.783 292.694,99.994 283.707 L 98.875 281.055 90.942 280.859 L 83.008 280.664 82.762 278.516 C 82.149 273.164,83.531 263.370,85.894 256.317 C 89.971 244.149,95.455 236.050,110.123 220.536 C 115.287 215.075,116.784 212.423,117.968 206.645 C 118.374 204.661,118.783 202.961,118.877 202.868 C 119.128 202.617,128.427 200.946,136.914 199.627 C 145.336 198.318,147.621 197.000,145.098 194.906 C 144.117 194.092,110.681 199.327,101.169 201.784 C 95.310 203.298,94.384 203.369,93.397 202.381 C 90.080 199.064,96.006 196.703,114.844 193.836 L 119.336 193.152 119.336 188.666 L 119.336 184.180 120.313 184.211 C 122.555 184.284,139.425 186.255,143.465 186.916 C 145.374 187.228,146.675 185.319,145.576 183.816 C 144.955 182.967,144.219 182.838,129.688 181.048 C 123.564 180.294,117.588 179.508,116.406 179.303 C 115.225 179.097,111.445 178.658,108.008 178.326 C 93.119 176.891,92.139 176.694,91.608 175.019 C 90.579 171.777,96.333 171.316,113.191 173.290 C 116.257 173.649,118.849 173.859,118.951 173.757 C 119.054 173.655,119.408 170.948,119.740 167.743 C 124.499 121.704,152.530 91.116,193.750 86.981 C 196.678 86.687,202.749 86.749,207.193 87.117 M163.372 135.003 C 153.452 138.655,150.523 157.072,158.581 165.130 C 164.517 171.065,173.495 169.312,177.482 161.440 C 184.177 148.219,174.866 130.772,163.372 135.003 M230.859 134.717 C 218.371 138.827,216.381 158.944,227.640 167.262 L 229.778 168.841 233.151 168.670 C 241.347 168.252,246.094 162.051,246.094 151.758 C 246.094 140.852,238.392 132.238,230.859 134.717 M170.062 135.560 C 178.487 138.712,181.995 151.520,177.089 161.215 C 171.476 172.309,157.906 169.805,154.866 157.114 C 151.830 144.440,160.589 132.016,170.062 135.560 M236.320 135.423 C 243.730 137.816,247.913 149.761,244.598 159.064 C 240.492 170.591,228.233 171.734,222.848 161.092 C 216.467 148.479,225.204 131.833,236.320 135.423 M229.426 146.473 C 226.507 147.158,224.420 150.195,223.993 154.379 C 223.160 162.551,230.828 167.515,235.510 161.836 C 240.243 156.094,235.837 144.968,229.426 146.473 M165.772 147.751 C 158.913 153.773,163.822 167.371,171.482 163.567 C 178.486 160.089,176.681 146.484,169.215 146.484 C 167.516 146.484,166.997 146.675,165.772 147.751 M172.624 148.260 C 177.727 152.870,175.386 163.672,169.285 163.672 C 167.179 163.672,165.719 162.900,164.522 161.154 C 159.624 154.006,166.635 142.849,172.624 148.260 M233.798 148.108 C 240.950 154.387,234.905 168.181,227.438 162.621 C 223.310 159.548,223.466 150.556,227.694 147.754 C 229.709 146.419,232.028 146.553,233.798 148.108 M194.966 163.899 C 182.304 167.304,177.848 180.284,186.595 188.279 C 198.365 199.036,219.496 191.379,217.803 176.971 C 216.714 167.703,205.241 161.135,194.966 163.899 M204.413 164.254 C 217.207 167.586,221.640 179.864,212.975 187.969 C 202.196 198.051,182.670 191.843,182.630 178.320 C 182.602 168.842,193.934 161.524,204.413 164.254 M127.930 255.488 C 117.906 257.031,109.512 261.881,106.588 267.821 C 102.915 275.282,106.594 288.025,115.019 297.027 C 118.215 300.441,118.225 300.416,118.430 288.560 C 118.619 277.620,118.952 275.991,121.161 275.230 C 122.937 274.618,124.052 275.712,125.007 279.002 C 127.202 286.568,130.800 295.012,133.356 298.594 C 139.179 306.753,139.809 305.979,140.461 289.853 C 140.941 277.988,141.049 277.296,142.695 275.488 C 144.387 273.631,146.327 275.317,147.788 279.916 C 151.328 291.062,155.676 301.953,156.587 301.953 C 160.050 301.953,164.658 279.713,162.917 271.399 C 160.375 259.258,145.977 252.711,127.930 255.488 M255.273 255.668 C 237.798 258.899,232.906 271.651,240.097 295.228 C 241.477 299.753,243.228 302.616,244.090 301.758 C 244.874 300.978,247.392 294.532,250.424 285.547 C 254.120 274.596,255.329 272.942,257.754 275.523 C 259.174 277.036,259.394 278.639,259.717 289.852 C 260.037 300.945,260.249 302.309,261.799 303.271 C 264.175 304.747,272.129 290.618,274.999 279.824 C 276.314 274.880,278.383 273.581,280.329 276.479 C 281.393 278.063,281.600 280.122,281.743 290.516 C 281.877 300.282,281.940 300.401,285.159 296.991 C 294.443 287.155,297.729 273.307,292.562 265.796 C 287.021 257.744,269.617 253.016,255.273 255.668 M147.070 256.559 C 160.137 260.098,164.915 269.770,161.970 286.719 C 160.686 294.110,157.653 301.844,156.354 301.041 C 155.836 300.720,153.422 295.030,151.937 290.625 C 146.307 273.935,145.614 272.761,142.624 274.856 C 140.683 276.215,140.323 279.003,139.750 297.105 C 139.533 303.976,138.363 304.520,134.611 299.497 C 131.386 295.180,128.245 288.224,125.624 279.595 C 124.102 274.582,122.120 273.283,119.758 275.748 C 118.344 277.225,118.009 279.974,117.986 290.309 C 117.966 299.305,117.884 299.482,115.157 296.450 C 105.737 285.976,102.913 273.118,108.397 265.669 C 114.358 257.572,133.853 252.979,147.070 256.559 M276.339 256.784 C 293.297 261.239,298.699 271.932,291.575 286.944 C 289.515 291.285,284.045 298.438,282.785 298.438 C 282.649 298.438,282.438 294.438,282.315 289.551 C 282.067 279.638,281.681 277.100,280.194 275.613 C 278.167 273.586,275.871 274.759,274.989 278.274 C 272.284 289.052,263.974 304.444,261.823 302.659 C 260.587 301.633,260.425 300.372,260.134 289.553 C 259.801 277.191,259.397 275.281,256.933 274.436 C 254.401 273.568,253.389 275.232,249.578 286.523 C 243.807 303.629,243.353 304.047,240.464 294.921 C 233.300 272.297,238.447 259.064,255.575 256.064 C 260.880 255.135,271.460 255.502,276.339 256.784 " stroke="none" fill="#f2da9d" fill-rule="evenodd"></path></g></svg>