Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mdashx/basicwebtheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortom <tom@mdashx.com>2020-06-28 23:58:52 +0300
committertom <tom@mdashx.com>2020-07-03 19:23:51 +0300
commit1a3d08b6dcc9de9b99de6656d7b633e9f7d48c41 (patch)
tree5c691cf07adb210836487920f8012dbc967aba52
parent5f2be5d23e7a641218af15c5e2db5515dd73adad (diff)
Basic Web Theme
-rw-r--r--.gitignore5
-rw-r--r--Makefile7
-rw-r--r--README.md46
-rw-r--r--exampleSite/config.toml12
-rw-r--r--exampleSite/content/_index.md17
-rw-r--r--exampleSite/content/about/_index.md30
-rw-r--r--exampleSite/content/authors/frederic-bastiat/_index.md11
-rw-r--r--exampleSite/content/authors/lysander-spooner/_index.md13
-rw-r--r--exampleSite/content/charts/_index.md8
-rw-r--r--exampleSite/content/charts/regimes.md27
-rw-r--r--exampleSite/content/charts/wars.md8
-rw-r--r--exampleSite/content/examples/_index.md5
-rw-r--r--exampleSite/content/examples/blockquote.md8
-rw-r--r--exampleSite/content/examples/code.md19
-rw-r--r--exampleSite/content/newsletter/_index.md20
-rw-r--r--exampleSite/content/posts/_index.md5
-rw-r--r--exampleSite/content/posts/a-petition.md90
-rw-r--r--exampleSite/content/posts/fallacies-of-protection.md43
-rw-r--r--exampleSite/content/posts/lincolns-inauguration.md7
-rw-r--r--exampleSite/content/posts/natural-law.md57
-rw-r--r--exampleSite/content/posts/no-treason.md67
-rw-r--r--exampleSite/content/posts/the-law.md39
-rw-r--r--exampleSite/content/posts/unconstitutionality-of-slavery.md52
-rw-r--r--exampleSite/content/posts/what-is-seen.md55
-rw-r--r--exampleSite/data/wars.json23
-rwxr-xr-xexampleSite/static/assets/images/header.svg1
-rw-r--r--exampleSite/static/media/bastiat.jpgbin0 -> 58474 bytes
-rw-r--r--exampleSite/static/media/lincoln.gifbin0 -> 62922 bytes
-rw-r--r--exampleSite/static/media/spooner.jpgbin0 -> 85197 bytes
-rw-r--r--layouts/404.html7
-rw-r--r--layouts/_default/baseof.html19
-rw-r--r--layouts/_default/index.html19
-rw-r--r--layouts/_default/list.html11
-rw-r--r--layouts/_default/single.html25
-rw-r--r--layouts/_default/standalone.html6
-rw-r--r--layouts/partials/footer.html14
-rw-r--r--layouts/partials/header.html12
-rw-r--r--layouts/partials/list-taxonomy-terms.html13
-rw-r--r--layouts/partials/preview-post.html70
-rw-r--r--layouts/shortcodes/newsletter-form.html12
-rw-r--r--layouts/shortcodes/show-table.html29
-rw-r--r--layouts/taxonomy/list.html13
-rw-r--r--layouts/taxonomy/terms.html14
-rw-r--r--static/assets/css/style.css87
44 files changed, 1024 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 66fd13c..67856a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,8 @@
+commit.txt
+*tmp*
+
+public/
+
# Binaries for programs and plugins
*.exe
*.exe~
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7dc4a44
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+build:
+ cd exampleSite/ && hugo
+
+format:
+# prettier --write "layouts/**/*.html"
+ prettier --write "static/**/*.css"
+ prettier --write "exampleSite/**/*.json"
diff --git a/README.md b/README.md
index 91ff3f7..8604895 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,44 @@
-# hugo-theme-basic-web-theme
-Basic Web Theme implemented for Hugo
+# Basic Web Theme
+
+Basic Web Theme is based on the web design I've arrived at over the
+past few months for all of my websites, after spending the past
+several years chipping away useless design elements from my sites.
+
+The goals of Basic Web Theme is to provide usablility on desktop and
+mobile, without distractions.
+
+Ideally, the theme will only provide styling rules where doing so
+improves upon the usablility of the system defaults. For example, to
+use a readable column width on wide devices, scale content to mobile
+viewports, and provide minimal styling for block quotes, code blocks
+and tables.
+
+This Hugo theme implementation of Basic Web Theme includes templates
+for:
+
+- homepage with an option to list children from another page
+
+- list pages with full or truncated content
+
+- single pages (e.g. a single post)
+
+- standalone pages (e.g. about page, signup form, etc.)
+
+- taxonomy partial template to list taxonomy terms (e..g tags) at
+ bottom of page
+
+- footer with auto-generate menu and "last updated" date
+
+- taxonomy term list page
+
+- taxonomy posts list page
+
+- shortcode for showing a table from a data template
+
+- shortcode for including a newsletter signup form
+
+- 404 page
+
+The example site gives shows how to use all of the templates in
+the Hugo theme, shows how to use taxonomy, menus, shortcodes, and data
+templates, and demonstrates the styling of various elements.
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..0149921
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,12 @@
+title = "Example Site For Basic Web Theme"
+baseURL = "https://demo.basicwebtheme.com"
+languageCode = "en-us"
+theme = "hugo-theme-basic-web-theme"
+themesDir = "../.."
+
+[params]
+headerImage = "/assets/images/header.svg"
+
+[taxonomies]
+tag = "tags"
+author = "authors" \ No newline at end of file
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
new file mode 100644
index 0000000..ba5e0fb
--- /dev/null
+++ b/exampleSite/content/_index.md
@@ -0,0 +1,17 @@
+{
+ "title": "Home",
+ "menu": "main",
+ "weight": "1",
+ "listpage": "/posts"
+
+}
+
+This is an example site demonstrating the [Basic Web Theme](https://basicwebtheme.com).
+
+- Learn more [about this site](/about/).
+- View [all posts](/posts/)
+- Browse articles by [author](/authors/) or [tags](/tags)
+- Check out [tables](/charts/), [forms](/newsletter/), [blockquotes](/examples/blockquote) and [code blocks](/examples/code)
+
+---
+---
diff --git a/exampleSite/content/about/_index.md b/exampleSite/content/about/_index.md
new file mode 100644
index 0000000..c0f01e2
--- /dev/null
+++ b/exampleSite/content/about/_index.md
@@ -0,0 +1,30 @@
+{
+ "title": "About",
+ "menu": "main",
+ "weight": "3",
+ "layout": "standalone"
+}
+
+
+This site uses content that is either copyrighted with a permissive
+license, or is out of copyright. The content here is just for
+demonstration, so you can check out what a website built with this
+theme looks like.
+
+I'll try to include as many different theme features as possible in
+the sample content. If you notice something is missing (from the theme
+itself, or from the sample content) that you'd like to see, email me
+at tom@mdashx.com and I'll see what I can do.
+
+---
+
+This site uses the style `font-family: sans-serif`.
+
+[Basic Web Theme](https://basicwebtheme.com) is intended for use with
+the default serif or sans-serif font (typically Times New Roman for
+serif and Arial or Helvetica for sans-serif).
+
+---
+
+For more detailed information about the theme, visit: https://basicwebtheme.com
+
diff --git a/exampleSite/content/authors/frederic-bastiat/_index.md b/exampleSite/content/authors/frederic-bastiat/_index.md
new file mode 100644
index 0000000..cc5a822
--- /dev/null
+++ b/exampleSite/content/authors/frederic-bastiat/_index.md
@@ -0,0 +1,11 @@
+{
+ "title": "Frederic Bastiat"
+}
+
+![Frederic Bastiat](/media/bastiat.jpg)
+
+Claude-Frédéric Bastiat (June 30, 1801 – December 24, 1850) was a French economist, writer and a prominent member of the French Liberal School.
+
+A Freemason and a member of the French National Assembly, Bastiat developed the economic concept of opportunity cost and introduced the parable of the broken window.[2]
+
+As an advocate of classical economics and the economics of Adam Smith, his views favored a free market and influenced the Austrian School.
diff --git a/exampleSite/content/authors/lysander-spooner/_index.md b/exampleSite/content/authors/lysander-spooner/_index.md
new file mode 100644
index 0000000..10e5d93
--- /dev/null
+++ b/exampleSite/content/authors/lysander-spooner/_index.md
@@ -0,0 +1,13 @@
+{
+ "title": "Lysander Spooner"
+}
+
+![Lysander Spooner](/media/spooner.jpg)
+
+Lysander Spooner (January 19, 1808 – May 14, 1887) was an American political philosopher, essayist, pamphlet writer, Unitarian, abolitionist, individualist anarchist, legal theorist, a member of the socialist First International and entrepreneur of the 19th century.
+
+Spooner was a strong advocate of the labor movement and anti-authoritarian and individualist anarchist in his political views. His economic and political ideology has often been identified as libertarian socialism and mutualism. Spooner's writings contributed to the development of both left-libertarian and right-libertarian political theory within libertarianism in the United States.
+
+Spooner's writing includes the abolitionist book The Unconstitutionality of Slavery and No Treason: The Constitution of No Authority which opposed treason charges against secessionists. He is also known for competing with the Post Office with his American Letter Mail Company. However, it was closed after legal problems with the federal government.
+
+---
diff --git a/exampleSite/content/charts/_index.md b/exampleSite/content/charts/_index.md
new file mode 100644
index 0000000..91923e2
--- /dev/null
+++ b/exampleSite/content/charts/_index.md
@@ -0,0 +1,8 @@
+{
+ "title": "Charts",
+ "menu": "main",
+ "weight": "4"
+}
+
+These tables show different possibilities for styling and implementing
+tables.
diff --git a/exampleSite/content/charts/regimes.md b/exampleSite/content/charts/regimes.md
new file mode 100644
index 0000000..f6abbaf
--- /dev/null
+++ b/exampleSite/content/charts/regimes.md
@@ -0,0 +1,27 @@
+{
+ "title": "Regimes",
+ "layout": "standalone"
+}
+
+## Regimes
+
+This is a table created using Markdown in the content file.
+
+| Name | Lowest Estimate | Highest Estimate | Average Estimate | Location |
+| --- | --- | --- | --- | --- |
+| Mao Zedong | 13780,000 | 70000,000+ | 42,000,000 | People's Republic of China |
+| Genghis Khan and his successors | 10,000,000 | 57,000,000+ | 33,500,000 | Eurasia |
+| Adolf Hitler | 13,518,250 | 40,000,000+ | 26,500,000 | German-occupied Europe |
+| Chiang Kai-Shek | 5,965,000 | 18,522,000 | 10,511,124 | Republic of China |
+| Joseph Stalin | 3,300,000 | 15,000,000 | 8,990,772 | Soviet Union |
+| Hirohito | 3,000,000 (civilians only) | 25,000,000+ (civilians only) | 14,000,000 | In and around East and South East Asia, Oceania and the Pacific |
+| Leopold II of Belgium | 3,000,000 | 13,000,000 | 6,244,998 | Congo Free State |
+| Ranavalona I | 2,500,000 | 2,500,000 | 2,500,000 | Madagascar |
+| Pol Pot | 1,386,734 | 3,400,000 | 2,171,381 | Cambodia |
+| The Young Turks | 1,489,000 | 2,810,000 | 2,045,505 | Ottoman Empire |
+| Omar al-Bashir | 1,063,000 | 2,530,000 | 1,639,936 | Sudan |
+| Kim Il-sung, Kim Jong-il, and Kim Jong-un | 710,000 | 3,500,000 | 1,576,388 | North Korea |
+| Suharto | 240,500 | 3,418,000+ | 906,658+ | Indonesia |
+| Mengistu Haile Mariam | 225,000 | 2,000,000 | 670,820 | Ethiopia |
+| Saddam Hussein | 200,000 | 2,000,000 | 632,456 | Iraq |
+| Oliver Cromwell | 200,000 | 600,000 | 400,000 | Ireland |
diff --git a/exampleSite/content/charts/wars.md b/exampleSite/content/charts/wars.md
new file mode 100644
index 0000000..af97238
--- /dev/null
+++ b/exampleSite/content/charts/wars.md
@@ -0,0 +1,8 @@
+{
+ "title": "Wars",
+ "layout": "standalone"
+}
+
+This is a table created by passing JSON data and a CSS class to a shortcode.
+
+{{<show-table table_data="wars" use_header="true" classes="table-with-borders">}}
diff --git a/exampleSite/content/examples/_index.md b/exampleSite/content/examples/_index.md
new file mode 100644
index 0000000..cf71867
--- /dev/null
+++ b/exampleSite/content/examples/_index.md
@@ -0,0 +1,5 @@
+{
+ "title": "Examples",
+ "menu": "main",
+ "weight": "5"
+}
diff --git a/exampleSite/content/examples/blockquote.md b/exampleSite/content/examples/blockquote.md
new file mode 100644
index 0000000..31b1d98
--- /dev/null
+++ b/exampleSite/content/examples/blockquote.md
@@ -0,0 +1,8 @@
+{
+ "title": "Blockquotes",
+ "layout": "standalone"
+}
+
+H.L. Mencken helps us demonstrate a block quote —
+
+>As democracy is perfected, the office of the president represents, more and more closely, the inner soul of the people. We move toward a lofty ideal. On some great and glorious day, the plain folks of the land will reach their heart’s desire at last, and the White House will be adorned by a downright moron.
diff --git a/exampleSite/content/examples/code.md b/exampleSite/content/examples/code.md
new file mode 100644
index 0000000..4cede28
--- /dev/null
+++ b/exampleSite/content/examples/code.md
@@ -0,0 +1,19 @@
+{
+ "title": "Code blocks",
+ "layout": "standalone"
+}
+
+A code block:
+
+```
+(defun triangle-recursively (number)
+ "Return the sum of the numbers 1 through NUMBER inclusive.
+Uses recursion."
+ (if (= number 1) ; do-again-test
+ 1 ; then-part
+ (+ number ; else-part
+ (triangle-recursively ; recursive call
+ (1- number))))) ; next-step-expression
+
+(triangle-recursively 7)
+```
diff --git a/exampleSite/content/newsletter/_index.md b/exampleSite/content/newsletter/_index.md
new file mode 100644
index 0000000..957fdf4
--- /dev/null
+++ b/exampleSite/content/newsletter/_index.md
@@ -0,0 +1,20 @@
+{
+ "title": "Newsletter",
+ "layout": "standalone",
+ "menu": "main",
+ "weight": "5"
+}
+
+This newsletter doesn't really exist, but it's an opportunity to show
+what a simple form looks like with this theme, and to add a shortcode
+to the Hugo theme (good to have for reference if nothing else).
+
+*Enter your email below to pretend to join this non-existent
+newsletter.*
+
+{{<newsletter-form>}}
+
+---
+
+If you have a website, you should definitely setup a newsletter! Let
+me know if you need help, I have some recommendations.
diff --git a/exampleSite/content/posts/_index.md b/exampleSite/content/posts/_index.md
new file mode 100644
index 0000000..97c8a07
--- /dev/null
+++ b/exampleSite/content/posts/_index.md
@@ -0,0 +1,5 @@
+{
+ "title": "All Posts",
+ "menu": "main",
+ "weight": "2"
+}
diff --git a/exampleSite/content/posts/a-petition.md b/exampleSite/content/posts/a-petition.md
new file mode 100644
index 0000000..ead57cf
--- /dev/null
+++ b/exampleSite/content/posts/a-petition.md
@@ -0,0 +1,90 @@
+{
+ "title": "The Candlemakers' Petition",
+ "authors": ["Frederic Bastiat"],
+ "publishdate": "1845-03-01",
+ "tags": ["Economics", "Law"]
+}
+
+From the Manufacturers of Candles, Tapers, Lanterns, Candlesticks,
+Street Lamps, Snuffers, and Extinguishers, and from the Producers of
+Tallow, Oil, Resin, Alcohol, and Generally of Everything Connected
+with Lighting.
+
+
+To the Honorable Members of the Chamber of Deputies.
+
+
+Gentlemen:
+
+
+You are on the right track. You reject abstract theories and have
+little regard for abundance and low prices. You concern yourselves
+mainly with the fate of the producer. You wish to free him from
+foreign competition, that is, to reserve the domestic market for
+domestic industry.
+
+
+We come to offer you a wonderful opportunity for applying your—what
+shall we call it? Your theory? No, nothing is more deceptive than
+theory. Your doctrine? Your system? Your principle? But you dislike
+doctrines, you have a horror of systems, and, as for principles, you
+deny that there are any in political economy; therefore we shall call
+it your practice—your practice without theory and without principle.
+
+
+We are suffering from the ruinous competition of a foreign rival who
+apparently works under conditions so far superior to our own for the
+production of light that he is flooding the domestic market with it at
+an incredibly low price; for the moment he appears, our sales cease,
+all the consumers turn to him, and a branch of French industry whose
+ramifications are innumerable is all at once reduced to complete
+stagnation. This rival, which is none other than the sun, is waging
+war on us so mercilessly that we suspect he is being stirred up
+against us by perfidious Albion (excellent diplomacy nowadays!),
+particularly because he has for that haughty island a respect that he
+does not show for us.
+
+We ask you to be so good as to pass a law requiring the closing of all
+windows, dormers, skylights, inside and outside shutters, curtains,
+casements, bull’s-eyes, deadlights, and blinds—in short, all openings,
+holes, chinks, and fissures through which the light of the sun is wont
+to enter houses, to the detriment of the fair industries with which,
+we are proud to say, we have endowed the country, a country that
+cannot, without betraying ingratitude, abandon us today to so unequal
+a combat.
+
+
+Be good enough, honorable deputies, to take our request seriously, and
+do not reject it without at least hearing the reasons that we have to
+advance in its support.
+
+
+First, if you shut off as much as possible all access to natural
+light, and thereby create a need for artificial light, what industry
+in France will not ultimately be encouraged?
+
+
+If France consumes more tallow, there will have to be more cattle and
+sheep, and, consequently, we shall see an increase in cleared fields,
+meat, wool, leather, and especially manure, the basis of all
+agricultural wealth.
+
+
+If France consumes more oil, we shall see an expansion in the
+cultivation of the poppy, the olive, and rapeseed. These rich yet
+soil-exhausting plants will come at just the right time to enable us
+to put to profitable use the increased fertility that the breeding of
+cattle will impart to the land.
+
+
+Our moors will be covered with resinous trees. Numerous swarms of bees
+will gather from our mountains the perfumed treasures that today waste
+their fragrance, like the flowers from which they emanate. Thus, there
+is not one branch of agriculture that would not undergo a great
+expansion.
+
+
+The same holds true of shipping. Thousands of vessels will engage in
+whaling, and in a short time we shall have a fleet capable of
+upholding the honor of France and of gratifying the patriotic
+aspirations of the undersigned petitioners, chandlers, etc.
diff --git a/exampleSite/content/posts/fallacies-of-protection.md b/exampleSite/content/posts/fallacies-of-protection.md
new file mode 100644
index 0000000..eeea925
--- /dev/null
+++ b/exampleSite/content/posts/fallacies-of-protection.md
@@ -0,0 +1,43 @@
+{
+ "title": "Fallacies Of Protection",
+ "authors": ["Frederic Bastiat"],
+ "publishdate": "1845-04-01",
+ "tags": ["Economics"]
+}
+
+My design in this little volume is to refute some of the arguments
+which are urged against the Freedom of Trade.
+
+I do not propose to engage in a contest with the protec- tionists; but
+rather to instil a principle into the minds of those who hesitate
+because they sincerely doubt.
+
+I am not one of those who say that Protection is founded on men's
+interests. I am of opinion rather that it is founded on errors, or, if
+you will, upon incomplete truths. Too many people fear liberty, to
+permit us to conclude that their apprehensions are not sincerely felt.
+
+It is perhaps aiming too high, but my wish is, I confess, that this
+little work should become, as it were, the Mantuil of those whose
+business it is to pronounce between the two principles. Where men have
+not been long accus- tomed and familiarised to the doctrine of
+liberty, the fallacies of protection, in one shape or another, are
+con- stantly coming back upon them. In order to disabuse them of such
+errors when they recur, a long process of analysis becomes necessary ;
+and everyone has not the time required for suth a process —
+legislators less than others. This is my reason for endeavouring to
+present the analysis and its results cut and dry.
+
+But it may be asked: Are the benefits of liberty so hidden as to be
+discovered only by Economists by profession?
+
+We must confess that our adversaries have a marked advantage over us
+in the discussion. In very few words they can announce a half-truth;
+and in order to demon- strate that it is incomplete, we are obliged to
+have recourse to long and dry dissertations.
+
+This arises from the nature of things. Protection concentrates on one
+point the good which it produces, while the evils which it indicts are
+spread over the masses. The one is visible to the naked eye; the other
+only to the eye of the mind. In the case of liberty, it is just the
+reverse.
diff --git a/exampleSite/content/posts/lincolns-inauguration.md b/exampleSite/content/posts/lincolns-inauguration.md
new file mode 100644
index 0000000..77b5f6a
--- /dev/null
+++ b/exampleSite/content/posts/lincolns-inauguration.md
@@ -0,0 +1,7 @@
+{
+ "title": "Lincoln's Inauguration",
+ "publishdate": "1861-03-04",
+ "tags": ["Law", "Images"]
+}
+
+![Lincoln Cartoon](/media/lincoln.gif)
diff --git a/exampleSite/content/posts/natural-law.md b/exampleSite/content/posts/natural-law.md
new file mode 100644
index 0000000..085273b
--- /dev/null
+++ b/exampleSite/content/posts/natural-law.md
@@ -0,0 +1,57 @@
+{
+ "title": "Natural Law",
+ "authors": ["Lysander Spooner"],
+ "publishdate": "1882-09-27",
+ "tags": ["Law"]
+}
+
+
+Natural law, natural justice, being a principle that is naturally
+applicable and adequate to the rightful settlement of every npossible
+controversy that can arise among men; being, too, the only standard by
+which any controversy whatever, between man and man, can be rightfully
+settled; being a principle whose protection every man demands for
+himself, whether he is willing to accord it to others, or not; being
+also an immutable principle, one that is always self-evidently
+necessary in all times and places; being so entirely impartial and
+equitable towards all; so indispensable to the peace of every human
+being; being, too, so easily learned, so generally known, and so
+easily maintained by such voluntary associations as all men can
+readily and rightfully form for that purpose—being such a principle as
+this, these questions arise, viz.: Why is it that it does not
+universally, or well nigh universally, prevail? Why is it that it has
+not, ages ago, been established throughout the world as the one only
+law that any man, or all men, could rightfully be compelled to obey?
+Why is it that any human being ever conceived that anything so
+self-evidently superfluous, false, absurd, and atrocious as all
+legislation necessarily must be, could be of any use to mankind, or
+have any place in human affairs?
+
+he answer is, that through all historic times, wherever any people
+have advanced beyond the savage state, and have learned to increase
+their means of subsistence by the cultivation of the soil, a greater
+or less number of them have associated and organized themselves as
+robbers, to plunder and enslave all others, who had either accumulated
+any property that could be seized, or had shown, by their labor, that
+they could be made to contribute to the support or pleasure of those
+who should enslave them.
+
+These bands of robbers, small in number at first, have increased their
+power by uniting with each other, inventing warlike weapons,
+disciplining themselves, and perfecting their organizations as
+military forces, and dividing their plunder (including their captives)
+among themselves, either in such proportions as have been previously
+agreed on, or in such as their leaders (always desirous to increase
+the number of their followers) should prescribe.
+
+The success of these bands of robbers was an easy thing, for the
+reason that those whom they plundered and enslaved were comparatively
+defenseless, being scattered thinly over the country; engaged wholly
+in trying by rude implements and heavy labor, to extort a subsistence
+from the soil; having no weapons of war, other than sticks and stones;
+having no military discipline or organization, and no means of
+concentrating their forces or acting in concert, when suddenly
+attacked. Under these circumstances, the only alternative left them
+for saving even their lives, or the lives of their families, was to
+yield up not only the crops they had gathered, and the lands they had
+cultivated, but themselves and their families also as slaves.
diff --git a/exampleSite/content/posts/no-treason.md b/exampleSite/content/posts/no-treason.md
new file mode 100644
index 0000000..d8f9bc3
--- /dev/null
+++ b/exampleSite/content/posts/no-treason.md
@@ -0,0 +1,67 @@
+{
+ "title": "No Treason - The Constitution of No Authority",
+ "authors": ["Lysander Spooner"],
+ "publishdate": "1869-01-19",
+ "tags": ["Law"]
+}
+
+The Constitution has no inherent authority or obligation. It has no
+authority or obligation at all, unless as a contract between man and
+man. And it does not so much as even purport to be a contract between
+persons now existing. It purports, at most, to be only a contract
+between persons living eighty years ago . 1 And it can be supposed to
+have been a contract then only between persons who had already come to
+years of discretion, so as to be competent to make reasonable and
+obligatory contracts. Furthermore, we know, historically, that only a
+small portion even of the people then exist¬ ing were consulted on the
+subject, or asked, or permitted to express either their consent or
+ndissent in any formal manner. Those persons, if any, who did give
+their consent formally, are all dead now. Most of them have been dead
+forty, fifty, sixty, or seventy years. And the Constitution, so far as
+it t oas their contract, died with them. They had no natural power or
+right to make it obligatory upon their children. It is not only
+plainly impossible, in the nature of things, that they could bind
+their posterity, but they did not even attempt to bind them. That is
+to say, the instrument does not purport to be an agreement between any
+body but “the people” then existing; nor does it, either expressly or
+impliedly, assert any right, power, or disposition, on their part, to
+bind anybody but themselves. Let us see. Its language is:
+
+We, the people of the United States (that is, the people then existing
+in the United States), in order to form a more perfect union, insure
+domestic tranquility, provide for the common defense, promote the
+general welfare, and secure the blessings of liberty to ourselves ana
+our posterity, do ordain and establish this Constitu¬ tion for the
+United States of America.
+
+It is plain, in the first place, that this language, as an agreement,
+purports to be only what it at most really was, viz., a contract
+between the people then existing; and, of necessity, binding, as a
+contract, only upon those then existing. In the second place, the
+language neither expresses nor implies that they had any intention or
+desire, nor that they imagined they had any right or power, to bind
+their “posterity” to five under it. It does not say that their
+“posterity” will, shall, or must live under it. It only says, in
+effect, that their hopes and motives in adopting it were that it might
+prove useful to their posterity, as well as to themselves, by
+promoting their imion, safety, tranquility, liberty, etc.
+
+Suppose an agreement were entered into, in this form:
+
+We, the people of Boston, agree to maintain a fort on Governor’s
+Island, to protect ourselves and our posterity against invasion.
+
+This agreement, as an agreement, would clearly bind nobody but the
+people then existing. Secondly, it would assert no right, power, or
+disposition, on their part, to compel^their “posterity” to maintain
+such a fort. It would only indicate that the supposed wel¬ fare of
+their posterity was one of the motives that induced the original
+parties to enter into the agreement.
+
+When a man says he is building a house for himself and his posterity,
+he does not mean to be understood as saying that he has any thought of
+binding them, nor is it to be inferred that he is so foolish as to
+imagine that he has any right or power to bind them, to live in it. So
+far as they are concerned, he only means to be understood as saying
+that his hopes and motives, in building it, are that they, or at least
+some of them, may find it for their happiness to live in it.
diff --git a/exampleSite/content/posts/the-law.md b/exampleSite/content/posts/the-law.md
new file mode 100644
index 0000000..17afe8c
--- /dev/null
+++ b/exampleSite/content/posts/the-law.md
@@ -0,0 +1,39 @@
+{
+ "title": "The Law",
+ "authors": ["Frederic Bastiat"],
+ "publishdate": "1850-07-09",
+ "tags": ["Law"]
+}
+
+
+The law perverted! The law—and, in its wake, all the collective forces
+of the nation—the law, I say, not only diverted from its proper
+direction, but made to pursue one entirely contrary! The law become
+the tool of every kind of avarice, instead of being its check! The law
+guilty of that very iniquity which it was its mission to punish!
+Truly, this is a serious fact, if it exists, and one to which I feel
+bound to call the attention of my fellow citizens.
+
+We hold from God the gift that, as far as we are concerned, contains
+all others, Life—physical, intellectual, and moral life.
+
+But life cannot support itself. He who has bestowed it, has entrusted
+us with the care of supporting it, of developing it, and of
+perfecting it. To that end, He has provided us with a collection of
+wonderful faculties; He has plunged us into the midst of a variety of
+elements. It is by the application of our faculties to these elements
+that the phenomena of assimilation and of appropriation, by which life
+pursues the circle that has been assigned to it are realized.
+
+Existence, faculties, assimilation—in other words, personality,
+liberty, property—this is man.
+
+It is of these three things that it may be said, apart from all
+demagogic subtlety, that they are anterior and superior to all human
+legislation.
+
+It is not because men have made laws, that personality, liberty, and
+property exist. On the contrary, it is because personality, liberty,
+ and property exist beforehand, that men make laws. What, then, is
+law? As I have said elsewhere, it is the collective organization of
+the indi¬ vidual right to lawful defense.
diff --git a/exampleSite/content/posts/unconstitutionality-of-slavery.md b/exampleSite/content/posts/unconstitutionality-of-slavery.md
new file mode 100644
index 0000000..12bed92
--- /dev/null
+++ b/exampleSite/content/posts/unconstitutionality-of-slavery.md
@@ -0,0 +1,52 @@
+{
+ "title": "The Unconstitutionality of Slavery",
+ "authors": ["Lysander Spooner"],
+ "publishdate": "1845-04-04",
+ "tags": ["Law"]
+}
+
+
+*WHAT IS LAW?*
+
+Before examining the language of the Constitution, in regard to
+Slavery, let us obtain a view of the principles, by virtue of which
+law arises out of those constitutions and compacts, by which people
+agree to establish government.
+
+To do this it is necessary to define the term law. Popular opinions
+are very loose and indefinite, both as to the true definition of law,
+and also as to the principle, by virtue of which law results from the
+compacts or contracts of mankind with each other.
+
+What then is Law ? That law, I mean, which, and which only, judicial
+tribunals are morally bound, under all circum- stances, to declare and
+sustain ?
+
+In answering this question, I shall attempt to show that law is an
+intelligible principle of right., necessarily resulting from the
+nature of man ; and not an arbitrary rule, that can be established by
+mere will, numbers or power.
+
+To determine whether this proposition be correct, we must look at the
+general signification of the term law.
+
+The true and general meaning of it, is that natural, per- manent,
+unalterable principle, which governs any particular thing or class of
+things. The principle is strictly a natural one; and the term applies
+to every natural principle, whether mental, moral or physical. Thus we
+speak of the laws of mind ; meaning thereby those natural, universal
+and neces- sary principles, according to which mind acts, or by which
+it is governed. We speak too of the moral law ; which is merely an
+universal principle of moral obligation, that arises out of the nature
+of men, and their relations to each other, and to other things — and
+is consequently as unalterable as the nature of men. And it is solely
+because it is unalterable in its nature, and universal in its
+application, that it is denom- inated law. If it were changeable,
+partial or arbitrary, it would be no law. Thus we speak of physical
+laws ; of the laws, for instance, that govern the solar system ; of
+the laws of mo- tion, the laws of gravitation, the laws of light, &c.,
+(fee. — Also the laws that govern the vegetable and animal kingdoms,
+in all their various departments : among which laws may be named, for
+example, the one that like produces like. Un- less the operation of
+this principle were uniform, universal and necessary, it would be no
+law.
diff --git a/exampleSite/content/posts/what-is-seen.md b/exampleSite/content/posts/what-is-seen.md
new file mode 100644
index 0000000..8e6666e
--- /dev/null
+++ b/exampleSite/content/posts/what-is-seen.md
@@ -0,0 +1,55 @@
+{
+ "title": "What Is Seen and What Is Not Seen",
+ "authors": ["Frederic Bastiat"],
+ "publishdate": "1850-11-09",
+ "tags": ["Economics"]
+}
+
+In the economic sphere an act, a habit, an institution, a law produces
+not only one effect, but a series of effects. Of these effects, the
+first alone is immediate; it appears simultaneously with its cause; it
+is seen. The other effects emerge only subsequently; they are not
+seen; we are fortunate if we foresee them.
+
+
+
+There is only one difference between a bad economist and a good one:
+the bad economist confines himself to the visible effect; the good
+economist takes into account both the effect that can be seen and
+those effects that must be foreseen.
+
+
+
+Yet this difference is tremendous; for it almost always happens that
+when the immediate consequence is favorable, the later consequences
+are disastrous, and vice versa. Whence it follows that the bad
+economist pursues a small present good that will be followed by a
+great evil to come, while the good economist pursues a great good to
+come, at the risk of a small present evil.
+
+
+
+The same thing, of course, is true of health and morals. Often, the
+sweeter the first fruit of a habit, the more bitter are its later
+fruits: for example, debauchery, sloth, prodigality. When a man is
+impressed by the effect that is seen and has not yet learned to
+discern the effects that are not seen, he indulges in deplorable
+habits, not only through natural inclination, but deliberately.
+
+
+
+This explains man’s necessarily painful evolution. Ignorance surrounds
+him at his cradle; therefore, he regulates his acts according to their
+first consequences, the only ones that, in his infancy, he can see. It
+is only after a long time that he learns to take account of the
+others. xoTwo very different masters teach him this lesson:
+experience and foresight. Experience teaches efficaciously but
+brutally. It instructs us in all the effects of an act by making us
+feel them, and we cannot fail to learn eventually, from having been
+burned ourselves, that fire burns. I should prefer, in so far as
+possible, to replace this rude teacher with one more gentle:
+foresight. For that reason I shall investigate the consequences of
+several economic phenomena, contrasting those that are seen with those
+that are not seen.
+
+
diff --git a/exampleSite/data/wars.json b/exampleSite/data/wars.json
new file mode 100644
index 0000000..f851bf3
--- /dev/null
+++ b/exampleSite/data/wars.json
@@ -0,0 +1,23 @@
+[
+ ["Event", "Lowest Estimate", "Highest Estimate", "Average Estimate"],
+ ["World War II", "60,000,000", "118,357,000", "84,269,920"],
+ ["Three Kingdoms", "36,000,000", "40,000,000", "37,947,332"],
+ ["Mongol conquests", "30,000,000", "57,000,000", "34,641,016"],
+ [
+ "European colonization of the Americas",
+ "8,400,000",
+ "138,000,000",
+ "34,047,026"
+ ],
+ ["Taiping Rebellion", "10,000,000", "100,000,000", "31,622,777"],
+ ["Transition from Ming to Qing", "25,000,000", "25,000,000", "25,000,000"],
+ ["Second Sino-Japanese War", "20,000,000", "25,000,000", "22,360,680"],
+ ["An Lushan Rebellion", "13,020,000", "36,000,000", "21,633,308"],
+ ["World War I", "17,500,000", "40,000,000+", "23,568,559"],
+ ["Conquests of Timur", "8,000,000", "17,000,000", "12,649,111"],
+ ["Dungan Revolt", "8,000,000", "12,000,000", "9,797,959"],
+ ["Chinese Civil War", "8,000,000", "11,692,000", "9,671,401"],
+ ["Reconquista", "7,000,000", "7,000,000", "7,000,000"],
+ ["Russian Civil War", "5,000,000", "9,000,000", "6,708,204"],
+ ["Thirty Years' War", "3,000,000", "", ""]
+]
diff --git a/exampleSite/static/assets/images/header.svg b/exampleSite/static/assets/images/header.svg
new file mode 100755
index 0000000..d65f7fa
--- /dev/null
+++ b/exampleSite/static/assets/images/header.svg
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 1430 295" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g transform="matrix(0.879757,0,0,0.879757,-49.2938,-114.195)"><path d="M136.953,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M157.416,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M177.88,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M198.343,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M321.124,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M341.588,139.567l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M362.051,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M382.515,139.567l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M402.979,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M955.494,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1139.66,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1160.13,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1180.59,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1201.06,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1221.52,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1262.45,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1303.37,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1548.94,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1569.4,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.209,0.297 0.209,0.508c0,0.211 -0.07,0.38 -0.209,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1589.86,139.567l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1610.33,139.567l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M113.476,154.415l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.123,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M154.403,154.415l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.123,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M195.33,154.415l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.123,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M292.069,156.379l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M362.051,185.668l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.064 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M382.515,185.668l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M402.979,185.668l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M414.85,156.379l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.732Z" style="fill-rule:nonzero;"/><path d="M926.438,156.379l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.732Z" style="fill-rule:nonzero;"/><path d="M967.365,156.379l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.732Z" style="fill-rule:nonzero;"/><path d="M1116.19,154.415l-11.256,24.11c-0.188,0.41 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.07 -0.492,-0.209c-0.138,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M1180.59,185.668l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1201.06,185.668l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1221.52,185.668l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1232.53,168.035c0,-1.277 0.167,-2.631 0.5,-4.063c0.333,-1.432 0.971,-3.086 1.915,-4.962c0.943,-1.876 1.631,-3.008 2.064,-3.397c0.134,-0.122 0.278,-0.183 0.433,-0.183c0.2,0 0.369,0.067 0.508,0.2c0.139,0.133 0.208,0.294 0.208,0.483c0,0.111 -0.039,0.233 -0.116,0.366c-1.221,2.242 -2.093,4.274 -2.614,6.094c-0.522,1.821 -0.783,3.641 -0.783,5.462c0,1.831 0.261,3.657 0.783,5.478c0.521,1.82 1.393,3.846 2.614,6.077c0.077,0.133 0.116,0.255 0.116,0.366c0,0.189 -0.069,0.353 -0.208,0.492c-0.139,0.138 -0.308,0.208 -0.508,0.208c-0.155,0 -0.299,-0.061 -0.433,-0.183c-0.41,-0.378 -1.082,-1.482 -2.014,-3.314c-0.933,-1.831 -1.577,-3.452 -1.932,-4.862c-0.355,-1.41 -0.533,-2.83 -0.533,-4.262Z" style="fill-rule:nonzero;"/><path d="M1262.45,185.668l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1274.02,168.051c0,1.277 -0.167,2.628 -0.5,4.055c-0.333,1.426 -0.971,3.08 -1.915,4.962c-0.943,1.881 -1.632,3.011 -2.064,3.388c-0.134,0.133 -0.278,0.2 -0.433,0.2c-0.2,0 -0.369,-0.07 -0.508,-0.208c-0.139,-0.139 -0.208,-0.303 -0.208,-0.492c0,-0.111 0.038,-0.233 0.116,-0.366c1.221,-2.231 2.093,-4.257 2.614,-6.077c0.522,-1.821 0.783,-3.641 0.783,-5.462c0,-1.831 -0.261,-3.657 -0.783,-5.478c-0.521,-1.82 -1.393,-3.852 -2.614,-6.094c-0.078,-0.133 -0.116,-0.255 -0.116,-0.366c0,-0.189 0.069,-0.35 0.208,-0.483c0.139,-0.133 0.308,-0.2 0.508,-0.2c0.155,0 0.299,0.061 0.433,0.183c0.41,0.378 1.082,1.482 2.014,3.314c0.933,1.831 1.576,3.452 1.932,4.862c0.355,1.41 0.533,2.83 0.533,4.262Z" style="fill-rule:nonzero;"/><path d="M1315.25,156.379l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M1534.63,153.915l11.239,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.177 -0.069,0.336 -0.208,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1575.56,153.915l11.239,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.177 -0.069,0.336 -0.208,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1616.49,153.915l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.177 -0.07,0.336 -0.209,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M93.012,200.515l-11.256,24.11c-0.188,0.411 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.069 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.316 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M133.939,200.515l-11.256,24.11c-0.188,0.411 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.069 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.316 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.209,0.292 0.209,0.458c0,0.122 -0.056,0.306 -0.167,0.55Z" style="fill-rule:nonzero;"/><path d="M174.866,200.515l-11.256,24.11c-0.188,0.411 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.069 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.316 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.209,0.292 0.209,0.458c0,0.122 -0.056,0.306 -0.167,0.55Z" style="fill-rule:nonzero;"/><path d="M292.069,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M332.996,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M362.051,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M382.515,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M402.979,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M423.442,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M484.833,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M505.296,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.715,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.382,-0.192 0.715,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M525.76,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M546.223,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M587.15,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M628.077,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M669.004,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M689.468,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M730.395,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M750.858,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M771.322,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M832.712,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M873.639,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M894.103,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M926.438,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.517,0.216c0.133,0.144 0.199,0.388 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M967.365,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.517,0.216c0.133,0.144 0.199,0.388 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M1016.88,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.715,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.382,-0.192 0.715,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1037.35,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1057.81,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1104.9,200.015l11.239,24.11c0.111,0.245 0.167,0.422 0.167,0.533c0,0.178 -0.07,0.336 -0.209,0.475c-0.138,0.138 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.177 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1149.34,200.631l3.93,3.397l0.366,0.416c0.033,0.056 0.05,0.145 0.05,0.267c0,0.2 -0.069,0.369 -0.208,0.508c-0.139,0.138 -0.308,0.208 -0.508,0.208c-0.166,0 -0.377,-0.111 -0.633,-0.333l-3.929,-3.397c-0.278,-0.244 -0.416,-0.472 -0.416,-0.683c0,-0.199 0.069,-0.369 0.208,-0.507c0.138,-0.139 0.308,-0.209 0.508,-0.209c0.166,0 0.377,0.111 0.632,0.333Z" style="fill-rule:nonzero;"/><rect x="1164.16" y="211.787" width="14.27" height="1.998" style="fill-rule:nonzero;"/><rect x="1184.62" y="211.787" width="14.27" height="1.998" style="fill-rule:nonzero;"/><path d="M1211.93,218.414l0.599,0c0.622,0 1.154,0.219 1.598,0.658c0.445,0.438 0.667,0.968 0.667,1.59c0,0.644 -0.225,1.182 -0.675,1.615c-0.449,0.433 -0.979,0.649 -1.59,0.649l-0.599,0c-0.622,0 -1.155,-0.219 -1.599,-0.657c-0.444,-0.439 -0.666,-0.969 -0.666,-1.59c0,-0.644 0.225,-1.183 0.674,-1.615c0.45,-0.433 0.98,-0.65 1.591,-0.65Z" style="fill-rule:nonzero;"/><path d="M1262.45,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1274.32,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1315.25,202.48l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1344.3,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1385.23,231.768l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1405.69,231.768l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1426.15,231.768l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1555.1,200.015l11.239,24.11c0.111,0.245 0.167,0.422 0.167,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1596.02,200.015l11.24,24.11c0.111,0.245 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1636.95,200.015l11.24,24.11c0.111,0.245 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M57.663,258.82l15.119,-8.425c0.244,-0.133 0.427,-0.2 0.549,-0.2c0.189,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.303 0.208,0.491c0,0.278 -0.188,0.522 -0.566,0.733l-12.954,7.193l12.938,7.193c0.377,0.211 0.566,0.455 0.566,0.733c0,0.188 -0.07,0.352 -0.208,0.491c-0.139,0.139 -0.303,0.208 -0.492,0.208c-0.122,0 -0.305,-0.067 -0.549,-0.2l-15.102,-8.425Z" style="fill-rule:nonzero;"/><path d="M98.59,258.82l15.119,-8.425c0.244,-0.133 0.427,-0.2 0.549,-0.2c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.208,0.303 0.208,0.491c0,0.278 -0.188,0.522 -0.566,0.733l-12.954,7.193l12.938,7.193c0.377,0.211 0.566,0.455 0.566,0.733c0,0.188 -0.07,0.352 -0.208,0.491c-0.139,0.139 -0.303,0.208 -0.492,0.208c-0.122,0 -0.305,-0.067 -0.549,-0.2l-15.102,-8.425Z" style="fill-rule:nonzero;"/><path d="M139.517,258.82l15.119,-8.425c0.244,-0.133 0.427,-0.2 0.549,-0.2c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.208,0.303 0.208,0.491c0,0.278 -0.188,0.522 -0.566,0.733l-12.954,7.193l12.938,7.193c0.377,0.211 0.566,0.455 0.566,0.733c0,0.188 -0.07,0.352 -0.208,0.491c-0.139,0.139 -0.303,0.208 -0.492,0.208c-0.122,0 -0.305,-0.067 -0.549,-0.2l-15.102,-8.425Z" style="fill-rule:nonzero;"/><path d="M292.069,248.58l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.145 -0.297,0.217 -0.508,0.217c-0.2,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M362.051,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M382.515,277.868l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M388.676,246.116l11.239,24.11c0.111,0.244 0.166,0.421 0.166,0.532c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.07,-0.333 0.208,-0.467c0.139,-0.133 0.303,-0.199 0.491,-0.199c0.3,0 0.55,0.205 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M429.603,246.116l11.239,24.11c0.111,0.244 0.166,0.421 0.166,0.532c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.07,-0.333 0.208,-0.467c0.139,-0.133 0.303,-0.199 0.491,-0.199c0.3,0 0.55,0.205 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M461.355,246.615l-11.255,24.11c-0.189,0.411 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.291 -0.208,-0.458c0,-0.133 0.055,-0.316 0.166,-0.549l11.239,-24.11c0.122,-0.256 0.239,-0.422 0.35,-0.5c0.111,-0.077 0.244,-0.116 0.4,-0.116c0.188,0 0.352,0.069 0.491,0.208c0.138,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M502.282,246.615l-11.255,24.11c-0.189,0.411 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.291 -0.208,-0.458c0,-0.133 0.055,-0.316 0.166,-0.549l11.239,-24.11c0.122,-0.256 0.239,-0.422 0.35,-0.5c0.111,-0.077 0.244,-0.116 0.4,-0.116c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M546.223,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.209,0.297 0.209,0.508c0,0.211 -0.07,0.38 -0.209,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M555.897,246.732l3.93,3.396l0.366,0.417c0.033,0.055 0.05,0.144 0.05,0.266c0,0.2 -0.069,0.369 -0.208,0.508c-0.139,0.139 -0.308,0.208 -0.508,0.208c-0.167,0 -0.377,-0.111 -0.633,-0.333l-3.929,-3.397c-0.278,-0.244 -0.417,-0.471 -0.417,-0.682c0,-0.2 0.07,-0.369 0.209,-0.508c0.138,-0.139 0.308,-0.208 0.507,-0.208c0.167,0 0.378,0.111 0.633,0.333Z" style="fill-rule:nonzero;"/><path d="M599.022,248.58l-0.017,23.327c0,0.333 -0.063,0.572 -0.191,0.716c-0.128,0.145 -0.297,0.217 -0.508,0.217c-0.2,0 -0.366,-0.072 -0.499,-0.217c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.066,-0.588 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.133,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M637.019,247.631l4.429,0l-1.166,8.741c-0.066,0.467 -0.191,0.791 -0.375,0.974c-0.183,0.184 -0.407,0.275 -0.674,0.275c-0.277,0 -0.505,-0.091 -0.683,-0.275c-0.177,-0.183 -0.299,-0.507 -0.366,-0.974l-1.165,-8.741Z" style="fill-rule:nonzero;"/><path d="M669.004,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M699.142,246.732l3.929,3.396l0.367,0.417c0.033,0.055 0.05,0.144 0.05,0.266c0,0.2 -0.07,0.369 -0.209,0.508c-0.138,0.139 -0.308,0.208 -0.507,0.208c-0.167,0 -0.378,-0.111 -0.633,-0.333l-3.93,-3.397c-0.277,-0.244 -0.416,-0.471 -0.416,-0.682c0,-0.2 0.069,-0.369 0.208,-0.508c0.139,-0.139 0.308,-0.208 0.508,-0.208c0.167,0 0.377,0.111 0.633,0.333Z" style="fill-rule:nonzero;"/><path d="M750.858,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.063 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.127 -0.381,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M777.483,246.116l11.239,24.11c0.111,0.244 0.166,0.421 0.166,0.532c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.069,-0.333 0.208,-0.467c0.139,-0.133 0.303,-0.199 0.491,-0.199c0.3,0 0.55,0.205 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M803.657,248.58l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.145 -0.297,0.217 -0.508,0.217c-0.2,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M841.654,247.631l4.429,0l-1.166,8.741c-0.066,0.467 -0.191,0.791 -0.374,0.974c-0.183,0.184 -0.408,0.275 -0.675,0.275c-0.277,0 -0.505,-0.091 -0.682,-0.275c-0.178,-0.183 -0.3,-0.507 -0.367,-0.974l-1.165,-8.741Z" style="fill-rule:nonzero;"/><path d="M873.639,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M900.264,246.116l11.239,24.11c0.111,0.244 0.166,0.421 0.166,0.532c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.069,-0.333 0.208,-0.467c0.139,-0.133 0.303,-0.199 0.491,-0.199c0.3,0 0.55,0.205 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M926.438,248.58l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.145 -0.297,0.217 -0.508,0.217c-0.199,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.517,0.216c0.133,0.145 0.199,0.389 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M967.365,248.58l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.145 -0.297,0.217 -0.508,0.217c-0.199,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.517,0.216c0.133,0.145 0.199,0.389 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M993.407,246.615l-11.256,24.11c-0.189,0.411 -0.433,0.616 -0.733,0.616c-0.188,0 -0.352,-0.069 -0.491,-0.208c-0.138,-0.139 -0.208,-0.291 -0.208,-0.458c0,-0.133 0.056,-0.316 0.167,-0.549l11.239,-24.11c0.122,-0.256 0.238,-0.422 0.349,-0.5c0.111,-0.077 0.245,-0.116 0.4,-0.116c0.189,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.549Z" style="fill-rule:nonzero;"/><path d="M1037.35,277.868l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1063.97,246.116l11.239,24.11c0.111,0.244 0.167,0.421 0.167,0.532c0,0.178 -0.07,0.336 -0.209,0.475c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.07,-0.333 0.208,-0.467c0.139,-0.133 0.303,-0.199 0.492,-0.199c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1128.88,246.732l3.929,3.396l0.367,0.417c0.033,0.055 0.049,0.144 0.049,0.266c0,0.2 -0.069,0.369 -0.208,0.508c-0.138,0.139 -0.308,0.208 -0.507,0.208c-0.167,0 -0.378,-0.111 -0.633,-0.333l-3.93,-3.397c-0.277,-0.244 -0.416,-0.471 -0.416,-0.682c0,-0.2 0.069,-0.369 0.208,-0.508c0.139,-0.139 0.308,-0.208 0.508,-0.208c0.166,0 0.377,0.111 0.633,0.333Z" style="fill-rule:nonzero;"/><rect x="1143.69" y="257.888" width="14.27" height="1.998" style="fill-rule:nonzero;"/><rect x="1164.16" y="257.888" width="14.27" height="1.998" style="fill-rule:nonzero;"/><path d="M1191.46,264.514l0.6,0c0.621,0 1.154,0.22 1.598,0.658c0.444,0.439 0.666,0.969 0.666,1.59c0,0.644 -0.225,1.183 -0.674,1.615c-0.45,0.433 -0.98,0.65 -1.59,0.65l-0.6,0c-0.622,0 -1.154,-0.219 -1.598,-0.658c-0.444,-0.438 -0.666,-0.968 -0.666,-1.59c0,-0.644 0.224,-1.182 0.674,-1.615c0.45,-0.433 0.98,-0.65 1.59,-0.65Z" style="fill-rule:nonzero;"/><path d="M1227.68,246.116l11.239,24.11c0.111,0.244 0.167,0.421 0.167,0.532c0,0.178 -0.07,0.336 -0.208,0.475c-0.139,0.139 -0.303,0.208 -0.492,0.208c-0.31,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.41 -0.167,-0.532c0,-0.178 0.07,-0.333 0.209,-0.467c0.138,-0.133 0.302,-0.199 0.491,-0.199c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1274.32,248.58l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.145 -0.297,0.217 -0.508,0.217c-0.2,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1323.84,277.868l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1344.3,277.868l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.128 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.063 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.127 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M1361.75,246.615l-11.256,24.11c-0.188,0.411 -0.432,0.616 -0.732,0.616c-0.189,0 -0.353,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.291 -0.208,-0.458c0,-0.133 0.055,-0.316 0.166,-0.549l11.239,-24.11c0.122,-0.256 0.239,-0.422 0.35,-0.5c0.111,-0.077 0.244,-0.116 0.399,-0.116c0.189,0 0.353,0.069 0.492,0.208c0.138,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1405.69,277.868l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.191c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.128 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.063 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.127 -0.38,0.191 -0.724,0.191Z" style="fill-rule:nonzero;"/><path d="M1432.32,246.116l11.239,24.11c0.111,0.244 0.167,0.421 0.167,0.532c0,0.178 -0.07,0.336 -0.208,0.475c-0.139,0.139 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.41 -0.166,-0.532c0,-0.178 0.069,-0.333 0.208,-0.467c0.139,-0.133 0.302,-0.199 0.491,-0.199c0.3,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1589.16,258.82l-15.118,8.425c-0.245,0.133 -0.428,0.2 -0.55,0.2c-0.188,0 -0.352,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.303 -0.208,-0.491c0,-0.278 0.189,-0.522 0.566,-0.733l12.954,-7.193l-12.937,-7.193c-0.378,-0.211 -0.566,-0.455 -0.566,-0.733c0,-0.188 0.069,-0.352 0.208,-0.491c0.138,-0.139 0.302,-0.208 0.491,-0.208c0.122,0 0.305,0.067 0.549,0.2l15.102,8.425Z" style="fill-rule:nonzero;"/><path d="M1630.09,258.82l-15.118,8.425c-0.244,0.133 -0.428,0.2 -0.55,0.2c-0.188,0 -0.352,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.303 -0.208,-0.491c0,-0.278 0.189,-0.522 0.566,-0.733l12.954,-7.193l-12.937,-7.193c-0.378,-0.211 -0.566,-0.455 -0.566,-0.733c0,-0.188 0.069,-0.352 0.208,-0.491c0.138,-0.139 0.302,-0.208 0.491,-0.208c0.122,0 0.305,0.067 0.549,0.2l15.102,8.425Z" style="fill-rule:nonzero;"/><path d="M1671.02,258.82l-15.118,8.425c-0.244,0.133 -0.428,0.2 -0.55,0.2c-0.188,0 -0.352,-0.069 -0.491,-0.208c-0.139,-0.139 -0.208,-0.303 -0.208,-0.491c0,-0.278 0.189,-0.522 0.566,-0.733l12.954,-7.193l-12.937,-7.193c-0.378,-0.211 -0.566,-0.455 -0.566,-0.733c0,-0.188 0.069,-0.352 0.208,-0.491c0.139,-0.139 0.302,-0.208 0.491,-0.208c0.122,0 0.305,0.067 0.549,0.2l15.102,8.425Z" style="fill-rule:nonzero;"/><path d="M81.723,292.216l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.177 -0.07,0.336 -0.209,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.208,-0.466c0.139,-0.134 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M122.65,292.216l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.177 -0.07,0.336 -0.209,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.208,-0.466c0.139,-0.134 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M163.577,292.216l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.177 -0.07,0.336 -0.209,0.474c-0.138,0.139 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.205 -0.749,-0.616l-11.239,-24.126c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.178 0.07,-0.333 0.209,-0.466c0.138,-0.134 0.302,-0.2 0.491,-0.2c0.299,0 0.549,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M292.069,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M332.996,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M362.051,323.969l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.064 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M382.515,323.969l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M402.979,323.969l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M422.743,304.92l-15.119,8.425c-0.244,0.134 -0.427,0.2 -0.549,0.2c-0.189,0 -0.353,-0.069 -0.492,-0.208c-0.138,-0.139 -0.208,-0.302 -0.208,-0.491c0,-0.278 0.189,-0.522 0.566,-0.733l12.954,-7.193l-12.937,-7.193c-0.377,-0.211 -0.566,-0.455 -0.566,-0.732c0,-0.189 0.069,-0.353 0.208,-0.492c0.139,-0.138 0.303,-0.208 0.491,-0.208c0.122,0 0.305,0.067 0.55,0.2l15.102,8.425Z" style="fill-rule:nonzero;"/><path d="M466.933,304.92l15.119,-8.425c0.244,-0.133 0.427,-0.2 0.549,-0.2c0.189,0 0.353,0.07 0.492,0.208c0.138,0.139 0.208,0.303 0.208,0.492c0,0.277 -0.189,0.521 -0.566,0.732l-12.954,7.193l12.937,7.193c0.377,0.211 0.566,0.455 0.566,0.733c0,0.189 -0.069,0.352 -0.208,0.491c-0.139,0.139 -0.302,0.208 -0.491,0.208c-0.122,0 -0.305,-0.066 -0.55,-0.2l-15.102,-8.425Z" style="fill-rule:nonzero;"/><path d="M516.302,306.336c0,-1.277 0.167,-2.631 0.5,-4.063c0.333,-1.432 0.971,-3.086 1.914,-4.962c0.944,-1.876 1.632,-3.008 2.065,-3.397c0.133,-0.122 0.278,-0.183 0.433,-0.183c0.2,0 0.369,0.067 0.508,0.2c0.139,0.133 0.208,0.294 0.208,0.483c0,0.111 -0.039,0.233 -0.117,0.366c-1.221,2.242 -2.092,4.274 -2.614,6.094c-0.521,1.821 -0.782,3.641 -0.782,5.462c0,1.831 0.261,3.657 0.782,5.478c0.522,1.82 1.393,3.846 2.614,6.077c0.078,0.133 0.117,0.255 0.117,0.366c0,0.189 -0.069,0.353 -0.208,0.492c-0.139,0.138 -0.308,0.208 -0.508,0.208c-0.155,0 -0.3,-0.061 -0.433,-0.183c-0.411,-0.378 -1.082,-1.482 -2.015,-3.314c-0.932,-1.831 -1.576,-3.452 -1.931,-4.862c-0.355,-1.41 -0.533,-2.83 -0.533,-4.262Z" style="fill-rule:nonzero;"/><path d="M546.223,323.969l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.724,0.191c0.139,0.128 0.209,0.297 0.209,0.508c0,0.211 -0.07,0.38 -0.209,0.508c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M558.095,294.68l-0.017,23.328c0,0.333 -0.063,0.571 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.066,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M599.022,294.68l-0.017,23.328c0,0.333 -0.063,0.571 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.066,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M639.949,294.68l-0.017,23.328c0,0.333 -0.063,0.571 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.066,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M680.876,294.68l-0.017,23.328c0,0.333 -0.063,0.571 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.066,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M721.803,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.066,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M762.73,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M803.657,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M844.584,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M873.639,323.969l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.064 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M885.212,306.352c0,1.277 -0.167,2.628 -0.5,4.055c-0.333,1.426 -0.971,3.08 -1.915,4.962c-0.943,1.881 -1.631,3.011 -2.064,3.388c-0.134,0.133 -0.278,0.2 -0.433,0.2c-0.2,0 -0.369,-0.07 -0.508,-0.208c-0.139,-0.139 -0.208,-0.303 -0.208,-0.492c0,-0.111 0.039,-0.233 0.116,-0.366c1.221,-2.231 2.093,-4.257 2.614,-6.077c0.522,-1.821 0.783,-3.641 0.783,-5.462c0,-1.831 -0.261,-3.657 -0.783,-5.478c-0.521,-1.82 -1.393,-3.852 -2.614,-6.094c-0.077,-0.133 -0.116,-0.255 -0.116,-0.366c0,-0.189 0.069,-0.35 0.208,-0.483c0.139,-0.133 0.308,-0.2 0.508,-0.2c0.155,0 0.299,0.061 0.433,0.183c0.41,0.378 1.082,1.482 2.014,3.314c0.933,1.831 1.577,3.452 1.932,4.862c0.355,1.409 0.533,2.83 0.533,4.262Z" style="fill-rule:nonzero;"/><path d="M926.438,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.732Z" style="fill-rule:nonzero;"/><path d="M967.365,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.732Z" style="fill-rule:nonzero;"/><path d="M1037.35,323.969l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1057.81,323.969l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.724,0.191c0.139,0.128 0.209,0.297 0.209,0.508c0,0.211 -0.07,0.38 -0.209,0.508c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1075.26,292.715l-11.256,24.11c-0.189,0.411 -0.433,0.617 -0.732,0.617c-0.189,0 -0.353,-0.07 -0.492,-0.209c-0.138,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.549Z" style="fill-rule:nonzero;"/><path d="M1116.19,292.715l-11.256,24.11c-0.188,0.411 -0.433,0.617 -0.732,0.617c-0.189,0 -0.353,-0.07 -0.492,-0.209c-0.138,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.549Z" style="fill-rule:nonzero;"/><path d="M1125.36,292.216l11.24,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.177 -0.069,0.336 -0.208,0.474c-0.139,0.139 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.205 -0.75,-0.616l-11.239,-24.126c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.178 0.069,-0.333 0.208,-0.466c0.139,-0.134 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.205 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1160.13,323.969l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1180.59,323.969l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.072,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.344,0 0.586,0.064 0.725,0.191c0.138,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.07,0.38 -0.208,0.508c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1198.04,292.715l-11.256,24.11c-0.188,0.411 -0.433,0.617 -0.732,0.617c-0.189,0 -0.353,-0.07 -0.492,-0.209c-0.138,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.209,0.291 0.209,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1238.97,292.715l-11.256,24.11c-0.188,0.411 -0.433,0.617 -0.732,0.617c-0.189,0 -0.353,-0.07 -0.491,-0.209c-0.139,-0.138 -0.209,-0.291 -0.209,-0.457c0,-0.134 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.491,0.208c0.139,0.139 0.209,0.291 0.209,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1274.32,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M1315.25,294.68l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M1335.71,294.68l-0.017,23.328c0,0.333 -0.064,0.571 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.367,-0.072 -0.5,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.5,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M1405.69,323.969l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.128 -0.216,-0.297 -0.216,-0.508c0,-0.211 0.072,-0.38 0.216,-0.508c0.145,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.586,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1426.15,323.969l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.599,0c0.344,0 0.585,0.064 0.724,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1443.6,292.715l-11.255,24.11c-0.189,0.411 -0.433,0.617 -0.733,0.617c-0.189,0 -0.353,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.069 0.492,0.208c0.138,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1566.38,292.715l-11.255,24.11c-0.189,0.411 -0.433,0.617 -0.733,0.617c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1607.31,292.715l-11.255,24.11c-0.189,0.411 -0.433,0.617 -0.733,0.617c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.056,0.305 -0.167,0.549Z" style="fill-rule:nonzero;"/><path d="M1648.24,292.715l-11.256,24.11c-0.189,0.411 -0.433,0.617 -0.733,0.617c-0.189,0 -0.352,-0.07 -0.491,-0.209c-0.139,-0.138 -0.208,-0.291 -0.208,-0.457c0,-0.134 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.123,-0.255 0.239,-0.422 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.069 0.491,0.208c0.139,0.139 0.208,0.291 0.208,0.458c0,0.122 -0.055,0.305 -0.166,0.549Z" style="fill-rule:nonzero;"/><path d="M102.186,338.316l11.24,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M136.953,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M143.113,338.316l11.24,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.749,-0.616l-11.24,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M177.88,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M184.041,338.316l11.239,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.749,-0.616l-11.24,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M286.358,338.316l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.178 -0.07,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.492,0.208c-0.31,0 -0.56,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.138,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M321.124,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M341.588,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M362.051,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M382.515,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M399.965,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.188,0 -0.352,-0.07 -0.491,-0.208c-0.139,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.238,-0.421 0.349,-0.499c0.111,-0.078 0.245,-0.117 0.4,-0.117c0.189,0 0.352,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M423.442,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M440.892,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.188,0 -0.352,-0.07 -0.491,-0.208c-0.139,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.238,-0.421 0.349,-0.499c0.111,-0.078 0.245,-0.117 0.4,-0.117c0.189,0 0.352,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M450.066,338.316l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M484.833,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M490.993,338.316l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.75,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M525.76,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M546.223,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M554.615,355.699l4.546,0l-4.946,9.192c-0.299,0.555 -0.66,0.832 -1.082,0.832c-0.277,0 -0.513,-0.097 -0.707,-0.291c-0.195,-0.195 -0.292,-0.43 -0.292,-0.708c0,-0.111 0.017,-0.233 0.05,-0.366l2.431,-8.659Z" style="fill-rule:nonzero;"/><path d="M587.15,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M599.022,340.781l-0.017,23.327c0,0.333 -0.063,0.572 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M628.077,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M639.949,340.781l-0.017,23.327c0,0.333 -0.063,0.572 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M680.876,340.781l-0.017,23.327c0,0.333 -0.063,0.572 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M709.931,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M721.803,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M762.73,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M791.785,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M803.657,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M843.585,356.715l0.6,0c0.621,0 1.154,0.219 1.598,0.658c0.444,0.438 0.666,0.968 0.666,1.59c0,0.644 -0.225,1.182 -0.674,1.615c-0.45,0.433 -0.98,0.649 -1.59,0.649l-0.6,0c-0.621,0 -1.154,-0.219 -1.598,-0.657c-0.444,-0.439 -0.666,-0.969 -0.666,-1.59c0,-0.644 0.225,-1.183 0.674,-1.616c0.45,-0.432 0.98,-0.649 1.59,-0.649Z" style="fill-rule:nonzero;"/><path d="M873.639,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M894.103,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M911.553,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.188,0 -0.352,-0.07 -0.491,-0.208c-0.139,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.238,-0.421 0.349,-0.499c0.111,-0.078 0.245,-0.117 0.4,-0.117c0.189,0 0.352,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M926.438,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M955.494,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M967.365,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M982.118,338.316l11.239,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.138,0.138 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.177 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1016.88,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.715,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.382,-0.192 0.715,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1037.35,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1057.81,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1069.68,340.781l-0.017,23.327c0,0.333 -0.063,0.572 -0.191,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.133,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1104.9,338.316l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.178 -0.07,0.336 -0.209,0.475c-0.138,0.138 -0.302,0.208 -0.491,0.208c-0.311,0 -0.56,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.177 0.07,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.492,-0.2c0.299,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1139.66,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1160.13,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1180.59,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1201.06,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1218.51,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.733,0.616c-0.189,0 -0.352,-0.07 -0.491,-0.208c-0.139,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.055,-0.317 0.166,-0.55l11.239,-24.11c0.123,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.4,-0.117c0.188,0 0.352,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M1233.39,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.134,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.066,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1262.45,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1274.32,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M1289.07,338.316l11.239,24.11c0.111,0.244 0.166,0.422 0.166,0.533c0,0.178 -0.069,0.336 -0.208,0.475c-0.139,0.138 -0.302,0.208 -0.491,0.208c-0.311,0 -0.561,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.167,-0.411 -0.167,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.139,-0.133 0.303,-0.2 0.491,-0.2c0.3,0 0.55,0.206 0.75,0.616Z" style="fill-rule:nonzero;"/><path d="M1323.84,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1344.3,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1350.46,338.316l11.239,24.11c0.111,0.244 0.167,0.422 0.167,0.533c0,0.178 -0.07,0.336 -0.208,0.475c-0.139,0.138 -0.303,0.208 -0.492,0.208c-0.31,0 -0.56,-0.206 -0.749,-0.616l-11.239,-24.127c-0.111,-0.233 -0.166,-0.411 -0.166,-0.533c0,-0.177 0.069,-0.333 0.208,-0.466c0.138,-0.133 0.302,-0.2 0.491,-0.2c0.3,0 0.549,0.206 0.749,0.616Z" style="fill-rule:nonzero;"/><path d="M1385.23,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.345,0 0.586,0.064 0.725,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1405.69,370.069l-18.599,0c-0.333,0 -0.571,-0.064 -0.716,-0.192c-0.144,-0.127 -0.216,-0.297 -0.216,-0.507c0,-0.211 0.072,-0.381 0.216,-0.508c0.145,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1426.15,370.069l-18.599,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.144,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.073,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.599,0c0.344,0 0.585,0.064 0.724,0.192c0.139,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.069,0.38 -0.208,0.507c-0.139,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1438.03,340.781l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.345 0.067,-0.589 0.2,-0.733c0.133,-0.144 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.073 0.517,0.217c0.133,0.144 0.199,0.388 0.199,0.733Z" style="fill-rule:nonzero;"/><path d="M1545.92,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.07 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.238,-0.421 0.349,-0.499c0.111,-0.078 0.245,-0.117 0.4,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M1569.4,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.724,0.192c0.139,0.127 0.209,0.297 0.209,0.508c0,0.21 -0.07,0.38 -0.209,0.507c-0.138,0.128 -0.38,0.192 -0.724,0.192Z" style="fill-rule:nonzero;"/><path d="M1586.85,338.816l-11.256,24.11c-0.189,0.41 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.07 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M1610.33,370.069l-18.598,0c-0.333,0 -0.572,-0.064 -0.716,-0.192c-0.145,-0.127 -0.217,-0.297 -0.217,-0.507c0,-0.211 0.072,-0.381 0.217,-0.508c0.144,-0.128 0.383,-0.192 0.716,-0.192l18.598,0c0.344,0 0.586,0.064 0.725,0.192c0.138,0.127 0.208,0.297 0.208,0.508c0,0.21 -0.07,0.38 -0.208,0.507c-0.139,0.128 -0.381,0.192 -0.725,0.192Z" style="fill-rule:nonzero;"/><path d="M1627.78,338.816l-11.256,24.11c-0.188,0.41 -0.433,0.616 -0.732,0.616c-0.189,0 -0.353,-0.07 -0.492,-0.208c-0.138,-0.139 -0.208,-0.292 -0.208,-0.458c0,-0.133 0.056,-0.317 0.167,-0.55l11.239,-24.11c0.122,-0.255 0.239,-0.421 0.35,-0.499c0.111,-0.078 0.244,-0.117 0.399,-0.117c0.189,0 0.353,0.07 0.491,0.208c0.139,0.139 0.208,0.292 0.208,0.458c0,0.122 -0.055,0.306 -0.166,0.55Z" style="fill-rule:nonzero;"/><path d="M803.657,386.881l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.128,0.145 -0.297,0.217 -0.508,0.217c-0.2,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.299,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M844.584,386.881l-0.016,23.327c0,0.333 -0.064,0.572 -0.192,0.716c-0.127,0.145 -0.297,0.217 -0.508,0.217c-0.199,0 -0.366,-0.072 -0.499,-0.217c-0.133,-0.144 -0.2,-0.383 -0.2,-0.716l0,-23.327c0,-0.344 0.067,-0.588 0.2,-0.733c0.133,-0.144 0.3,-0.216 0.499,-0.216c0.211,0 0.383,0.072 0.516,0.216c0.134,0.145 0.2,0.389 0.2,0.733Z" style="fill-rule:nonzero;"/><path d="M803.657,432.981l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.128,0.144 -0.297,0.216 -0.508,0.216c-0.2,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.299,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/><path d="M832.712,462.269l-18.598,0c-0.333,0 -0.572,-0.063 -0.716,-0.191c-0.144,-0.128 -0.217,-0.297 -0.217,-0.508c0,-0.211 0.073,-0.38 0.217,-0.508c0.144,-0.127 0.383,-0.191 0.716,-0.191l18.598,0c0.345,0 0.586,0.064 0.725,0.191c0.139,0.128 0.208,0.297 0.208,0.508c0,0.211 -0.069,0.38 -0.208,0.508c-0.139,0.128 -0.38,0.191 -0.725,0.191Z" style="fill-rule:nonzero;"/><path d="M844.584,432.981l-0.016,23.328c0,0.333 -0.064,0.571 -0.192,0.716c-0.127,0.144 -0.297,0.216 -0.508,0.216c-0.199,0 -0.366,-0.072 -0.499,-0.216c-0.133,-0.145 -0.2,-0.383 -0.2,-0.716l0,-23.328c0,-0.344 0.067,-0.588 0.2,-0.732c0.133,-0.145 0.3,-0.217 0.499,-0.217c0.211,0 0.383,0.072 0.516,0.217c0.134,0.144 0.2,0.388 0.2,0.732Z" style="fill-rule:nonzero;"/></g></svg> \ No newline at end of file
diff --git a/exampleSite/static/media/bastiat.jpg b/exampleSite/static/media/bastiat.jpg
new file mode 100644
index 0000000..399fbe5
--- /dev/null
+++ b/exampleSite/static/media/bastiat.jpg
Binary files differ
diff --git a/exampleSite/static/media/lincoln.gif b/exampleSite/static/media/lincoln.gif
new file mode 100644
index 0000000..a702a42
--- /dev/null
+++ b/exampleSite/static/media/lincoln.gif
Binary files differ
diff --git a/exampleSite/static/media/spooner.jpg b/exampleSite/static/media/spooner.jpg
new file mode 100644
index 0000000..5d42bf5
--- /dev/null
+++ b/exampleSite/static/media/spooner.jpg
Binary files differ
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..65387aa
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,7 @@
+{{ define "main"}}
+ <main id="main">
+ <div>
+ <h1 id="title"><a href="{{ "/" | relURL }}">Go Home</a></h1>
+ </div>
+ </main>
+{{ end }}
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..4be8c1b
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width,initial-scale=1">
+ <title>{{ block "title" . }}{{ .Title }}{{ end }} | {{ .Site.Title }}</title>
+ <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="16x16">
+ <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="32x32">
+ <link rel="icon" type="image/png" href="/assets/favicon.png" sizes="96x96">
+ <link rel="stylesheet" href="/assets/css/style.css" type="text/css">
+ </head>
+ <body>
+ {{ partial "header.html" . }}
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ {{ partial "footer.html" . }}
+ </body>
+</html>
diff --git a/layouts/_default/index.html b/layouts/_default/index.html
new file mode 100644
index 0000000..ab09812
--- /dev/null
+++ b/layouts/_default/index.html
@@ -0,0 +1,19 @@
+{{ define "main" }}
+
+{{ .Content }}
+
+{{ if .Params.Listpage }}
+
+{{ with .Site.GetPage .Params.Listpage }}
+
+{{ range .Pages }}
+
+{{ partial "preview-post.html" (dict "page" . "full" "true") }}
+
+{{ end }}
+
+{{ end }}
+
+{{ end }}
+
+{{ end }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..f5e0e74
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,11 @@
+{{ define "main" }}
+
+{{ .Content }}
+
+{{ range .Pages }}
+
+{{ partial "preview-post.html" . }}
+
+{{ end }}
+
+{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..02c9d70
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,25 @@
+{{ define "main" }}
+
+<h2>{{ .Title }}</h2>
+
+<em>{{ .PublishDate.Format "January 2, 2006" }}</em>
+
+{{ .Content }}
+
+<p>
+{{ if .Param "authors" }}
+
+{{ partial "list-taxonomy-terms.html" (dict "parent" "authors" "terms" (.Param "authors") "label" "Written by:") }}
+
+{{ end }}
+</p>
+
+<p>
+{{ if .Param "tags" }}
+
+{{ partial "list-taxonomy-terms.html" (dict "parent" "tags" "terms" (.Param "tags") "label" "Tags:") }}
+
+{{ end }}
+</p>
+
+{{ end }}
diff --git a/layouts/_default/standalone.html b/layouts/_default/standalone.html
new file mode 100644
index 0000000..e30b46b
--- /dev/null
+++ b/layouts/_default/standalone.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+{{ .Content }}
+
+{{ end }}
+
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..518162c
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,14 @@
+<footer>
+ <hr />
+ <ul>
+ {{ range .Site.Menus.main }}
+ <li>
+ <a href={{ .URL }}>{{ .Title }}</a>
+ </li>
+ {{ end }}
+
+ <li>
+ <em id="updated">Updated: {{ now.Format "January 2, 2006" }}</em>
+ </li>
+ </ul>
+ </footer>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..0d39613
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,12 @@
+<a href="/">
+ {{ if (.Params.HeaderText) }}
+ <h1>{{ .Params.HeaderText }}</h1>
+ {{ else if (.Params.HeaderImage) }}
+ <img src="{{ .Params.HeaderImage }}" />
+ {{ else if ($.Site.Params.HeaderImage) }}
+ <img src="{{ $.Site.Params.HeaderImage }}" />
+ {{ else }}
+ <h1>{{ $.Site.Params.HeaderText }}</h1>
+ {{ end }}
+</a>
+<hr />
diff --git a/layouts/partials/list-taxonomy-terms.html b/layouts/partials/list-taxonomy-terms.html
new file mode 100644
index 0000000..9c813eb
--- /dev/null
+++ b/layouts/partials/list-taxonomy-terms.html
@@ -0,0 +1,13 @@
+<em>{{ $.label }}
+
+{{ range $term := .terms }}
+
+ {{ $term_path := lower (replace ($term) " " "-") }}
+ {{ $term_page := site.GetPage (path.Join $.parent $term_path) }}
+ {{ $url := $term_page.Permalink}}
+
+ <a href={{ $url }}>{{ $term }}</a>
+
+{{ end }}
+
+</em>
diff --git a/layouts/partials/preview-post.html b/layouts/partials/preview-post.html
new file mode 100644
index 0000000..2de519a
--- /dev/null
+++ b/layouts/partials/preview-post.html
@@ -0,0 +1,70 @@
+{{ if isset . "full" }}
+{{ if .full }}
+
+<!-- Show full post -->
+
+{{ if .page.PublishDate }}
+
+<!-- ...link with publish date -->
+
+<h2>{{ .page.Title }}</h2>
+
+<a href={{ .Permalink }}>
+ <em>{{ .page.PublishDate.Format "January 2, 2006" }}</em>
+</a>
+
+{{ else }}
+
+<!-- link with NO publish date -->
+
+<a href={{ .Permalink }}>
+ <h2>{{ .page.Title }}</h2>
+</a>
+
+{{ end }}
+
+<!-- /end link -->
+
+<div class="list-content">
+ {{ .page.Content }}
+</div>
+
+{{ end }}
+
+<!-- /end full post -->
+
+{{ else }}
+
+<!-- Show truncated post -->
+
+{{ if .PublishDate }}
+
+<!-- ...link with publish date -->
+
+<em>{{ .Title }}</em><span> - </span>
+
+<a href={{ .Permalink }}>
+ <em>{{ .PublishDate.Format "January 2, 2006" }}</em>
+</a>
+
+
+
+<!-- ...link with NO publish date -->
+
+{{ else }}
+
+<a href={{ .Permalink }}>
+ <em>{{ .Title }}</em>
+</a>
+
+{{ end }}
+
+<!-- /end link -->
+
+{{ .Content | truncate 200 }}
+
+{{ end }}
+
+<!-- /end truncated post -->
+
+<hr />
diff --git a/layouts/shortcodes/newsletter-form.html b/layouts/shortcodes/newsletter-form.html
new file mode 100644
index 0000000..2313186
--- /dev/null
+++ b/layouts/shortcodes/newsletter-form.html
@@ -0,0 +1,12 @@
+<form action="" method="POST" accept-charset="utf-8" style="margin-bottom: 15px;">
+ <label for="email">Email: </label><br />
+ <input type="email" name="email" id="email"/>
+ <br/>
+ <div style="display:none;">
+ <label for="hp">HP</label><br/>
+ <input type="text" name="hp" id="hp"/>
+ </div>
+ <input type="hidden" name="list" value="some-random-string"/>
+ <input type="hidden" name="subform" value="yes"/>
+ <input type="submit" name="submit" id="submit" style="margin-top: 3px;"/>
+</form>
diff --git a/layouts/shortcodes/show-table.html b/layouts/shortcodes/show-table.html
new file mode 100644
index 0000000..48fb68f
--- /dev/null
+++ b/layouts/shortcodes/show-table.html
@@ -0,0 +1,29 @@
+{{ $use_header := .Get "use_header" }}
+{{ $classes := .Get "classes" }}
+
+<table class="{{ $classes }}">
+{{ $data := index $.Site.Data (.Get "table_data") }}
+
+ {{ range $index, $row := $data }}
+ {{ if and (eq $index 0) $use_header }}
+
+ <thead>
+ <tr>
+ {{ range $cell := $row }}
+ <th>{{ $cell }}</th>
+ {{ end }}
+ </tr>
+ </thead>
+
+ {{ else }}
+
+ <tbody>
+ {{ range $cell := $row }}
+ <td>{{ $cell }}</td>
+ {{ end }}
+ </tbody>
+
+ {{ end }}
+ {{ end }}
+</table>
+
diff --git a/layouts/taxonomy/list.html b/layouts/taxonomy/list.html
new file mode 100644
index 0000000..f1c0b93
--- /dev/null
+++ b/layouts/taxonomy/list.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+
+<h2>{{ .Title }}</h2>
+
+{{ .Content }}
+
+{{ range .Pages }}
+
+{{ partial "preview-post.html" . }}
+
+{{ end }}
+
+{{ end }}
diff --git a/layouts/taxonomy/terms.html b/layouts/taxonomy/terms.html
new file mode 100644
index 0000000..a4054b6
--- /dev/null
+++ b/layouts/taxonomy/terms.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+
+
+<h2>{{ .Title }}</h2>
+
+{{ range .Pages }}
+
+<ul>
+ <li><a href={{ .Permalink}}>{{ .Title }}</a></li>
+</ul>
+
+{{ end }}
+
+{{ end }}
diff --git a/static/assets/css/style.css b/static/assets/css/style.css
new file mode 100644
index 0000000..c02063b
--- /dev/null
+++ b/static/assets/css/style.css
@@ -0,0 +1,87 @@
+html,
+body {
+ font-family: sans-serif;
+}
+
+main {
+ min-height: 100vh;
+ padding: 1em;
+ overflow-x: scroll;
+}
+
+img {
+ max-width: 100%;
+}
+
+footer ul {
+ margin: 0;
+ padding: 0;
+}
+
+footer li {
+ margin: 0;
+ display: block;
+ padding: 2px 3px;
+}
+
+blockquote {
+ margin-left: 0.75em;
+ color: #3b3b3b;
+ font-size: 95%;
+}
+
+pre,
+code {
+ overflow-x: scroll;
+ padding-bottom: 25px;
+ color: #3b3b3b;
+ font-size: 95%;
+}
+
+table {
+ min-width: 90vw;
+}
+
+th {
+ text-align: left;
+ white-space: nowrap;
+ padding: 3px 6px;
+}
+
+td {
+ white-space: nowrap;
+ padding: 3px 6px;
+}
+
+table.table-with-borders {
+ border-collapse: collapse;
+}
+
+table.table-with-borders td {
+ border: 1px solid #bdbdbd;
+ padding: 5px 10px;
+}
+
+table.table-with-borders th {
+ background: #eaeaea;
+}
+
+@media (min-width: 699px) {
+ main {
+ width: 500px;
+ overflow-x: visible;
+ }
+
+ img {
+ max-width: 500px;
+ }
+
+ footer li {
+ display: inline;
+ }
+
+ #updated {
+ border-left: 1px solid #737373;
+ padding-left: 5px;
+ }
+}