<!doctype html><html lang="en">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  <meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
  <title>P2247R0: 2020 Library Evolution Report</title>
<style data-fill-with="stylesheet">/******************************************************************************
 *                   Style sheet for the W3C specifications                   *
 *
 * Special classes handled by this style sheet include:
 *
 * Indices
 *   - .toc for the Table of Contents (<ol class="toc">)
 *     + <span class="secno"> for the section numbers
 *   - #toc for the Table of Contents (<nav id="toc">)
 *   - ul.index for Indices (<a href="#ref">term</a><span>, in §N.M</span>)
 *   - table.index for Index Tables (e.g. for properties or elements)
 *
 * Structural Markup
 *   - table.data for general data tables
 *     -> use 'scope' attribute, <colgroup>, <thead>, and <tbody> for best results !
 *     -> use <table class='complex data'> for extra-complex tables
 *     -> use <td class='long'> for paragraph-length cell content
 *     -> use <td class='pre'> when manual line breaks/indentation would help readability
 *   - dl.switch for switch statements
 *   - ol.algorithm for algorithms (helps to visualize nesting)
 *   - .figure and .caption (HTML4) and figure and figcaption (HTML5)
 *     -> .sidefigure for right-floated figures
 *   - ins/del
 *
 * Code
 *   - pre and code
 *
 * Special Sections
 *   - .note       for informative notes             (div, p, span, aside, details)
 *   - .example    for informative examples          (div, p, pre, span)
 *   - .issue      for issues                        (div, p, span)
 *   - .assertion  for assertions                    (div, p, span)
 *   - .advisement for loud normative statements     (div, p, strong)
 *   - .annoying-warning for spec obsoletion notices (div, aside, details)
 *
 * Definition Boxes
 *   - pre.def   for WebIDL definitions
 *   - table.def for tables that define other entities (e.g. CSS properties)
 *   - dl.def    for definition lists that define other entitles (e.g. HTML elements)
 *
 * Numbering
 *   - .secno for section numbers in .toc and headings (<span class='secno'>3.2</span>)
 *   - .marker for source-inserted example/figure/issue numbers (<span class='marker'>Issue 4</span>)
 *   - ::before styled for CSS-generated issue/example/figure numbers:
 *     -> Documents wishing to use this only need to add
 *        figcaption::before,
 *        .caption::before { content: "Figure "  counter(figure) " ";  }
 *        .example::before { content: "Example " counter(example) " "; }
 *        .issue::before   { content: "Issue "   counter(issue) " ";   }
 *
 * Header Stuff (ignore, just don't conflict with these classes)
 *   - .head for the header
 *   - .copyright for the copyright
 *
 * Miscellaneous
 *   - .overlarge for things that should be as wide as possible, even if
 *     that overflows the body text area. This can be used on an item or
 *     on its container, depending on the effect desired.
 *     Note that this styling basically doesn't help at all when printing,
 *     since A4 paper isn't much wider than the max-width here.
 *     It's better to design things to fit into a narrower measure if possible.
 *   - js-added ToC jump links (see fixup.js)
 *
 ******************************************************************************/

/* color variables included separately for reliability */

/******************************************************************************/
/*                                   Body                                     */
/******************************************************************************/

	html {
		color: black;
		color: var(--text);
		background-color: white;
		background-color: var(--bg);
	}

	body {
		counter-reset: example figure issue;

		/* Layout */
		max-width: 50em;               /* limit line length to 50em for readability   */
		margin: 0 auto;                /* center text within page                     */
		padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */
		padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag     */

		/* Typography */
		line-height: 1.5;
		font-family: sans-serif;
		widows: 2;
		orphans: 2;
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: auto;

		background: transparent top left fixed no-repeat;
		background-size: 25px auto;
	}


/******************************************************************************/
/*                         Front Matter & Navigation                          */
/******************************************************************************/

/** Header ********************************************************************/

	div.head { margin-bottom: 1em }
	div.head hr { border-style: solid; }

	div.head h1 {
		font-weight: bold;
		margin: 0 0 .1em;
		font-size: 220%;
	}

	div.head h2 { margin-bottom: 1.5em;}

/** W3C Logo ******************************************************************/

	.head .logo {
		float: right;
		margin: 0.4rem 0 0.2rem .4rem;
	}

	.head img[src*="logos/W3C"] {
		display: block;
		border: solid #1a5e9a;
		border: solid var(--logo-bg);
		border-width: .65rem .7rem .6rem;
		border-radius: .4rem;
		background: #1a5e9a;
		background: var(--logo-bg);
		color: white;
		color: var(--logo-text);
		font-weight: bold;
	}

	.head a:hover > img[src*="logos/W3C"],
	.head a:focus > img[src*="logos/W3C"] {
		opacity: .8;
	}

	.head a:active > img[src*="logos/W3C"] {
		background: #c00;
		background: var(--logo-active-bg);
		border-color: #c00;
		border-color: var(--logo-active-bg);
	}

	/* see also additional rules in Link Styling section */

/** Copyright *****************************************************************/

	p.copyright,
	p.copyright small { font-size: small }

/** Back to Top / ToC Toggle **************************************************/

	@media print {
		#toc-nav {
			display: none;
		}
	}
	@media not print {
		#toc-nav {
			position: fixed;
			z-index: 2;
			bottom: 0; left: 0;
			margin: 0;
			min-width: 1.33em;
			border-top-right-radius: 2rem;
			box-shadow: 0 0 2px;
			font-size: 1.5em;
		}
		#toc-nav > a {
			display: block;
			white-space: nowrap;

			height: 1.33em;
			padding: .1em 0.3em;
			margin: 0;

			box-shadow: 0 0 2px;
			border: none;
			border-top-right-radius: 1.33em;

			color: #707070;
			color: var(--tocnav-normal-text);
			background: white;
			background: var(--tocnav-normal-bg);
		}
		#toc-nav > a:hover,
		#toc-nav > a:focus {
			color: black;
			color: var(--tocnav-hover-text);
			background: #f8f8f8;
			background: var(--tocnav-hover-bg);
		}
		#toc-nav > a:active {
			color: #c00;
			color: var(--tocnav-active-text);
			background: white;
			background: var(--tocnav-active-bg);
		}

		#toc-nav > #toc-jump {
			padding-bottom: 2em;
			margin-bottom: -1.9em;
		}

		/* statusbar gets in the way on keyboard focus; remove once browsers fix */
		#toc-nav > a[href="#toc"]:not(:hover):focus:last-child {
			padding-bottom: 1.5rem;
		}

		#toc-nav:not(:hover) > a:not(:focus) > span + span {
			/* Ideally this uses :focus-within on #toc-nav */
			display: none;
		}
		#toc-nav > a > span + span {
			padding-right: 0.2em;
		}
	}

/** ToC Sidebar ***************************************************************/

	/* Floating sidebar */
	@media screen {
		body.toc-sidebar #toc {
			position: fixed;
			top: 0; bottom: 0;
			left: 0;
			width: 23.5em;
			max-width: 80%;
			max-width: calc(100% - 2em - 26px);
			overflow: auto;
			padding: 0 1em;
			padding-left: 42px;
			padding-left: calc(1em + 26px);
			color: black;
			color: var(--tocsidebar-text);
			background: inherit;
			background-color: #f7f8f9;
			background-color: var(--tocsidebar-bg);
			z-index: 1;
			box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset;
			box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset;
		}
		body.toc-sidebar #toc h2 {
			margin-top: .8rem;
			font-variant: small-caps;
			font-variant: all-small-caps;
			text-transform: lowercase;
			font-weight: bold;
			color: gray;
			color: hsla(203,20%,40%,.7);
			color: var(--tocsidebar-heading-text);
		}
		body.toc-sidebar #toc-jump:not(:focus) {
			width: 0;
			height: 0;
			padding: 0;
			position: absolute;
			overflow: hidden;
		}
	}
	/* Hide main scroller when only the ToC is visible anyway */
	@media screen and (max-width: 28em) {
		body.toc-sidebar {
			overflow: hidden;
		}
	}

	/* Sidebar with its own space */
	@media screen and (min-width: 78em) {
		body:not(.toc-inline) #toc {
			position: fixed;
			top: 0; bottom: 0;
			left: 0;
			width: 23.5em;
			overflow: auto;
			padding: 0 1em;
			padding-left: 42px;
			padding-left: calc(1em + 26px);
			color: black;
			color: var(--tocsidebar-text);
			background: inherit;
			background-color: #f7f8f9;
			background-color: var(--tocsidebar-bg);
			z-index: 1;
			box-shadow: -.1em 0 .25em rgba(0,0,0,.1) inset;
			box-shadow: -.1em 0 .25em var(--tocsidebar-shadow) inset;
		}
		body:not(.toc-inline) #toc h2 {
			margin-top: .8rem;
			font-variant: small-caps;
			font-variant: all-small-caps;
			text-transform: lowercase;
			font-weight: bold;
			color: gray;
			color: hsla(203,20%,40%,.7);
			color: var(--tocsidebar-heading-text);
		}

		body:not(.toc-inline) {
			padding-left: 29em;
		}
		/* See also Overflow section at the bottom */

		body:not(.toc-inline) #toc-jump:not(:focus) {
			width: 0;
			height: 0;
			padding: 0;
			position: absolute;
			overflow: hidden;
		}
	}
	@media screen and (min-width: 90em) {
		body:not(.toc-inline) {
			margin: 0 4em;
		}
	}

/******************************************************************************/
/*                                Sectioning                                  */
/******************************************************************************/

/** Headings ******************************************************************/

	h1, h2, h3, h4, h5, h6, dt {
		page-break-after: avoid;
		page-break-inside: avoid;
		font: 100% sans-serif;   /* Reset all font styling to clear out UA styles */
		font-family: inherit;    /* Inherit the font family. */
		line-height: 1.2;        /* Keep wrapped headings compact */
		hyphens: manual;         /* Hyphenated headings look weird */
	}

	h2, h3, h4, h5, h6 {
		margin-top: 3rem;
	}

	h1, h2, h3 {
		color: #005A9C;
		color: var(--heading-text);
	}

	h1 { font-size: 170%; }
	h2 { font-size: 140%; }
	h3 { font-size: 120%; }
	h4 { font-weight: bold; }
	h5 { font-style: italic; }
	h6 { font-variant: small-caps; }
	dt { font-weight: bold; }

/** Subheadings ***************************************************************/

	h1 + h2,
	#subtitle {
		/* #subtitle is a subtitle in an H2 under the H1 */
		margin-top: 0;
	}
	h2 + h3,
	h3 + h4,
	h4 + h5,
	h5 + h6 {
		margin-top: 1.2em; /* = 1 x line-height */
	}

/** Section divider ***********************************************************/

	:not(.head) > :not(.head) + hr {
		font-size: 1.5em;
		text-align: center;
		margin: 1em auto;
		height: auto;
		color: black;
		color: var(--hr-text);
		border: transparent solid 0;
		background: transparent;
	}
	:not(.head) > hr::before {
		content: "\2727\2003\2003\2727\2003\2003\2727";
	}

/******************************************************************************/
/*                            Paragraphs and Lists                            */
/******************************************************************************/

	p {
		margin: 1em 0;
	}

	dd > p:first-child,
	li > p:first-child {
		margin-top: 0;
	}

	ul, ol {
		margin-left: 0;
		padding-left: 2em;
	}

	li {
		margin: 0.25em 0 0.5em;
		padding: 0;
	}

	dl dd {
		margin: 0 0 .5em 2em;
	}

	.head dd + dd { /* compact for header */
		margin-top: -.5em;
	}

	/* Style for algorithms */
	ol.algorithm ol:not(.algorithm),
	.algorithm > ol ol:not(.algorithm) {
	 border-left: 0.5em solid #DEF;
	 border-left: 0.5em solid var(--algo-border);
	}

	/* Put nice boxes around each algorithm. */
	[data-algorithm]:not(.heading) {
	  padding: .5em;
	  border: thin solid #ddd;
	  border: thin solid var(--algo-border);
	  border-radius: .5em;
	  margin: .5em calc(-0.5em - 1px);
	}
	[data-algorithm]:not(.heading) > :first-child {
	  margin-top: 0;
	}
	[data-algorithm]:not(.heading) > :last-child {
	  margin-bottom: 0;
	}

	/* Style for switch/case <dl>s */
	dl.switch > dd > ol.only,
	dl.switch > dd > .only > ol {
	 margin-left: 0;
	}
	dl.switch > dd > ol.algorithm,
	dl.switch > dd > .algorithm > ol {
	 margin-left: -2em;
	}
	dl.switch {
	 padding-left: 2em;
	}
	dl.switch > dt {
	 text-indent: -1.5em;
	 margin-top: 1em;
	}
	dl.switch > dt + dt {
	 margin-top: 0;
	}
	dl.switch > dt::before {
	 content: '\21AA';
	 padding: 0 0.5em 0 0;
	 display: inline-block;
	 width: 1em;
	 text-align: right;
	 line-height: 0.5em;
	}

/** Terminology Markup ********************************************************/


/******************************************************************************/
/*                                 Inline Markup                              */
/******************************************************************************/

/** Terminology Markup ********************************************************/
	dfn   { /* Defining instance */
		font-weight: bolder;
	}
	a > i { /* Instance of term */
		font-style: normal;
	}
	dt dfn code, code.idl {
		font-size: medium;
	}
	dfn var {
		font-style: normal;
	}

/** Change Marking ************************************************************/

	del {
		color: red;
		color: var(--del-text);
		background: transparent;
		background: var(--del-bg);
		text-decoration: line-through;
	}
	ins {
		color: #080;
		color: var(--ins-text);
		background: transparent;
		background: var(--ins-bg);
		text-decoration: underline;
	}

/** Miscellaneous improvements to inline formatting ***************************/

	sup {
		vertical-align: super;
		font-size: 80%
	}

/******************************************************************************/
/*                                    Code                                    */
/******************************************************************************/

/** General monospace/pre rules ***********************************************/

	pre, code, samp {
		font-family: Menlo, Consolas, "DejaVu Sans Mono", Monaco, monospace;
		font-size: .9em;
		hyphens: none;
		text-transform: none;
		text-align: left;
		text-align: start;
		font-variant: normal;
		orphans: 3;
		widows: 3;
		page-break-before: avoid;
	}
	pre code,
	code code {
		font-size: 100%;
	}

	pre {
		margin-top: 1em;
		margin-bottom: 1em;
		overflow: auto;
	}

/** Inline Code fragments *****************************************************/

  /* Do something nice. */

/******************************************************************************/
/*                                    Links                                   */
/******************************************************************************/

/** General Hyperlinks ********************************************************/

	/* We hyperlink a lot, so make it less intrusive */
	a[href] {
		color: #034575;
		color: var(--a-normal-text);
		text-decoration: none;
		border-bottom: 1px solid #707070;
		border-bottom: 1px solid var(--a-normal-underline);
		/* Need a bit of extending for it to look okay */
		padding: 0 1px 0;
		margin: 0 -1px 0;
	}
	a:visited {
		color: #034575;
		color: var(--a-visited-text);
		border-bottom-color: #bbb;
		border-bottom-color: var(--a-visited-underline);
	}

	/* Use distinguishing colors when user is interacting with the link */
	a[href]:focus,
	a[href]:hover {
		background: #f8f8f8;
		background: rgba(75%, 75%, 75%, .25);
		background: var(--a-hover-bg);
		border-bottom-width: 3px;
		margin-bottom: -2px;
	}
	a[href]:active {
		color: #c00;
		color: var(--a-active-text);
		border-color: #c00;
		border-color: var(--a-active-underline);
	}

	/* Backout above styling for W3C logo */
	.head .logo,
	.head .logo a {
		border: none;
		text-decoration: none;
		background: transparent;
	}

/******************************************************************************/
/*                                    Images                                  */
/******************************************************************************/

	img {
		border-style: none;
	}

	img, svg {
		/* Intentionally not color-scheme aware. */
		background: white;
	}

	/* For autogen numbers, add
	   .caption::before, figcaption::before { content: "Figure " counter(figure) ". "; }
	*/

	figure, .figure, .sidefigure {
		page-break-inside: avoid;
		text-align: center;
		margin: 2.5em 0;
	}
	.figure img,    .sidefigure img,    figure img,
	.figure object, .sidefigure object, figure object {
		max-width: 100%;
		margin: auto;
		height: auto;
	}
	.figure pre, .sidefigure pre, figure pre {
		text-align: left;
		display: table;
		margin: 1em auto;
	}
	.figure table, figure table {
		margin: auto;
	}
	@media screen and (min-width: 20em) {
		.sidefigure {
			float: right;
			width: 50%;
			margin: 0 0 0.5em 0.5em
		}
	}
	.caption, figcaption, caption {
		font-style: italic;
		font-size: 90%;
	}
	.caption::before, figcaption::before, figcaption > .marker {
		font-weight: bold;
	}
	.caption, figcaption {
		counter-increment: figure;
	}

	/* DL list is indented 2em, but figure inside it is not */
	dd > .figure, dd > figure { margin-left: -2em }

/******************************************************************************/
/*                             Colored Boxes                                  */
/******************************************************************************/

	.issue, .note, .example, .assertion, .advisement, blockquote {
		padding: .5em;
		border: .5em;
		border-left-style: solid;
		page-break-inside: avoid;
	}
	span.issue, span.note {
		padding: .1em .5em .15em;
		border-right-style: solid;
	}

	.issue,
	.note,
	.example,
	.advisement,
	.assertion,
	blockquote {
		margin: 1em auto;
	}
	.note  > p:first-child,
	.issue > p:first-child,
	blockquote > :first-child {
		margin-top: 0;
	}
	blockquote > :last-child {
		margin-bottom: 0;
	}


	.issue::before, .issue > .marker,
	.example::before, .example > .marker,
	.note::before, .note > .marker,
	details.note > summary > .marker {
		text-transform: uppercase;
		padding-right: 1em;
	}

	.example::before, .example > .marker {
		display: block;
		padding-right: 0em;
	}

/** Blockquotes ***************************************************************/

	blockquote {
		border-color: silver;
		border-color: var(--blockquote-border);
		background: transparent;
		background: var(--blockquote-bg);
		color: currentcolor;
		color: var(--blockquote-text);
	}

/** Open issue ****************************************************************/

	.issue {
		border-color: #e05252;
		border-color: var(--issue-border);
		background: #fbe9e9;
		background: var(--issue-bg);
		color: black;
		color: var(--issue-text);
		counter-increment: issue;
		overflow: auto;
	}
	.issue::before, .issue > .marker {
		color: #831616;
		color: var(--issueheading-text);
	}
	/* Add .issue::before { content: "Issue " counter(issue) " "; } for autogen numbers,
	   or use class="marker" to mark up the issue number in source. */

/** Example *******************************************************************/

	.example {
		border-color: #e0cb52;
		border-color: var(--example-border);
		background: #fcfaee;
		background: var(--example-bg);
		color: black;
		color: var(--example-text);
		counter-increment: example;
		overflow: auto;
		clear: both;
	}
	.example::before, .example > .marker {
		color: #574b0f;
		color: var(--exampleheading-text);
	}
	/* Add .example::before { content: "Example " counter(example) " "; } for autogen numbers,
	   or use class="marker" to mark up the example number in source. */

/** Non-normative Note ********************************************************/

	.note {
		border-color: #52e052;
		border-color: var(--note-border);
		background: #e9fbe9;
		background: var(--note-bg);
		color: black;
		color: var(--note-text);
		overflow: auto;
	}

	.note::before, .note > .marker,
	details.note > summary {
		color: hsl(120, 70%, 30%);
		color: var(--noteheading-text);
	}
	/* Add .note::before { content: "Note "; } for autogen label,
	   or use class="marker" to mark up the label in source. */

	details.note[open] > summary {
		border-bottom: 1px silver solid;
		border-bottom: 1px var(--notesummary-underline) solid;
	}

/** Assertion Box *************************************************************/
	/*  for assertions in algorithms */

	.assertion {
		border-color: #AAA;
		border-color: var(--assertion-border);
		background: #EEE;
		background: var(--assertion-bg);
		color: black;
		color: var(--assertion-text);
	}

/** Advisement Box ************************************************************/
	/*  for attention-grabbing normative statements */

	.advisement {
		border-color: orange;
		border-color: var(--advisement-border);
		border-style: none solid;
		background: #fec;
		background: var(--advisement-bg);
		color: black;
		color: var(--advisement-text);
	}
	strong.advisement {
		display: block;
		text-align: center;
	}
	.advisement::before, .advisement > .marker {
		color: #b35f00;
		color: var(--advisementheading-text);
	}

/** Spec Obsoletion Notice ****************************************************/
	/* obnoxious obsoletion notice for older/abandoned specs. */

	details {
		display: block;
	}
	summary {
		font-weight: bolder;
	}

	.annoying-warning:not(details),
	details.annoying-warning:not([open]) > summary,
	details.annoying-warning[open] {
		background: hsla(40,100%,50%,0.95);
		background: var(--warning-bg);
		color: black;
		color: var(--warning-text);
		padding: .75em 1em;
		border: red;
		border: var(--warning-border);
		border-style: solid none;
		box-shadow: 0 2px 8px black;
		text-align: center;
	}
	.annoying-warning :last-child {
		margin-bottom: 0;
	}

	@media not print {
		details.annoying-warning[open] {
			position: fixed;
			left: 0;
			right: 0;
			bottom: 2em;
			z-index: 1000;
		}
	}

	details.annoying-warning:not([open]) > summary {
		text-align: center;
	}

/** Entity Definition Boxes ***************************************************/

	.def {
		padding: .5em 1em;
		background: #def;
		background: var(--def-bg);
		margin: 1.2em 0;
		border-left: 0.5em solid #8ccbf2;
		border-left: 0.5em solid var(--def-border);
		color: black;
		color: var(--def-text);
	}

/******************************************************************************/
/*                                    Tables                                  */
/******************************************************************************/

	th, td {
		text-align: left;
		text-align: start;
	}

/** Property/Descriptor Definition Tables *************************************/

	table.def {
		/* inherits .def box styling, see above */
		width: 100%;
		border-spacing: 0;
	}

	table.def td,
	table.def th {
		padding: 0.5em;
		vertical-align: baseline;
		border-bottom: 1px solid #bbd7e9;
		border-bottom: 1px solid var(--defrow-border);
	}

	table.def > tbody > tr:last-child th,
	table.def > tbody > tr:last-child td {
		border-bottom: 0;
	}

	table.def th {
		font-style: italic;
		font-weight: normal;
		padding-left: 1em;
		width: 3em;
	}

	/* For when values are extra-complex and need formatting for readability */
	table td.pre {
		white-space: pre-wrap;
	}

	/* A footnote at the bottom of a def table */
	table.def td.footnote {
		padding-top: 0.6em;
	}
	table.def td.footnote::before {
		content: " ";
		display: block;
		height: 0.6em;
		width: 4em;
		border-top: thin solid;
	}

/** Data tables (and properly marked-up index tables) *************************/
	/*
		 <table class="data"> highlights structural relationships in a table
		 when correct markup is used (e.g. thead/tbody, th vs. td, scope attribute)

		 Use class="complex data" for particularly complicated tables --
		 (This will draw more lines: busier, but clearer.)

		 Use class="long" on table cells with paragraph-like contents
		 (This will adjust text alignment accordingly.)
		 Alternately use class="longlastcol" on tables, to have the last column assume "long".
	*/

	table {
		word-wrap: normal;
		overflow-wrap: normal;
		hyphens: manual;
	}

	table.data,
	table.index {
		margin: 1em auto;
		border-collapse: collapse;
		border: hidden;
		width: 100%;
	}
	table.data caption,
	table.index caption {
		max-width: 50em;
		margin: 0 auto 1em;
	}

	table.data td,  table.data th,
	table.index td, table.index th {
		padding: 0.5em 1em;
		border-width: 1px;
		border-color: silver;
		border-color: var(--datacell-border);
		border-top-style: solid;
	}

	table.data thead td:empty {
		padding: 0;
		border: 0;
	}

	table.data  thead,
	table.index thead,
	table.data  tbody,
	table.index tbody {
		border-bottom: 2px solid;
	}

	table.data colgroup,
	table.index colgroup {
		border-left: 2px solid;
	}

	table.data  tbody th:first-child,
	table.index tbody th:first-child  {
		border-right: 2px solid;
		border-top: 1px solid silver;
		border-top: 1px solid var(--datacell-border);
		padding-right: 1em;
	}

	table.data th[colspan],
	table.data td[colspan] {
		text-align: center;
	}

	table.complex.data th,
	table.complex.data td {
		border: 1px solid silver;
		border: 1px solid var(--datacell-border);
		text-align: center;
	}

	table.data.longlastcol td:last-child,
	table.data td.long {
		vertical-align: baseline;
		text-align: left;
	}

	table.data img {
		vertical-align: middle;
	}


/*
Alternate table alignment rules

	table.data,
	table.index {
		text-align: center;
	}

	table.data  thead th[scope="row"],
	table.index thead th[scope="row"] {
		text-align: right;
	}

	table.data  tbody th:first-child,
	table.index tbody th:first-child  {
		text-align: right;
	}

Possible extra rowspan handling

	table.data  tbody th[rowspan]:not([rowspan='1']),
	table.index tbody th[rowspan]:not([rowspan='1']),
	table.data  tbody td[rowspan]:not([rowspan='1']),
	table.index tbody td[rowspan]:not([rowspan='1']) {
		border-left: 1px solid silver;
	}

	table.data  tbody th[rowspan]:first-child,
	table.index tbody th[rowspan]:first-child,
	table.data  tbody td[rowspan]:first-child,
	table.index tbody td[rowspan]:first-child{
		border-left: 0;
		border-right: 1px solid silver;
	}
*/

/******************************************************************************/
/*                                  Indices                                   */
/******************************************************************************/


/** Table of Contents *********************************************************/

	.toc a {
		/* More spacing; use padding to make it part of the click target. */
		padding-top: 0.1rem;
		/* Larger, more consistently-sized click target */
		display: block;
		/* Reverse color scheme */
		color: black;
		color: var(--toclink-text);
		border-color: #3980b5;
		border-color: var(--toclink-underline);
	}
	.toc a:visited {
		color: black;
		color: var(--toclink-visited-text);
		border-color: #054572;
		border-color: var(--toclink-visited-underline);
	}
	.toc a:not(:focus):not(:hover) {
		/* Allow colors to cascade through from link styling */
		border-bottom-color: transparent;
	}

	.toc, .toc ol, .toc ul, .toc li {
		list-style: none; /* Numbers must be inlined into source */
		/* because generated content isn't search/selectable and markers can't do multilevel yet */
		margin:  0;
		padding: 0;
		line-height: 1.1rem; /* consistent spacing */
	}

	/* ToC not indented until third level, but font style & margins show hierarchy */
	.toc > li             { font-weight: bold;   }
	.toc > li li          { font-weight: normal; }
	.toc > li li li       { font-size:   95%;    }
	.toc > li li li li    { font-size:   90%;    }
	.toc > li li li li .secno { font-size: 85%; }
	.toc > li li li li li { font-size:   85%;    }
	.toc > li li li li li .secno { font-size: 100%; }

	/* @supports not (display:grid) { */
		.toc > li             { margin: 1.5rem 0;    }
		.toc > li li          { margin: 0.3rem 0;    }
		.toc > li li li       { margin-left: 2rem;   }

		/* Section numbers in a column of their own */
		.toc .secno {
			float: left;
			width: 4rem;
			white-space: nowrap;
		}

		.toc li {
			clear: both;
		}

		:not(li) > .toc              { margin-left:  5rem; }
		.toc .secno                  { margin-left: -5rem; }
		.toc > li li li .secno       { margin-left: -7rem; }
		.toc > li li li li .secno    { margin-left: -9rem; }
		.toc > li li li li li .secno { margin-left: -11rem; }

		/* Tighten up indentation in narrow ToCs */
		@media (max-width: 30em) {
			:not(li) > .toc              { margin-left:  4rem; }
			.toc .secno                  { margin-left: -4rem; }
			.toc > li li li              { margin-left:  1rem; }
			.toc > li li li .secno       { margin-left: -5rem; }
			.toc > li li li li .secno    { margin-left: -6rem; }
			.toc > li li li li li .secno { margin-left: -7rem; }
		}
		/* Loosen it on wide screens */
		@media screen and (min-width: 78em) {
			body:not(.toc-inline) :not(li) > .toc              { margin-left:  4rem; }
			body:not(.toc-inline) .toc .secno                  { margin-left: -4rem; }
			body:not(.toc-inline) .toc > li li li              { margin-left:  1rem; }
			body:not(.toc-inline) .toc > li li li .secno       { margin-left: -5rem; }
			body:not(.toc-inline) .toc > li li li li .secno    { margin-left: -6rem; }
			body:not(.toc-inline) .toc > li li li li li .secno { margin-left: -7rem; }
	}
	/* } */

	@supports (display:grid) and (display:contents) {
		/* Use #toc over .toc to override non-@supports rules. */
		#toc {
			display: grid;
			align-content: start;
			grid-template-columns: auto 1fr;
			grid-column-gap: 1rem;
			column-gap: 1rem;
			grid-row-gap: .6rem;
			row-gap: .6rem;
		}
		#toc h2 {
			grid-column: 1 / -1;
			margin-bottom: 0;
		}
		#toc ol,
		#toc li,
		#toc a {
			display: contents;
			/* Switch <a> to subgrid when supported */
		}
		#toc span {
			margin: 0;
		}
		#toc > .toc > li > a > span {
			/* The spans of the top-level list,
			   comprising the first items of each top-level section. */
			margin-top: 1.1rem;
		}
		#toc#toc .secno { /* Ugh, need more specificity to override base.css */
			grid-column: 1;
			width: auto;
			margin-left: 0;
		}
		#toc .content {
			grid-column: 2;
			width: auto;
			margin-right: 1rem;
		}
		#toc .content:hover,
		#toc .content:focus {
			background: rgba(75%, 75%, 75%, .25);
			background: var(--a-hover-bg);
			border-bottom: 3px solid #054572;
			border-bottom: 3px solid var(--toclink-underline);
			margin-bottom: -3px;
		}
		#toc li li li .content {
			margin-left: 1rem;
		}
		#toc li li li li .content {
			margin-left: 2rem;
		}
	}


/** Index *********************************************************************/

	/* Index Lists: Layout */
	ul.index       { margin-left: 0; columns: 15em; text-indent: 1em hanging; }
	ul.index li    { margin-left: 0; list-style: none; break-inside: avoid; }
	ul.index li li { margin-left: 1em }
	ul.index dl    { margin-top: 0; }
	ul.index dt    { margin: .2em 0 .2em 20px;}
	ul.index dd    { margin: .2em 0 .2em 40px;}
	/* Index Lists: Typography */
	ul.index ul,
	ul.index dl { font-size: smaller; }
	@media not print {
		ul.index li span:not(.dfn-paneled) {
			white-space: nowrap;
			color: transparent; }
		ul.index li a:hover + span,
		ul.index li a:focus + span {
			color: #707070;
			color: var(--indexinfo-text);
		}
	}

/** Index Tables *****************************************************/
	/* See also the data table styling section, which this effectively subclasses */

	table.index {
		font-size: small;
		border-collapse: collapse;
		border-spacing: 0;
		text-align: left;
		margin: 1em 0;
	}

	table.index td,
	table.index th {
		padding: 0.4em;
	}

	table.index tr:hover td:not([rowspan]),
	table.index tr:hover th:not([rowspan]) {
		color: black;
		color: var(--indextable-hover-text);
		background: #f7f8f9;
		background: var(--indextable-hover-bg);
	}

	/* The link in the first column in the property table (formerly a TD) */
	table.index th:first-child a {
		font-weight: bold;
	}

/******************************************************************************/
/*                                    Print                                   */
/******************************************************************************/

	@media print {
		/* Pages have their own margins. */
		html {
			margin: 0;
		}
		/* Serif for print. */
		body {
			font-family: serif;
		}
	}
	@page {
		margin: 1.5cm 1.1cm;
	}



/******************************************************************************/
/*                             Overflow Control                               */
/******************************************************************************/

	.figure .caption, .sidefigure .caption, figcaption {
		/* in case figure is overlarge, limit caption to 50em */
		max-width: 50rem;
		margin-left: auto;
		margin-right: auto;
	}
	.overlarge {
		/* Magic to create good table positioning:
		   "content column" is 50ems wide at max; less on smaller screens.
		   Extra space (after ToC + content) is empty on the right.

		   1. When table < content column, centers table in column.
		   2. When content < table < available, left-aligns.
		   3. When table > available, fills available + scroll bar.
		*/
		display: grid;
		grid-template-columns: minmax(0, 50em);
	}
	.overlarge > table {
		/* limit preferred width of table */
		max-width: 50em;
		margin-left: auto;
		margin-right: auto;
	}

	@media (min-width: 55em) {
		.overlarge {
			margin-right: calc(13px + 26.5rem - 50vw);
			max-width: none;
		}
	}
	@media screen and (min-width: 78em) {
		body:not(.toc-inline) .overlarge {
			/* 30.5em body padding 50em content area */
			margin-right: calc(40em - 50vw) !important;
		}
	}
	@media screen and (min-width: 90em) {
		body:not(.toc-inline) .overlarge {
			/* 4em html margin 30.5em body padding 50em content area */
			margin-right: calc(84.5em - 100vw) !important;
		}
	}

	@media not print {
		.overlarge {
			overflow-x: auto;
			/* See Lea Verou's explanation background-attachment:
			 * http://lea.verou.me/2012/04/background-attachment-local/
			 *
			background: top left  / 4em 100% linear-gradient(to right,  #ffffff, rgba(255, 255, 255, 0)) local,
			            top right / 4em 100% linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0)) local,
			            top left  / 1em 100% linear-gradient(to right,  #c3c3c5, rgba(195, 195, 197, 0)) scroll,
			            top right / 1em 100% linear-gradient(to left, #c3c3c5, rgba(195, 195, 197, 0)) scroll,
			            white;
			background-repeat: no-repeat;
			*/
		}
	}
</style>
<style type="text/css">
    table, th, td {
      border: 1px solid black;
      border-collapse: collapse;
      vertical-align: top;
    }
    th, td {
      border-left: none;
      border-right: none;
      padding: 0px 10px;
    }
    th {
      text-align: center;
    }

    del { background: #fcc; color: #000; text-decoration: line-through; }
    ins { background: #cfc; color: #000; }
    blockquote .highlight:not(.idl) { background: initial; margin: initial; padding: 0.5em }
    blockquote ul { background: inherit; }
    blockquote code.highlight:not(.idl) { padding: initial; }
    blockquote c-[a] { color: inherit; } /* Keyword.Declaration */
    blockquote c-[b] { color: inherit; } /* Keyword.Type */
    blockquote c-[c] { color: inherit; } /* Comment */
    blockquote c-[d] { color: inherit; } /* Comment.Multiline */
    blockquote c-[e] { color: inherit; } /* Name.Attribute */
    blockquote c-[f] { color: inherit; } /* Name.Tag */
    blockquote c-[g] { color: inherit; } /* Name.Variable */
    blockquote c-[k] { color: inherit; } /* Keyword */
    blockquote c-[l] { color: inherit; } /* Literal */
    blockquote c-[m] { color: inherit; } /* Literal.Number */
    blockquote c-[n] { color: inherit; } /* Name */
    blockquote c-[o] { color: inherit; } /* Operator */
    blockquote c-[p] { color: inherit; } /* Punctuation */
    blockquote c-[s] { color: inherit; } /* Literal.String */
    blockquote c-[t] { color: inherit; } /* Literal.String.Single */
    blockquote c-[u] { color: inherit; } /* Literal.String.Double */
    blockquote c-[cp] { color: inherit; } /* Comment.Preproc */
    blockquote c-[c1] { color: inherit; } /* Comment.Single */
    blockquote c-[cs] { color: inherit; } /* Comment.Special */
    blockquote c-[kc] { color: inherit; } /* Keyword.Constant */
    blockquote c-[kn] { color: inherit; } /* Keyword.Namespace */
    blockquote c-[kp] { color: inherit; } /* Keyword.Pseudo */
    blockquote c-[kr] { color: inherit; } /* Keyword.Reserved */
    blockquote c-[ld] { color: inherit; } /* Literal.Date */
    blockquote c-[nc] { color: inherit; } /* Name.Class */
    blockquote c-[no] { color: inherit; } /* Name.Constant */
    blockquote c-[nd] { color: inherit; } /* Name.Decorator */
    blockquote c-[ni] { color: inherit; } /* Name.Entity */
    blockquote c-[ne] { color: inherit; } /* Name.Exception */
    blockquote c-[nf] { color: inherit; } /* Name.Function */
    blockquote c-[nl] { color: inherit; } /* Name.Label */
    blockquote c-[nn] { color: inherit; } /* Name.Namespace */
    blockquote c-[py] { color: inherit; } /* Name.Property */
    blockquote c-[ow] { color: inherit; } /* Operator.Word */
    blockquote c-[mb] { color: inherit; } /* Literal.Number.Bin */
    blockquote c-[mf] { color: inherit; } /* Literal.Number.Float */
    blockquote c-[mh] { color: inherit; } /* Literal.Number.Hex */
    blockquote c-[mi] { color: inherit; } /* Literal.Number.Integer */
    blockquote c-[mo] { color: inherit; } /* Literal.Number.Oct */
    blockquote c-[sb] { color: inherit; } /* Literal.String.Backtick */
    blockquote c-[sc] { color: inherit; } /* Literal.String.Char */
    blockquote c-[sd] { color: inherit; } /* Literal.String.Doc */
    blockquote c-[se] { color: inherit; } /* Literal.String.Escape */
    blockquote c-[sh] { color: inherit; } /* Literal.String.Heredoc */
    blockquote c-[si] { color: inherit; } /* Literal.String.Interpol */
    blockquote c-[sx] { color: inherit; } /* Literal.String.Other */
    blockquote c-[sr] { color: inherit; } /* Literal.String.Regex */
    blockquote c-[ss] { color: inherit; } /* Literal.String.Symbol */
    blockquote c-[vc] { color: inherit; } /* Name.Variable.Class */
    blockquote c-[vg] { color: inherit; } /* Name.Variable.Global */
    blockquote c-[vi] { color: inherit; } /* Name.Variable.Instance */
    blockquote c-[il] { color: inherit; } /* Literal.Number.Integer.Long */
  </style>
  <meta content="Bikeshed version 89ebb6ab, updated Fri Oct 9 15:32:07 2020 -0700" name="generator">
  <link href="https://wg21.link/P2247R0" rel="canonical">
  <link href="https://isocpp.org/favicon.ico" rel="icon">
<style>
pre {
  margin-top: 0px;
  margin-bottom: 0px;
}
.ins, ins, ins *, span.ins, span.ins * {
  background-color: rgb(200, 250, 200);
  color: rgb(0, 136, 0);
  text-decoration: none;
}
.del, del, del *, span.del, span.del * {
  background-color: rgb(250, 200, 200);
  color: rgb(255, 0, 0);
  text-decoration: line-through;
  text-decoration-color: rgb(255, 0, 0);
}
math, span.math {
  font-family: serif;
  font-style: italic;
}
ul {
  list-style-type: "— ";
}
blockquote {
  counter-reset: paragraph;
}
div.numbered, div.newnumbered {
  margin-left: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
div.numbered:before, div.newnumbered:before {
  position: absolute;
  margin-left: -2em;
  display-style: block;
}
div.numbered:before {
  content: counter(paragraph);
  counter-increment: paragraph;
}
div.newnumbered:before {
  content: "�";
}
div.numbered ul, div.newnumbered ul {
  counter-reset: list_item;
}
div.numbered li, div.newnumbered li {
  margin-left: 3em;
}
div.numbered li:before, div.newnumbered li:before {
  position: absolute;
  margin-left: -4.8em;
  display-style: block;
}
div.numbered li:before {
  content: "(" counter(paragraph) "." counter(list_item) ")";
  counter-increment: list_item;
}
div.newnumbered li:before {
  content: "(�." counter(list_item) ")";
  counter-increment: list_item;
}
</style>
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
    color: var(--a-normal-text);
    font-size: inherit;
    font-family: inherit;
}
.css::before, .property::before, .descriptor::before {
    content: "‘";
}
.css::after, .property::after, .descriptor::after {
    content: "’";
}
.property, .descriptor {
    /* Don't wrap property and descriptor names */
    white-space: nowrap;
}
.type { /* CSS value <type> */
    font-style: italic;
}
pre .property::before, pre .property::after {
    content: "";
}
[data-link-type="property"]::before,
[data-link-type="propdesc"]::before,
[data-link-type="descriptor"]::before,
[data-link-type="value"]::before,
[data-link-type="function"]::before,
[data-link-type="at-rule"]::before,
[data-link-type="selector"]::before,
[data-link-type="maybe"]::before {
    content: "‘";
}
[data-link-type="property"]::after,
[data-link-type="propdesc"]::after,
[data-link-type="descriptor"]::after,
[data-link-type="value"]::after,
[data-link-type="function"]::after,
[data-link-type="at-rule"]::after,
[data-link-type="selector"]::after,
[data-link-type="maybe"]::after {
    content: "’";
}

[data-link-type].production::before,
[data-link-type].production::after,
.prod [data-link-type]::before,
.prod [data-link-type]::after {
    content: "";
}

[data-link-type=element],
[data-link-type=element-attr] {
    font-family: Menlo, Consolas, "DejaVu Sans Mono", monospace;
    font-size: .9em;
}
[data-link-type=element]::before { content: "<" }
[data-link-type=element]::after  { content: ">" }

[data-link-type=biblio] {
    white-space: pre;
}</style>
<style>/* style-colors */

/* Any --*-text not paired with a --*-bg is assumed to have a transparent bg */
html {
    color: black;
    color: var(--text);
    background-color: white;
    background-color: var(--bg);
}
:root {
    color-scheme: light dark;

    --text: black;
    --bg: white;

    --logo-bg: #1a5e9a;
    --logo-active-bg: #c00;
    --logo-text: white;

    --tocnav-normal-text: #707070;
    --tocnav-normal-bg: var(--bg);
    --tocnav-hover-text: var(--tocnav-normal-text);
    --tocnav-hover-bg: #f8f8f8;
    --tocnav-active-text: #c00;
    --tocnav-active-bg: var(--tocnav-normal-bg);

    --tocsidebar-text: var(--text);
    --tocsidebar-bg: #f7f8f9;
    --tocsidebar-shadow: rgba(0,0,0,.1);
    --tocsidebar-heading-text: hsla(203,20%,40%,.7);

    --toclink-text: var(--text);
    --toclink-underline: #3980b5;
    --toclink-visited-text: var(--toclink-text);
    --toclink-visited-underline: #054572;

    --heading-text: #005a9c;

    --hr-text: var(--text);

    --algo-border: #def;

    --del-text: red;
    --del-bg: transparent;
    --ins-text: #080;
    --ins-bg: transparent;

    --a-normal-text: #034575;
    --a-normal-underline: #707070;
    --a-visited-text: var(--a-normal-text);
    --a-visited-underline: #bbb;
    --a-hover-bg: rgba(75%, 75%, 75%, .25);
    --a-active-text: #c00;
    --a-active-underline: #c00;

    --blockquote-border: silver;
    --blockquote-bg: transparent;
    --blockquote-text: currentcolor;

    --issue-border: #e05252;
    --issue-bg: #fbe9e9;
    --issue-text: var(--text);
    --issueheading-text: #831616;

    --example-border: #e0cb52;
    --example-bg: #fcfaee;
    --example-text: var(--text);
    --exampleheading-text: #574b0f;

    --note-border: #52e052;
    --note-bg: #e9fbe9;
    --note-text: var(--text);
    --noteheading-text: hsl(120, 70%, 30%);
    --notesummary-underline: silver;

    --assertion-border: #aaa;
    --assertion-bg: #eee;
    --assertion-text: black;

    --advisement-border: orange;
    --advisement-bg: #fec;
    --advisement-text: var(--text);
    --advisementheading-text: #b35f00;

    --warning-border: red;
    --warning-bg: hsla(40,100%,50%,0.95);
    --warning-text: var(--text);

    --def-border: #8ccbf2;
    --def-bg: #def;
    --def-text: var(--text);
    --defrow-border: #bbd7e9;

    --datacell-border: silver;

    --indexinfo-text: #707070;

    --indextable-hover-text: black;
    --indextable-hover-bg: #f7f8f9;

    --outdatedspec-bg: rgba(0, 0, 0, .5);
    --outdatedspec-text: black;
    --outdated-bg: maroon;
    --outdated-text: white;
    --outdated-shadow: red;

    --editedrec-bg: darkorange;
}</style>
<style>/* style-counters */

body {
    counter-reset: example figure issue;
}
.issue {
    counter-increment: issue;
}
.issue:not(.no-marker)::before {
    content: "Issue " counter(issue);
}

.example {
    counter-increment: example;
}
.example:not(.no-marker)::before {
    content: "Example " counter(example);
}
.invalid.example:not(.no-marker)::before,
.illegal.example:not(.no-marker)::before {
    content: "Invalid Example" counter(example);
}

figcaption {
    counter-increment: figure;
}
figcaption:not(.no-marker)::before {
    content: "Figure " counter(figure) " ";
}</style>
<style>/* style-md-lists */

/* This is a weird hack for me not yet following the commonmark spec
   regarding paragraph and lists. */
[data-md] > :first-child {
    margin-top: 0;
}
[data-md] > :last-child {
    margin-bottom: 0;
}</style>
<style>/* style-selflinks */

:root {
    --selflink-text: white;
    --selflink-bg: gray;
    --selflink-hover-text: black;
}
.heading, .issue, .note, .example, li, dt {
    position: relative;
}
a.self-link {
    position: absolute;
    top: 0;
    left: calc(-1 * (3.5rem - 26px));
    width: calc(3.5rem - 26px);
    height: 2em;
    text-align: center;
    border: none;
    transition: opacity .2s;
    opacity: .5;
}
a.self-link:hover {
    opacity: 1;
}
.heading > a.self-link {
    font-size: 83%;
}
li > a.self-link {
    left: calc(-1 * (3.5rem - 26px) - 2em);
}
dfn > a.self-link {
    top: auto;
    left: auto;
    opacity: 0;
    width: 1.5em;
    height: 1.5em;
    background: var(--selflink-bg);
    color: var(--selflink-text);
    font-style: normal;
    transition: opacity .2s, background-color .2s, color .2s;
}
dfn:hover > a.self-link {
    opacity: 1;
}
dfn > a.self-link:hover {
    color: var(--selflink-hover-text);
}

a.self-link::before            { content: "¶"; }
.heading > a.self-link::before { content: "§"; }
dfn > a.self-link::before      { content: "#"; }
</style>
<style>/* style-darkmode */

@media (prefers-color-scheme: dark) {
    :root {
        --text: #ddd;
        --bg: black;

        --logo-bg: #1a5e9a;
        --logo-active-bg: #c00;
        --logo-text: white;

        --tocnav-normal-text: #999;
        --tocnav-normal-bg: var(--bg);
        --tocnav-hover-text: var(--tocnav-normal-text);
        --tocnav-hover-bg: #080808;
        --tocnav-active-text: #f44;
        --tocnav-active-bg: var(--tocnav-normal-bg);

        --tocsidebar-text: var(--text);
        --tocsidebar-bg: #080808;
        --tocsidebar-shadow: rgba(255,255,255,.1);
        --tocsidebar-heading-text: hsla(203,20%,40%,.7);

        --toclink-text: var(--text);
        --toclink-underline: #6af;
        --toclink-visited-text: var(--toclink-text);
        --toclink-visited-underline: #054572;

        --heading-text: #8af;

        --hr-text: var(--text);

        --algo-border: #456;

        --del-text: #f44;
        --del-bg: transparent;
        --ins-text: #4a4;
        --ins-bg: transparent;

        --a-normal-text: #6af;
        --a-normal-underline: #555;
        --a-visited-text: var(--a-normal-text);
        --a-visited-underline: var(--a-normal-underline);
        --a-hover-bg: rgba(25%, 25%, 25%, .2);
        --a-active-text: #f44;
        --a-active-underline: var(--a-active-text);

        --borderedblock-bg: rgba(255, 255, 255, .05);

        --blockquote-border: silver;
        --blockquote-bg: var(--borderedblock-bg);
        --blockquote-text: currentcolor;

        --issue-border: #e05252;
        --issue-bg: var(--borderedblock-bg);
        --issue-text: var(--text);
        --issueheading-text: hsl(0deg, 70%, 70%);

        --example-border: hsl(50deg, 90%, 60%);
        --example-bg: var(--borderedblock-bg);
        --example-text: var(--text);
        --exampleheading-text: hsl(50deg, 70%, 70%);

        --note-border: hsl(120deg, 100%, 35%);
        --note-bg: var(--borderedblock-bg);
        --note-text: var(--text);
        --noteheading-text: hsl(120, 70%, 70%);
        --notesummary-underline: silver;

        --assertion-border: #444;
        --assertion-bg: var(--borderedblock-bg);
        --assertion-text: var(--text);

        --advisement-border: orange;
        --advisement-bg: #222218;
        --advisement-text: var(--text);
        --advisementheading-text: #f84;

        --warning-border: red;
        --warning-bg: hsla(40,100%,20%,0.95);
        --warning-text: var(--text);

        --def-border: #8ccbf2;
        --def-bg: #080818;
        --def-text: var(--text);
        --defrow-border: #136;

        --datacell-border: silver;

        --indexinfo-text: #aaa;

        --indextable-hover-text: var(--text);
        --indextable-hover-bg: #181818;

        --outdatedspec-bg: rgba(255, 255, 255, .5);
        --outdatedspec-text: black;
        --outdated-bg: maroon;
        --outdated-text: white;
        --outdated-shadow: red;

        --editedrec-bg: darkorange;
    }
    /* In case a transparent-bg image doesn't expect to be on a dark bg,
       which is quite common in practice... */
    img { background: white; }
}
@media (prefers-color-scheme: dark) {
    :root {
        --selflink-text: black;
        --selflink-bg: silver;
        --selflink-hover-text: white;
    }
}

@media (prefers-color-scheme: dark) {
    .highlight:not(.idl) { background: rgba(255, 255, 255, .05); }

    c-[a] { color: #d33682 } /* Keyword.Declaration */
    c-[b] { color: #d33682 } /* Keyword.Type */
    c-[c] { color: #2aa198 } /* Comment */
    c-[d] { color: #2aa198 } /* Comment.Multiline */
    c-[e] { color: #268bd2 } /* Name.Attribute */
    c-[f] { color: #b58900 } /* Name.Tag */
    c-[g] { color: #cb4b16 } /* Name.Variable */
    c-[k] { color: #d33682 } /* Keyword */
    c-[l] { color: #657b83 } /* Literal */
    c-[m] { color: #657b83 } /* Literal.Number */
    c-[n] { color: #268bd2 } /* Name */
    c-[o] { color: #657b83 } /* Operator */
    c-[p] { color: #657b83 } /* Punctuation */
    c-[s] { color: #6c71c4 } /* Literal.String */
    c-[t] { color: #6c71c4 } /* Literal.String.Single */
    c-[u] { color: #6c71c4 } /* Literal.String.Double */
    c-[ch] { color: #2aa198 } /* Comment.Hashbang */
    c-[cp] { color: #2aa198 } /* Comment.Preproc */
    c-[cpf] { color: #2aa198 } /* Comment.PreprocFile */
    c-[c1] { color: #2aa198 } /* Comment.Single */
    c-[cs] { color: #2aa198 } /* Comment.Special */
    c-[kc] { color: #d33682 } /* Keyword.Constant */
    c-[kn] { color: #d33682 } /* Keyword.Namespace */
    c-[kp] { color: #d33682 } /* Keyword.Pseudo */
    c-[kr] { color: #d33682 } /* Keyword.Reserved */
    c-[ld] { color: #657b83 } /* Literal.Date */
    c-[nc] { color: #268bd2 } /* Name.Class */
    c-[no] { color: #268bd2 } /* Name.Constant */
    c-[nd] { color: #268bd2 } /* Name.Decorator */
    c-[ni] { color: #268bd2 } /* Name.Entity */
    c-[ne] { color: #268bd2 } /* Name.Exception */
    c-[nf] { color: #268bd2 } /* Name.Function */
    c-[nl] { color: #268bd2 } /* Name.Label */
    c-[nn] { color: #268bd2 } /* Name.Namespace */
    c-[py] { color: #268bd2 } /* Name.Property */
    c-[ow] { color: #657b83 } /* Operator.Word */
    c-[mb] { color: #657b83 } /* Literal.Number.Bin */
    c-[mf] { color: #657b83 } /* Literal.Number.Float */
    c-[mh] { color: #657b83 } /* Literal.Number.Hex */
    c-[mi] { color: #657b83 } /* Literal.Number.Integer */
    c-[mo] { color: #657b83 } /* Literal.Number.Oct */
    c-[sa] { color: #6c71c4 } /* Literal.String.Affix */
    c-[sb] { color: #6c71c4 } /* Literal.String.Backtick */
    c-[sc] { color: #6c71c4 } /* Literal.String.Char */
    c-[dl] { color: #6c71c4 } /* Literal.String.Delimiter */
    c-[sd] { color: #6c71c4 } /* Literal.String.Doc */
    c-[se] { color: #6c71c4 } /* Literal.String.Escape */
    c-[sh] { color: #6c71c4 } /* Literal.String.Heredoc */
    c-[si] { color: #6c71c4 } /* Literal.String.Interpol */
    c-[sx] { color: #6c71c4 } /* Literal.String.Other */
    c-[sr] { color: #6c71c4 } /* Literal.String.Regex */
    c-[ss] { color: #6c71c4 } /* Literal.String.Symbol */
    c-[fm] { color: #268bd2 } /* Name.Function.Magic */
    c-[vc] { color: #cb4b16 } /* Name.Variable.Class */
    c-[vg] { color: #cb4b16 } /* Name.Variable.Global */
    c-[vi] { color: #cb4b16 } /* Name.Variable.Instance */
    c-[vm] { color: #cb4b16 } /* Name.Variable.Magic */
    c-[il] { color: #657b83 } /* Literal.Number.Integer.Long */
}
</style>
 <body class="h-entry">
  <div class="head">
   <p data-fill-with="logo"></p>
   <h1 class="p-name no-ref" id="title">P2247R0<br>2020 Library Evolution Report</h1>
   <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Published Proposal, <time class="dt-updated" datetime="2020-11-03">2020-11-03</time></span></h2>
   <div data-fill-with="spec-metadata">
    <dl>
     <dt>Source:
     <dd><a href="https://github.com/brycelelbach/wg21_p2247_2020_library_evolution_report/blob/main/2020_library_evolution_report.bs">GitHub</a>
     <dt>Issue Tracking:
     <dd><a href="https://github.com/brycelelbach/wg21_p2247_2020_library_evolution_report/issues">GitHub</a>
     <dt>Project:
     <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++
     <dt>Audience:
     <dd>WG21
    </dl>
   </div>
   <div data-fill-with="warning"></div>
   <hr title="Separator for header">
  </div>
  <nav data-fill-with="table-of-contents" id="toc">
   <h2 class="no-num no-toc no-ref" id="contents">Table of Contents</h2>
   <ol class="toc" role="directory">
    <li>
     <a href="#execution"><span class="secno">1</span> <span class="content">Execution</span></a>
     <ol class="toc">
      <li><a href="#telecons"><span class="secno">1.1</span> <span class="content">Telecons</span></a>
      <li><a href="#mailing-list-reviews"><span class="secno">1.2</span> <span class="content">Mailing List Reviews</span></a>
      <li><a href="#electronic-polling"><span class="secno">1.3</span> <span class="content">Electronic Polling</span></a>
      <li><a href="#chairing-guide"><span class="secno">1.4</span> <span class="content">Chair Guide</span></a>
      <li><a href="#staff"><span class="secno">1.5</span> <span class="content">Staff</span></a>
     </ol>
    <li>
     <a href="#technical"><span class="secno">2</span> <span class="content">Technical</span></a>
     <ol class="toc">
      <li>
       <a href="#plenary-approved-priorities"><span class="secno">2.1</span> <span class="content">Plenary Approved Priorities</span></a>
       <ol class="toc">
        <li><a href="#executors"><span class="secno">2.1.1</span> <span class="content">Executors</span></a>
        <li><a href="#networking"><span class="secno">2.1.2</span> <span class="content">Networking</span></a>
        <li><a href="#coroutines-library-support"><span class="secno">2.1.3</span> <span class="content">Coroutines Library Support</span></a>
        <li><a href="#standard-library-modules"><span class="secno">2.1.4</span> <span class="content">Standard Library Modules</span></a>
       </ol>
      <li>
       <a href="#other-highlights"><span class="secno">2.2</span> <span class="content">Other Highlights</span></a>
       <ol class="toc">
        <li><a href="#formatting-and-printing"><span class="secno">2.2.1</span> <span class="content">Formatting and Printing</span></a>
        <li><a href="#ranges"><span class="secno">2.2.2</span> <span class="content">Ranges</span></a>
        <li><a href="#text-and-unicode"><span class="secno">2.2.3</span> <span class="content">Text and Unicode</span></a>
        <li><a href="#freestanding"><span class="secno">2.2.4</span> <span class="content">Freestanding</span></a>
       </ol>
      <li><a href="#other-work"><span class="secno">2.3</span> <span class="content">Other Work</span></a>
     </ol>
    <li>
     <a href="#references"><span class="secno"></span> <span class="content">References</span></a>
     <ol class="toc">
      <li><a href="#informative"><span class="secno"></span> <span class="content">Informative References</span></a>
     </ol>
   </ol>
  </nav>
  <main>
   <p>This report summarizes the activities of C++'s Library Evolution group from
  2020-02 through 2020-10.
It is split into two sections; one focused on <em>execution</em> (process, logistics,
  and operations) and one focused on <em>technical</em> work (papers we processed, etc).</p>
   <p>Readers are encouraged to also look at:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a>: Evolving C++ Remotely</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2138r3">[P2138R3]</a>: Rules of Design &lt;=> Specification Engagement</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a>: Electronic Straw Polls</p>
   </ul>
   <h2 class="heading settled" data-level="1" id="execution"><span class="secno">1. </span><span class="content">Execution</span><a class="self-link" href="#execution"></a></h2>
   <h3 class="heading settled" data-level="1.1" id="telecons"><span class="secno">1.1. </span><span class="content">Telecons</span><a class="self-link" href="#telecons"></a></h3>
   <p>Since 2020-04, Library Evolution has held a 90 minute telecon twice a week to
  review papers.
Typically, 1 or 2 papers are reviewed at each telecon.</p>
   <p>More details on how we use telecons can be found in <a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a>.</p>
   <center>
    <svg fill="none" height="474" stroke="none" stroke-linecap="square" stroke-miterlimit="10" version="1.1" viewBox="0.0 0.0 757.0 474.0" width="757" xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
     <path d="M0 0L757.0 0L757.0 474.0L0 474.0L0 0Z" fill="#ffffff" fill-opacity="0.0" fill-rule="nonzero"></path>
     <path d="M54.5 394.5L733.5 394.5" fill-rule="nonzero" stroke="#333333" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 336.5L733.5 336.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 279.5L733.5 279.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 222.5L733.5 222.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 164.5L733.5 164.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 107.5L733.5 107.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 388.5L733.5 388.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 382.5L733.5 382.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 376.5L733.5 376.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 371.5L733.5 371.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 365.5L733.5 365.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 359.5L733.5 359.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 353.5L733.5 353.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 348.5L733.5 348.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 342.5L733.5 342.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 331.5L733.5 331.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 325.5L733.5 325.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 319.5L733.5 319.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 313.5L733.5 313.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 308.5L733.5 308.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 302.5L733.5 302.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 296.5L733.5 296.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 290.5L733.5 290.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 285.5L733.5 285.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 273.5L733.5 273.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 267.5L733.5 267.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 262.5L733.5 262.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 256.5L733.5 256.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 250.5L733.5 250.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 244.5L733.5 244.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 239.5L733.5 239.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 233.5L733.5 233.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 227.5L733.5 227.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 216.5L733.5 216.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 210.5L733.5 210.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 204.5L733.5 204.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 199.5L733.5 199.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 193.5L733.5 193.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 187.5L733.5 187.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 181.5L733.5 181.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 176.5L733.5 176.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 170.5L733.5 170.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 158.5L733.5 158.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 153.5L733.5 153.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 147.5L733.5 147.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 141.5L733.5 141.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 135.5L733.5 135.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 130.5L733.5 130.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 124.5L733.5 124.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 118.5L733.5 118.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M54.5 113.5L733.5 113.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
     <clipPath id="id_0">
      <path clip-rule="nonzero" d="M54.7 107.3L733.3 107.3L733.3 394.09543L54.7 394.09543L54.7 107.3Z"></path>
     </clipPath>
     <path clip-path="url(#id_0)" d="M78.0 394.0L63.0 394.0L63.0 213.0C63.0 211.89543 63.89543 211.0 65.0 211.0L76.0 211.0C77.10457 211.0 78.0 211.89543 78.0 213.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M78.0 394.0L63.0 394.0L63.0 213.0C63.0 211.89543 63.89543 211.0 65.0 211.0L76.0 211.0C77.10457 211.0 78.0 211.89543 78.0 213.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M101.0 394.0L86.0 394.0L86.0 178.0C86.0 176.89543 86.89543 176.0 88.0 176.0L99.0 176.0C100.10457 176.0 101.0 176.89543 101.0 178.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M101.0 394.0L86.0 394.0L86.0 178.0C86.0 176.89543 86.89543 176.0 88.0 176.0L99.0 176.0C100.10457 176.0 101.0 176.89543 101.0 178.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M125.0 394.0L110.0 394.0L110.0 190.0C110.0 188.89543 110.89543 188.0 112.0 188.0L123.0 188.0C124.10457 188.0 125.0 188.89543 125.0 190.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M125.0 394.0L110.0 394.0L110.0 190.0C110.0 188.89543 110.89543 188.0 112.0 188.0L123.0 188.0C124.10457 188.0 125.0 188.89543 125.0 190.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M148.0 394.0L133.0 394.0L133.0 213.0C133.0 211.89543 133.89543 211.0 135.0 211.0L146.0 211.0C147.10457 211.0 148.0 211.89543 148.0 213.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M148.0 394.0L133.0 394.0L133.0 213.0C133.0 211.89543 133.89543 211.0 135.0 211.0L146.0 211.0C147.10457 211.0 148.0 211.89543 148.0 213.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M171.0 394.0L156.0 394.0L156.0 201.0C156.0 199.89543 156.89543 199.0 158.0 199.0L169.0 199.0C170.10457 199.0 171.0 199.89543 171.0 201.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M171.0 394.0L156.0 394.0L156.0 201.0C156.0 199.89543 156.89543 199.0 158.0 199.0L169.0 199.0C170.10457 199.0 171.0 199.89543 171.0 201.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M194.0 394.0L179.0 394.0L179.0 207.0C179.0 205.89543 179.89543 205.0 181.0 205.0L192.0 205.0C193.10457 205.0 194.0 205.89543 194.0 207.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M194.0 394.0L179.0 394.0L179.0 207.0C179.0 205.89543 179.89543 205.0 181.0 205.0L192.0 205.0C193.10457 205.0 194.0 205.89543 194.0 207.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M217.0 394.0L202.0 394.0L202.0 178.0C202.0 176.89543 202.89543 176.0 204.0 176.0L215.0 176.0C216.10457 176.0 217.0 176.89543 217.0 178.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M217.0 394.0L202.0 394.0L202.0 178.0C202.0 176.89543 202.89543 176.0 204.0 176.0L215.0 176.0C216.10457 176.0 217.0 176.89543 217.0 178.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M240.0 394.0L225.0 394.0L225.0 195.0C225.0 193.89543 225.89543 193.0 227.0 193.0L238.0 193.0C239.10457 193.0 240.0 193.89543 240.0 195.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M240.0 394.0L225.0 394.0L225.0 195.0C225.0 193.89543 225.89543 193.0 227.0 193.0L238.0 193.0C239.10457 193.0 240.0 193.89543 240.0 195.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M263.0 394.0L248.0 394.0L248.0 253.0C248.0 251.89543 248.89543 251.0 250.0 251.0L261.0 251.0C262.10458 251.0 263.0 251.89543 263.0 253.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M263.0 394.0L248.0 394.0L248.0 253.0C248.0 251.89543 248.89543 251.0 250.0 251.0L261.0 251.0C262.10458 251.0 263.0 251.89543 263.0 253.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M286.0 394.0L271.0 394.0L271.0 235.0C271.0 233.89543 271.89542 233.0 273.0 233.0L284.0 233.0C285.10458 233.0 286.0 233.89543 286.0 235.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M286.0 394.0L271.0 394.0L271.0 235.0C271.0 233.89543 271.89542 233.0 273.0 233.0L284.0 233.0C285.10458 233.0 286.0 233.89543 286.0 235.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M310.0 394.0L295.0 394.0L295.0 230.0C295.0 228.89543 295.89542 228.0 297.0 228.0L308.0 228.0C309.10458 228.0 310.0 228.89543 310.0 230.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M310.0 394.0L295.0 394.0L295.0 230.0C295.0 228.89543 295.89542 228.0 297.0 228.0L308.0 228.0C309.10458 228.0 310.0 228.89543 310.0 230.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M333.0 394.0L318.0 394.0L318.0 213.0C318.0 211.89543 318.89542 211.0 320.0 211.0L331.0 211.0C332.10458 211.0 333.0 211.89543 333.0 213.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M333.0 394.0L318.0 394.0L318.0 213.0C318.0 211.89543 318.89542 211.0 320.0 211.0L331.0 211.0C332.10458 211.0 333.0 211.89543 333.0 213.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M356.0 394.0L341.0 394.0L341.0 109.0C341.0 107.89543 341.89542 107.0 343.0 107.0L354.0 107.0C355.10458 107.0 356.0 107.89543 356.0 109.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M356.0 394.0L341.0 394.0L341.0 109.0C341.0 107.89543 341.89542 107.0 343.0 107.0L354.0 107.0C355.10458 107.0 356.0 107.89543 356.0 109.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M379.0 394.0L364.0 394.0L364.0 207.0C364.0 205.89543 364.89542 205.0 366.0 205.0L377.0 205.0C378.10458 205.0 379.0 205.89543 379.0 207.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M379.0 394.0L364.0 394.0L364.0 207.0C364.0 205.89543 364.89542 205.0 366.0 205.0L377.0 205.0C378.10458 205.0 379.0 205.89543 379.0 207.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M402.0 394.0L387.0 394.0L387.0 172.0C387.0 170.89543 387.89542 170.0 389.0 170.0L400.0 170.0C401.10458 170.0 402.0 170.89543 402.0 172.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M402.0 394.0L387.0 394.0L387.0 172.0C387.0 170.89543 387.89542 170.0 389.0 170.0L400.0 170.0C401.10458 170.0 402.0 170.89543 402.0 172.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M425.0 394.0L410.0 394.0L410.0 218.0C410.0 216.89543 410.89542 216.0 412.0 216.0L423.0 216.0C424.10458 216.0 425.0 216.89543 425.0 218.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M425.0 394.0L410.0 394.0L410.0 218.0C410.0 216.89543 410.89542 216.0 412.0 216.0L423.0 216.0C424.10458 216.0 425.0 216.89543 425.0 218.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M448.0 394.0L433.0 394.0L433.0 241.0C433.0 239.89543 433.89542 239.0 435.0 239.0L446.0 239.0C447.10458 239.0 448.0 239.89543 448.0 241.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M448.0 394.0L433.0 394.0L433.0 241.0C433.0 239.89543 433.89542 239.0 435.0 239.0L446.0 239.0C447.10458 239.0 448.0 239.89543 448.0 241.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M471.0 394.0L456.0 394.0L456.0 230.0C456.0 228.89543 456.89542 228.0 458.0 228.0L469.0 228.0C470.10458 228.0 471.0 228.89543 471.0 230.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M471.0 394.0L456.0 394.0L456.0 230.0C456.0 228.89543 456.89542 228.0 458.0 228.0L469.0 228.0C470.10458 228.0 471.0 228.89543 471.0 230.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M494.0 394.0L479.0 394.0L479.0 258.0C479.0 256.89542 479.89542 256.0 481.0 256.0L492.0 256.0C493.10458 256.0 494.0 256.89542 494.0 258.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M494.0 394.0L479.0 394.0L479.0 258.0C479.0 256.89542 479.89542 256.0 481.0 256.0L492.0 256.0C493.10458 256.0 494.0 256.89542 494.0 258.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M518.0 394.0L503.0 394.0L503.0 241.0C503.0 239.89543 503.89542 239.0 505.0 239.0L516.0 239.0C517.10455 239.0 518.0 239.89543 518.0 241.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M518.0 394.0L503.0 394.0L503.0 241.0C503.0 239.89543 503.89542 239.0 505.0 239.0L516.0 239.0C517.10455 239.0 518.0 239.89543 518.0 241.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M541.0 394.0L526.0 394.0L526.0 207.0C526.0 205.89543 526.89545 205.0 528.0 205.0L539.0 205.0C540.10455 205.0 541.0 205.89543 541.0 207.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M541.0 394.0L526.0 394.0L526.0 207.0C526.0 205.89543 526.89545 205.0 528.0 205.0L539.0 205.0C540.10455 205.0 541.0 205.89543 541.0 207.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M564.0 394.0L549.0 394.0L549.0 270.0C549.0 268.89542 549.89545 268.0 551.0 268.0L562.0 268.0C563.10455 268.0 564.0 268.89542 564.0 270.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M564.0 394.0L549.0 394.0L549.0 270.0C549.0 268.89542 549.89545 268.0 551.0 268.0L562.0 268.0C563.10455 268.0 564.0 268.89542 564.0 270.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M587.0 394.0L572.0 394.0L572.0 224.0C572.0 222.89543 572.89545 222.0 574.0 222.0L585.0 222.0C586.10455 222.0 587.0 222.89543 587.0 224.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M587.0 394.0L572.0 394.0L572.0 224.0C572.0 222.89543 572.89545 222.0 574.0 222.0L585.0 222.0C586.10455 222.0 587.0 222.89543 587.0 224.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M610.0 394.0L595.0 394.0L595.0 224.0C595.0 222.89543 595.89545 222.0 597.0 222.0L608.0 222.0C609.10455 222.0 610.0 222.89543 610.0 224.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M610.0 394.0L595.0 394.0L595.0 224.0C595.0 222.89543 595.89545 222.0 597.0 222.0L608.0 222.0C609.10455 222.0 610.0 222.89543 610.0 224.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M633.0 394.0L618.0 394.0L618.0 195.0C618.0 193.89543 618.89545 193.0 620.0 193.0L631.0 193.0C632.10455 193.0 633.0 193.89543 633.0 195.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M633.0 394.0L618.0 394.0L618.0 195.0C618.0 193.89543 618.89545 193.0 620.0 193.0L631.0 193.0C632.10455 193.0 633.0 193.89543 633.0 195.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M656.0 394.0L641.0 394.0L641.0 253.0C641.0 251.89543 641.89545 251.0 643.0 251.0L654.0 251.0C655.10455 251.0 656.0 251.89543 656.0 253.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M656.0 394.0L641.0 394.0L641.0 253.0C641.0 251.89543 641.89545 251.0 643.0 251.0L654.0 251.0C655.10455 251.0 656.0 251.89543 656.0 253.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M679.0 394.0L664.0 394.0L664.0 264.0C664.0 262.89542 664.89545 262.0 666.0 262.0L677.0 262.0C678.10455 262.0 679.0 262.89542 679.0 264.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M679.0 394.0L664.0 394.0L664.0 264.0C664.0 262.89542 664.89545 262.0 666.0 262.0L677.0 262.0C678.10455 262.0 679.0 262.89542 679.0 264.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M703.0 394.0L688.0 394.0L688.0 201.0C688.0 199.89543 688.89545 199.0 690.0 199.0L701.0 199.0C702.10455 199.0 703.0 199.89543 703.0 201.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M703.0 394.0L688.0 394.0L688.0 201.0C688.0 199.89543 688.89545 199.0 690.0 199.0L701.0 199.0C702.10455 199.0 703.0 199.89543 703.0 201.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M726.0 394.0L711.0 394.0L711.0 190.0C711.0 188.89543 711.89545 188.0 713.0 188.0L724.0 188.0C725.10455 188.0 726.0 188.89543 726.0 190.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M726.0 394.0L711.0 394.0L711.0 190.0C711.0 188.89543 711.89545 188.0 713.0 188.0L724.0 188.0C725.10455 188.0 726.0 188.89543 726.0 190.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M117.0 191.42665C117.0 191.42665 117.666664 191.42665 118.0 191.42665C118.333336 191.42665 118.666664 191.42665 119.0 191.42665C119.333336 191.42665 119.666664 191.42665 120.0 191.42665C120.333336 191.42665 120.666664 191.42665 121.0 191.42665C121.333336 191.42665 121.666664 191.42665 122.0 191.42665C122.333336 191.42665 122.666664 191.42665 123.0 191.42665C123.333336 191.42665 123.666664 191.42665 124.0 191.42665C124.333336 191.42665 124.666664 191.42665 125.0 191.42665C125.333336 191.42665 125.666664 191.42665 126.0 191.42665C126.333336 191.42665 126.666664 191.42665 127.0 191.42665C127.333336 191.42665 127.666664 191.42665 128.0 191.42665C128.33333 191.42665 128.66667 191.42665 129.0 191.42665C129.33333 191.42665 129.66667 191.42665 130.0 191.42665C130.33333 191.42665 130.66667 191.42665 131.0 191.42665C131.33333 191.42665 131.66667 191.42665 132.0 191.42665C132.33333 191.42665 132.66667 191.42665 133.0 191.42665C133.33333 191.42665 133.66667 191.42665 134.0 191.42665C134.33333 191.42665 134.66667 191.42665 135.0 191.42665C135.33333 191.42665 135.66667 191.42665 136.0 191.42665C136.33333 191.42665 136.66667 191.42665 137.0 191.42665C137.33333 191.42665 137.66667 191.42665 138.0 191.42665C138.33333 191.42665 138.66667 191.40843 139.0 191.42665C139.33333 191.44487 139.66667 191.46263 140.0 191.53598C140.33333 191.60933 140.66667 191.7565 141.0 191.86676C141.33333 191.977 141.66667 192.08727 142.0 192.19753C142.33333 192.30779 142.66667 192.41805 143.0 192.5283C143.33333 192.63857 143.66667 192.74883 144.0 192.85909C144.33333 192.96935 144.66667 193.0796 145.0 193.18987C145.33333 193.30013 145.66667 193.41039 146.0 193.52063C146.33333 193.63089 146.66667 193.74115 147.0 193.85141C147.33333 193.96167 147.66667 194.07193 148.0 194.18219C148.33333 194.29245 148.66667 194.40271 149.0 194.51297C149.33333 194.62323 149.66667 194.73349 150.0 194.84375C150.33333 194.95401 150.66667 195.06427 151.0 195.17451C151.33333 195.28477 151.66667 195.39503 152.0 195.5053C152.33333 195.61555 152.66667 195.72581 153.0 195.83607C153.33333 195.94633 153.66667 196.0566 154.0 196.16685C154.33333 196.27711 154.66667 196.38737 155.0 196.49763C155.33333 196.6079 155.66667 196.71815 156.0 196.8284C156.33333 196.93866 156.66667 197.04892 157.0 197.15918C157.33333 197.26944 157.66667 197.3797 158.0 197.48996C158.33333 197.60022 158.66667 197.71048 159.0 197.82074C159.33333 197.931 159.66667 198.04126 160.0 198.15152C160.33333 198.26178 160.66667 198.37202 161.0 198.48228C161.33333 198.59254 161.66667 198.7057 162.0 198.81306C162.33333 198.92044 162.66667 199.03293 163.0 199.12651C163.33333 199.22011 163.66667 199.2919 164.0 199.3746C164.33333 199.45729 164.66667 199.54 165.0 199.62268C165.33333 199.70538 165.66667 199.78807 166.0 199.87076C166.33333 199.95346 166.66667 200.03615 167.0 200.11885C167.33333 200.20154 167.66667 200.28424 168.0 200.36693C168.33333 200.44963 168.66667 200.53232 169.0 200.61502C169.33333 200.69771 169.66667 200.7804 170.0 200.8631C170.33333 200.94579 170.66667 201.02849 171.0 201.11118C171.33333 201.19388 171.66667 201.27657 172.0 201.35927C172.33333 201.44196 172.66667 201.52464 173.0 201.60735C173.33333 201.69003 173.66667 201.77274 174.0 201.85542C174.33333 201.93813 174.66667 202.02081 175.0 202.10352C175.33333 202.1862 175.66667 202.26889 176.0 202.3516C176.33333 202.43428 176.66667 202.51698 177.0 202.59967C177.33333 202.68237 177.66667 202.76506 178.0 202.84776C178.33333 202.93045 178.66667 203.01315 179.0 203.09584C179.33333 203.17853 179.66667 203.26123 180.0 203.34392C180.33333 203.42662 180.66667 203.50931 181.0 203.59201C181.33333 203.6747 181.66667 203.7574 182.0 203.84009C182.33333 203.92278 182.66667 204.00548 183.0 204.08817C183.33333 204.17087 183.66667 204.25356 184.0 204.33626C184.33333 204.41895 184.66667 204.51263 185.0 204.58434C185.33333 204.65604 185.66667 204.81882 186.0 204.7665C186.33333 204.71416 186.66667 204.43571 187.0 204.27032C187.33333 204.10493 187.66667 203.93954 188.0 203.77415C188.33333 203.60876 188.66667 203.44337 189.0 203.278C189.33333 203.11261 189.66667 202.94722 190.0 202.78183C190.33333 202.61644 190.66667 202.45105 191.0 202.28566C191.33333 202.12027 191.66667 201.95488 192.0 201.78949C192.33333 201.62411 192.66667 201.45872 193.0 201.29333C193.33333 201.12794 193.66667 200.96255 194.0 200.79716C194.33333 200.63177 194.66667 200.46638 195.0 200.301C195.33333 200.1356 195.66667 199.97023 196.0 199.80484C196.33333 199.63945 196.66667 199.47406 197.0 199.30867C197.33333 199.14328 197.66667 198.97789 198.0 198.8125C198.33333 198.64711 198.66667 198.48174 199.0 198.31635C199.33333 198.15096 199.66667 197.98557 200.0 197.82018C200.33333 197.65479 200.66667 197.4894 201.0 197.324C201.33333 197.15862 201.66667 196.99323 202.0 196.82785C202.33333 196.66246 202.66667 196.49707 203.0 196.33168C203.33333 196.16629 203.66667 196.0009 204.0 195.83551C204.33333 195.67012 204.66667 195.50473 205.0 195.33934C205.33333 195.17397 205.66667 195.00858 206.0 194.84319C206.33333 194.6778 206.66667 194.5124 207.0 194.34702C207.33333 194.18163 207.66667 194.01624 208.0 193.85085C208.33333 193.68546 208.66667 193.4534 209.0 193.35469C209.33333 193.25598 209.66667 193.2884 210.0 193.2586C210.33333 193.2288 210.66667 193.20348 211.0 193.17592C211.33333 193.14835 211.66667 193.12079 212.0 193.09322C212.33333 193.06566 212.66667 193.03809 213.0 193.01053C213.33333 192.98296 213.66667 192.9554 214.0 192.92783C214.33333 192.90027 214.66667 192.8727 215.0 192.84514C215.33333 192.81757 215.66667 192.79001 216.0 192.76244C216.33333 192.73488 216.66667 192.7073 217.0 192.67975C217.33333 192.65219 217.66667 192.62462 218.0 192.59706C218.33333 192.56949 218.66667 192.54193 219.0 192.51436C219.33333 192.4868 219.66667 192.45923 220.0 192.43167C220.33333 192.4041 220.66667 192.37654 221.0 192.34897C221.33333 192.32141 221.66667 192.29384 222.0 192.26628C222.33333 192.23871 222.66667 192.21115 223.0 192.18358C223.33333 192.15602 223.66667 192.12845 224.0 192.10089C224.33333 192.07332 224.66667 192.04576 225.0 192.01819C225.33333 191.99063 225.66667 191.96306 226.0 191.9355C226.33333 191.90793 226.66667 191.88037 227.0 191.8528C227.33333 191.82524 227.66667 191.79768 228.0 191.77011C228.33333 191.74255 228.66667 191.71498 229.0 191.68742C229.33333 191.65985 229.66667 191.6323 230.0 191.60472C230.33333 191.57716 230.66667 191.54959 231.0 191.52203C231.33333 191.49446 231.66667 191.36188 232.0 191.43933C232.33333 191.5168 232.66667 191.78528 233.0 191.98679C233.33333 192.18828 233.66667 192.42781 234.0 192.64833C234.33333 192.86885 234.66667 193.08937 235.0 193.30989C235.33333 193.53041 235.66667 193.75092 236.0 193.97144C236.33333 194.19196 236.66667 194.41248 237.0 194.633C237.33333 194.85352 237.66667 195.07404 238.0 195.29456C238.33333 195.51506 238.66667 195.73558 239.0 195.9561C239.33333 196.17662 239.66667 196.39714 240.0 196.61766C240.33333 196.83818 240.66667 197.05869 241.0 197.2792C241.33333 197.49973 241.66667 197.72025 242.0 197.94077C242.33333 198.16129 242.66667 198.3818 243.0 198.60231C243.33333 198.82283 243.66667 199.04335 244.0 199.26387C244.33333 199.48439 244.66667 199.70491 245.0 199.92543C245.33333 200.14595 245.66667 200.36646 246.0 200.58698C246.33333 200.8075 246.66667 201.02802 247.0 201.24854C247.33333 201.46906 247.66667 201.68958 248.0 201.91008C248.33333 202.1306 248.66667 202.35112 249.0 202.57164C249.33333 202.79216 249.66667 203.01268 250.0 203.2332C250.33333 203.4537 250.66667 203.67422 251.0 203.89474C251.33333 204.11526 251.66667 204.33578 252.0 204.5563C252.33333 204.77682 252.66667 204.99734 253.0 205.21785C253.33333 205.43837 253.66667 205.65889 254.0 205.87941C254.33333 206.09993 254.66667 206.30045 255.0 206.54097C255.33333 206.78148 255.66667 207.05446 256.0 207.32254C256.33334 207.59064 256.66666 207.87384 257.0 208.14949C257.33334 208.42514 257.66666 208.70078 258.0 208.97643C258.33334 209.25208 258.66666 209.52773 259.0 209.80338C259.33334 210.07903 259.66666 210.35466 260.0 210.63031C260.33334 210.90596 260.66666 211.18161 261.0 211.45726C261.33334 211.7329 261.66666 212.00854 262.0 212.2842C262.33334 212.55984 262.66666 212.8355 263.0 213.11115C263.33334 213.38678 263.66666 213.66243 264.0 213.93808C264.33334 214.21373 264.66666 214.48938 265.0 214.76503C265.33334 215.04066 265.66666 215.31631 266.0 215.59196C266.33334 215.86761 266.66666 216.14326 267.0 216.41891C267.33334 216.69455 267.66666 216.9702 268.0 217.24585C268.33334 217.5215 268.66666 217.79715 269.0 218.0728C269.33334 218.34843 269.66666 218.62408 270.0 218.89973C270.33334 219.17538 270.66666 219.45103 271.0 219.72668C271.33334 220.00232 271.66666 220.27797 272.0 220.55362C272.33334 220.82927 272.66666 221.10492 273.0 221.38057C273.33334 221.6562 273.66666 221.93185 274.0 222.2075C274.33334 222.48315 274.66666 222.7588 275.0 223.03445C275.33334 223.31009 275.66666 223.58574 276.0 223.86139C276.33334 224.13704 276.66666 224.41269 277.0 224.68834C277.33334 224.96397 277.66666 225.27296 278.0 225.51527C278.33334 225.75758 278.66666 225.955 279.0 226.14217C279.33334 226.32935 279.66666 226.47295 280.0 226.63834C280.33334 226.80373 280.66666 226.96912 281.0 227.1345C281.33334 227.2999 281.66666 227.46529 282.0 227.63066C282.33334 227.79605 282.66666 227.96144 283.0 228.12683C283.33334 228.29222 283.66666 228.45761 284.0 228.623C284.33334 228.78839 284.66666 228.95378 285.0 229.11917C285.33334 229.28455 285.66666 229.44994 286.0 229.61533C286.33334 229.78072 286.66666 229.9461 287.0 230.1115C287.33334 230.27689 287.66666 230.44228 288.0 230.60767C288.33334 230.77306 288.66666 230.93843 289.0 231.10382C289.33334 231.26921 289.66666 231.4346 290.0 231.59999C290.33334 231.76538 290.66666 231.93077 291.0 232.09616C291.33334 232.26155 291.66666 232.42694 292.0 232.59232C292.33334 232.7577 292.66666 232.9231 293.0 233.08849C293.33334 233.25388 293.66666 233.41927 294.0 233.58466C294.33334 233.75005 294.66666 233.91544 295.0 234.08083C295.33334 234.2462 295.66666 234.41159 296.0 234.57698C296.33334 234.74237 296.66666 234.90776 297.0 235.07315C297.33334 235.23854 297.66666 235.40393 298.0 235.56932C298.33334 235.7347 298.66666 235.90009 299.0 236.06548C299.33334 236.23087 299.66666 236.39626 300.0 236.56165C300.33334 236.72704 300.66666 236.97911 301.0 237.05782C301.33334 237.13652 301.66666 237.13432 302.0 237.03386C302.33334 236.9334 302.66666 236.64795 303.0 236.455C303.33334 236.26205 303.66666 236.06909 304.0 235.87614C304.33334 235.68318 304.66666 235.49023 305.0 235.29729C305.33334 235.10432 305.66666 234.91138 306.0 234.71843C306.33334 234.52547 306.66666 234.33252 307.0 234.13956C307.33334 233.94661 307.66666 233.75366 308.0 233.5607C308.33334 233.36775 308.66666 233.1748 309.0 232.98184C309.33334 232.7889 309.66666 232.59593 310.0 232.40298C310.33334 232.21004 310.66666 232.01707 311.0 231.82413C311.33334 231.63116 311.66666 231.43822 312.0 231.24527C312.33334 231.0523 312.66666 230.85936 313.0 230.66641C313.33334 230.47345 313.66666 230.2805 314.0 230.08754C314.33334 229.89459 314.66666 229.70164 315.0 229.50868C315.33334 229.31573 315.66666 229.12279 316.0 228.92982C316.33334 228.73688 316.66666 228.54391 317.0 228.35097C317.33334 228.15802 317.66666 227.96506 318.0 227.77211C318.33334 227.57915 318.66666 227.3862 319.0 227.19325C319.33334 227.00029 319.66666 226.80734 320.0 226.6144C320.33334 226.42143 320.66666 226.22849 321.0 226.03552C321.33334 225.84258 321.66666 225.64963 322.0 225.45667C322.33334 225.26372 322.66666 225.07077 323.0 224.8778C323.33334 224.68486 323.66666 224.56693 324.0 224.29895C324.33334 224.03098 324.66666 223.74469 325.0 223.26999C325.33334 222.79529 325.66666 222.05714 326.0 221.45071C326.33334 220.8443 326.66666 220.23787 327.0 219.63144C327.33334 219.02502 327.66666 218.4186 328.0 217.81218C328.33334 217.20575 328.66666 216.59932 329.0 215.9929C329.33334 215.38647 329.66666 214.78004 330.0 214.17363C330.33334 213.5672 330.66666 212.96078 331.0 212.35435C331.33334 211.74792 331.66666 211.14151 332.0 210.53508C332.33334 209.92865 332.66666 209.32224 333.0 208.7158C333.33334 208.10939 333.66666 207.50296 334.0 206.89653C334.33334 206.29012 334.66666 205.68369 335.0 205.07726C335.33334 204.47084 335.66666 203.86441 336.0 203.258C336.33334 202.65157 336.66666 202.04514 337.0 201.43872C337.33334 200.83229 337.66666 200.22586 338.0 199.61945C338.33334 199.01302 338.66666 198.4066 339.0 197.80017C339.33334 197.19374 339.66666 196.58733 340.0 195.9809C340.33334 195.37447 340.66666 194.76805 341.0 194.16162C341.33334 193.5552 341.66666 192.94878 342.0 192.34235C342.33334 191.73593 342.66666 191.1295 343.0 190.52307C343.33334 189.91666 343.66666 189.31023 344.0 188.70381C344.33334 188.09738 344.66666 187.49095 345.0 186.88454C345.33334 186.2781 345.66666 185.67168 346.0 185.06526C346.33334 184.45883 346.66666 183.79239 347.0 183.24599C347.33334 182.69957 347.66666 182.08511 348.0 181.78679C348.33334 181.48846 348.66666 181.56627 349.0 181.45601C349.33334 181.34575 349.66666 181.23549 350.0 181.12524C350.33334 181.01498 350.66666 180.90472 351.0 180.79446C351.33334 180.6842 351.66666 180.57394 352.0 180.46368C352.33334 180.35342 352.66666 180.24316 353.0 180.1329C353.33334 180.02264 353.66666 179.91238 354.0 179.80212C354.33334 179.69186 354.66666 179.58162 355.0 179.47136C355.33334 179.3611 355.66666 179.25084 356.0 179.14058C356.33334 179.03032 356.66666 178.92006 357.0 178.8098C357.33334 178.69954 357.66666 178.58928 358.0 178.47902C358.33334 178.36876 358.66666 178.2585 359.0 178.14824C359.33334 178.03798 359.66666 177.92773 360.0 177.81747C360.33334 177.70721 360.66666 177.59695 361.0 177.4867C361.33334 177.37643 361.66666 177.26617 362.0 177.15591C362.33334 177.04565 362.66666 176.9354 363.0 176.82513C363.33334 176.71487 363.66666 176.60461 364.0 176.49435C364.33334 176.3841 364.66666 176.27385 365.0 176.16359C365.33334 176.05333 365.66666 175.94307 366.0 175.83281C366.33334 175.72255 366.66666 175.61229 367.0 175.50203C367.33334 175.39177 367.66666 175.28151 368.0 175.17125C368.33334 175.06099 368.66666 174.95073 369.0 174.84047C369.33334 174.73022 369.66666 174.62495 370.0 174.5097C370.33334 174.39444 370.66666 174.30553 371.0 174.14891C371.33334 173.99231 371.66666 173.76302 372.0 173.57005C372.33334 173.3771 372.66666 173.18414 373.0 172.9912C373.33334 172.79825 373.66666 172.60529 374.0 172.41234C374.33334 172.21939 374.66666 172.02643 375.0 171.83348C375.33334 171.64052 375.66666 171.44757 376.0 171.25462C376.33334 171.06166 376.66666 170.86871 377.0 170.67575C377.33334 170.4828 377.66666 170.28986 378.0 170.0969C378.33334 169.90395 378.66666 169.711 379.0 169.51804C379.33334 169.32509 379.66666 169.13213 380.0 168.93918C380.33334 168.74623 380.66666 168.55327 381.0 168.36032C381.33334 168.16737 381.66666 167.97441 382.0 167.78146C382.33334 167.5885 382.66666 167.39555 383.0 167.2026C383.33334 167.00964 383.66666 166.8167 384.0 166.62373C384.33334 166.43079 384.66666 166.23784 385.0 166.04488C385.33334 165.85193 385.66666 165.65898 386.0 165.46602C386.33334 165.27307 386.66666 165.08011 387.0 164.88716C387.33334 164.69421 387.66666 164.50125 388.0 164.3083C388.33334 164.11536 388.66666 163.9224 389.0 163.72945C389.33334 163.53648 389.66666 163.34354 390.0 163.15059C390.33334 162.95763 390.66666 162.76468 391.0 162.57172C391.33334 162.37877 391.66666 162.18582 392.0 161.99286C392.33334 161.79991 392.66666 161.60696 393.0 161.414C393.33334 161.22105 393.66666 160.66975 394.0 160.83514C394.33334 161.00053 394.66666 161.8826 395.0 162.40634C395.33334 162.93007 395.66666 163.4538 396.0 163.97752C396.33334 164.50125 396.66666 165.02498 397.0 165.54872C397.33334 166.07245 397.66666 166.59618 398.0 167.1199C398.33334 167.64363 398.66666 168.16737 399.0 168.6911C399.33334 169.21483 399.66666 169.73856 400.0 170.26228C400.33334 170.78601 400.66666 171.30975 401.0 171.83348C401.33334 172.35721 401.66666 172.88094 402.0 173.40466C402.33334 173.92839 402.66666 174.45213 403.0 174.97586C403.33334 175.49959 403.66666 176.02332 404.0 176.54704C404.33334 177.07079 404.66666 177.59451 405.0 178.11824C405.33334 178.64197 405.66666 179.1657 406.0 179.68942C406.33334 180.21317 406.66666 180.7369 407.0 181.26062C407.33334 181.78435 407.66666 182.30807 408.0 182.8318C408.33334 183.35555 408.66666 183.87927 409.0 184.403C409.33334 184.92673 409.66666 185.45045 410.0 185.9742C410.33334 186.49792 410.66666 187.02165 411.0 187.54538C411.33334 188.0691 411.66666 188.59283 412.0 189.11658C412.33334 189.6403 412.66666 190.16403 413.0 190.68776C413.33334 191.21149 413.66666 191.73521 414.0 192.25896C414.33334 192.78268 414.66666 193.30641 415.0 193.83014C415.33334 194.35387 415.66666 194.87761 416.0 195.40134C416.33334 195.92506 416.66666 196.6063 417.0 196.97252C417.33334 197.33876 417.66666 197.41165 418.0 197.59871C418.33334 197.78578 418.66666 197.92949 419.0 198.09488C419.33334 198.26027 419.66666 198.42566 420.0 198.59105C420.33334 198.75644 420.66666 198.92183 421.0 199.08722C421.33334 199.2526 421.66666 199.41798 422.0 199.58337C422.33334 199.74876 422.66666 199.91415 423.0 200.07954C423.33334 200.24493 423.66666 200.41032 424.0 200.57571C424.33334 200.7411 424.66666 200.90648 425.0 201.07187C425.33334 201.23726 425.66666 201.40265 426.0 201.56804C426.33334 201.73343 426.66666 201.89882 427.0 202.06421C427.33334 202.2296 427.66666 202.39499 428.0 202.56036C428.33334 202.72575 428.66666 202.89114 429.0 203.05653C429.33334 203.22192 429.66666 203.38731 430.0 203.5527C430.33334 203.7181 430.66666 203.88348 431.0 204.04887C431.33334 204.21425 431.66666 204.37964 432.0 204.54503C432.33334 204.71042 432.66666 204.87581 433.0 205.0412C433.33334 205.20659 433.66666 205.37198 434.0 205.53737C434.33334 205.70274 434.66666 205.86813 435.0 206.03352C435.33334 206.19891 435.66666 206.3643 436.0 206.5297C436.33334 206.69508 436.66666 206.86047 437.0 207.02586C437.33334 207.19125 437.66666 207.35663 438.0 207.52202C438.33334 207.68741 438.66666 207.8528 439.0 208.01819C439.33334 208.18358 439.66666 208.30717 440.0 208.51436C440.33334 208.72154 440.66666 208.99896 441.0 209.26128C441.33334 209.52359 441.66666 209.81258 442.0 210.08823C442.33334 210.36388 442.66666 210.63951 443.0 210.91516C443.33334 211.19081 443.66666 211.46646 444.0 211.74211C444.33334 212.01776 444.66666 212.2934 445.0 212.56905C445.33334 212.8447 445.66666 213.12035 446.0 213.396C446.33334 213.67163 446.66666 213.94728 447.0 214.22293C447.33334 214.49858 447.66666 214.77423 448.0 215.04988C448.33334 215.32552 448.66666 215.60117 449.0 215.87682C449.33334 216.15247 449.66666 216.42812 450.0 216.70377C450.33334 216.9794 450.66666 217.25505 451.0 217.5307C451.33334 217.80635 451.66666 218.082 452.0 218.35765C452.33334 218.63329 452.66666 218.90894 453.0 219.18459C453.33334 219.46024 453.66666 219.73589 454.0 220.01154C454.33334 220.28717 454.66666 220.56282 455.0 220.83847C455.33334 221.11412 455.66666 221.38977 456.0 221.66542C456.33334 221.94106 456.66666 222.2167 457.0 222.49236C457.33334 222.768 457.66666 223.04366 458.0 223.3193C458.33334 223.59494 458.66666 223.87059 459.0 224.14624C459.33334 224.42189 459.66666 224.69754 460.0 224.97319C460.33334 225.24883 460.66666 225.52448 461.0 225.80013C461.33334 226.07578 461.66666 226.35143 462.0 226.62706C462.33334 226.90271 462.66666 227.20471 463.0 227.45401C463.33334 227.70331 463.66666 227.91493 464.0 228.1229C464.33334 228.33084 464.66666 228.50879 465.0 228.70175C465.33334 228.8947 465.66666 229.08766 466.0 229.28061C466.33334 229.47356 466.66666 229.66652 467.0 229.85947C467.33334 230.05241 467.66666 230.24538 468.0 230.43832C468.33334 230.63129 468.66666 230.82423 469.0 231.01718C469.33334 231.21014 469.66666 231.40309 470.0 231.59605C470.33334 231.789 470.66666 231.98195 471.0 232.17491C471.33334 232.36786 471.66666 232.5608 472.0 232.75377C472.33334 232.94672 472.66666 233.13968 473.0 233.33263C473.33334 233.52557 473.66666 233.71854 474.0 233.91148C474.33334 234.10443 474.66666 234.2974 475.0 234.49034C475.33334 234.6833 475.66666 234.87625 476.0 235.0692C476.33334 235.26216 476.66666 235.45511 477.0 235.64807C477.33334 235.84102 477.66666 236.03397 478.0 236.22693C478.33334 236.41988 478.66666 236.61282 479.0 236.80579C479.33334 236.99873 479.66666 237.1917 480.0 237.38464C480.33334 237.57759 480.66666 237.77055 481.0 237.9635C481.33334 238.15645 481.66666 238.34941 482.0 238.54236C482.33334 238.73532 482.66666 238.92827 483.0 239.12122C483.33334 239.31418 483.66666 239.50713 484.0 239.70009C484.33334 239.89304 484.66666 240.08598 485.0 240.27895C485.33334 240.4719 485.66666 240.71465 486.0 240.8578C486.33334 241.00096 486.66666 241.09119 487.0 241.13786C487.33334 241.18454 487.66666 241.13786 488.0 241.13786C488.33334 241.13786 488.66666 241.13786 489.0 241.13786C489.33334 241.13786 489.66666 241.13786 490.0 241.13786C490.33334 241.13786 490.66666 241.13786 491.0 241.13786C491.33334 241.13786 491.66666 241.13786 492.0 241.13786C492.33334 241.13786 492.66666 241.13786 493.0 241.13786C493.33334 241.13786 493.66666 241.13786 494.0 241.13786C494.33334 241.13786 494.66666 241.13786 495.0 241.13786C495.33334 241.13786 495.66666 241.13786 496.0 241.13786C496.33334 241.13786 496.66666 241.13786 497.0 241.13786C497.33334 241.13786 497.66666 241.13786 498.0 241.13786C498.33334 241.13786 498.66666 241.13786 499.0 241.13786C499.33334 241.13786 499.66666 241.13786 500.0 241.13786C500.33334 241.13786 500.66666 241.13786 501.0 241.13786C501.33334 241.13786 501.66666 241.13786 502.0 241.13786C502.33334 241.13786 502.66666 241.13786 503.0 241.13786C503.33334 241.13786 503.66666 241.13786 504.0 241.13786C504.33334 241.13786 504.66666 241.13786 505.0 241.13786C505.33334 241.13786 505.66666 241.13786 506.0 241.13786C506.33334 241.13786 506.66666 241.13786 507.0 241.13786C507.33334 241.13786 507.66666 241.13786 508.0 241.13786C508.33334 241.13786 508.66666 241.15965 509.0 241.13786C509.33334 241.11607 509.66666 241.08405 510.0 241.00713C510.33334 240.9302 510.66666 240.7866 511.0 240.67635C511.33334 240.56609 511.66666 240.45584 512.0 240.34558C512.3333 240.23532 512.6667 240.12506 513.0 240.0148C513.3333 239.90454 513.6667 239.79428 514.0 239.68402C514.3333 239.57376 514.6667 239.4635 515.0 239.35324C515.3333 239.24298 515.6667 239.13272 516.0 239.02246C516.3333 238.91222 516.6667 238.80196 517.0 238.6917C517.3333 238.58144 517.6667 238.47118 518.0 238.36092C518.3333 238.25066 518.6667 238.1404 519.0 238.03014C519.3333 237.91988 519.6667 237.80962 520.0 237.69936C520.3333 237.5891 520.6667 237.47884 521.0 237.36858C521.3333 237.25833 521.6667 237.14807 522.0 237.03781C522.3333 236.92755 522.6667 236.81729 523.0 236.70703C523.3333 236.59677 523.6667 236.48651 524.0 236.37625C524.3333 236.26599 524.6667 236.15573 525.0 236.04547C525.3333 235.93521 525.6667 235.82495 526.0 235.71469C526.3333 235.60445 526.6667 235.49419 527.0 235.38393C527.3333 235.27367 527.6667 235.1634 528.0 235.05315C528.3333 234.94289 528.6667 234.83263 529.0 234.72237C529.3333 234.6121 529.6667 234.50185 530.0 234.39159C530.3333 234.28133 530.6667 234.17107 531.0 234.0608C531.3333 233.95056 531.6667 233.81761 532.0 233.73004C532.3333 233.64246 532.6667 233.54024 533.0 233.53534C533.3333 233.53046 533.6667 233.6456 534.0 233.70073C534.3333 233.75586 534.6667 233.81099 535.0 233.86612C535.3333 233.92125 535.6667 233.97638 536.0 234.03151C536.3333 234.08664 536.6667 234.14177 537.0 234.1969C537.3333 234.25203 537.6667 234.30716 538.0 234.36229C538.3333 234.41742 538.6667 234.47255 539.0 234.52768C539.3333 234.58281 539.6667 234.63794 540.0 234.69307C540.3333 234.7482 540.6667 234.80333 541.0 234.85846C541.3333 234.91359 541.6667 234.96872 542.0 235.02385C542.3333 235.07896 542.6667 235.1341 543.0 235.18922C543.3333 235.24435 543.6667 235.29948 544.0 235.35461C544.3333 235.40974 544.6667 235.46487 545.0 235.52C545.3333 235.57513 545.6667 235.63026 546.0 235.6854C546.3333 235.74052 546.6667 235.79565 547.0 235.85078C547.3333 235.90591 547.6667 235.96104 548.0 236.01617C548.3333 236.0713 548.6667 236.12643 549.0 236.18156C549.3333 236.2367 549.6667 236.29182 550.0 236.34695C550.3333 236.40208 550.6667 236.45721 551.0 236.51234C551.3333 236.56747 551.6667 236.6226 552.0 236.67773C552.3333 236.73285 552.6667 236.78798 553.0 236.84311C553.3333 236.89824 553.6667 236.95337 554.0 237.0085C554.3333 237.06363 554.6667 237.12933 555.0 237.17389C555.3333 237.21846 555.6667 237.30023 556.0 237.2759C556.3333 237.25154 556.6667 237.1105 557.0 237.0278C557.3333 236.94511 557.6667 236.86241 558.0 236.77972C558.3333 236.69702 558.6667 236.61433 559.0 236.53163C559.3333 236.44894 559.6667 236.36626 560.0 236.28355C560.3333 236.20087 560.6667 236.11816 561.0 236.03548C561.3333 235.95277 561.6667 235.87009 562.0 235.78738C562.3333 235.7047 562.6667 235.62201 563.0 235.5393C563.3333 235.45662 563.6667 235.37392 564.0 235.29123C564.3333 235.20853 564.6667 235.12584 565.0 235.04314C565.3333 234.96045 565.6667 234.87775 566.0 234.79506C566.3333 234.71237 566.6667 234.62967 567.0 234.54698C567.3333 234.46428 567.6667 234.38159 568.0 234.29889C568.3333 234.2162 568.6667 234.1335 569.0 234.05081C569.3333 233.96812 569.6667 233.88542 570.0 233.80273C570.3333 233.72003 570.6667 233.63734 571.0 233.55464C571.3333 233.47195 571.6667 233.38925 572.0 233.30656C572.3333 233.22388 572.6667 233.14117 573.0 233.05849C573.3333 232.97578 573.6667 232.8931 574.0 232.8104C574.3333 232.7277 574.6667 232.645 575.0 232.56232C575.3333 232.47961 575.6667 232.39693 576.0 232.31424C576.3333 232.23154 576.6667 232.14885 577.0 232.06615C577.3333 231.98346 577.6667 231.89809 578.0 231.81807C578.3333 231.73805 578.6667 231.58337 579.0 231.58604C579.3333 231.58871 579.6667 231.75143 580.0 231.83412C580.3333 231.91682 580.6667 231.99951 581.0 232.08221C581.3333 232.1649 581.6667 232.2476 582.0 232.33029C582.3333 232.413 582.6667 232.49568 583.0 232.57837C583.3333 232.66107 583.6667 232.74376 584.0 232.82646C584.3333 232.90915 584.6667 232.99185 585.0 233.07454C585.3333 233.15724 585.6667 233.23993 586.0 233.32262C586.3333 233.40532 586.6667 233.488 587.0 233.57071C587.3333 233.6534 587.6667 233.7361 588.0 233.81879C588.3333 233.90149 588.6667 233.98418 589.0 234.06686C589.3333 234.14957 589.6667 234.23225 590.0 234.31496C590.3333 234.39764 590.6667 234.48035 591.0 234.56303C591.3333 234.64574 591.6667 234.72842 592.0 234.81113C592.3333 234.89381 592.6667 234.9765 593.0 235.0592C593.3333 235.14189 593.6667 235.2246 594.0 235.30728C594.3333 235.38998 594.6667 235.47267 595.0 235.55537C595.3333 235.63806 595.6667 235.72075 596.0 235.80345C596.3333 235.88614 596.6667 235.96884 597.0 236.05153C597.3333 236.13423 597.6667 236.21692 598.0 236.29962C598.3333 236.38231 598.6667 236.46501 599.0 236.5477C599.3333 236.63039 599.6667 236.71309 600.0 236.79578C600.3333 236.87848 600.6667 236.96117 601.0 237.04387C601.3333 237.12656 601.6667 237.41023 602.0 237.29195C602.3333 237.17366 602.6667 236.67294 603.0 236.33414C603.3333 235.99533 603.6667 235.61745 604.0 235.25911C604.3333 234.90076 604.6667 234.54242 605.0 234.18408C605.3333 233.82574 605.6667 233.46739 606.0 233.10905C606.3333 232.75072 606.6667 232.39236 607.0 232.03403C607.3333 231.67569 607.6667 231.31735 608.0 230.959C608.3333 230.60066 608.6667 230.24232 609.0 229.88399C609.3333 229.52563 609.6667 229.1673 610.0 228.80896C610.3333 228.4506 610.6667 228.09227 611.0 227.73393C611.3333 227.3756 611.6667 227.01724 612.0 226.6589C612.3333 226.30057 612.6667 225.94221 613.0 225.58388C613.3333 225.22554 613.6667 224.8672 614.0 224.50885C614.3333 224.15051 614.6667 223.79218 615.0 223.43384C615.3333 223.07549 615.6667 222.71715 616.0 222.35881C616.3333 222.00046 616.6667 221.64212 617.0 221.28378C617.3333 220.92545 617.6667 220.5671 618.0 220.20876C618.3333 219.85042 618.6667 219.49207 619.0 219.13373C619.3333 218.77539 619.6667 218.41705 620.0 218.0587C620.3333 217.70036 620.6667 217.34203 621.0 216.98369C621.3333 216.62534 621.6667 216.267 622.0 215.90866C622.3333 215.55031 622.6667 215.19197 623.0 214.83363C623.3333 214.4753 623.6667 214.11694 624.0 213.7586C624.3333 213.40027 624.6667 212.84583 625.0 212.68358C625.3333 212.52133 625.6667 212.69931 626.0 212.78516C626.3333 212.87099 626.6667 213.0608 627.0 213.19862C627.3333 213.33644 627.6667 213.47427 628.0 213.61209C628.3333 213.74992 628.6667 213.88774 629.0 214.02556C629.3333 214.16339 629.6667 214.30121 630.0 214.43904C630.3333 214.57686 630.6667 214.71469 631.0 214.85251C631.3333 214.99033 631.6667 215.12816 632.0 215.26598C632.3333 215.40381 632.6667 215.54163 633.0 215.67944C633.3333 215.81728 633.6667 215.9551 634.0 216.09293C634.3333 216.23074 634.6667 216.36858 635.0 216.5064C635.3333 216.64421 635.6667 216.78204 636.0 216.91986C636.3333 217.0577 636.6667 217.19551 637.0 217.33333C637.3333 217.47116 637.6667 217.60898 638.0 217.74681C638.3333 217.88463 638.6667 218.02246 639.0 218.16028C639.3333 218.2981 639.6667 218.43593 640.0 218.57375C640.3333 218.71158 640.6667 218.8494 641.0 218.98721C641.3333 219.12505 641.6667 219.26286 642.0 219.4007C642.3333 219.53851 642.6667 219.67635 643.0 219.81416C643.3333 219.95198 643.6667 220.08981 644.0 220.22763C644.3333 220.36546 644.6667 220.50328 645.0 220.6411C645.3333 220.77893 645.6667 220.91675 646.0 221.05458C646.3333 221.1924 646.6667 221.33022 647.0 221.46805C647.3333 221.60587 647.6667 221.72523 648.0 221.88152C648.3333 222.0378 648.6667 222.22188 649.0 222.40572C649.3333 222.58955 649.6667 222.79163 650.0 222.98457C650.3333 223.17754 650.6667 223.37048 651.0 223.56343C651.3333 223.7564 651.6667 223.94934 652.0 224.1423C652.3333 224.33525 652.6667 224.5282 653.0 224.72116C653.3333 224.91411 653.6667 225.10706 654.0 225.30002C654.3333 225.49297 654.6667 225.68593 655.0 225.87888C655.3333 226.07182 655.6667 226.26479 656.0 226.45773C656.3333 226.65068 656.6667 226.84364 657.0 227.03659C657.3333 227.22955 657.6667 227.4225 658.0 227.61545C658.3333 227.80841 658.6667 228.00136 659.0 228.19432C659.3333 228.38727 659.6667 228.58022 660.0 228.77318C660.3333 228.96613 660.6667 229.15907 661.0 229.35204C661.3333 229.54498 661.6667 229.73795 662.0 229.9309C662.3333 230.12384 662.6667 230.3168 663.0 230.50975C663.3333 230.7027 663.6667 230.89566 664.0 231.08861C664.3333 231.28157 664.6667 231.47452 665.0 231.66747C665.3333 231.86043 665.6667 232.05338 666.0 232.24634C666.3333 232.43929 666.6667 232.63223 667.0 232.8252C667.3333 233.01814 667.6667 233.21109 668.0 233.40405C668.3333 233.597 668.6667 233.78996 669.0 233.98291C669.3333 234.17586 669.6667 234.36882 670.0 234.56177C670.3333 234.75471 670.6667 234.99304 671.0 235.14062C671.3333 235.28822 671.6667 235.38242 672.0 235.44731C672.3333 235.5122 672.6667 235.50244 673.0 235.53001C673.3333 235.55757 673.6667 235.58514 674.0 235.6127C674.3333 235.64027 674.6667 235.66783 675.0 235.6954C675.3333 235.72296 675.6667 235.75053 676.0 235.77809C676.3333 235.80566 676.6667 235.83322 677.0 235.8608C677.3333 235.88835 677.6667 235.91591 678.0 235.94348C678.3333 235.97104 678.6667 235.99861 679.0 236.02617C679.3333 236.05374 679.6667 236.0813 680.0 236.10887C680.3333 236.13643 680.6667 236.164 681.0 236.19156C681.3333 236.21913 681.6667 236.24669 682.0 236.27426C682.3333 236.30182 682.6667 236.32939 683.0 236.35695C683.3333 236.38452 683.6667 236.41208 684.0 236.43965C684.3333 236.46721 684.6667 236.49478 685.0 236.52234C685.3333 236.54991 685.6667 236.57747 686.0 236.60504C686.3333 236.6326 686.6667 236.66017 687.0 236.68773C687.3333 236.71529 687.6667 236.74286 688.0 236.77042C688.3333 236.79799 688.6667 236.82555 689.0 236.85312C689.3333 236.88068 689.6667 236.90825 690.0 236.9358C690.3333 236.96338 690.6667 236.99094 691.0 237.01851C691.3333 237.04607 691.6667 237.07364 692.0 237.1012C692.3333 237.12877 692.6667 237.15633 693.0 237.1839C693.3333 237.21146 693.6667 237.30974 694.0 237.26659C694.3333 237.22343 694.6667 237.13351 695.0 236.92496C695.3333 236.71642 695.6667 236.31854 696.0 236.01534C696.3333 235.71211 696.6667 235.4089 697.0 235.1057C697.3333 234.80247 697.6667 234.49927 698.0 234.19606C698.3333 233.89284 698.6667 233.58963 699.0 233.28642C699.3333 232.9832 699.6667 232.68 700.0 232.37679C700.3333 232.07356 700.6667 231.77036 701.0 231.46715C701.3333 231.16394 701.6667 230.86072 702.0 230.55751C702.3333 230.2543 702.6667 229.95108 703.0 229.64787C703.3333 229.34467 703.6667 229.04144 704.0 228.73824C704.3333 228.43503 704.6667 228.1318 705.0 227.8286C705.3333 227.52539 705.6667 227.22217 706.0 226.91896C706.3333 226.61575 706.6667 226.31255 707.0 226.00932C707.3333 225.70612 707.6667 225.40291 708.0 225.09969C708.3333 224.79648 708.6667 224.49327 709.0 224.19005C709.3333 223.88684 709.6667 223.58363 710.0 223.28041C710.3333 222.9772 710.6667 222.674 711.0 222.37077C711.3333 222.06757 711.6667 221.76436 712.0 221.46115C712.3333 221.15793 712.6667 220.85472 713.0 220.55151C713.3333 220.24829 713.6667 219.94508 714.0 219.64188C714.3333 219.33865 714.6667 219.03545 715.0 218.73224C715.3333 218.42902 715.6667 218.12581 716.0 217.8226C716.3333 217.51938 716.6667 217.21617 717.0 216.91296C717.3333 216.60976 717.6667 216.30653 718.0 216.00333C718.3333 215.70012 718.6667 215.3969 719.0 215.09369C719.3333 214.79048 719.6667 214.48726 720.0 214.18405C720.3333 213.88084 720.6667 213.57762 721.0 213.27441C721.3333 212.9712 721.6667 212.66798 722.0 212.36478C722.3333 212.06157 722.6667 211.75835 723.0 211.45514C723.3333 211.15193 723.6667 210.84872 724.0 210.5455C724.3333 210.2423 724.6667 209.93909 725.0 209.63586C725.3333 209.33266 725.6667 209.02945 726.0 208.72623C726.3333 208.42302 726.6667 208.11981 727.0 207.81659C727.3333 207.51338 727.6667 207.21017 728.0 206.90695C728.3333 206.60374 728.6667 206.30054 729.0 205.99733C729.3333 205.6941 729.6667 205.3909 730.0 205.08769C730.3333 204.78447 730.6667 204.48126 731.0 204.17805C731.3333 203.87483 731.6667 203.57162 732.0 203.26842C732.3333 202.9652 733.0 202.35878 733.0 202.35878" fill-rule="nonzero" stroke="#0000ff" stroke-linecap="butt" stroke-opacity="0.5019608" stroke-width="8.0"></path>
     <path d="M40.278126 394.15793Q40.278126 392.37668 40.6375 391.29855Q41.0125 390.2048 41.73125 389.62668Q42.45 389.03293 43.54375 389.03293Q44.35625 389.03293 44.965626 389.36105Q45.575 389.68918 45.965626 390.29855Q46.371876 390.90793 46.590626 391.78293Q46.809376 392.65793 46.809376 394.15793Q46.809376 395.92355 46.45 397.00168Q46.090626 398.0798 45.371876 398.67355Q44.653126 399.2673 43.54375 399.2673Q42.10625 399.2673 41.278126 398.22043Q40.278126 396.97043 40.278126 394.15793ZM41.54375 394.15793Q41.54375 396.62668 42.121876 397.43918Q42.7 398.25168 43.54375 398.25168Q44.403126 398.25168 44.98125 397.43918Q45.559376 396.61105 45.559376 394.15793Q45.559376 391.67355 44.98125 390.86105Q44.403126 390.04855 43.528126 390.04855Q42.684376 390.04855 42.184376 390.7673Q41.54375 391.68918 41.54375 394.15793Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M36.91875 341.73633L35.684376 341.73633L35.684376 333.89258Q35.246876 334.31445 34.5125 334.75195Q33.79375 335.17383 33.23125 335.37695L33.23125 334.18945Q34.2625 333.70508 35.028126 333.01758Q35.809376 332.33008 36.121876 331.67383L36.91875 331.67383L36.91875 341.73633ZM40.278126 336.79883Q40.278126 335.01758 40.6375 333.93945Q41.0125 332.8457 41.73125 332.26758Q42.45 331.67383 43.54375 331.67383Q44.35625 331.67383 44.965626 332.00195Q45.575 332.33008 45.965626 332.93945Q46.371876 333.54883 46.590626 334.42383Q46.809376 335.29883 46.809376 336.79883Q46.809376 338.56445 46.45 339.64258Q46.090626 340.7207 45.371876 341.31445Q44.653126 341.9082 43.54375 341.9082Q42.10625 341.9082 41.278126 340.86133Q40.278126 339.61133 40.278126 336.79883ZM41.54375 336.79883Q41.54375 339.26758 42.121876 340.08008Q42.7 340.89258 43.54375 340.89258Q44.403126 340.89258 44.98125 340.08008Q45.559376 339.25195 45.559376 336.79883Q45.559376 334.31445 44.98125 333.50195Q44.403126 332.68945 43.528126 332.68945Q42.684376 332.68945 42.184376 333.4082Q41.54375 334.33008 41.54375 336.79883Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M38.746876 283.18976L38.746876 284.37726L32.121876 284.37726Q32.10625 283.93976 32.2625 283.51788Q32.528126 282.846 33.075 282.18976Q33.6375 281.5335 34.684376 280.67413Q36.325 279.33038 36.8875 278.54913Q37.465626 277.76788 37.465626 277.06476Q37.465626 276.33038 36.934376 275.83038Q36.41875 275.33038 35.590626 275.33038Q34.7 275.33038 34.153126 275.86163Q33.621876 276.39288 33.621876 277.346L32.35625 277.20538Q32.48125 275.79913 33.325 275.06476Q34.184376 274.31476 35.60625 274.31476Q37.059376 274.31476 37.8875 275.11163Q38.73125 275.9085 38.73125 277.096Q38.73125 277.70538 38.48125 278.2835Q38.246876 278.86163 37.66875 279.50226Q37.10625 280.14288 35.778126 281.26788Q34.66875 282.18976 34.35625 282.5335Q34.04375 282.86163 33.840626 283.18976L38.746876 283.18976ZM40.278126 279.43976Q40.278126 277.6585 40.6375 276.58038Q41.0125 275.48663 41.73125 274.9085Q42.45 274.31476 43.54375 274.31476Q44.35625 274.31476 44.965626 274.64288Q45.575 274.971 45.965626 275.58038Q46.371876 276.18976 46.590626 277.06476Q46.809376 277.93976 46.809376 279.43976Q46.809376 281.20538 46.45 282.2835Q46.090626 283.36163 45.371876 283.95538Q44.653126 284.54913 43.54375 284.54913Q42.10625 284.54913 41.278126 283.50226Q40.278126 282.25226 40.278126 279.43976ZM41.54375 279.43976Q41.54375 281.9085 42.121876 282.721Q42.7 283.5335 43.54375 283.5335Q44.403126 283.5335 44.98125 282.721Q45.559376 281.89288 45.559376 279.43976Q45.559376 276.95538 44.98125 276.14288Q44.403126 275.33038 43.528126 275.33038Q42.684376 275.33038 42.184376 276.04913Q41.54375 276.971 41.54375 279.43976Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M32.29375 224.37755L33.5125 224.20567Q33.73125 225.25255 34.23125 225.7213Q34.746876 226.17442 35.48125 226.17442Q36.35625 226.17442 36.95 225.58067Q37.54375 224.9713 37.54375 224.08067Q37.54375 223.23692 36.98125 222.69005Q36.434376 222.14317 35.590626 222.14317Q35.23125 222.14317 34.715626 222.26817L34.85625 221.19005Q34.98125 221.20567 35.04375 221.20567Q35.840626 221.20567 36.465626 220.79942Q37.090626 220.39317 37.090626 219.5338Q37.090626 218.86192 36.6375 218.42442Q36.184376 217.9713 35.45 217.9713Q34.73125 217.9713 34.246876 218.42442Q33.778126 218.86192 33.6375 219.76817L32.41875 219.54942Q32.6375 218.31505 33.434376 217.64317Q34.23125 216.95567 35.41875 216.95567Q36.246876 216.95567 36.934376 217.31505Q37.621876 217.6588 37.98125 218.26817Q38.35625 218.87755 38.35625 219.56505Q38.35625 220.20567 38.0125 220.73692Q37.66875 221.26817 36.98125 221.5963Q37.871876 221.79942 38.35625 222.44005Q38.85625 223.08067 38.85625 224.06505Q38.85625 225.37755 37.8875 226.2838Q36.934376 227.19005 35.48125 227.19005Q34.153126 227.19005 33.278126 226.4088Q32.41875 225.62755 32.29375 224.37755ZM40.278126 222.08067Q40.278126 220.29942 40.6375 219.2213Q41.0125 218.12755 41.73125 217.54942Q42.45 216.95567 43.54375 216.95567Q44.35625 216.95567 44.965626 217.2838Q45.575 217.61192 45.965626 218.2213Q46.371876 218.83067 46.590626 219.70567Q46.809376 220.58067 46.809376 222.08067Q46.809376 223.8463 46.45 224.92442Q46.090626 226.00255 45.371876 226.5963Q44.653126 227.19005 43.54375 227.19005Q42.10625 227.19005 41.278126 226.14317Q40.278126 224.89317 40.278126 222.08067ZM41.54375 222.08067Q41.54375 224.54942 42.121876 225.36192Q42.7 226.17442 43.54375 226.17442Q44.403126 226.17442 44.98125 225.36192Q45.559376 224.5338 45.559376 222.08067Q45.559376 219.5963 44.98125 218.7838Q44.403126 217.9713 43.528126 217.9713Q42.684376 217.9713 42.184376 218.69005Q41.54375 219.61192 41.54375 222.08067Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M36.23125 169.65909L36.23125 167.25284L31.871876 167.25284L31.871876 166.12784L36.45 159.64346L37.45 159.64346L37.45 166.12784L38.809376 166.12784L38.809376 167.25284L37.45 167.25284L37.45 169.65909L36.23125 169.65909ZM36.23125 166.12784L36.23125 161.61221L33.090626 166.12784L36.23125 166.12784ZM40.278126 164.72159Q40.278126 162.94034 40.6375 161.86221Q41.0125 160.76846 41.73125 160.19034Q42.45 159.59659 43.54375 159.59659Q44.35625 159.59659 44.965626 159.92471Q45.575 160.25284 45.965626 160.86221Q46.371876 161.47159 46.590626 162.34659Q46.809376 163.22159 46.809376 164.72159Q46.809376 166.48721 46.45 167.56534Q46.090626 168.64346 45.371876 169.23721Q44.653126 169.83096 43.54375 169.83096Q42.10625 169.83096 41.278126 168.78409Q40.278126 167.53409 40.278126 164.72159ZM41.54375 164.72159Q41.54375 167.19034 42.121876 168.00284Q42.7 168.81534 43.54375 168.81534Q44.403126 168.81534 44.98125 168.00284Q45.559376 167.17471 45.559376 164.72159Q45.559376 162.23721 44.98125 161.42471Q44.403126 160.61221 43.528126 160.61221Q42.684376 160.61221 42.184376 161.33096Q41.54375 162.25284 41.54375 164.72159Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M32.278126 109.675L33.575 109.56563Q33.715626 110.50313 34.23125 110.9875Q34.7625 111.45625 35.496876 111.45625Q36.3875 111.45625 36.996876 110.78438Q37.621876 110.1125 37.621876 109.01875Q37.621876 107.95625 37.028126 107.34688Q36.434376 106.7375 35.48125 106.7375Q34.8875 106.7375 34.403126 107.01875Q33.934376 107.28438 33.653126 107.70625L32.496876 107.56563L33.465626 102.40938L38.45 102.40938L38.45 103.59688L34.45 103.59688L33.91875 106.28438Q34.825 105.65938 35.809376 105.65938Q37.121876 105.65938 38.0125 106.56563Q38.91875 107.47188 38.91875 108.90938Q38.91875 110.26875 38.1375 111.25313Q37.16875 112.47188 35.496876 112.47188Q34.1375 112.47188 33.2625 111.70625Q32.403126 110.94063 32.278126 109.675ZM40.278126 107.3625Q40.278126 105.58125 40.6375 104.50313Q41.0125 103.40938 41.73125 102.83125Q42.45 102.2375 43.54375 102.2375Q44.35625 102.2375 44.965626 102.56563Q45.575 102.89375 45.965626 103.50313Q46.371876 104.1125 46.590626 104.9875Q46.809376 105.8625 46.809376 107.3625Q46.809376 109.12813 46.45 110.20625Q46.090626 111.28438 45.371876 111.87813Q44.653126 112.47188 43.54375 112.47188Q42.10625 112.47188 41.278126 111.425Q40.278126 110.175 40.278126 107.3625ZM41.54375 107.3625Q41.54375 109.83125 42.121876 110.64375Q42.7 111.45625 43.54375 111.45625Q44.403126 111.45625 44.98125 110.64375Q45.559376 109.81563 45.559376 107.3625Q45.559376 104.87813 44.98125 104.06563Q44.403126 103.25313 43.528126 103.25313Q42.684376 103.25313 42.184376 103.97188Q41.54375 104.89375 41.54375 107.3625Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M36.387608 448.1345L37.105762 448.85263L33.08409 452.8743Q32.818928 452.60913 32.6532 452.26663Q32.399082 451.70316 32.33279 450.97397Q32.27755 450.2337 32.399082 449.0736Q32.57586 447.26166 32.443275 446.44406Q32.321743 445.61542 31.901897 445.19556Q31.459957 444.75363 30.841238 444.77573Q30.211472 444.78677 29.703238 445.295Q29.16186 445.8364 29.16186 446.4772Q29.16186 447.118 29.725336 447.70358L28.885647 448.38858Q28.1012 447.44946 28.16749 446.4993Q28.233782 445.527 29.106617 444.65417Q29.979452 443.78134 30.97382 443.75925Q31.96819 443.73715 32.686344 444.45532Q33.050945 444.81992 33.24982 445.32816Q33.448696 445.81427 33.49289 446.56558Q33.537083 447.2948 33.41555 448.76425Q33.305065 450.00168 33.316113 450.4105Q33.32716 450.79718 33.4045 451.11758L36.387608 448.1345ZM35.139122 444.83096Q34.056366 443.7482 33.62547 442.87537Q33.18353 441.9915 33.260868 441.20703Q33.34926 440.41156 34.01217 439.74863Q34.498306 439.2625 35.061783 439.09677Q35.636307 438.91998 36.255024 439.05258Q36.862694 439.1741 37.525608 439.57187Q38.18852 439.9696 39.0945 440.87558Q40.16621 441.9473 40.597103 442.82013Q41.039043 443.68192 40.961704 444.48846Q40.884365 445.27292 40.210403 445.94687Q39.337566 446.8197 38.19957 446.69818Q36.851646 446.5435 35.139122 444.83096ZM35.90147 444.0686Q37.393024 445.56018 38.243763 445.7038Q39.0945 445.84744 39.602734 445.3392Q40.122013 444.81992 39.967335 443.98022Q39.823704 443.1295 38.33215 441.63794Q36.829548 440.13535 35.98986 440.00275Q35.15017 439.84808 34.61984 440.3784Q34.111607 440.88663 34.233143 441.6269Q34.39887 442.566 35.90147 444.0686ZM46.2871 438.235L47.005257 438.95312L42.98359 442.97482Q42.718422 442.70966 42.552692 442.36713Q42.298576 441.80365 42.23229 441.07446Q42.177044 440.3342 42.298576 439.1741Q42.475353 437.36215 42.342773 436.54456Q42.221237 435.7159 41.80139 435.29608Q41.35945 434.85413 40.740734 434.87622Q40.110966 434.88727 39.602734 435.3955Q39.061356 435.9369 39.061356 436.5777Q39.061356 437.2185 39.62483 437.80408L38.78514 438.4891Q38.000694 437.55 38.066986 436.5998Q38.133278 435.62753 39.00611 434.7547Q39.87895 433.88187 40.873314 433.85977Q41.867683 433.83768 42.58584 434.55582Q42.950443 434.9204 43.149315 435.42865Q43.34819 435.9148 43.392384 436.66608Q43.436577 437.3953 43.315044 438.86475Q43.20456 440.10217 43.215607 440.511Q43.226654 440.89767 43.303997 441.21808L46.2871 438.235ZM45.038616 434.93146Q43.95586 433.84872 43.524967 432.9759Q43.083023 432.09198 43.160362 431.30756Q43.248753 430.51205 43.911667 429.84915Q44.3978 429.363 44.961277 429.19727Q45.5358 429.0205 46.15452 429.15308Q46.762188 429.27463 47.425102 429.67236Q48.088013 430.0701 48.993996 430.9761Q50.065704 432.0478 50.496597 432.92062Q50.938538 433.7824 50.8612 434.58896Q50.78386 435.3734 50.109898 436.04736Q49.237064 436.9202 48.099064 436.79868Q46.75114 436.64398 45.038616 434.93146ZM45.800964 434.16913Q47.29252 435.66068 48.143257 435.8043Q48.993996 435.94794 49.502228 435.4397Q50.02151 434.9204 49.86683 434.08072Q49.723198 433.22998 48.231644 431.73843Q46.729042 430.23584 45.889355 430.10324Q45.049664 429.94858 44.519337 430.4789Q44.0111 430.98715 44.132637 431.7274Q44.298363 432.6665 45.800964 434.16913ZM51.07112 431.24124L50.31982 430.48996L52.617916 428.19186L53.369217 428.94315L51.07112 431.24124ZM52.81679 427.1533Q51.734035 426.07053 51.30314 425.1977Q50.8612 424.3138 50.938538 423.52936Q51.026928 422.7339 51.68984 422.07095Q52.175976 421.58484 52.739452 421.4191Q53.313976 421.2423 53.932693 421.3749Q54.540363 421.49643 55.203278 421.8942Q55.866188 422.29193 56.77217 423.1979Q57.84388 424.26962 58.274773 425.14246Q58.716713 426.00424 58.639374 426.8108Q58.562035 427.59525 57.888073 428.2692Q57.015236 429.14203 55.87724 429.0205Q54.529316 428.8658 52.81679 427.1533ZM53.57914 426.39096Q55.070694 427.8825 55.921432 428.02612Q56.77217 428.16977 57.280403 427.66153Q57.799683 427.14224 57.645004 426.30255Q57.501373 425.4518 56.00982 423.96027Q54.507217 422.45767 53.66753 422.32507Q52.82784 422.1704 52.29751 422.70074Q51.789276 423.20895 51.910812 423.94922Q52.076538 424.88834 53.57914 426.39096ZM63.14718 422.81122L61.68877 421.3528L59.05922 423.98236L58.374207 423.29736L57.21411 416.59088L57.82178 415.98322L61.755062 419.9165L62.572655 419.0989L63.257664 419.7839L62.44007 420.6015L63.89848 422.0599L63.14718 422.81122ZM61.00376 420.6678L58.274773 417.9388L59.103413 422.56815L61.00376 420.6678ZM63.79904 418.51334L63.04774 417.76202L65.34584 415.46393L66.09714 416.21524L63.79904 418.51334ZM65.544716 414.42538Q64.46195 413.34262 64.03106 412.4698Q63.589123 411.5859 63.666462 410.80145Q63.75485 410.00595 64.41776 409.34305Q64.9039 408.8569 65.46738 408.6912Q66.0419 408.5144 66.660614 408.64697Q67.26829 408.76852 67.9312 409.16626Q68.59411 409.56403 69.50009 410.47Q70.5718 411.54172 71.00269 412.41455Q71.44463 413.27634 71.367294 414.08286Q71.289955 414.8673 70.616 415.5413Q69.74316 416.41412 68.605156 416.29257Q67.25724 416.1379 65.544716 414.42538ZM66.30706 413.66302Q67.798615 415.15457 68.64935 415.29822Q69.50009 415.44183 70.00832 414.9336Q70.5276 414.41434 70.372925 413.57465Q70.229294 412.7239 68.73774 411.23233Q67.23514 409.72974 66.395454 409.59717Q65.55576 409.44247 65.02543 409.9728Q64.5172 410.48105 64.63873 411.22128Q64.80446 412.16043 66.30706 413.66302ZM72.77046 404.01764L72.08545 404.81314Q71.544075 404.47064 71.16842 404.44855Q70.53866 404.4375 70.09671 404.87943Q69.74316 405.23297 69.66582 405.70807Q69.58848 406.31573 69.87574 407.02286Q70.163 407.70786 71.05794 408.62488Q70.91431 407.95093 71.10213 407.36536Q71.301 406.76874 71.731895 406.33783Q72.47215 405.5976 73.54386 405.63074Q74.62662 405.65283 75.4884 406.51462Q76.06293 407.08914 76.30599 407.84045Q76.549065 408.56964 76.38333 409.26572Q76.20656 409.9507 75.66518 410.4921Q74.72605 411.4312 73.45547 411.3318Q72.18489 411.23233 70.616 409.66345Q68.84823 407.8957 68.7046 406.44833Q68.572014 405.18878 69.53323 404.22757Q70.251396 403.5094 71.11318 403.4652Q71.97497 403.39893 72.77046 404.01764ZM72.35062 409.6745Q72.73731 410.0612 73.245544 410.26007Q73.753784 410.43686 74.22887 410.3374Q74.715004 410.22693 75.04646 409.89548Q75.5105 409.43143 75.477356 408.7133Q75.43316 407.98407 74.781296 407.3322Q74.15153 406.70245 73.44442 406.68036Q72.74836 406.6472 72.24013 407.15543Q71.731895 407.66367 71.74294 408.3818Q71.765045 409.08893 72.35062 409.6745Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M59.508564 448.1345L60.22672 448.85263L56.205048 452.8743Q55.939884 452.60913 55.774155 452.26663Q55.52004 451.70316 55.453747 450.97394Q55.398506 450.2337 55.52004 449.0736Q55.696815 447.26163 55.56423 446.44406Q55.4427 445.61542 55.022854 445.19556Q54.580914 444.75363 53.962193 444.77573Q53.332428 444.78677 52.824192 445.295Q52.282814 445.8364 52.282814 446.4772Q52.282814 447.118 52.84629 447.70358L52.006603 448.38858Q51.222157 447.44946 51.288445 446.4993Q51.354736 445.527 52.227573 444.65417Q53.100407 443.78134 54.094776 443.75925Q55.089146 443.73715 55.8073 444.45532Q56.1719 444.81992 56.370777 445.32816Q56.56965 445.81427 56.613846 446.56558Q56.65804 447.2948 56.536503 448.76425Q56.426018 450.00168 56.43707 450.4105Q56.448116 450.79718 56.525455 451.11758L59.508564 448.1345ZM58.26008 444.83096Q57.17732 443.7482 56.746426 442.87537Q56.304485 441.9915 56.381824 441.20703Q56.470215 440.41156 57.133125 439.74863Q57.619263 439.26248 58.18274 439.09677Q58.757263 438.91998 59.37598 439.05258Q59.98365 439.1741 60.646564 439.57187Q61.309475 439.9696 62.215454 440.87558Q63.287163 441.9473 63.71806 442.82013Q64.159996 443.68192 64.08266 444.48846Q64.00532 445.27292 63.33136 445.94687Q62.458523 446.8197 61.320522 446.69818Q59.972603 446.5435 58.26008 444.83096ZM59.022427 444.0686Q60.51398 445.56018 61.36472 445.7038Q62.215454 445.84744 62.72369 445.3392Q63.24297 444.81992 63.08829 443.98022Q62.94466 443.1295 61.453106 441.63794Q59.950504 440.13535 59.110817 440.00275Q58.271126 439.84808 57.740795 440.3784Q57.232563 440.88663 57.354095 441.6269Q57.519825 442.566 59.022427 444.0686ZM69.40806 438.235L70.12621 438.95312L66.104546 442.9748Q65.83938 442.70966 65.67365 442.36713Q65.41953 441.80365 65.35324 441.07446Q65.298 440.3342 65.41953 439.1741Q65.59631 437.36215 65.46373 436.54456Q65.34219 435.7159 64.92235 435.29608Q64.48041 434.85413 63.86169 434.87622Q63.231922 434.88727 62.72369 435.3955Q62.182312 435.9369 62.182312 436.5777Q62.182312 437.2185 62.745785 437.80408L61.906097 438.4891Q61.12165 437.55 61.187943 436.5998Q61.254234 435.62753 62.127068 434.7547Q62.9999 433.88187 63.99427 433.85977Q64.98864 433.83768 65.706795 434.55582Q66.071396 434.9204 66.27027 435.42865Q66.46915 435.9148 66.513336 436.66608Q66.55753 437.3953 66.436 438.86475Q66.325516 440.10217 66.33656 440.511Q66.34761 440.89767 66.42495 441.21808L69.40806 438.235ZM68.15957 434.93146Q67.07681 433.84872 66.64592 432.97586Q66.20398 432.09198 66.28132 431.30756Q66.369705 430.51205 67.03262 429.84915Q67.51875 429.363 68.08223 429.19727Q68.65675 429.0205 69.275475 429.15308Q69.88315 429.27463 70.54606 429.67236Q71.20897 430.0701 72.11495 430.97607Q73.18666 432.0478 73.61755 432.92062Q74.059494 433.7824 73.982155 434.58896Q73.904816 435.3734 73.23085 436.04736Q72.35802 436.9202 71.22002 436.79868Q69.87209 436.64398 68.15957 434.93146ZM68.92192 434.16913Q70.413475 435.66068 71.26421 435.8043Q72.11495 435.94794 72.623184 435.4397Q73.14246 434.9204 72.987785 434.08072Q72.844154 433.22998 71.3526 431.73843Q69.85 430.23584 69.01031 430.10324Q68.17062 429.94858 67.64029 430.4789Q67.13206 430.98715 67.25359 431.7274Q67.41932 432.6665 68.92192 434.16913ZM74.19208 431.24124L73.44077 430.48996L75.73888 428.19186L76.49017 428.94315L74.19208 431.24124ZM75.937744 427.1533Q74.85499 426.07053 74.424095 425.1977Q73.982155 424.3138 74.059494 423.52936Q74.14788 422.7339 74.8108 422.07095Q75.29693 421.58484 75.860405 421.4191Q76.43493 421.2423 77.05365 421.3749Q77.661316 421.49643 78.324234 421.8942Q78.987144 422.29193 79.89313 423.1979Q80.964836 424.26962 81.39573 425.14246Q81.83767 426.00424 81.76033 426.8108Q81.68299 427.59525 81.009026 428.2692Q80.13619 429.14203 78.99819 429.0205Q77.65027 428.8658 75.937744 427.1533ZM76.700096 426.39093Q78.19165 427.8825 79.04239 428.02612Q79.89313 428.16977 80.40136 427.66153Q80.92064 427.14224 80.76596 426.30255Q80.62233 425.4518 79.130775 423.96027Q77.628174 422.45767 76.78848 422.32507Q75.9488 422.1704 75.418465 422.70074Q74.91023 423.20895 75.03177 423.94922Q75.197495 424.88834 76.700096 426.39093ZM86.268135 422.81122L84.80973 421.3528L82.180176 423.98236L81.49516 423.29736L80.33507 416.59088L80.94273 415.98322L84.876015 419.9165L85.69361 419.0989L86.378624 419.7839L85.56103 420.6015L87.01944 422.0599L86.268135 422.81122ZM84.12472 420.6678L81.39573 417.9388L82.224365 422.56815L84.12472 420.6678ZM86.92 418.51334L86.1687 417.76202L88.4668 415.46393L89.218094 416.21524L86.92 418.51334ZM94.466156 414.6132L93.7259 415.35345L88.97503 410.60257Q88.952934 411.1329 88.77615 411.84003Q88.59938 412.52502 88.37841 412.98907L87.66025 412.2709Q87.98066 411.35388 88.035904 410.48105Q88.09115 409.58612 87.89227 408.9895L88.367355 408.5144L94.466156 414.6132ZM98.996056 410.08328L97.53765 408.62488L94.9081 411.25443L94.22308 410.56943L93.06299 403.86298L93.67066 403.25528L97.60394 407.18857L98.42153 406.37097L99.106544 407.056L98.28895 407.8736L99.74736 409.332L98.996056 410.08328ZM96.85264 407.93988L94.12365 405.21088L94.95229 409.84024L96.85264 407.93988Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M82.62952 448.13446L83.34767 448.85263L79.326004 452.8743Q79.06084 452.60913 78.89511 452.26663Q78.64099 451.70316 78.5747 450.97394Q78.51946 450.2337 78.64099 449.0736Q78.81777 447.26163 78.68519 446.44406Q78.56365 445.61542 78.14381 445.19556Q77.701866 444.75363 77.08315 444.77573Q76.453384 444.78677 75.94515 445.295Q75.40377 445.83636 75.40377 446.4772Q75.40377 447.118 75.96725 447.70358L75.127556 448.38858Q74.34311 447.44946 74.4094 446.4993Q74.47569 445.527 75.348526 444.65417Q76.22137 443.78134 77.21573 443.75925Q78.2101 443.73715 78.92825 444.45532Q79.29286 444.81992 79.49173 445.32816Q79.690605 445.81427 79.7348 446.56558Q79.77899 447.2948 79.65746 448.76425Q79.546974 450.00168 79.55802 450.41046Q79.56907 450.79718 79.64641 451.11758L82.62952 448.13446ZM81.381035 444.83096Q80.29828 443.7482 79.867386 442.87537Q79.42544 441.9915 79.50278 441.20703Q79.59117 440.41153 80.25408 439.74863Q80.74022 439.26248 81.303696 439.09677Q81.87822 438.91998 82.49693 439.05258Q83.10461 439.1741 83.76752 439.57187Q84.43043 439.9696 85.33641 440.87558Q86.40812 441.9473 86.83901 442.82013Q87.28095 443.68192 87.20361 444.48846Q87.126274 445.2729 86.45232 445.94687Q85.57948 446.8197 84.44148 446.69815Q83.09356 446.5435 81.381035 444.83096ZM82.14338 444.0686Q83.63493 445.56015 84.48567 445.7038Q85.33641 445.8474 85.84464 445.3392Q86.36393 444.81992 86.20924 443.98022Q86.06561 443.1295 84.57406 441.63794Q83.07146 440.1353 82.23177 440.00275Q81.39208 439.84805 80.86175 440.3784Q80.353516 440.88663 80.47505 441.6269Q80.64078 442.566 82.14338 444.0686ZM92.529015 438.235L93.24717 438.95312L89.2255 442.9748Q88.960335 442.70966 88.79461 442.36713Q88.54049 441.80365 88.4742 441.07446Q88.41895 440.3342 88.54049 439.1741Q88.71726 437.36215 88.58469 436.54456Q88.46315 435.7159 88.043304 435.29608Q87.601364 434.85413 86.98264 434.87622Q86.352875 434.88727 85.84464 435.3955Q85.30327 435.9369 85.30327 436.5777Q85.30327 437.2185 85.866745 437.80408L85.027054 438.4891Q84.24261 437.54996 84.3089 436.5998Q84.37519 435.62753 85.248024 434.7547Q86.12086 433.88187 87.11523 433.85977Q88.1096 433.83765 88.82775 434.55582Q89.19235 434.9204 89.39123 435.42865Q89.5901 435.9148 89.63429 436.66608Q89.67849 437.3953 89.55695 438.86475Q89.44647 440.10217 89.45752 440.511Q89.46857 440.89767 89.545906 441.21808L92.529015 438.235ZM91.280525 434.93146Q90.19777 433.8487 89.76688 432.97586Q89.324936 432.09198 89.402275 431.30756Q89.49066 430.51205 90.15358 429.84912Q90.63971 429.363 91.203186 429.19727Q91.77771 429.0205 92.39643 429.15308Q93.0041 429.2746 93.667015 429.67236Q94.329926 430.0701 95.23591 430.97607Q96.30762 432.0478 96.73851 432.92062Q97.18045 433.7824 97.10311 434.58896Q97.02577 435.3734 96.35181 436.04736Q95.47897 436.9202 94.34097 436.79868Q92.99305 436.64398 91.280525 434.93146ZM92.04288 434.16913Q93.53443 435.66068 94.38517 435.8043Q95.23591 435.94794 95.74414 435.4397Q96.26342 434.9204 96.10874 434.08072Q95.96511 433.22998 94.47356 431.73843Q92.970955 430.23584 92.13126 430.10324Q91.29158 429.94858 90.761246 430.4789Q90.25301 430.98712 90.37455 431.7274Q90.540276 432.6665 92.04288 434.16913ZM97.313034 431.24124L96.56173 430.48996L98.859825 428.19186L99.61113 428.94315L97.313034 431.24124ZM99.0587 427.1533Q97.975945 426.07053 97.54505 425.1977Q97.10311 424.3138 97.18045 423.52936Q97.26884 422.7339 97.93175 422.07095Q98.417885 421.58484 98.98136 421.4191Q99.555885 421.2423 100.17461 421.3749Q100.78227 421.49643 101.44519 421.8942Q102.1081 422.29193 103.014084 423.1979Q104.08579 424.26962 104.516685 425.14246Q104.958626 426.00424 104.88129 426.8108Q104.80395 427.59525 104.12998 428.2692Q103.25715 429.14203 102.11915 429.0205Q100.771225 428.8658 99.0587 427.1533ZM99.82105 426.39093Q101.31261 427.8825 102.163345 428.02612Q103.014084 428.16977 103.522316 427.66153Q104.041595 427.14224 103.88692 426.30255Q103.743286 425.4518 102.25173 423.96027Q100.74913 422.45767 99.90944 422.32507Q99.06975 422.1704 98.53942 422.7007Q98.03119 423.20895 98.152725 423.94922Q98.31845 424.88834 99.82105 426.39093ZM109.3891 422.81122L107.93069 421.3528L105.30113 423.98236L104.61612 423.29736L103.45603 416.59088L104.0637 415.98322L107.99698 419.9165L108.814575 419.0989L109.49958 419.7839L108.68199 420.6015L110.140396 422.0599L109.3891 422.81122ZM107.24568 420.6678L104.516685 417.9388L105.34532 422.56815L107.24568 420.6678ZM110.04096 418.51334L109.28966 417.76202L111.58775 415.46393L112.33906 416.21524L110.04096 418.51334ZM117.98486 412.77914L118.70302 413.49728L114.68135 417.51895Q114.41618 417.25378 114.25046 416.9113Q113.99634 416.3478 113.930046 415.61862Q113.8748 414.87836 113.99634 413.71826Q114.17312 411.9063 114.040535 411.0887Q113.919 410.26007 113.49915 409.8402Q113.05721 409.3983 112.43849 409.42038Q111.80872 409.43143 111.30049 409.93967Q110.75912 410.48105 110.75912 411.12186Q110.75912 411.76266 111.32259 412.34824L110.4829 413.03323Q109.698456 412.09412 109.76475 411.14395Q109.83104 410.17166 110.70387 409.29883Q111.576706 408.426 112.571075 408.4039Q113.565445 408.3818 114.2836 409.09998Q114.6482 409.46457 114.84708 409.9728Q115.04595 410.45892 115.09014 411.21024Q115.13434 411.93945 115.0128 413.4089Q114.90232 414.64633 114.91337 415.05515Q114.924416 415.44183 115.001755 415.76224L117.98486 412.77914ZM116.736374 409.47562Q115.65362 408.39285 115.222725 407.52002Q114.780785 406.63614 114.85812 405.85168Q114.94651 405.0562 115.60943 404.39328Q116.09556 403.90717 116.659035 403.74142Q117.23356 403.56464 117.85228 403.69724Q118.45995 403.81876 119.12286 404.21652Q119.785774 404.61426 120.69176 405.52023Q121.763466 406.59195 122.19436 407.46478Q122.6363 408.32657 122.55896 409.13312Q122.48162 409.91757 121.807655 410.59152Q120.93482 411.46436 119.79682 411.34283Q118.4489 411.18814 116.736374 409.47562ZM117.498726 408.71326Q118.99028 410.20483 119.84102 410.34845Q120.69176 410.4921 121.19999 409.98386Q121.71927 409.46457 121.56459 408.62488Q121.42096 407.77414 119.929405 406.2826Q118.4268 404.78 117.58711 404.6474Q116.74743 404.49274 116.217094 405.02304Q115.70886 405.53128 115.8304 406.27155Q115.996124 407.21066 117.498726 408.71326Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M105.750465 448.1345L106.46862 448.85263L102.44695 452.8743Q102.181786 452.60913 102.01606 452.26663Q101.76195 451.70316 101.695656 450.97397Q101.64041 450.2337 101.76195 449.0736Q101.93872 447.26166 101.80614 446.44406Q101.68461 445.61542 101.26476 445.19556Q100.822815 444.75363 100.2041 444.77573Q99.57433 444.78677 99.0661 445.295Q98.52472 445.8364 98.52472 446.4772Q98.52472 447.118 99.088196 447.70358L98.248505 448.3886Q97.46406 447.44946 97.53035 446.4993Q97.59664 445.527 98.469475 444.65417Q99.342316 443.78134 100.336685 443.75925Q101.331055 443.73715 102.04921 444.45532Q102.41381 444.81992 102.612686 445.32816Q102.811554 445.81427 102.85575 446.56558Q102.89995 447.2948 102.77841 448.76425Q102.66792 450.00168 102.67897 450.4105Q102.690025 450.79718 102.767365 451.11758L105.750465 448.1345ZM104.50198 444.83096Q103.41923 443.7482 102.988335 442.87537Q102.546394 441.9915 102.62373 441.20703Q102.71212 440.41156 103.37503 439.74863Q103.86117 439.2625 104.424644 439.09677Q104.99917 438.91998 105.61789 439.05258Q106.225555 439.1741 106.888466 439.57187Q107.551384 439.9696 108.45736 440.87558Q109.52907 441.9473 109.95996 442.82013Q110.40191 443.68192 110.32456 444.48846Q110.24722 445.27292 109.573265 445.94687Q108.70043 446.8197 107.56243 446.69818Q106.21451 446.5435 104.50198 444.83096ZM105.264336 444.0686Q106.75589 445.56018 107.60662 445.7038Q108.45736 445.84744 108.96559 445.3392Q109.48488 444.81992 109.3302 443.98022Q109.18657 443.1295 107.695015 441.63794Q106.19241 440.13535 105.35272 440.00275Q104.51303 439.84808 103.982704 440.3784Q103.47447 440.88663 103.596 441.6269Q103.761734 442.566 105.264336 444.0686ZM115.64996 438.235L116.36812 438.95312L112.34645 442.97482Q112.08128 442.70966 111.91556 442.36713Q111.66144 441.80365 111.595146 441.07446Q111.5399 440.3342 111.66144 439.1741Q111.83822 437.36215 111.705635 436.54456Q111.5841 435.7159 111.16425 435.29608Q110.72231 434.85413 110.10359 434.87622Q109.47383 434.88727 108.96559 435.3955Q108.42422 435.9369 108.42422 436.5777Q108.42422 437.2185 108.98769 437.80408L108.148 438.4891Q107.363556 437.55 107.42985 436.5998Q107.49614 435.62753 108.36897 434.7547Q109.241806 433.88187 110.236176 433.85977Q111.230545 433.83768 111.9487 434.55582Q112.3133 434.9204 112.51218 435.42865Q112.71105 435.9148 112.75525 436.66608Q112.79944 437.3953 112.6779 438.86475Q112.56742 440.1022 112.57847 440.511Q112.589516 440.89767 112.666855 441.21808L115.64996 438.235ZM114.40148 434.93146Q113.31872 433.84872 112.887825 432.9759Q112.445885 432.09198 112.523224 431.30756Q112.61161 430.51205 113.27453 429.84915Q113.760666 429.363 114.324135 429.19727Q114.89867 429.0205 115.51738 429.15308Q116.12505 429.27463 116.787964 429.67236Q117.450874 430.0701 118.35686 430.9761Q119.428566 432.0478 119.85946 432.92062Q120.3014 433.7824 120.22406 434.58896Q120.14672 435.3734 119.47276 436.04736Q118.59992 436.9202 117.46192 436.79868Q116.114006 436.64398 114.40148 434.93146ZM115.163826 434.16913Q116.65538 435.66068 117.50612 435.8043Q118.35686 435.94794 118.86509 435.4397Q119.38437 434.9204 119.22969 434.08072Q119.08606 433.22998 117.594505 431.73843Q116.0919 430.23584 115.25221 430.10327Q114.41253 429.94858 113.882195 430.4789Q113.37396 430.98715 113.4955 431.7274Q113.661224 432.6665 115.163826 434.16913ZM120.43398 431.24124L119.68268 430.48996L121.98078 428.19186L122.73208 428.94315L120.43398 431.24124ZM122.17965 427.1533Q121.09689 426.07053 120.666 425.1977Q120.22406 424.3138 120.3014 423.52936Q120.389786 422.7339 121.052704 422.07095Q121.53883 421.58484 122.10231 421.4191Q122.676834 421.2423 123.295555 421.3749Q123.90323 421.49643 124.56614 421.8942Q125.22905 422.29193 126.13503 423.1979Q127.20674 424.26962 127.637634 425.14246Q128.07957 426.00424 128.00223 426.8108Q127.9249 427.59525 127.25093 428.2692Q126.3781 429.14203 125.2401 429.0205Q123.89217 428.8658 122.17965 427.1533ZM122.942 426.39096Q124.433556 427.8825 125.284294 428.02612Q126.13503 428.16977 126.643265 427.66153Q127.162544 427.14224 127.007866 426.30255Q126.864235 425.4518 125.37268 423.96027Q123.87008 422.45767 123.03039 422.32507Q122.190704 422.1704 121.66037 422.70074Q121.15214 423.20895 121.273674 423.94922Q121.4394 424.88834 122.942 426.39096ZM132.51004 422.81122L131.05164 421.3528L128.42207 423.98236L127.73707 423.29736L126.57697 416.59088L127.18465 415.98322L131.11792 419.9165L131.93552 419.0989L132.62053 419.7839L131.80293 420.6015L133.26134 422.0599L132.51004 422.81122ZM130.36662 420.6678L127.637634 417.9388L128.46628 422.56815L130.36662 420.6678ZM133.16191 418.51334L132.4106 417.76202L134.7087 415.46393L135.46 416.21524L133.16191 418.51334ZM141.1058 412.77914L141.82396 413.49728L137.80229 417.51895Q137.53712 417.2538 137.3714 416.9113Q137.11728 416.3478 137.051 415.61862Q136.99574 414.87836 137.11728 413.71826Q137.29407 411.9063 137.16148 411.0887Q137.03995 410.26007 136.6201 409.84024Q136.17816 409.3983 135.55943 409.42038Q134.92967 409.43143 134.42143 409.93967Q133.88007 410.48105 133.88007 411.12186Q133.88007 411.76266 134.44354 412.34824L133.60385 413.03326Q132.8194 412.09412 132.8857 411.14395Q132.95198 410.1717 133.82481 409.29886Q134.69765 408.42603 135.69202 408.40393Q136.68639 408.3818 137.40454 409.09998Q137.76915 409.46457 137.96802 409.9728Q138.1669 410.45895 138.21109 411.21024Q138.25528 411.93945 138.13374 413.4089Q138.02327 414.64633 138.03432 415.05515Q138.04536 415.44183 138.1227 415.76224L141.1058 412.77914ZM140.70805 408.02826Q140.06725 408.31552 139.52586 408.2382Q138.98448 408.13876 138.55359 407.70786Q137.89069 407.04495 137.91278 406.11688Q137.94592 405.17773 138.73038 404.3933Q139.52586 403.5978 140.47604 403.5757Q141.42621 403.55362 142.08913 404.21652Q142.50897 404.63635 142.59737 405.1667Q142.68575 405.69702 142.40953 406.32678Q143.1498 405.9401 143.84584 406.0616Q144.5419 406.18317 145.10538 406.74664Q145.87878 407.52002 145.85667 408.60278Q145.84563 409.6745 144.93965 410.58047Q144.04472 411.4754 142.96196 411.4975Q141.87921 411.5196 141.08371 410.72412Q140.48709 410.1275 140.38765 409.43143Q140.29927 408.72433 140.70805 408.02826ZM139.28279 406.91235Q139.71368 407.34326 140.26611 407.34326Q140.82959 407.3322 141.27153 406.89026Q141.70242 406.45938 141.71347 405.918Q141.71347 405.36557 141.31573 404.96783Q140.90694 404.55902 140.34346 404.57007Q139.76894 404.57007 139.34909 404.98993Q138.9182 405.4208 138.90715 405.98428Q138.90715 406.5367 139.28279 406.91235ZM141.8571 409.9507Q142.17752 410.27112 142.61946 410.4258Q143.07245 410.56943 143.53648 410.43686Q144.00052 410.30426 144.34303 409.96176Q144.87337 409.43143 144.87337 408.74643Q144.88441 408.05035 144.35408 407.52002Q143.8127 406.97867 143.10559 406.97867Q142.39848 406.97867 141.8571 407.52002Q141.32678 408.05035 141.33783 408.74643Q141.33783 409.43143 141.8571 409.9507Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M128.87143 448.1345L129.58958 448.85263L125.56791 452.8743Q125.30274 452.60913 125.13702 452.26663Q124.882904 451.70316 124.81661 450.97394Q124.76137 450.2337 124.882904 449.0736Q125.05968 447.26166 124.92709 446.44406Q124.80556 445.61542 124.38572 445.19556Q123.94377 444.75363 123.32506 444.77573Q122.69529 444.78677 122.18706 445.295Q121.645676 445.8364 121.645676 446.4772Q121.645676 447.118 122.20915 447.70358L121.36946 448.38858Q120.585014 447.44946 120.651306 446.4993Q120.7176 445.527 121.59043 444.65417Q122.46327 443.78134 123.45764 443.75925Q124.452 443.73715 125.170166 444.45532Q125.53477 444.81992 125.733635 445.32816Q125.93251 445.81427 125.97671 446.56558Q126.0209 447.2948 125.89937 448.76425Q125.78888 450.00168 125.79993 450.4105Q125.810974 450.79718 125.88832 451.11758L128.87143 448.1345ZM127.62294 444.83096Q126.540184 443.7482 126.10929 442.87537Q125.66734 441.9915 125.74469 441.20703Q125.83308 440.41156 126.49599 439.74863Q126.982124 439.2625 127.5456 439.09677Q128.12012 438.91998 128.73885 439.05258Q129.34651 439.1741 130.00943 439.57187Q130.67233 439.9696 131.57832 440.87558Q132.65002 441.9473 133.08092 442.82013Q133.52286 443.68192 133.44553 444.48846Q133.36818 445.27292 132.69421 445.94687Q131.82138 446.8197 130.68338 446.69818Q129.33546 446.5435 127.62294 444.83096ZM128.38528 444.0686Q129.87685 445.56018 130.72758 445.7038Q131.57832 445.84744 132.08655 445.3392Q132.60583 444.81992 132.45116 443.98022Q132.30753 443.1295 130.81596 441.63794Q129.31337 440.13535 128.47368 440.00275Q127.63399 439.84808 127.10366 440.3784Q126.59542 440.88663 126.71696 441.6269Q126.88268 442.566 128.38528 444.0686ZM138.77092 438.235L139.48907 438.95312L135.4674 442.9748Q135.20224 442.70966 135.03651 442.36713Q134.7824 441.80365 134.71611 441.07446Q134.66086 440.3342 134.7824 439.1741Q134.95917 437.36215 134.82658 436.54456Q134.70506 435.7159 134.28522 435.29608Q133.84326 434.85413 133.22455 434.87622Q132.59479 434.88727 132.08655 435.3955Q131.54517 435.9369 131.54517 436.5777Q131.54517 437.2185 132.10864 437.80408L131.26895 438.4891Q130.48451 437.55 130.5508 436.5998Q130.6171 435.62753 131.48993 434.7547Q132.36276 433.88187 133.35713 433.85977Q134.3515 433.83768 135.06966 434.55582Q135.43427 434.9204 135.63313 435.42865Q135.832 435.9148 135.8762 436.66608Q135.9204 437.3953 135.79886 438.86475Q135.68837 440.10217 135.69942 440.511Q135.71048 440.89767 135.78781 441.21808L138.77092 438.235ZM137.52243 434.93146Q136.43968 433.84872 136.00879 432.9759Q135.56685 432.09198 135.64418 431.30756Q135.73257 430.51205 136.39548 429.84915Q136.88162 429.363 137.4451 429.19727Q138.01962 429.0205 138.63834 429.15308Q139.246 429.27463 139.90892 429.67236Q140.57184 430.0701 141.47781 430.9761Q142.54951 432.0478 142.98041 432.92062Q143.42236 433.7824 143.34502 434.58896Q143.26767 435.3734 142.59372 436.04736Q141.72089 436.9202 140.58289 436.79868Q139.23495 436.64398 137.52243 434.93146ZM138.28479 434.16913Q139.77634 435.66068 140.62708 435.8043Q141.47781 435.94794 141.98604 435.4397Q142.50533 434.9204 142.35065 434.08072Q142.20702 433.22998 140.71547 431.73843Q139.21286 430.23584 138.37317 430.10324Q137.53348 429.94858 137.00316 430.4789Q136.49492 430.98715 136.61646 431.7274Q136.78218 432.6665 138.28479 434.16913ZM143.55493 431.24124L142.80363 430.48996L145.10173 428.19186L145.85304 428.94315L143.55493 431.24124ZM145.30061 427.1533Q144.21785 426.07053 143.78696 425.1977Q143.34502 424.3138 143.42236 423.52936Q143.51074 422.7339 144.17366 422.07095Q144.65979 421.58484 145.22327 421.4191Q145.79779 421.2423 146.4165 421.3749Q147.02419 421.49643 147.68709 421.8942Q148.35 422.29193 149.25598 423.1979Q150.3277 424.26962 150.75859 425.14246Q151.20053 426.00424 151.12318 426.8108Q151.04585 427.59525 150.37189 428.2692Q149.49905 429.14203 148.36105 429.0205Q147.01314 428.8658 145.30061 427.1533ZM146.06296 426.39093Q147.5545 427.8825 148.40524 428.02612Q149.25598 428.16977 149.76422 427.66153Q150.28351 427.14224 150.12881 426.30255Q149.98518 425.4518 148.49364 423.96027Q146.99104 422.45767 146.15135 422.32507Q145.31166 422.1704 144.78133 422.70074Q144.27309 423.20895 144.39462 423.94922Q144.56035 424.88834 146.06296 426.39093ZM151.65352 423.60672L152.37167 422.75598Q153.03459 423.2421 153.63121 423.22Q154.23888 423.18686 154.69186 422.7339Q155.2222 422.20355 155.18906 421.4191Q155.15591 420.63464 154.493 419.97174Q153.85219 419.33093 153.12297 419.33093Q152.39377 419.30884 151.8082 419.8944Q151.45465 420.24796 151.32207 420.712Q151.20053 421.16498 151.28893 421.58484L150.50447 422.1925L147.97435 418.49124L151.00166 415.46393L151.70877 416.17105L149.27809 418.6017L150.59286 420.5573Q150.74754 419.62924 151.34416 419.03262Q152.13966 418.23712 153.23346 418.24817Q154.33832 418.24817 155.21115 419.121Q156.02875 419.9386 156.16133 421.02136Q156.30496 422.33612 155.29955 423.34155Q154.4709 424.1702 153.47653 424.23648Q152.49321 424.29172 151.65352 423.60672ZM156.28287 418.51334L155.53156 417.76202L157.82965 415.46393L158.58096 416.21524L156.28287 418.51334ZM158.02853 414.42538Q156.94577 413.34262 156.51488 412.4698Q156.07294 411.5859 156.15028 410.80145Q156.23866 410.00595 156.90158 409.34305Q157.38771 408.8569 157.95119 408.6912Q158.52571 408.5144 159.14444 408.64697Q159.7521 408.76852 160.41501 409.16626Q161.07793 409.56403 161.9839 410.47Q163.05562 411.5417 163.48651 412.41455Q163.92845 413.27634 163.85112 414.08286Q163.77377 414.8673 163.09981 415.54126Q162.22697 416.41412 161.08897 416.29257Q159.74106 416.1379 158.02853 414.42538ZM158.79088 413.66302Q160.28244 415.15457 161.13318 415.29822Q161.9839 415.44183 162.49214 414.9336Q163.01143 414.41434 162.85675 413.57465Q162.71312 412.7239 161.22156 411.23233Q159.71896 409.72974 158.87927 409.59717Q158.03958 409.44247 157.50925 409.9728Q157.00102 410.48105 157.12254 411.22128Q157.28828 412.16043 158.79088 413.66302ZM168.35892 410.08328L166.90051 408.62488L164.27095 411.25443L163.58595 410.56943L162.42586 403.86298L163.03352 403.25528L166.9668 407.18857L167.7844 406.37097L168.4694 407.056L167.65181 407.8736L169.11021 409.332L168.35892 410.08328ZM166.2155 407.93988L163.48651 405.21088L164.31516 409.84024L166.2155 407.93988Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M151.99239 448.1345L152.71054 448.85263L148.68886 452.8743Q148.4237 452.60913 148.25797 452.26663Q148.00386 451.70316 147.93756 450.97394Q147.88232 450.2337 148.00386 449.0736Q148.18063 447.26163 148.04805 446.44406Q147.92651 445.61542 147.50667 445.19556Q147.06473 444.75363 146.44601 444.77573Q145.81624 444.78677 145.30801 445.295Q144.76663 445.83636 144.76663 446.4772Q144.76663 447.118 145.33011 447.70358L144.49042 448.38858Q143.70598 447.44946 143.77226 446.4993Q143.83856 445.527 144.7114 444.65417Q145.58423 443.78134 146.5786 443.75925Q147.57297 443.73715 148.29112 444.45532Q148.65572 444.81992 148.8546 445.32816Q149.05347 445.81427 149.09766 446.56558Q149.14186 447.2948 149.02032 448.76425Q148.90984 450.00168 148.92088 450.41046Q148.93193 450.79718 149.00928 451.11758L151.99239 448.1345ZM150.7439 444.83096Q149.66113 443.7482 149.23024 442.87537Q148.7883 441.9915 148.86565 441.20703Q148.95403 440.41153 149.61694 439.74863Q150.10307 439.26248 150.66655 439.09677Q151.24107 438.91998 151.8598 439.05258Q152.46747 439.1741 153.13039 439.57187Q153.79329 439.9696 154.69928 440.87558Q155.77098 441.9473 156.20187 442.82013Q156.64381 443.68192 156.56648 444.48846Q156.48914 445.2729 155.81517 445.94687Q154.94234 446.8197 153.80434 446.69815Q152.45642 446.5435 150.7439 444.83096ZM151.50624 444.0686Q152.9978 445.56015 153.84854 445.7038Q154.69928 445.8474 155.2075 445.3392Q155.72679 444.81992 155.57211 443.98022Q155.42848 443.1295 153.93692 441.63794Q152.43433 440.13535 151.59464 440.00275Q150.75494 439.84805 150.22461 440.3784Q149.71638 440.88663 149.83792 441.6269Q150.00365 442.566 151.50624 444.0686ZM161.89188 438.235L162.61003 438.95312L158.58836 442.9748Q158.3232 442.70966 158.15747 442.36713Q157.90335 441.80365 157.83707 441.07446Q157.78181 440.3342 157.90335 439.1741Q158.08012 437.36215 157.94754 436.54456Q157.826 435.7159 157.40617 435.29608Q156.96422 434.85413 156.3455 434.87622Q155.71574 434.88727 155.2075 435.3955Q154.66612 435.9369 154.66612 436.5777Q154.66612 437.2185 155.2296 437.80408L154.38991 438.4891Q153.60547 437.54996 153.67175 436.5998Q153.73805 435.62753 154.61089 434.7547Q155.48372 433.88187 156.47809 433.85977Q157.47246 433.83765 158.19061 434.55582Q158.55522 434.9204 158.75409 435.42865Q158.95296 435.9148 158.99716 436.66608Q159.04135 437.3953 158.91982 438.86475Q158.80933 440.10217 158.82037 440.511Q158.83144 440.89767 158.90877 441.21808L161.89188 438.235ZM160.64339 434.93146Q159.56064 433.84872 159.12975 432.97586Q158.68779 432.09198 158.76514 431.30756Q158.85353 430.51205 159.51643 429.84915Q160.00258 429.363 160.56606 429.19727Q161.14058 429.0205 161.7593 429.15308Q162.36696 429.2746 163.02988 429.67236Q163.6928 430.0701 164.59877 430.97607Q165.67047 432.0478 166.10136 432.92062Q166.5433 433.7824 166.46597 434.58896Q166.38863 435.3734 165.71468 436.04736Q164.84184 436.9202 163.70384 436.79868Q162.35591 436.64398 160.64339 434.93146ZM161.40575 434.16913Q162.8973 435.66068 163.74803 435.8043Q164.59877 435.94794 165.107 435.4397Q165.62628 434.9204 165.4716 434.08072Q165.32797 433.22998 163.83643 431.73843Q162.33382 430.23584 161.49413 430.10324Q160.65443 429.94858 160.12411 430.4789Q159.61588 430.98712 159.73741 431.7274Q159.90314 432.6665 161.40575 434.16913ZM166.67589 431.24124L165.92459 430.48996L168.22269 428.19186L168.974 428.94315L166.67589 431.24124ZM168.42157 427.1533Q167.3388 426.07053 166.90791 425.1977Q166.46597 424.3138 166.5433 423.52936Q166.6317 422.7339 167.29462 422.07095Q167.78075 421.58484 168.34422 421.4191Q168.91875 421.2423 169.53746 421.3749Q170.14514 421.49643 170.80804 421.8942Q171.47096 422.29193 172.37694 423.1979Q173.44865 424.26962 173.87955 425.14246Q174.32149 426.00424 174.24414 426.8108Q174.16681 427.59525 173.49284 428.2692Q172.62001 429.14203 171.48201 429.0205Q170.1341 428.8658 168.42157 427.1533ZM169.18391 426.39093Q170.67546 427.8825 171.5262 428.02612Q172.37694 428.16977 172.88518 427.66153Q173.40446 427.14224 173.24977 426.30255Q173.10614 425.4518 171.6146 423.96027Q170.11198 422.45767 169.27231 422.32507Q168.43262 422.1704 167.90228 422.7007Q167.39404 423.20895 167.51558 423.94922Q167.6813 424.88834 169.18391 426.39093ZM174.77448 423.60672L175.49263 422.75598Q176.15555 423.2421 176.75217 423.22Q177.35983 423.18686 177.81282 422.7339Q178.34315 422.20355 178.31001 421.4191Q178.27687 420.63464 177.61395 419.97174Q176.97313 419.33093 176.24393 419.33093Q175.51472 419.30884 174.92915 419.8944Q174.5756 420.24796 174.44302 420.712Q174.32149 421.16498 174.40988 421.58484L173.62543 422.1925L171.0953 418.49124L174.12262 415.46393L174.82971 416.17105L172.39903 418.6017L173.71382 420.5573Q173.8685 419.62924 174.46512 419.03262Q175.26062 418.23712 176.35442 418.24817Q177.45927 418.24817 178.3321 419.121Q179.1497 419.9386 179.28229 421.02136Q179.42592 422.33612 178.4205 423.34155Q177.59186 424.1702 176.59749 424.23648Q175.61417 424.29172 174.77448 423.60672ZM179.40382 418.51334L178.65251 417.76202L180.9506 415.46393L181.70192 416.21524L179.40382 418.51334ZM186.94997 414.6132L186.20972 415.35345L181.45885 410.60257Q181.43675 411.1329 181.25998 411.84Q181.08319 412.52502 180.86223 412.98904L180.14407 412.2709Q180.46448 411.35388 180.51971 410.48105Q180.57497 409.58612 180.37608 408.98947L180.85118 408.5144L186.94997 414.6132ZM192.29747 407.82938L193.01562 408.54755L188.99396 412.5692Q188.72879 412.30405 188.56306 411.96155Q188.30894 411.39807 188.24265 410.66885Q188.18741 409.92862 188.30894 408.76852Q188.48572 406.95654 188.35313 406.13898Q188.2316 405.31033 187.81175 404.89047Q187.36981 404.44855 186.7511 404.47064Q186.12134 404.4817 185.6131 404.9899Q185.07172 405.53128 185.07172 406.17212Q185.07172 406.81293 185.6352 407.3985L184.7955 408.0835Q184.01106 407.14438 184.07735 406.1942Q184.14365 405.22192 185.01648 404.3491Q185.88931 403.47626 186.88368 403.45416Q187.87805 403.43207 188.5962 404.15024Q188.9608 404.51483 189.15968 405.02307Q189.35855 405.5092 189.40276 406.2605Q189.44695 406.9897 189.32541 408.45917Q189.21492 409.6966 189.22597 410.10538Q189.23701 410.4921 189.31436 410.8125L192.29747 407.82938Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M175.11334 448.13446L175.8315 448.85263L171.80981 452.8743Q171.54466 452.60913 171.37892 452.26663Q171.12482 451.70316 171.05852 450.97394Q171.00328 450.2337 171.12482 449.0736Q171.30159 447.26163 171.169 446.44406Q171.04747 445.61542 170.62762 445.19556Q170.18568 444.75363 169.56697 444.77573Q168.9372 444.78677 168.42897 445.295Q167.88759 445.83636 167.88759 446.4772Q167.88759 447.118 168.45107 447.70358L167.61137 448.38858Q166.82693 447.44946 166.89322 446.4993Q166.9595 445.527 167.83235 444.65417Q168.70518 443.78134 169.69955 443.75925Q170.69392 443.73715 171.41208 444.45532Q171.77667 444.81992 171.97556 445.32816Q172.17442 445.81427 172.21861 446.56558Q172.26282 447.2948 172.14128 448.76425Q172.03079 450.00168 172.04184 450.41046Q172.05289 450.79718 172.13023 451.11758L175.11334 448.13446ZM173.86485 444.83096Q172.78209 443.7482 172.3512 442.87537Q171.90926 441.9915 171.9866 441.20703Q172.07498 440.41153 172.7379 439.74863Q173.22403 439.26248 173.7875 439.09677Q174.36203 438.91998 174.98076 439.05258Q175.58842 439.1741 176.25134 439.57184Q176.91425 439.9696 177.82024 440.87558Q178.89194 441.9473 179.32283 442.82013Q179.76477 443.68192 179.68744 444.48846Q179.61009 445.2729 178.93613 445.94687Q178.0633 446.8197 176.9253 446.69815Q175.57738 446.5435 173.86485 444.83096ZM174.6272 444.0686Q176.11876 445.56015 176.9695 445.7038Q177.82024 445.8474 178.32846 445.3392Q178.84775 444.81992 178.69307 443.98022Q178.54944 443.1295 177.05788 441.63794Q175.55528 440.1353 174.71559 440.00275Q173.8759 439.84805 173.34557 440.3784Q172.83734 440.88663 172.95886 441.6269Q173.1246 442.566 174.6272 444.0686ZM185.01283 438.235L185.73099 438.95312L181.70932 442.9748Q181.44415 442.70963 181.27843 442.36713Q181.0243 441.80365 180.95801 441.07446Q180.90277 440.3342 181.0243 439.1741Q181.20108 437.36215 181.0685 436.54456Q180.94696 435.7159 180.52711 435.29608Q180.08517 434.85413 179.46646 434.87622Q178.8367 434.88727 178.32846 435.3955Q177.78708 435.9369 177.78708 436.5777Q177.78708 437.2185 178.35056 437.80408L177.51086 438.4891Q176.72643 437.54996 176.79271 436.5998Q176.85901 435.62753 177.73184 434.7547Q178.60468 433.88187 179.59904 433.85974Q180.59341 433.83765 181.31157 434.55582Q181.67618 434.9204 181.87505 435.42865Q182.07391 435.9148 182.11812 436.66608Q182.16231 437.3953 182.04077 438.86475Q181.93028 440.10217 181.94133 440.511Q181.95238 440.89767 182.02972 441.21808L185.01283 438.235ZM183.76434 434.93146Q182.6816 433.8487 182.2507 432.97586Q181.80875 432.09198 181.8861 431.30756Q181.97449 430.51205 182.63739 429.84912Q183.12354 429.363 183.68701 429.19727Q184.26154 429.0205 184.88025 429.15308Q185.48792 429.2746 186.15083 429.67236Q186.81374 430.0701 187.71973 430.97607Q188.79143 432.0478 189.22232 432.92062Q189.66426 433.7824 189.58693 434.58896Q189.50958 435.3734 188.83563 436.04736Q187.9628 436.9202 186.8248 436.79868Q185.47687 436.64398 183.76434 434.93146ZM184.52669 434.16913Q186.01825 435.66068 186.86899 435.8043Q187.71973 435.94794 188.22795 435.4397Q188.74724 434.9204 188.59256 434.08072Q188.44893 433.22998 186.95737 431.73843Q185.45477 430.23584 184.61508 430.10324Q183.77539 429.94858 183.24507 430.4789Q182.73683 430.98712 182.85837 431.7274Q183.0241 432.6665 184.52669 434.16913ZM189.79684 431.24124L189.04555 430.48996L191.34364 428.19186L192.09494 428.94315L189.79684 431.24124ZM191.54253 427.1533Q190.45976 426.07053 190.02887 425.1977Q189.58693 424.3138 189.66426 423.52936Q189.75266 422.7339 190.41557 422.07095Q190.9017 421.58484 191.46518 421.4191Q192.0397 421.2423 192.65842 421.3749Q193.2661 421.49643 193.929 421.8942Q194.59192 422.29193 195.4979 423.1979Q196.56961 424.26962 197.0005 425.14246Q197.44244 426.00424 197.3651 426.8108Q197.28777 427.59525 196.6138 428.2692Q195.74097 429.14203 194.60297 429.0205Q193.25505 428.8658 191.54253 427.1533ZM192.30487 426.39093Q193.79642 427.8825 194.64716 428.02612Q195.4979 428.16977 196.00613 427.66153Q196.5254 427.14224 196.37073 426.30255Q196.2271 425.4518 194.73555 423.96027Q193.23294 422.45767 192.39326 422.32507Q191.55357 422.1704 191.02324 422.7007Q190.515 423.20895 190.63654 423.94922Q190.80226 424.88834 192.30487 426.39093ZM197.89543 423.60672L198.61359 422.75598Q199.2765 423.2421 199.87312 423.22Q200.48079 423.18686 200.93378 422.7339Q201.46411 422.20355 201.43097 421.4191Q201.39783 420.63464 200.73491 419.97174Q200.09409 419.33093 199.36488 419.33093Q198.63568 419.30884 198.05011 419.8944Q197.69656 420.24796 197.56398 420.71198Q197.44244 421.16498 197.53084 421.58484L196.74638 422.1925L194.21626 418.49124L197.24356 415.46393L197.95067 416.17105L195.51999 418.6017L196.83478 420.5573Q196.98946 419.62924 197.58607 419.03262Q198.38156 418.23712 199.47537 418.24817Q200.58023 418.24817 201.45306 419.121Q202.27066 419.9386 202.40324 421.02136Q202.54688 422.33612 201.54146 423.34155Q200.71281 424.1702 199.71844 424.23648Q198.73512 424.29172 197.89543 423.60672ZM202.52477 418.51334L201.77347 417.76202L204.07156 415.46393L204.82288 416.21524L202.52477 418.51334ZM210.07092 414.6132L209.33067 415.35345L204.5798 410.60257Q204.55771 411.1329 204.38092 411.84Q204.20415 412.52502 203.98318 412.98904L203.26503 412.2709Q203.58543 411.35388 203.64067 410.48105Q203.69592 409.58612 203.49704 408.98947L203.97214 408.5144L210.07092 414.6132ZM210.07092 408.02826Q209.43011 408.31552 208.88873 408.2382Q208.34735 408.13873 207.91646 407.70786Q207.25356 407.04495 207.27565 406.11685Q207.30879 405.17773 208.09323 404.39328Q208.88873 403.5978 209.83891 403.57568Q210.78908 403.5536 211.452 404.21652Q211.87184 404.63635 211.96024 405.1667Q212.04861 405.69702 211.7724 406.32678Q212.51265 405.9401 213.20871 406.0616Q213.90477 406.18317 214.46825 406.74664Q215.24164 407.52002 215.21954 408.60278Q215.2085 409.6745 214.30252 410.58047Q213.4076 411.4754 212.32483 411.4975Q211.24207 411.5196 210.44658 410.72412Q209.84996 410.12747 209.75052 409.43143Q209.66212 408.72433 210.07092 408.02826ZM208.64566 406.91235Q209.07655 407.34326 209.62898 407.34326Q210.19246 407.3322 210.6344 406.89026Q211.06529 406.45938 211.07634 405.918Q211.07634 405.36557 210.6786 404.9678Q210.2698 404.55902 209.70633 404.57007Q209.1318 404.57007 208.71196 404.9899Q208.28107 405.4208 208.27002 405.98428Q208.27002 406.5367 208.64566 406.91235ZM211.21997 409.9507Q211.54039 410.27112 211.98233 410.42578Q212.43532 410.56943 212.89935 410.43683Q213.36339 410.30426 213.7059 409.96176Q214.23622 409.43143 214.23622 408.74643Q214.24728 408.05035 213.71695 407.52002Q213.17557 406.97864 212.46846 406.97864Q211.76135 406.97864 211.21997 407.52002Q210.68965 408.05035 210.7007 408.74643Q210.7007 409.43143 211.21997 409.9507Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M198.23428 448.1345L198.95244 448.85263L194.93077 452.8743Q194.6656 452.60913 194.49988 452.26663Q194.24576 451.70316 194.17946 450.97397Q194.12422 450.2337 194.24576 449.0736Q194.42253 447.26166 194.28995 446.44406Q194.16841 445.61542 193.74857 445.19556Q193.30663 444.75363 192.68791 444.77573Q192.05815 444.78677 191.54991 445.295Q191.00853 445.8364 191.00853 446.4772Q191.00853 447.118 191.572 447.70358L190.73232 448.3886Q189.94788 447.44946 190.01416 446.4993Q190.08046 445.52704 190.9533 444.6542Q191.82613 443.78137 192.8205 443.75925Q193.81487 443.73715 194.53302 444.45532Q194.89761 444.81992 195.0965 445.32816Q195.29536 445.8143 195.33957 446.56558Q195.38376 447.2948 195.26222 448.76425Q195.15173 450.00168 195.16278 450.4105Q195.17383 450.79718 195.25117 451.11758L198.23428 448.1345ZM196.9858 444.83096Q195.90305 443.7482 195.47214 442.87537Q195.0302 441.9915 195.10754 441.20703Q195.19594 440.41156 195.85884 439.74863Q196.34499 439.2625 196.90846 439.09677Q197.48299 438.91998 198.1017 439.05258Q198.70937 439.1741 199.37228 439.57187Q200.03519 439.9696 200.94118 440.87558Q202.01288 441.9473 202.44377 442.82013Q202.88571 443.68192 202.80838 444.48846Q202.73103 445.27292 202.05708 445.94687Q201.18423 446.8197 200.04625 446.69818Q198.69832 446.5435 196.9858 444.83096ZM197.74814 444.06863Q199.2397 445.56018 200.09044 445.7038Q200.94118 445.84744 201.4494 445.3392Q201.96869 444.81992 201.81401 443.98022Q201.67038 443.1295 200.17882 441.63794Q198.67622 440.13535 197.83653 440.00275Q196.99684 439.84808 196.4665 440.37842Q195.95828 440.88663 196.07982 441.6269Q196.24554 442.566 197.74814 444.06863ZM208.13377 438.235L208.85193 438.95316L204.83026 442.97482Q204.5651 442.70966 204.39937 442.36716Q204.14525 441.80368 204.07896 441.07446Q204.02371 440.3342 204.14525 439.1741Q204.32202 437.36215 204.18945 436.54456Q204.06792 435.7159 203.64807 435.29608Q203.20613 434.85413 202.5874 434.87622Q201.95764 434.88727 201.4494 435.3955Q200.90804 435.9369 200.90804 436.5777Q200.90804 437.21854 201.4715 437.8041L200.63182 438.4891Q199.84737 437.55 199.91367 436.5998Q199.97995 435.62753 200.85278 434.7547Q201.72562 433.88187 202.71999 433.85977Q203.71436 433.83768 204.43251 434.55582Q204.79712 434.9204 204.99599 435.42865Q205.19487 435.9148 205.23906 436.6661Q205.28325 437.3953 205.16171 438.86475Q205.05124 440.1022 205.06229 440.511Q205.07333 440.89767 205.15067 441.2181L208.13377 438.235ZM206.88528 434.9315Q205.80254 433.84872 205.37164 432.9759Q204.9297 432.092 205.00703 431.30756Q205.09543 430.51205 205.75833 429.84915Q206.24448 429.363 206.80795 429.19727Q207.38248 429.0205 208.00119 429.15308Q208.60886 429.27463 209.27177 429.67236Q209.9347 430.07013 210.84067 430.9761Q211.91238 432.0478 212.34328 432.92062Q212.78522 433.78244 212.70787 434.58896Q212.63054 435.3734 211.95657 436.04736Q211.08374 436.9202 209.94574 436.79868Q208.59781 436.644 206.88528 434.9315ZM207.64764 434.16913Q209.13919 435.66068 209.98993 435.80432Q210.84067 435.94794 211.3489 435.4397Q211.86818 434.9204 211.7135 434.08075Q211.56987 433.23 210.07832 431.73843Q208.57571 430.23584 207.73602 430.10327Q206.89633 429.94858 206.36601 430.4789Q205.85777 430.98715 205.97931 431.7274Q206.14503 432.66653 207.64764 434.16913ZM212.9178 431.24127L212.16649 430.48996L214.46458 428.19186L215.2159 428.94318L212.9178 431.24127ZM214.66347 427.1533Q213.5807 426.07056 213.14981 425.1977Q212.70787 424.3138 212.78522 423.5294Q212.8736 422.7339 213.53651 422.07098Q214.02264 421.58484 214.58612 421.4191Q215.16064 421.24234 215.77937 421.3749Q216.38704 421.49646 217.04996 421.8942Q217.71286 422.29193 218.61885 423.1979Q219.69055 424.26962 220.12144 425.14246Q220.56339 426.00424 220.48605 426.8108Q220.4087 427.59525 219.73474 428.2692Q218.86191 429.14203 217.7239 429.0205Q216.37599 428.8658 214.66347 427.1533ZM215.42581 426.39096Q216.91737 427.8825 217.76811 428.02612Q218.61885 428.16977 219.12708 427.66153Q219.64636 427.14224 219.49168 426.30255Q219.34805 425.4518 217.85649 423.96027Q216.3539 422.45767 215.5142 422.32507Q214.67451 422.1704 214.14418 422.70074Q213.63596 423.20898 213.75748 423.94922Q213.92322 424.88834 215.42581 426.39096ZM221.01637 423.60672L221.73453 422.75598Q222.39745 423.24213 222.99406 423.22003Q223.60173 423.18686 224.05473 422.7339Q224.58505 422.20355 224.55191 421.4191Q224.51877 420.63464 223.85585 419.97174Q223.21504 419.33093 222.48584 419.33093Q221.75662 419.30884 221.17105 419.8944Q220.8175 420.24796 220.68492 420.712Q220.56339 421.16498 220.65178 421.58484L219.86732 422.1925L217.33722 418.49124L220.36452 415.46393L221.07162 416.17105L218.64095 418.6017L219.95572 420.5573Q220.1104 419.62924 220.70702 419.03262Q221.50252 418.23712 222.59631 418.24817Q223.70117 418.24817 224.574 419.121Q225.3916 419.9386 225.52419 421.02136Q225.66782 422.33612 224.6624 423.34155Q223.83376 424.1702 222.83939 424.23648Q221.85606 424.29172 221.01637 423.60672ZM225.64572 418.51334L224.89441 417.76202L227.19252 415.46393L227.94382 416.21524L225.64572 418.51334ZM233.58963 412.77914L234.30779 413.49728L230.2861 417.51898Q230.02094 417.2538 229.85521 416.9113Q229.60109 416.3478 229.5348 415.61862Q229.47957 414.87836 229.60109 413.71826Q229.77788 411.9063 229.6453 411.0887Q229.52377 410.26007 229.10393 409.8402Q228.66199 409.3983 228.04326 409.42038Q227.4135 409.43143 226.90526 409.93967Q226.36388 410.48105 226.36388 411.12186Q226.36388 411.76266 226.92735 412.34824L226.08766 413.03326Q225.3032 412.09415 225.3695 411.14395Q225.43579 410.1717 226.30862 409.29886Q227.18147 408.426 228.17584 408.4039Q229.17021 408.3818 229.88837 409.09998Q230.25298 409.46457 230.45184 409.9728Q230.65071 410.45895 230.69492 411.21024Q230.7391 411.93945 230.61757 413.4089Q230.50708 414.64636 230.51813 415.05515Q230.52917 415.44183 230.6065 415.76224L233.58963 412.77914ZM234.61714 404.01764L233.93213 404.81314Q233.39076 404.47064 233.0151 404.44852Q232.38535 404.43747 231.9434 404.87943Q231.58984 405.23297 231.5125 405.70807Q231.43517 406.31573 231.72243 407.02283Q232.00969 407.70786 232.90462 408.62488Q232.76099 407.95093 232.94882 407.36536Q233.14769 406.76874 233.57858 406.33783Q234.31883 405.5976 235.39055 405.63074Q236.4733 405.65283 237.33508 406.51462Q237.9096 407.08914 238.15268 407.84042Q238.39575 408.56964 238.23003 409.2657Q238.05324 409.9507 237.51186 410.4921Q236.57274 411.4312 235.30215 411.3318Q234.03157 411.23233 232.46268 409.66345Q230.69492 407.8957 230.55128 406.4483Q230.4187 405.18878 231.37993 404.22757Q232.09808 403.5094 232.95987 403.4652Q233.82166 403.39893 234.61714 404.01764ZM234.1973 409.6745Q234.584 410.0612 235.09224 410.26007Q235.60046 410.43683 236.07555 410.3374Q236.56169 410.22693 236.89314 409.89548Q237.35718 409.43143 237.32404 408.71326Q237.27985 407.98407 236.62798 407.3322Q235.99821 406.70242 235.2911 406.68033Q234.59505 406.6472 234.08682 407.15543Q233.57858 407.66367 233.58963 408.3818Q233.61172 409.08893 234.1973 409.6745Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M221.35524 448.1345L222.0734 448.85263L218.05173 452.8743Q217.78656 452.60913 217.62083 452.26663Q217.36671 451.70316 217.30042 450.97397Q217.24518 450.2337 217.36671 449.0736Q217.54349 447.26166 217.4109 446.44406Q217.28937 445.61542 216.86952 445.19556Q216.42758 444.75363 215.80887 444.77573Q215.17911 444.78677 214.67087 445.295Q214.12949 445.8364 214.12949 446.4772Q214.12949 447.118 214.69296 447.70358L213.85327 448.3886Q213.06883 447.44946 213.13512 446.4993Q213.20142 445.52704 214.07425 444.6542Q214.94708 443.78134 215.94145 443.75925Q216.93582 443.73715 217.65398 444.45532Q218.01857 444.81992 218.21745 445.32816Q218.41632 445.8143 218.46053 446.56558Q218.50471 447.2948 218.38318 448.76425Q218.27269 450.00168 218.28374 450.4105Q218.29478 450.79718 218.37213 451.11758L221.35524 448.1345ZM220.10675 444.83096Q219.02399 443.7482 218.5931 442.87537Q218.15115 441.9915 218.2285 441.20703Q218.3169 440.41156 218.9798 439.74863Q219.46594 439.2625 220.0294 439.09677Q220.60394 438.91998 221.22266 439.05258Q221.83032 439.1741 222.49324 439.57187Q223.15614 439.9696 224.06213 440.87558Q225.13383 441.9473 225.56473 442.82013Q226.00667 443.68192 225.92934 444.48846Q225.85199 445.27292 225.17804 445.94687Q224.30519 446.8197 223.16719 446.69818Q221.81927 446.5435 220.10675 444.83096ZM220.8691 444.0686Q222.36066 445.56018 223.2114 445.7038Q224.06213 445.84744 224.57036 445.3392Q225.08965 444.81992 224.93497 443.98022Q224.79134 443.1295 223.29977 441.63794Q221.79718 440.13535 220.95749 440.00275Q220.1178 439.84808 219.58746 440.37842Q219.07924 440.88663 219.20078 441.6269Q219.3665 442.566 220.8691 444.0686ZM231.25473 438.235L231.97289 438.95316L227.95122 442.97482Q227.68605 442.70966 227.52032 442.36716Q227.2662 441.80368 227.19992 441.07446Q227.14467 440.3342 227.2662 439.1741Q227.44298 437.36215 227.3104 436.54456Q227.18887 435.7159 226.76903 435.29608Q226.32709 434.85413 225.70836 434.87622Q225.0786 434.88727 224.57036 435.3955Q224.02898 435.9369 224.02898 436.5777Q224.02898 437.2185 224.59245 437.8041L223.75278 438.4891Q222.96832 437.55 223.03462 436.5998Q223.1009 435.62753 223.97374 434.7547Q224.84657 433.88187 225.84094 433.85977Q226.83531 433.83768 227.55347 434.55582Q227.91808 434.9204 228.11694 435.42865Q228.31583 435.9148 228.36002 436.6661Q228.4042 437.3953 228.28267 438.86475Q228.17218 440.1022 228.18324 440.511Q228.19429 440.89767 228.27162 441.21808L231.25473 438.235ZM230.00624 434.93146Q228.9235 433.84872 228.4926 432.9759Q228.05066 432.092 228.12799 431.30756Q228.21638 430.51205 228.87929 429.84915Q229.36543 429.363 229.92891 429.19727Q230.50343 429.0205 231.12215 429.15308Q231.72981 429.27463 232.39273 429.67236Q233.05565 430.0701 233.96162 430.9761Q235.03334 432.0478 235.46423 432.92062Q235.90617 433.7824 235.82883 434.58896Q235.7515 435.3734 235.07753 436.04736Q234.2047 436.9202 233.0667 436.79868Q231.71877 436.64398 230.00624 434.93146ZM230.7686 434.16913Q232.26015 435.66068 233.11089 435.80432Q233.96162 435.94794 234.46986 435.4397Q234.98914 434.9204 234.83446 434.08072Q234.69083 433.23 233.19928 431.73843Q231.69667 430.23584 230.85698 430.10327Q230.01729 429.94858 229.48697 430.4789Q228.97873 430.98715 229.10027 431.7274Q229.26599 432.66653 230.7686 434.16913ZM236.03876 431.24127L235.28745 430.48996L237.58554 428.19186L238.33685 428.94318L236.03876 431.24127ZM237.78442 427.1533Q236.70166 426.07053 236.27077 425.1977Q235.82883 424.3138 235.90617 423.5294Q235.99455 422.7339 236.65747 422.07095Q237.1436 421.58484 237.70708 421.4191Q238.2816 421.24234 238.90033 421.3749Q239.508 421.49643 240.1709 421.8942Q240.83382 422.29193 241.73979 423.1979Q242.81151 424.26962 243.2424 425.14246Q243.68434 426.00424 243.60701 426.8108Q243.52966 427.59525 242.8557 428.2692Q241.98286 429.14203 240.84486 429.0205Q239.49695 428.8658 237.78442 427.1533ZM238.54677 426.39096Q240.03833 427.8825 240.88907 428.02612Q241.73979 428.16977 242.24803 427.66153Q242.76732 427.14224 242.61264 426.30255Q242.46901 425.4518 240.97745 423.96027Q239.47485 422.45767 238.63516 422.32507Q237.79547 422.1704 237.26514 422.70074Q236.75691 423.20895 236.87843 423.94922Q237.04417 424.88834 238.54677 426.39096ZM245.01016 416.74557L244.32516 417.54108Q243.78378 417.19855 243.40813 417.17645Q242.77837 417.1654 242.33643 417.60736Q241.98286 417.9609 241.90553 418.436Q241.82819 419.04367 242.11545 419.75076Q242.40271 420.4358 243.29764 421.3528Q243.154 420.67886 243.34184 420.0933Q243.54071 419.49664 243.9716 419.06577Q244.71185 418.3255 245.78357 418.35864Q246.86632 418.38077 247.7281 419.24255Q248.30263 419.81708 248.5457 420.56836Q248.78877 421.29758 248.62305 421.99362Q248.44626 422.67865 247.90489 423.22Q246.96576 424.15915 245.69518 424.0597Q244.42459 423.96027 242.8557 422.3914Q241.08794 420.6236 240.9443 419.17624Q240.81172 417.91672 241.77295 416.9555Q242.4911 416.23734 243.35289 416.19315Q244.21468 416.12686 245.01016 416.74557ZM244.59032 422.40244Q244.97702 422.78912 245.48526 422.988Q245.99348 423.16476 246.46858 423.06534Q246.95471 422.95486 247.28616 422.62338Q247.75021 422.15936 247.71706 421.4412Q247.67287 420.712 247.021 420.06012Q246.39124 419.43036 245.68413 419.40826Q244.98807 419.37512 244.47984 419.88336Q243.9716 420.3916 243.98265 421.10974Q244.00475 421.81686 244.59032 422.40244ZM248.76668 418.51334L248.01537 417.76202L250.31346 415.46393L251.06477 416.21524L248.76668 418.51334ZM250.51234 414.42538Q249.42958 413.34262 248.99869 412.4698Q248.55675 411.5859 248.6341 410.80145Q248.72247 410.00595 249.38539 409.34305Q249.87152 408.8569 250.435 408.6912Q251.00952 408.5144 251.62825 408.64697Q252.23592 408.76852 252.89883 409.16626Q253.56174 409.56403 254.46773 410.47Q255.53943 411.54172 255.97032 412.41455Q256.41226 413.27634 256.33493 414.0829Q256.2576 414.8673 255.58362 415.5413Q254.71078 416.41412 253.57278 416.29257Q252.22487 416.1379 250.51234 414.42538ZM251.27469 413.66302Q252.76625 415.15457 253.61699 415.29822Q254.46773 415.44183 254.97595 414.9336Q255.49524 414.41434 255.34056 413.57465Q255.19693 412.7239 253.70537 411.23236Q252.20277 409.72974 251.36308 409.59717Q250.52339 409.44247 249.99306 409.9728Q249.48483 410.48105 249.60637 411.22128Q249.7721 412.16043 251.27469 413.66302ZM261.26257 409.66345L260.5223 410.40372L255.77145 405.65283Q255.74936 406.18317 255.57257 406.89026Q255.3958 407.5753 255.17484 408.0393L254.45668 407.32117Q254.77708 406.40414 254.83232 405.5313Q254.88757 404.63635 254.68869 404.03973L255.16377 403.56467L261.26257 409.66345Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M244.4762 448.1345L245.19435 448.85263L241.17268 452.8743Q240.90752 452.60913 240.74179 452.26663Q240.48767 451.70316 240.42137 450.97397Q240.36613 450.2337 240.48767 449.0736Q240.66444 447.26166 240.53186 446.44406Q240.41032 445.61542 239.99048 445.19556Q239.54854 444.75363 238.92982 444.77573Q238.30005 444.78677 237.79182 445.295Q237.25044 445.8364 237.25044 446.4772Q237.25044 447.118 237.81392 447.70358L236.97423 448.3886Q236.18979 447.44946 236.25607 446.4993Q236.32237 445.52704 237.1952 444.65417Q238.06804 443.78134 239.06241 443.75925Q240.05678 443.73715 240.77493 444.45532Q241.13953 444.81992 241.33841 445.32816Q241.53728 445.8143 241.58147 446.56558Q241.62567 447.2948 241.50414 448.76425Q241.39365 450.00168 241.4047 450.4105Q241.41574 450.79718 241.49309 451.11758L244.4762 448.1345ZM243.22769 444.83096Q242.14494 443.74823 241.71405 442.8754Q241.27211 441.9915 241.34944 441.20706Q241.43784 440.41156 242.10074 439.74866Q242.58688 439.2625 243.15036 439.09677Q243.72488 438.92 244.3436 439.05258Q244.95126 439.17413 245.61418 439.57187Q246.2771 439.9696 247.18307 440.8756Q248.25478 441.9473 248.68567 442.82013Q249.12762 443.68192 249.05028 444.48846Q248.97295 445.27292 248.29898 445.94687Q247.42615 446.8197 246.28815 446.69818Q244.94022 446.5435 243.22769 444.83096ZM243.99005 444.06863Q245.4816 445.56018 246.33234 445.7038Q247.18307 445.84744 247.69131 445.3392Q248.21059 444.81992 248.05591 443.98022Q247.91228 443.1295 246.42073 441.63794Q244.91812 440.13535 244.07843 440.00278Q243.23874 439.84808 242.70842 440.37842Q242.20018 440.88666 242.32172 441.6269Q242.48744 442.566 243.99005 444.06863ZM254.37567 438.235L255.09383 438.95316L251.07216 442.97482Q250.80699 442.70966 250.64127 442.36716Q250.38715 441.80368 250.32086 441.07446Q250.26562 440.33423 250.38715 439.17413Q250.56393 437.36215 250.43135 436.54456Q250.30981 435.71594 249.88997 435.29608Q249.44803 434.85416 248.8293 434.87625Q248.19954 434.8873 247.69131 435.3955Q247.14993 435.9369 247.14993 436.57773Q247.14993 437.21854 247.71341 437.8041L246.87372 438.4891Q246.08926 437.55 246.15556 436.59982Q246.22185 435.62753 247.09468 434.7547Q247.96751 433.88187 248.96188 433.85977Q249.95625 433.83768 250.67441 434.55582Q251.03902 434.92044 251.23788 435.42868Q251.43677 435.9148 251.48096 436.6661Q251.52515 437.3953 251.40363 438.86478Q251.29314 440.1022 251.30418 440.511Q251.31523 440.8977 251.39256 441.2181L254.37567 438.235ZM253.1272 434.9315Q252.04443 433.84872 251.61354 432.9759Q251.1716 432.092 251.24893 431.30756Q251.33733 430.51205 252.00024 429.84915Q252.48637 429.363 253.04985 429.1973Q253.62437 429.0205 254.24309 429.1531Q254.85077 429.27463 255.51367 429.67236Q256.17657 430.07013 257.08258 430.9761Q258.15427 432.04782 258.58517 432.92065Q259.0271 433.78244 258.94977 434.589Q258.87244 435.3734 258.1985 436.0474Q257.32562 436.92023 256.18765 436.79868Q254.83972 436.644 253.1272 434.9315ZM253.88954 434.16913Q255.38109 435.66068 256.23184 435.80432Q257.08258 435.94794 257.5908 435.43973Q258.11008 434.92044 257.9554 434.08075Q257.81177 433.23 256.32022 431.73846Q254.81761 430.23584 253.97794 430.10327Q253.13824 429.94858 252.60791 430.4789Q252.09967 430.98715 252.2212 431.72742Q252.38693 432.66653 253.88954 434.16913ZM259.1597 431.24127L258.4084 430.48996L260.70648 428.19186L261.4578 428.94318L259.1597 431.24127ZM260.90536 427.15332Q259.8226 426.07056 259.39172 425.19772Q258.94977 424.31384 259.0271 423.5294Q259.1155 422.7339 259.7784 422.07098Q260.26456 421.58484 260.82803 421.4191Q261.40256 421.24234 262.02127 421.3749Q262.62894 421.49646 263.29184 421.8942Q263.95477 422.29196 264.86075 423.19794Q265.93246 424.26962 266.36334 425.1425Q266.8053 426.00427 266.72794 426.8108Q266.6506 427.59525 265.97665 428.2692Q265.10382 429.14206 263.96582 429.0205Q262.6179 428.86584 260.90536 427.15332ZM261.66772 426.39096Q263.15927 427.8825 264.01 428.02615Q264.86075 428.16977 265.369 427.66153Q265.88824 427.14227 265.73358 426.30258Q265.58994 425.45184 264.0984 423.96027Q262.5958 422.45767 261.7561 422.3251Q260.9164 422.1704 260.38608 422.70074Q259.87784 423.20898 259.9994 423.94922Q260.1651 424.88837 261.66772 426.39096ZM268.1311 416.74557L267.4461 417.54108Q266.90472 417.19858 266.52908 417.17648Q265.8993 417.16544 265.45737 417.60736Q265.10382 417.9609 265.02646 418.436Q264.94913 419.04367 265.2364 419.7508Q265.52365 420.4358 266.41858 421.3528Q266.27496 420.67886 266.46277 420.0933Q266.66165 419.49667 267.09256 419.06577Q267.8328 418.32553 268.9045 418.35867Q269.98727 418.38077 270.84906 419.24255Q271.42358 419.81708 271.66666 420.56836Q271.90973 421.29758 271.744 421.99362Q271.5672 422.67865 271.02582 423.22003Q270.0867 424.15915 268.81613 424.05972Q267.54553 423.96027 265.97665 422.3914Q264.2089 420.62363 264.06525 419.17627Q263.93268 417.91672 264.8939 416.9555Q265.61203 416.23734 266.47385 416.19315Q267.33563 416.12686 268.1311 416.74557ZM267.71127 422.40244Q268.09796 422.78912 268.6062 422.988Q269.11444 423.1648 269.5895 423.06534Q270.07565 422.95486 270.4071 422.6234Q270.87115 422.15936 270.838 421.44122Q270.79382 420.712 270.14194 420.06015Q269.51218 419.4304 268.80508 419.40826Q268.109 419.37512 267.60077 419.88336Q267.09256 420.3916 267.1036 421.10974Q267.1257 421.81686 267.71127 422.40244ZM271.8876 418.51334L271.13632 417.76205L273.43442 415.46396L274.18573 416.21524L271.8876 418.51334ZM273.6333 414.42538Q272.55054 413.34262 272.11963 412.4698Q271.6777 411.5859 271.75504 410.80145Q271.8434 410.00598 272.50635 409.34305Q272.99246 408.85693 273.55594 408.6912Q274.13046 408.5144 274.74918 408.647Q275.35687 408.76852 276.01978 409.1663Q276.68268 409.56403 277.58865 410.47Q278.66037 411.54172 279.09128 412.41455Q279.5332 413.27634 279.45587 414.0829Q279.37854 414.86734 278.70456 415.5413Q277.83173 416.41412 276.69373 416.2926Q275.34583 416.1379 273.6333 414.42538ZM274.39563 413.66302Q275.88718 415.1546 276.7379 415.29822Q277.58865 415.44186 278.0969 414.93362Q278.61618 414.41434 278.4615 413.57465Q278.31787 412.7239 276.82632 411.23236Q275.3237 409.72977 274.48404 409.59717Q273.64435 409.4425 273.114 409.9728Q272.60577 410.48105 272.7273 411.2213Q272.89304 412.16043 274.39563 413.66302ZM280.28452 410.95615L280.93637 410.1717Q281.533 410.59155 282.01913 410.56946Q282.50528 410.52524 282.903 410.1275Q283.2455 409.785 283.34497 409.3762Q283.4444 408.9453 283.35602 408.52545Q283.25656 408.09457 282.9251 407.54214Q282.5826 406.97867 282.11856 406.51462Q282.06332 406.45938 281.9639 406.35995Q282.09647 406.93448 281.9418 407.5532Q281.77606 408.16086 281.32306 408.61386Q280.56073 409.3762 279.50006 409.3541Q278.42834 409.32095 277.53342 408.42603Q276.60535 407.49796 276.58325 406.3931Q276.5722 405.2772 277.3898 404.4596Q277.97537 403.87402 278.78192 403.70828Q279.5995 403.53152 280.45023 403.87402Q281.28992 404.20547 282.40582 405.32138Q283.56592 406.48148 284.00787 407.43167Q284.4498 408.35974 284.30618 409.23257Q284.16254 410.0833 283.49963 410.74622Q282.7815 411.4644 281.9418 411.53067Q281.09106 411.5859 280.28452 410.95615ZM280.6491 405.22195Q280.0083 404.58115 279.29013 404.54797Q278.58304 404.50378 278.0969 404.98993Q277.5997 405.48712 277.63287 406.27155Q277.66602 407.0339 278.31787 407.68576Q278.8924 408.26028 279.61053 408.27133Q280.3287 408.28238 280.83694 407.77417Q281.35623 407.25488 281.32306 406.5588Q281.28992 405.86276 280.6491 405.22195Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M267.59714 448.1345L268.3153 448.85263L264.29364 452.8743Q264.02847 452.60913 263.86273 452.26663Q263.6086 451.70316 263.54233 450.97397Q263.4871 450.2337 263.6086 449.0736Q263.7854 447.26166 263.65283 446.44406Q263.53128 445.61542 263.11145 445.19556Q262.6695 444.75363 262.05078 444.77573Q261.42102 444.78677 260.91278 445.295Q260.3714 445.8364 260.3714 446.4772Q260.3714 447.118 260.93488 447.70358L260.09518 448.38858Q259.31073 447.44946 259.37704 446.4993Q259.44333 445.527 260.31616 444.65417Q261.189 443.78134 262.18335 443.75925Q263.17773 443.73715 263.89587 444.45532Q264.2605 444.81992 264.45935 445.32816Q264.65823 445.81427 264.70242 446.56558Q264.7466 447.2948 264.6251 448.76425Q264.51462 450.00168 264.52567 450.4105Q264.5367 450.79718 264.61404 451.11758L267.59714 448.1345ZM266.34866 444.83096Q265.2659 443.7482 264.83502 442.87537Q264.39307 441.9915 264.4704 441.20703Q264.5588 440.41156 265.2217 439.74863Q265.70786 439.2625 266.27133 439.09677Q266.84586 438.91998 267.46457 439.05258Q268.07224 439.1741 268.73514 439.57187Q269.39807 439.9696 270.30405 440.87558Q271.37576 441.9473 271.80664 442.82013Q272.2486 443.68192 272.17123 444.48846Q272.0939 445.27292 271.41995 445.94687Q270.54712 446.8197 269.40912 446.69818Q268.0612 446.5435 266.34866 444.83096ZM267.11102 444.0686Q268.60257 445.56018 269.4533 445.7038Q270.30405 445.84744 270.8123 445.3392Q271.33154 444.81992 271.17688 443.98022Q271.03323 443.1295 269.5417 441.63794Q268.0391 440.13535 267.1994 440.00275Q266.3597 439.84808 265.82938 440.3784Q265.32114 440.88663 265.4427 441.6269Q265.6084 442.566 267.11102 444.0686ZM277.49664 438.235L278.2148 438.95312L274.1931 442.97482Q273.92798 442.70966 273.76224 442.36713Q273.50812 441.80365 273.44183 441.07446Q273.3866 440.3342 273.50812 439.1741Q273.6849 437.36215 273.5523 436.54456Q273.4308 435.7159 273.01093 435.29608Q272.569 434.85413 271.9503 434.87622Q271.3205 434.88727 270.8123 435.3955Q270.2709 435.9369 270.2709 436.5777Q270.2709 437.2185 270.83438 437.80408L269.9947 438.4891Q269.21024 437.55 269.27652 436.5998Q269.3428 435.62753 270.21567 434.7547Q271.0885 433.88187 272.08286 433.85977Q273.07724 433.83768 273.79538 434.55582Q274.15997 434.9204 274.35886 435.42865Q274.55774 435.9148 274.60193 436.66608Q274.64612 437.3953 274.5246 438.86475Q274.4141 440.10217 274.42514 440.511Q274.4362 440.89767 274.51355 441.21808L277.49664 438.235ZM276.24817 434.93146Q275.1654 433.84872 274.7345 432.9759Q274.29257 432.09198 274.3699 431.30756Q274.45828 430.51205 275.12122 429.84915Q275.60733 429.363 276.1708 429.19727Q276.74533 429.0205 277.36407 429.15308Q277.97174 429.27463 278.63464 429.67236Q279.29755 430.0701 280.20352 430.9761Q281.27524 432.0478 281.70615 432.92062Q282.14807 433.7824 282.07074 434.58896Q281.9934 435.3734 281.31943 436.04736Q280.4466 436.9202 279.3086 436.79868Q277.9607 436.64398 276.24817 434.93146ZM277.0105 434.16913Q278.50208 435.66068 279.35278 435.8043Q280.20352 435.94794 280.71176 435.4397Q281.23105 434.9204 281.0764 434.08072Q280.93274 433.22998 279.4412 431.73843Q277.9386 430.23584 277.0989 430.10324Q276.25922 429.94858 275.72888 430.4789Q275.22064 430.98715 275.34216 431.7274Q275.5079 432.6665 277.0105 434.16913ZM282.28067 431.24124L281.52936 430.48996L283.82745 428.19186L284.57877 428.94315L282.28067 431.24124ZM284.02634 427.1533Q282.94357 426.07053 282.5127 425.1977Q282.07074 424.3138 282.14807 423.52936Q282.23648 422.7339 282.89938 422.07095Q283.38553 421.58484 283.949 421.4191Q284.52353 421.2423 285.14224 421.3749Q285.7499 421.49643 286.4128 421.8942Q287.07574 422.29193 287.98172 423.1979Q289.0534 424.26962 289.4843 425.14246Q289.92624 426.00424 289.8489 426.8108Q289.77158 427.59525 289.09763 428.2692Q288.2248 429.14203 287.0868 429.0205Q285.73886 428.8658 284.02634 427.1533ZM284.7887 426.39093Q286.28024 427.8825 287.13098 428.02612Q287.98172 428.16977 288.48993 427.66153Q289.00922 427.14224 288.85455 426.30255Q288.7109 425.4518 287.21936 423.96027Q285.71677 422.45767 284.87708 422.32507Q284.03738 422.1704 283.50705 422.70074Q282.9988 423.20895 283.12036 423.94922Q283.28607 424.88834 284.7887 426.39093ZM291.25208 416.74557L290.56708 417.54105Q290.0257 417.19855 289.65005 417.17645Q289.02026 417.1654 288.57834 417.60736Q288.2248 417.9609 288.14743 418.436Q288.0701 419.04367 288.35736 419.75076Q288.64462 420.4358 289.53955 421.3528Q289.39594 420.67883 289.58374 420.09326Q289.78262 419.49664 290.21353 419.06577Q290.95377 418.3255 292.02548 418.35864Q293.10825 418.38074 293.97003 419.24252Q294.54456 419.81705 294.78763 420.56836Q295.03067 421.29758 294.86496 421.99362Q294.68817 422.67862 294.1468 423.22Q293.20767 424.15915 291.9371 424.0597Q290.6665 423.96027 289.09763 422.39136Q287.32983 420.6236 287.18622 419.17624Q287.05362 417.91672 288.01486 416.95547Q288.733 416.23734 289.5948 416.19315Q290.45657 416.12686 291.25208 416.74557ZM290.83224 422.40244Q291.21893 422.78912 291.72717 422.988Q292.2354 423.16476 292.71048 423.06534Q293.19662 422.95483 293.52808 422.62338Q293.99213 422.15936 293.95898 421.4412Q293.91476 420.712 293.2629 420.06012Q292.63315 419.43036 291.92603 419.40826Q291.22998 419.37512 290.72174 419.88336Q290.21353 420.39157 290.22458 421.10974Q290.24667 421.81683 290.83224 422.40244ZM295.00858 418.51334L294.2573 417.76202L296.5554 415.46393L297.30667 416.21524L295.00858 418.51334ZM302.55475 414.6132L301.81448 415.35345L297.0636 410.60257Q297.0415 411.1329 296.86475 411.84003Q296.68796 412.52502 296.46698 412.98907L295.74884 412.2709Q296.06924 411.35388 296.12448 410.48105Q296.17972 409.58612 295.98087 408.9895L296.45593 408.5144L302.55475 414.6132ZM303.10718 410.87878L303.82532 410.02805Q304.48822 410.5142 305.08487 410.4921Q305.69254 410.45895 306.1455 410.00595Q306.67584 409.47562 306.6427 408.6912Q306.60956 407.90674 305.94666 407.2438Q305.30582 406.603 304.57663 406.603Q303.8474 406.5809 303.26184 407.16647Q302.9083 407.52002 302.7757 407.98407Q302.65417 408.43707 302.74255 408.8569L301.95813 409.46457L299.428 405.7633L302.4553 402.73602L303.1624 403.4431L300.73172 405.8738L302.0465 407.8294Q302.20117 406.9013 302.79782 406.3047Q303.5933 405.5092 304.6871 405.52023Q305.79196 405.52023 306.6648 406.39307Q307.4824 407.21066 307.61496 408.29343Q307.7586 409.60822 306.75317 410.61362Q305.92453 411.44226 304.93018 411.50854Q303.94687 411.5638 303.10718 410.87878Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M290.71808 448.1345L291.43625 448.85263L287.41458 452.8743Q287.1494 452.60916 286.98367 452.26663Q286.72958 451.70316 286.66327 450.97397Q286.60803 450.2337 286.72958 449.0736Q286.90634 447.26166 286.77377 446.44406Q286.65222 445.61542 286.2324 445.1956Q285.79044 444.75363 285.17172 444.77573Q284.54196 444.78677 284.03372 445.295Q283.49234 445.8364 283.49234 446.4772Q283.49234 447.118 284.05582 447.70358L283.21613 448.3886Q282.43167 447.44946 282.498 446.4993Q282.56427 445.52704 283.4371 444.6542Q284.30994 443.78137 285.30432 443.75928Q286.29868 443.73715 287.01685 444.45532Q287.38144 444.81992 287.5803 445.32816Q287.77917 445.8143 287.82336 446.56558Q287.86755 447.2948 287.74603 448.76425Q287.63556 450.00168 287.6466 450.4105Q287.65765 450.79718 287.735 451.11758L290.71808 448.1345ZM289.4696 444.83096Q288.38684 443.74823 287.95596 442.87537Q287.514 441.9915 287.59137 441.20706Q287.67975 440.41156 288.34265 439.74866Q288.8288 439.2625 289.39227 439.09677Q289.9668 438.92 290.5855 439.05258Q291.19318 439.17413 291.85608 439.57187Q292.519 439.9696 293.425 440.87558Q294.4967 441.9473 294.92758 442.82013Q295.36954 443.68192 295.29218 444.48846Q295.21484 445.27292 294.5409 445.94687Q293.66806 446.8197 292.53006 446.69818Q291.18213 446.5435 289.4696 444.83096ZM290.23196 444.06863Q291.7235 445.56018 292.57425 445.7038Q293.425 445.84744 293.93323 445.3392Q294.4525 444.81992 294.29782 443.98022Q294.15417 443.1295 292.66263 441.63794Q291.16003 440.13535 290.32034 440.00275Q289.48065 439.84808 288.95032 440.37842Q288.44208 440.88666 288.56363 441.6269Q288.72937 442.566 290.23196 444.06863ZM300.61758 438.235L301.33575 438.95316L297.3141 442.97482Q297.04892 442.70966 296.88318 442.36716Q296.62906 441.80368 296.56277 441.07446Q296.50754 440.33423 296.62906 439.17413Q296.80585 437.36215 296.67325 436.54456Q296.55173 435.7159 296.13187 435.29608Q295.68994 434.85413 295.07123 434.87622Q294.44144 434.8873 293.93323 435.3955Q293.39185 435.9369 293.39185 436.5777Q293.39185 437.21854 293.95532 437.8041L293.11563 438.4891Q292.33118 437.55 292.39746 436.59982Q292.46378 435.62753 293.3366 434.7547Q294.20944 433.88187 295.2038 433.85977Q296.19818 433.83768 296.91632 434.55582Q297.2809 434.92044 297.4798 435.42865Q297.67868 435.9148 297.72287 436.6661Q297.76706 437.3953 297.64554 438.86475Q297.53503 440.1022 297.54608 440.511Q297.55713 440.8977 297.6345 441.2181L300.61758 438.235ZM299.3691 434.9315Q298.28635 433.84872 297.85544 432.9759Q297.4135 432.092 297.49084 431.30756Q297.57922 430.51205 298.24216 429.84915Q298.7283 429.363 299.29175 429.1973Q299.86627 429.0205 300.48502 429.15308Q301.09268 429.27463 301.75558 429.67236Q302.4185 430.07013 303.3245 430.9761Q304.39618 432.04782 304.8271 432.92065Q305.269 433.78244 305.19168 434.58896Q305.11435 435.3734 304.44037 436.0474Q303.56754 436.92023 302.42953 436.79868Q301.08163 436.644 299.3691 434.9315ZM300.13144 434.16913Q301.62302 435.66068 302.47375 435.80432Q303.3245 435.94794 303.8327 435.4397Q304.352 434.92044 304.19733 434.08075Q304.05368 433.23 302.56213 431.73843Q301.05954 430.23584 300.21985 430.10327Q299.38016 429.94858 298.84982 430.4789Q298.34158 430.98715 298.46313 431.7274Q298.62885 432.66653 300.13144 434.16913ZM305.4016 431.24127L304.6503 430.48996L306.9484 428.19186L307.6997 428.94318L305.4016 431.24127ZM307.14728 427.1533Q306.0645 426.07056 305.63364 425.19772Q305.19168 424.3138 305.269 423.5294Q305.35742 422.7339 306.02032 422.07098Q306.50647 421.58484 307.06995 421.4191Q307.64447 421.24234 308.26318 421.3749Q308.87085 421.49646 309.53375 421.8942Q310.1967 422.29193 311.10266 423.19794Q312.17438 424.26962 312.60526 425.14246Q313.0472 426.00424 312.96985 426.8108Q312.89252 427.59525 312.21857 428.2692Q311.34573 429.14203 310.20773 429.0205Q308.8598 428.8658 307.14728 427.1533ZM307.90964 426.39096Q309.40118 427.8825 310.25192 428.02612Q311.10266 428.16977 311.6109 427.66153Q312.13016 427.14224 311.9755 426.30255Q311.83185 425.4518 310.3403 423.96027Q308.8377 422.45767 307.99802 422.3251Q307.15833 422.1704 306.628 422.70074Q306.11975 423.20898 306.2413 423.94922Q306.407 424.88837 307.90964 426.39096ZM314.37302 416.74557L313.68802 417.54108Q313.14664 417.19858 312.771 417.17648Q312.1412 417.1654 311.69928 417.60736Q311.34573 417.9609 311.26837 418.436Q311.19104 419.04367 311.4783 419.7508Q311.76556 420.4358 312.6605 421.3528Q312.51688 420.67886 312.70468 420.0933Q312.90356 419.49667 313.33447 419.06577Q314.0747 418.32553 315.14642 418.35867Q316.2292 418.38077 317.09097 419.24255Q317.6655 419.81708 317.90857 420.56836Q318.1516 421.29758 317.9859 421.99362Q317.8091 422.67865 317.26773 423.22003Q316.3286 424.15915 315.05804 424.05972Q313.78745 423.96027 312.21857 422.3914Q310.4508 420.62363 310.30716 419.17627Q310.1746 417.91672 311.1358 416.9555Q311.85394 416.23734 312.71573 416.19315Q313.5775 416.12686 314.37302 416.74557ZM313.9532 422.40244Q314.33987 422.78912 314.8481 422.988Q315.35635 423.16476 315.83142 423.06534Q316.31757 422.95486 316.64902 422.6234Q317.11307 422.15936 317.07993 421.4412Q317.03574 420.712 316.38385 420.06015Q315.7541 419.43036 315.047 419.40826Q314.35092 419.37512 313.84268 419.88336Q313.33447 420.3916 313.34552 421.10974Q313.3676 421.81686 313.9532 422.40244ZM318.12952 418.51334L317.37823 417.76205L319.67633 415.46396L320.4276 416.21524L318.12952 418.51334ZM326.07343 412.77914L326.7916 413.4973L322.76993 417.51898Q322.50476 417.2538 322.33902 416.91132Q322.0849 416.34784 322.01862 415.61862Q321.96338 414.87836 322.0849 413.71826Q322.2617 411.9063 322.1291 411.0887Q322.00757 410.26007 321.58774 409.84024Q321.14578 409.3983 320.52707 409.42038Q319.8973 409.43143 319.38907 409.93967Q318.8477 410.48105 318.8477 411.12186Q318.8477 411.7627 319.41116 412.34827L318.57147 413.03326Q317.78702 412.09415 317.8533 411.14395Q317.91962 410.1717 318.79245 409.29886Q319.66528 408.42603 320.65964 408.40393Q321.65402 408.38184 322.37216 409.09998Q322.7368 409.4646 322.93564 409.9728Q323.13452 410.45895 323.1787 411.21027Q323.2229 411.93945 323.10138 413.4089Q322.99088 414.64636 323.00192 415.05515Q323.013 415.44183 323.09033 415.76227L326.07343 412.77914ZM326.21707 410.86774L326.86893 410.017Q327.62024 410.52524 328.21686 410.50314Q328.80243 410.47 329.24435 410.02805Q329.7747 409.49774 329.7747 408.76852Q329.7747 408.03934 329.2333 407.49796Q328.72507 406.98972 328.05112 407.00076Q327.37717 406.98972 326.85788 407.509Q326.64795 407.7189 326.41592 408.12772L325.8414 407.3764Q325.9298 407.31012 325.974 407.26593Q326.4491 406.79083 326.58167 406.17212Q326.71423 405.5313 326.19498 405.01202Q325.78616 404.60324 325.24478 404.6143Q324.69235 404.6143 324.25043 405.0562Q323.81952 405.48712 323.79742 406.06165Q323.78638 406.62512 324.25043 407.24384L323.36655 407.86255Q322.75888 406.98972 322.8362 406.0948Q322.9025 405.1888 323.62067 404.47064Q324.11783 403.97345 324.75867 403.7746Q325.38843 403.56467 325.974 403.70828Q326.55957 403.85193 326.9794 404.27176Q327.36612 404.65848 327.48764 405.19986Q327.59814 405.73016 327.37717 406.3268Q328.02902 405.918 328.72507 406.01743Q329.4101 406.10583 330.0067 406.70245Q330.80222 407.49796 330.76907 408.63596Q330.74698 409.7629 329.86307 410.6468Q329.0676 411.44226 328.06216 411.49753Q327.04572 411.54172 326.21707 410.86774Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M313.83905 448.13446L314.55722 448.85263L310.53555 452.8743Q310.2704 452.60913 310.10464 452.26663Q309.85052 451.70316 309.78424 450.97394Q309.729 450.2337 309.85052 449.0736Q310.0273 447.26163 309.8947 446.44406Q309.7732 445.61542 309.35336 445.19556Q308.9114 444.75363 308.2927 444.77573Q307.66293 444.78677 307.1547 445.295Q306.6133 445.83636 306.6133 446.4772Q306.6133 447.118 307.1768 447.70358L306.3371 448.38858Q305.55264 447.44946 305.61896 446.4993Q305.68524 445.527 306.55807 444.65417Q307.4309 443.78134 308.42526 443.75925Q309.41965 443.73715 310.1378 444.45532Q310.5024 444.81992 310.70126 445.32816Q310.90015 445.81427 310.94434 446.56558Q310.98853 447.2948 310.867 448.76425Q310.75653 450.00168 310.76758 450.41046Q310.77863 450.79718 310.85596 451.11758L313.83905 448.13446ZM312.59058 444.83096Q311.5078 443.7482 311.07693 442.87537Q310.63498 441.9915 310.7123 441.20703Q310.80072 440.41153 311.46362 439.74863Q311.94977 439.26248 312.51324 439.09677Q313.08777 438.91998 313.70648 439.05258Q314.31415 439.1741 314.97705 439.57184Q315.63998 439.9696 316.54596 440.87558Q317.61768 441.9473 318.04855 442.82013Q318.4905 443.68192 318.41315 444.48846Q318.33582 445.2729 317.66187 445.94687Q316.78903 446.8197 315.65103 446.69815Q314.3031 446.5435 312.59058 444.83096ZM313.35294 444.0686Q314.84448 445.56015 315.69522 445.7038Q316.54596 445.8474 317.0542 445.3392Q317.57346 444.81992 317.4188 443.98022Q317.27515 443.1295 315.7836 441.63794Q314.281 440.1353 313.4413 440.00275Q312.60162 439.84805 312.0713 440.3784Q311.56305 440.88663 311.6846 441.6269Q311.8503 442.566 313.35294 444.0686ZM323.73856 438.235L324.4567 438.95312L320.43503 442.9748Q320.16986 442.70963 320.00415 442.36713Q319.75003 441.80365 319.68375 441.07446Q319.6285 440.3342 319.75003 439.1741Q319.92682 437.36215 319.79422 436.54456Q319.6727 435.7159 319.25284 435.29608Q318.8109 434.85413 318.1922 434.87622Q317.5624 434.88727 317.0542 435.3955Q316.51282 435.9369 316.51282 436.5777Q316.51282 437.2185 317.0763 437.80408L316.2366 438.4891Q315.45215 437.54996 315.51843 436.5998Q315.58472 435.62753 316.45755 434.7547Q317.3304 433.88187 318.32477 433.85977Q319.31912 433.83765 320.0373 434.55582Q320.4019 434.9204 320.60077 435.42865Q320.79965 435.9148 320.84384 436.66608Q320.88803 437.3953 320.7665 438.86475Q320.656 440.10217 320.66705 440.511Q320.6781 440.89767 320.75546 441.21808L323.73856 438.235ZM322.49008 434.93146Q321.40732 433.8487 320.9764 432.97586Q320.5345 432.09198 320.61182 431.30756Q320.7002 430.51205 321.36313 429.84912Q321.84924 429.363 322.41272 429.19727Q322.98724 429.0205 323.60596 429.15308Q324.21365 429.2746 324.87656 429.67236Q325.53946 430.0701 326.44543 430.97607Q327.51715 432.0478 327.94806 432.92062Q328.38998 433.7824 328.31265 434.58896Q328.23532 435.3734 327.56134 436.04736Q326.6885 436.9202 325.5505 436.79868Q324.2026 436.64398 322.49008 434.93146ZM323.2524 434.16913Q324.74396 435.66068 325.5947 435.8043Q326.44543 435.94794 326.95367 435.4397Q327.47296 434.9204 327.31827 434.08072Q327.17465 433.22998 325.6831 431.73843Q324.18048 430.23584 323.34082 430.10324Q322.50113 429.94858 321.9708 430.4789Q321.46255 430.98712 321.58408 431.7274Q321.74982 432.6665 323.2524 434.16913ZM328.52258 431.24124L327.77127 430.48996L330.06937 428.19186L330.82068 428.94315L328.52258 431.24124ZM330.26825 427.1533Q329.1855 426.07053 328.7546 425.1977Q328.31265 424.3138 328.38998 423.52936Q328.4784 422.7339 329.1413 422.07095Q329.62744 421.58484 330.19092 421.4191Q330.76544 421.2423 331.38416 421.3749Q331.99182 421.49643 332.65472 421.8942Q333.31763 422.29193 334.22363 423.1979Q335.29532 424.26962 335.72623 425.14246Q336.16815 426.00424 336.09082 426.8108Q336.0135 427.59525 335.33954 428.2692Q334.46667 429.14203 333.3287 429.0205Q331.98077 428.8658 330.26825 427.1533ZM331.03058 426.39093Q332.52216 427.8825 333.3729 428.02612Q334.22363 428.16977 334.73184 427.66153Q335.25113 427.14224 335.09647 426.30255Q334.95282 425.4518 333.46127 423.96027Q331.95868 422.45767 331.119 422.32507Q330.2793 422.1704 329.74896 422.7007Q329.24072 423.20895 329.36227 423.94922Q329.52798 424.88834 331.03058 426.39093ZM337.494 416.74557L336.809 417.54105Q336.2676 417.19855 335.89194 417.17645Q335.26218 417.1654 334.82025 417.60736Q334.46667 417.9609 334.38934 418.436Q334.312 419.04367 334.59927 419.75076Q334.88654 420.4358 335.78146 421.3528Q335.63785 420.67883 335.82565 420.09326Q336.02454 419.49664 336.4554 419.06577Q337.19568 418.3255 338.2674 418.35864Q339.35016 418.38074 340.21194 419.24252Q340.78647 419.81705 341.0295 420.56836Q341.27258 421.29758 341.10687 421.99362Q340.93008 422.67862 340.3887 423.22Q339.4496 424.15915 338.179 424.0597Q336.90842 423.96027 335.33954 422.39136Q333.57175 420.6236 333.42813 419.17624Q333.29553 417.91672 334.25677 416.95547Q334.9749 416.23734 335.8367 416.19315Q336.6985 416.12683 337.494 416.74557ZM337.07416 422.4024Q337.46085 422.78912 337.9691 422.98798Q338.47733 423.16476 338.9524 423.06534Q339.43854 422.95483 339.77 422.62338Q340.23404 422.15936 340.2009 421.4412Q340.15668 420.71198 339.50482 420.06012Q338.87506 419.43036 338.16794 419.40826Q337.4719 419.37512 336.96365 419.88336Q336.4554 420.39157 336.46646 421.10974Q336.4886 421.81683 337.07416 422.4024ZM341.2505 418.51334L340.4992 417.76202L342.7973 415.46393L343.54858 416.21524L341.2505 418.51334ZM349.1944 412.77914L349.91257 413.49728L345.89087 417.51895Q345.62573 417.25378 345.46 416.9113Q345.20587 416.3478 345.1396 415.61862Q345.08435 414.87836 345.20587 413.71826Q345.38266 411.9063 345.25006 411.0887Q345.12854 410.26007 344.70868 409.8402Q344.26675 409.3983 343.64804 409.42038Q343.01825 409.43143 342.51004 409.93967Q341.96866 410.48105 341.96866 411.12186Q341.96866 411.76266 342.53214 412.34824L341.69244 413.03326Q340.908 412.09412 340.97427 411.14395Q341.0406 410.1717 341.91342 409.29886Q342.78625 408.426 343.7806 408.4039Q344.775 408.3818 345.49313 409.09998Q345.85773 409.46457 346.0566 409.9728Q346.2555 410.45895 346.29968 411.21024Q346.34387 411.93945 346.22235 413.4089Q346.11185 414.64633 346.1229 415.05515Q346.13394 415.44183 346.2113 415.76224L349.1944 412.77914ZM349.6474 410.95612L350.29926 410.1717Q350.89587 410.59152 351.38202 410.56943Q351.86813 410.52524 352.2659 410.12747Q352.6084 409.78497 352.70782 409.3762Q352.80728 408.94528 352.71887 408.52545Q352.61945 408.09454 352.288 407.5421Q351.9455 406.97864 351.48145 406.51462Q351.4262 406.45938 351.32678 406.35992Q351.45935 406.93445 351.30466 407.55316Q351.13895 408.16086 350.68594 408.61383Q349.9236 409.3762 348.86295 409.3541Q347.79123 409.32095 346.8963 408.426Q345.96823 407.49792 345.94614 406.39307Q345.9351 405.27716 346.7527 404.4596Q347.33826 403.87402 348.14478 403.70828Q348.96237 403.5315 349.8131 403.87402Q350.6528 404.20547 351.7687 405.32138Q352.9288 406.48148 353.37076 407.43164Q353.81268 408.3597 353.66907 409.23254Q353.52542 410.08328 352.86252 410.74622Q352.14435 411.46436 351.30466 411.53064Q350.45392 411.5859 349.6474 410.95612ZM350.012 405.22192Q349.3712 404.58112 348.653 404.54797Q347.94592 404.50378 347.45978 404.9899Q346.9626 405.4871 346.99573 406.27155Q347.02887 407.0339 347.68076 407.68576Q348.25528 408.26028 348.97342 408.27133Q349.6916 408.28238 350.19983 407.77414Q350.7191 407.25485 350.68594 406.5588Q350.6528 405.86276 350.012 405.22192Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M336.96 448.1345L337.67816 448.85263L333.6565 452.8743Q333.39133 452.60913 333.2256 452.26663Q332.97147 451.70316 332.90518 450.97397Q332.84995 450.2337 332.97147 449.0736Q333.14825 447.26166 333.0157 446.44406Q332.89413 445.61542 332.4743 445.19556Q332.03235 444.75363 331.41364 444.77573Q330.78387 444.78677 330.27563 445.295Q329.73425 445.8364 329.73425 446.4772Q329.73425 447.118 330.29773 447.70358L329.45804 448.3886Q328.67358 447.44946 328.7399 446.4993Q328.80618 445.52704 329.67902 444.6542Q330.55185 443.78137 331.5462 443.75925Q332.5406 443.73715 333.25873 444.45532Q333.62335 444.81992 333.8222 445.32816Q334.0211 445.8143 334.06528 446.56558Q334.10947 447.2948 333.98795 448.76425Q333.87747 450.00168 333.88852 450.4105Q333.89957 450.79718 333.9769 451.11758L336.96 448.1345ZM335.71152 444.83096Q334.62875 443.7482 334.19788 442.87537Q333.75592 441.9915 333.83325 441.20706Q333.92166 440.41156 334.58456 439.74863Q335.0707 439.2625 335.6342 439.09677Q336.2087 438.92 336.82742 439.05258Q337.4351 439.1741 338.098 439.57187Q338.76093 439.9696 339.6669 440.87558Q340.73862 441.9473 341.1695 442.82013Q341.61145 443.68192 341.5341 444.48846Q341.45676 445.27292 340.7828 445.94687Q339.90997 446.8197 338.77197 446.69818Q337.42404 446.5435 335.71152 444.83096ZM336.47388 444.06863Q337.96542 445.56018 338.81616 445.7038Q339.6669 445.84744 340.17514 445.3392Q340.6944 444.81992 340.53973 443.98022Q340.3961 443.1295 338.90454 441.63794Q337.40195 440.13535 336.56226 440.00275Q335.72256 439.84808 335.19223 440.37842Q334.684 440.88663 334.80554 441.6269Q334.97125 442.566 336.47388 444.06863ZM346.8595 438.235L347.57767 438.95316L343.556 442.97482Q343.29083 442.70966 343.1251 442.36716Q342.87097 441.80368 342.8047 441.07446Q342.74945 440.3342 342.87097 439.1741Q343.04776 437.36215 342.91516 436.54456Q342.79364 435.7159 342.37378 435.29608Q341.93185 434.85413 341.31314 434.87622Q340.68335 434.88727 340.17514 435.3955Q339.63376 435.9369 339.63376 436.5777Q339.63376 437.21854 340.19724 437.8041L339.35754 438.4891Q338.5731 437.55 338.63937 436.5998Q338.7057 435.62753 339.57852 434.7547Q340.45135 433.88187 341.4457 433.85977Q342.4401 433.83768 343.15823 434.55582Q343.52283 434.92044 343.7217 435.42865Q343.9206 435.9148 343.96478 436.6661Q344.00897 437.3953 343.88745 438.86475Q343.77695 440.1022 343.788 440.511Q343.79904 440.89767 343.8764 441.2181L346.8595 438.235ZM345.61102 434.9315Q344.52826 433.84872 344.09735 432.9759Q343.65543 432.092 343.73276 431.30756Q343.82114 430.51205 344.48407 429.84915Q344.97018 429.363 345.53366 429.19727Q346.1082 429.0205 346.72693 429.15308Q347.3346 429.27463 347.9975 429.67236Q348.6604 430.07013 349.5664 430.9761Q350.6381 432.0478 351.069 432.92065Q351.51093 433.78244 351.4336 434.58896Q351.35626 435.3734 350.68228 436.04736Q349.80945 436.92023 348.67145 436.79868Q347.32355 436.644 345.61102 434.9315ZM346.37335 434.16913Q347.86493 435.66068 348.71567 435.80432Q349.5664 435.94794 350.07462 435.4397Q350.5939 434.92044 350.43924 434.08075Q350.2956 433.23 348.80405 431.73843Q347.30145 430.23584 346.46176 430.10327Q345.62207 429.94858 345.09174 430.4789Q344.5835 430.98715 344.70505 431.7274Q344.87076 432.66653 346.37335 434.16913ZM351.64352 431.24127L350.8922 430.48996L353.1903 428.19186L353.94162 428.94318L351.64352 431.24127ZM353.3892 427.1533Q352.30643 426.07056 351.87555 425.1977Q351.4336 424.3138 351.51093 423.5294Q351.59933 422.7339 352.26224 422.07098Q352.74838 421.58484 353.31186 421.4191Q353.88638 421.24234 354.5051 421.3749Q355.11276 421.49646 355.77567 421.8942Q356.4386 422.29193 357.34457 423.1979Q358.4163 424.26962 358.84717 425.14246Q359.28912 426.00424 359.21176 426.8108Q359.13443 427.59525 358.46048 428.2692Q357.58765 429.14203 356.44965 429.0205Q355.1017 428.8658 353.3892 427.1533ZM354.15155 426.39096Q355.6431 427.8825 356.49384 428.02612Q357.34457 428.16977 357.8528 427.66153Q358.37207 427.14224 358.2174 426.30255Q358.07376 425.4518 356.5822 423.96027Q355.07962 422.45767 354.23993 422.32507Q353.40024 422.1704 352.8699 422.70074Q352.36166 423.20898 352.48322 423.94922Q352.64893 424.88834 354.15155 426.39096ZM356.09607 419.8723L355.37793 419.15414L359.31122 415.2209L359.8968 415.80646Q359.94098 416.9997 360.39395 418.6017Q360.84695 420.18167 361.62036 421.5738Q362.1507 422.56815 363.00143 423.5294L362.22803 424.30276Q361.5209 423.57358 360.76962 422.29193Q360.02936 420.99927 359.58743 419.56296Q359.15652 418.1156 359.0792 416.8892L356.09607 419.8723ZM364.37143 418.51334L363.62015 417.76202L365.91824 415.46393L366.66953 416.21524L364.37143 418.51334ZM366.1171 414.42538Q365.03436 413.34262 364.60345 412.4698Q364.16153 411.5859 364.23886 410.80145Q364.32724 410.00595 364.99017 409.34305Q365.4763 408.8569 366.03976 408.6912Q366.6143 408.5144 367.233 408.647Q367.8407 408.76852 368.5036 409.16626Q369.1665 409.56403 370.07248 410.47Q371.1442 411.54172 371.5751 412.41455Q372.01703 413.27634 371.9397 414.0829Q371.86237 414.8673 371.1884 415.5413Q370.31555 416.41412 369.17755 416.29257Q367.82962 416.1379 366.1171 414.42538ZM366.87946 413.66302Q368.371 415.15457 369.22174 415.29822Q370.07248 415.44183 370.58072 414.93362Q371.1 414.41434 370.9453 413.57465Q370.8017 412.7239 369.31015 411.23236Q367.80753 409.72974 366.96783 409.59717Q366.12817 409.44247 365.59784 409.9728Q365.0896 410.48105 365.21112 411.2213Q365.37686 412.16043 366.87946 413.66302ZM368.824 407.14438L368.10583 406.42624L372.03912 402.49295L372.6247 403.07852Q372.66888 404.27176 373.1219 405.8738Q373.5749 407.45374 374.34827 408.84586Q374.8786 409.84024 375.72934 410.80145L374.95593 411.57486Q374.24884 410.84564 373.49753 409.56403Q372.7573 408.27133 372.31534 406.83502Q371.88446 405.38766 371.8071 404.1613L368.824 407.14438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M360.08096 448.13446L360.79913 448.85263L356.77747 452.8743Q356.5123 452.60913 356.34656 452.26663Q356.09244 451.70316 356.02615 450.97394Q355.97092 450.2337 356.09244 449.0736Q356.26923 447.26163 356.13663 446.44403Q356.0151 445.61542 355.59528 445.19556Q355.15332 444.75363 354.5346 444.77573Q353.90485 444.78677 353.3966 445.29498Q352.85522 445.83636 352.85522 446.4772Q352.85522 447.118 353.4187 447.70358L352.579 448.38858Q351.79456 447.44946 351.86084 446.4993Q351.92715 445.527 352.8 444.65417Q353.67282 443.78134 354.66718 443.75925Q355.66156 443.73715 356.3797 444.4553Q356.74432 444.81992 356.94318 445.32816Q357.14206 445.81427 357.18625 446.56558Q357.23044 447.29477 357.10892 448.76425Q356.9984 450.00168 357.00946 450.41046Q357.02054 450.79718 357.09787 451.11758L360.08096 448.13446ZM358.8325 444.83096Q357.74973 443.7482 357.31885 442.87537Q356.8769 441.9915 356.95422 441.20703Q357.04263 440.41153 357.70554 439.74863Q358.19168 439.26248 358.75516 439.09677Q359.32968 438.91998 359.9484 439.05258Q360.55606 439.1741 361.21896 439.57184Q361.8819 439.9696 362.78787 440.87558Q363.85956 441.9473 364.29047 442.82013Q364.73242 443.68192 364.65506 444.48846Q364.57773 445.2729 363.90378 445.94687Q363.03094 446.8197 361.89294 446.69815Q360.545 446.5435 358.8325 444.83096ZM359.59485 444.0686Q361.0864 445.56015 361.93713 445.7038Q362.78787 445.8474 363.2961 445.3392Q363.81537 444.81992 363.6607 443.98022Q363.51706 443.1295 362.0255 441.63794Q360.52292 440.1353 359.68323 440.00275Q358.84354 439.84805 358.3132 440.3784Q357.80496 440.88663 357.9265 441.6269Q358.09222 442.566 359.59485 444.0686ZM369.98047 438.235L370.6986 438.95312L366.67694 442.9748Q366.41177 442.70963 366.24606 442.36713Q365.99194 441.80365 365.92566 441.07446Q365.87042 440.3342 365.99194 439.1741Q366.16873 437.36215 366.03613 436.54456Q365.9146 435.7159 365.49475 435.29605Q365.05283 434.85413 364.43408 434.87622Q363.80432 434.88727 363.2961 435.3955Q362.75473 435.9369 362.75473 436.5777Q362.75473 437.2185 363.3182 437.80408L362.47852 438.4891Q361.69406 437.54996 361.76035 436.5998Q361.82663 435.62753 362.69946 434.7547Q363.5723 433.88184 364.56668 433.85974Q365.56104 433.83765 366.2792 434.55582Q366.6438 434.9204 366.84268 435.42865Q367.04156 435.9148 367.08575 436.66608Q367.12994 437.3953 367.0084 438.86475Q366.89792 440.10217 366.90897 440.511Q366.92 440.89767 366.99734 441.21808L369.98047 438.235ZM368.732 434.93146Q367.64923 433.8487 367.21832 432.97586Q366.7764 432.09198 366.85373 431.30753Q366.9421 430.51205 367.60504 429.84912Q368.09116 429.363 368.65463 429.19727Q369.22916 429.02048 369.84787 429.15308Q370.45557 429.2746 371.11847 429.67236Q371.78137 430.0701 372.68735 430.97607Q373.75906 432.0478 374.18997 432.92062Q374.6319 433.7824 374.55457 434.58896Q374.47723 435.3734 373.80325 436.04736Q372.93042 436.9202 371.79242 436.79868Q370.44452 436.64398 368.732 434.93146ZM369.49432 434.1691Q370.98587 435.66068 371.8366 435.8043Q372.68735 435.94794 373.1956 435.4397Q373.71487 434.9204 373.56018 434.08072Q373.41656 433.22998 371.92502 431.73843Q370.4224 430.23584 369.58273 430.10324Q368.74304 429.94858 368.2127 430.4789Q367.70447 430.98712 367.826 431.7274Q367.99173 432.6665 369.49432 434.1691ZM374.7645 431.24124L374.01318 430.48996L376.31128 428.19186L377.0626 428.94315L374.7645 431.24124ZM376.51016 427.1533Q375.4274 426.07053 374.9965 425.1977Q374.55457 424.3138 374.6319 423.52936Q374.72028 422.73386 375.3832 422.07095Q375.86935 421.5848 376.4328 421.4191Q377.00732 421.2423 377.62607 421.3749Q378.23373 421.49643 378.89664 421.8942Q379.55954 422.29193 380.46555 423.1979Q381.53723 424.26962 381.96814 425.14246Q382.41006 426.00424 382.33273 426.8108Q382.2554 427.5952 381.58145 428.2692Q380.7086 429.14203 379.5706 429.02048Q378.2227 428.8658 376.51016 427.1533ZM377.2725 426.39093Q378.76407 427.88248 379.6148 428.02612Q380.46555 428.16974 380.97375 427.66153Q381.49304 427.14224 381.33838 426.30255Q381.19473 425.4518 379.7032 423.96027Q378.2006 422.45764 377.3609 422.32507Q376.5212 422.17038 375.99088 422.7007Q375.48264 423.20895 375.6042 423.94922Q375.7699 424.88834 377.2725 426.39093ZM379.21704 419.87228L378.4989 419.15414L382.43216 415.22086L383.01776 415.80643Q383.06195 416.99966 383.51492 418.6017Q383.96793 420.18167 384.74133 421.57376Q385.27164 422.56815 386.12238 423.52936L385.349 424.30276Q384.64188 423.57355 383.8906 422.29193Q383.15033 420.99924 382.70837 419.56293Q382.2775 418.11557 382.20016 416.8892L379.21704 419.87228ZM387.4924 418.51334L386.74112 417.76202L389.0392 415.46393L389.7905 416.21524L387.4924 418.51334ZM395.03857 414.6132L394.2983 415.35345L389.54742 410.60257Q389.52533 411.1329 389.34857 411.84Q389.17178 412.52502 388.9508 412.98904L388.23267 412.2709Q388.55307 411.35388 388.6083 410.48105Q388.66354 409.5861 388.4647 408.98947L388.93976 408.5144L395.03857 414.6132ZM395.57996 410.86774L396.2318 410.017Q396.9831 410.52524 397.57974 410.50314Q398.1653 410.47 398.60724 410.02805Q399.13757 409.4977 399.13757 408.76852Q399.13757 408.0393 398.5962 407.49792Q398.08795 406.9897 397.414 407.00073Q396.74005 406.9897 396.22076 407.50897Q396.01083 407.7189 395.7788 408.1277L395.20428 407.3764Q395.29266 407.3101 395.33688 407.2659Q395.81195 406.79083 395.94455 406.1721Q396.07712 405.53128 395.55783 405.012Q395.14905 404.6032 394.60767 404.61426Q394.05524 404.61426 393.6133 405.0562Q393.1824 405.4871 393.1603 406.0616Q393.14926 406.6251 393.6133 407.2438L392.72943 407.86252Q392.12173 406.9897 392.1991 406.09476Q392.26538 405.18878 392.98352 404.47064Q393.4807 403.97345 394.12152 403.77457Q394.7513 403.56464 395.33688 403.70828Q395.92245 403.8519 396.3423 404.27176Q396.729 404.65845 396.85052 405.19983Q396.961 405.73016 396.74005 406.32678Q397.3919 405.918 398.08795 406.01743Q398.77298 406.1058 399.3696 406.70242Q400.1651 407.49792 400.13193 408.63593Q400.10983 409.76288 399.22595 410.64676Q398.43045 411.44226 397.42505 411.4975Q396.40857 411.5417 395.57996 410.86774Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M383.2019 448.1345L383.92007 448.85263L379.8984 452.8743Q379.63324 452.60913 379.4675 452.26663Q379.21338 451.70316 379.1471 450.97397Q379.09186 450.2337 379.21338 449.0736Q379.39017 447.26166 379.2576 446.44406Q379.13605 445.61542 378.71622 445.19556Q378.27426 444.75363 377.65555 444.77573Q377.0258 444.78677 376.51755 445.295Q375.97617 445.8364 375.97617 446.4772Q375.97617 447.118 376.53964 447.70358L375.69995 448.3886Q374.9155 447.44946 374.9818 446.4993Q375.0481 445.52704 375.92093 444.65417Q376.79376 443.78134 377.78812 443.75925Q378.7825 443.73715 379.50064 444.45532Q379.86526 444.81992 380.06412 445.32816Q380.263 445.8143 380.3072 446.56558Q380.35138 447.2948 380.22986 448.76425Q380.1194 450.00168 380.13043 450.4105Q380.14148 450.79718 380.2188 451.11758L383.2019 448.1345ZM381.95343 444.83096Q380.87067 443.7482 380.4398 442.87537Q379.99783 441.9915 380.07516 441.20703Q380.16357 440.41156 380.82648 439.74863Q381.31262 439.2625 381.8761 439.09677Q382.45062 438.91998 383.06934 439.05258Q383.677 439.1741 384.3399 439.57187Q385.00284 439.9696 385.9088 440.87558Q386.98053 441.9473 387.4114 442.82013Q387.85336 443.68192 387.776 444.48846Q387.69867 445.27292 387.02472 445.94687Q386.1519 446.8197 385.0139 446.69818Q383.66595 446.5435 381.95343 444.83096ZM382.7158 444.0686Q384.20734 445.56018 385.05807 445.7038Q385.9088 445.84744 386.41705 445.3392Q386.9363 444.81992 386.78165 443.98022Q386.638 443.1295 385.14645 441.63794Q383.64386 440.13535 382.80417 440.00275Q381.96448 439.84808 381.43414 440.37842Q380.9259 440.88663 381.04745 441.6269Q381.21317 442.566 382.7158 444.0686ZM393.1014 438.235L393.81958 438.95316L389.79788 442.97482Q389.53275 442.70966 389.367 442.36713Q389.11288 441.80365 389.0466 441.07446Q388.99136 440.3342 389.11288 439.1741Q389.28967 437.36215 389.15707 436.54456Q389.03555 435.7159 388.6157 435.29608Q388.17377 434.85413 387.55505 434.87622Q386.92526 434.88727 386.41705 435.3955Q385.87567 435.9369 385.87567 436.5777Q385.87567 437.2185 386.43915 437.80408L385.59946 438.4891Q384.815 437.55 384.8813 436.5998Q384.94757 435.62753 385.82043 434.7547Q386.69327 433.88187 387.68762 433.85977Q388.682 433.83768 389.40015 434.55582Q389.76474 434.9204 389.96362 435.42865Q390.1625 435.9148 390.2067 436.6661Q390.2509 437.3953 390.12936 438.86475Q390.01886 440.1022 390.0299 440.511Q390.04095 440.89767 390.11832 441.21808L393.1014 438.235ZM391.85294 434.93146Q390.77017 433.84872 390.33926 432.9759Q389.89734 432.09198 389.97467 431.30756Q390.06305 430.51205 390.72598 429.84915Q391.2121 429.363 391.77557 429.19727Q392.3501 429.0205 392.96884 429.15308Q393.5765 429.27463 394.2394 429.67236Q394.9023 430.0701 395.8083 430.9761Q396.88 432.0478 397.3109 432.92062Q397.75284 433.7824 397.6755 434.58896Q397.59818 435.3734 396.9242 436.04736Q396.05136 436.9202 394.91336 436.79868Q393.56546 436.64398 391.85294 434.93146ZM392.61526 434.16913Q394.10684 435.66068 394.95758 435.8043Q395.8083 435.94794 396.31653 435.4397Q396.83582 434.9204 396.68115 434.08072Q396.5375 433.22998 395.04596 431.73843Q393.54337 430.23584 392.70367 430.10327Q391.86398 429.94858 391.33365 430.4789Q390.8254 430.98715 390.94693 431.7274Q391.11267 432.66653 392.61526 434.16913ZM397.88544 431.24127L397.13412 430.48996L399.43222 428.19186L400.18353 428.94315L397.88544 431.24127ZM399.6311 427.1533Q398.54834 426.07053 398.11746 425.1977Q397.6755 424.3138 397.75284 423.5294Q397.84125 422.7339 398.50415 422.07095Q398.9903 421.58484 399.55377 421.4191Q400.1283 421.24234 400.747 421.3749Q401.35468 421.49643 402.01758 421.8942Q402.6805 422.29193 403.5865 423.1979Q404.65817 424.26962 405.08908 425.14246Q405.53104 426.00424 405.45367 426.8108Q405.37634 427.59525 404.7024 428.2692Q403.82956 429.14203 402.69156 429.0205Q401.34363 428.8658 399.6311 427.1533ZM400.39346 426.39096Q401.885 427.8825 402.73575 428.02612Q403.5865 428.16977 404.09473 427.66153Q404.61398 427.14224 404.45932 426.30255Q404.31567 425.4518 402.82413 423.96027Q401.32153 422.45767 400.48184 422.32507Q399.64215 422.1704 399.11182 422.70074Q398.60358 423.20895 398.72513 423.94922Q398.89084 424.88834 400.39346 426.39096ZM402.33798 419.8723L401.61984 419.15414L405.55313 415.22086L406.1387 415.80643Q406.1829 416.9997 406.63586 418.6017Q407.08887 420.18167 407.86227 421.5738Q408.3926 422.56815 409.24335 423.5294L408.46994 424.30276Q407.76282 423.57358 407.01154 422.29193Q406.27127 420.99927 405.82935 419.56296Q405.39844 418.1156 405.3211 416.8892L402.33798 419.8723ZM410.61334 418.51334L409.86206 417.76202L412.16016 415.46393L412.91144 416.21524L410.61334 418.51334ZM418.55725 412.77914L419.27542 413.49728L415.25375 417.51895Q414.9886 417.2538 414.82285 416.9113Q414.56873 416.3478 414.50244 415.61862Q414.4472 414.87836 414.56873 413.71826Q414.7455 411.9063 414.6129 411.0887Q414.4914 410.26007 414.07153 409.84024Q413.6296 409.3983 413.0109 409.42038Q412.38113 409.43143 411.8729 409.93967Q411.3315 410.48105 411.3315 411.12186Q411.3315 411.76266 411.895 412.34824L411.0553 413.03326Q410.27084 412.09415 410.33713 411.14395Q410.40344 410.1717 411.27628 409.29886Q412.1491 408.42603 413.14346 408.40393Q414.13785 408.38184 414.856 409.09998Q415.22058 409.46457 415.41946 409.9728Q415.61835 410.45895 415.66254 411.21024Q415.70673 411.93945 415.5852 413.4089Q415.4747 414.64633 415.48575 415.05515Q415.4968 415.44183 415.57416 415.76224L418.55725 412.77914ZM423.10925 409.66345L422.369 410.40372L417.61813 405.65283Q417.59604 406.18317 417.41925 406.89026Q417.2425 407.5753 417.0215 408.0393L416.30334 407.32117Q416.62375 406.40414 416.67902 405.5313Q416.73425 404.63635 416.53537 404.03973L417.01047 403.56467L423.10925 409.66345Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M406.32288 448.13446L407.04105 448.85263L403.01938 452.8743Q402.7542 452.60913 402.58847 452.26663Q402.33435 451.70316 402.26807 450.97394Q402.21283 450.2337 402.33435 449.0736Q402.51114 447.26163 402.37854 446.44403Q402.25702 445.6154 401.8372 445.19556Q401.39523 444.7536 400.77652 444.7757Q400.14676 444.78677 399.63852 445.29498Q399.09714 445.83636 399.09714 446.47717Q399.09714 447.118 399.6606 447.70358L398.82092 448.38858Q398.03647 447.44946 398.10275 446.4993Q398.16907 445.527 399.0419 444.65417Q399.91473 443.78134 400.9091 443.75925Q401.90347 443.73715 402.6216 444.4553Q402.98624 444.81992 403.1851 445.32812Q403.38397 445.81427 403.42816 446.56558Q403.47235 447.29477 403.35083 448.76422Q403.24033 450.00168 403.25137 450.41046Q403.26242 450.79718 403.33978 451.11758L406.32288 448.13446ZM405.0744 444.83096Q403.99164 443.7482 403.56076 442.87537Q403.1188 441.9915 403.19614 441.20703Q403.28455 440.41153 403.94745 439.74863Q404.4336 439.26248 404.99707 439.09677Q405.5716 438.91998 406.1903 439.05255Q406.79797 439.1741 407.46088 439.57184Q408.1238 439.9696 409.0298 440.87558Q410.10147 441.9473 410.53238 442.82013Q410.9743 443.68192 410.89697 444.48843Q410.81964 445.2729 410.1457 445.94687Q409.27286 446.8197 408.13486 446.69815Q406.78693 446.5435 405.0744 444.83096ZM405.83676 444.0686Q407.3283 445.56015 408.17905 445.7038Q409.0298 445.8474 409.538 445.33917Q410.05728 444.81992 409.90262 443.98022Q409.75897 443.1295 408.26743 441.63794Q406.76483 440.1353 405.92514 440.00275Q405.08545 439.84805 404.5551 440.3784Q404.04688 440.88663 404.16843 441.62686Q404.33414 442.566 405.83676 444.0686ZM416.22238 438.235L416.94052 438.95312L412.91885 442.9748Q412.6537 442.70963 412.48798 442.36713Q412.23386 441.80365 412.16757 441.07446Q412.1123 440.3342 412.23386 439.1741Q412.41064 437.36215 412.27805 436.54456Q412.15652 435.7159 411.73666 435.29605Q411.29474 434.85413 410.676 434.87622Q410.04623 434.88727 409.538 435.3955Q408.99664 435.9369 408.99664 436.5777Q408.99664 437.2185 409.56012 437.80408L408.72043 438.48907Q407.93597 437.54996 408.00226 436.5998Q408.06854 435.6275 408.94138 434.75467Q409.8142 433.88184 410.8086 433.85974Q411.80295 433.83765 412.52112 434.55582Q412.8857 434.9204 413.0846 435.42865Q413.28348 435.91476 413.32767 436.66608Q413.37186 437.3953 413.2503 438.86475Q413.13983 440.10217 413.15088 440.511Q413.16193 440.89767 413.23926 441.21808L416.22238 438.235ZM414.97388 434.93146Q413.89114 433.8487 413.46024 432.97586Q413.0183 432.09198 413.09564 431.30753Q413.18402 430.51205 413.84695 429.84912Q414.33307 429.363 414.89655 429.19727Q415.47107 429.02048 416.08978 429.15308Q416.69748 429.2746 417.36038 429.67236Q418.0233 430.0701 418.92926 430.97607Q420.00098 432.0478 420.4319 432.92062Q420.8738 433.7824 420.79648 434.58896Q420.71915 435.3734 420.04517 436.04736Q419.17233 436.9202 418.03433 436.79868Q416.6864 436.64398 414.97388 434.93146ZM415.73624 434.1691Q417.22778 435.66068 418.07852 435.8043Q418.92926 435.94794 419.4375 435.4397Q419.9568 434.9204 419.8021 434.08072Q419.65848 433.22998 418.16693 431.73843Q416.6643 430.23584 415.82462 430.10324Q414.98495 429.94858 414.45462 430.47888Q413.94638 430.98712 414.0679 431.7274Q414.23364 432.6665 415.73624 434.1691ZM421.0064 431.24124L420.2551 430.48993L422.5532 428.19183L423.3045 428.94315L421.0064 431.24124ZM422.75208 427.1533Q421.6693 426.07053 421.2384 425.1977Q420.79648 424.3138 420.8738 423.52936Q420.9622 422.73386 421.62512 422.07095Q422.11124 421.5848 422.6747 421.4191Q423.24924 421.2423 423.86798 421.3749Q424.47565 421.49643 425.13855 421.89417Q425.80145 422.29193 426.70746 423.1979Q427.77914 424.26962 428.21005 425.14246Q428.65198 426.00424 428.57465 426.8108Q428.4973 427.5952 427.82333 428.2692Q426.9505 429.14203 425.8125 429.02048Q424.4646 428.8658 422.75208 427.1533ZM423.5144 426.39093Q425.00598 427.88248 425.85672 428.02612Q426.70746 428.16974 427.21567 427.66153Q427.73495 427.14224 427.5803 426.30255Q427.43665 425.4518 425.9451 423.96027Q424.4425 422.45764 423.6028 422.32507Q422.76312 422.17038 422.2328 422.7007Q421.72455 423.20895 421.8461 423.94922Q422.0118 424.88834 423.5144 426.39093ZM425.45895 419.87228L424.7408 419.15414L428.67407 415.22086L429.25964 415.80643Q429.30386 416.99966 429.75684 418.6017Q430.20984 420.18164 430.98325 421.57376Q431.51355 422.56815 432.3643 423.52936L431.5909 424.30276Q430.8838 423.57355 430.1325 422.29193Q429.39224 420.99924 428.9503 419.56293Q428.5194 418.11557 428.44208 416.8892L425.45895 419.87228ZM433.7343 418.51334L432.98303 417.76202L435.28113 415.46393L436.0324 416.21524L433.7343 418.51334ZM441.67822 412.7791L442.39636 413.49728L438.3747 417.51895Q438.10953 417.25378 437.94382 416.9113Q437.6897 416.3478 437.6234 415.6186Q437.56818 414.87836 437.6897 413.71826Q437.8665 411.90628 437.7339 411.0887Q437.61237 410.26007 437.1925 409.8402Q436.75058 409.3983 436.13187 409.42038Q435.50208 409.43143 434.99387 409.93967Q434.45248 410.48102 434.45248 411.12186Q434.45248 411.76266 435.01596 412.34824L434.17627 413.03323Q433.3918 412.09412 433.4581 411.14395Q433.52438 410.17166 434.39722 409.29883Q435.27008 408.426 436.26443 408.4039Q437.2588 408.3818 437.97696 409.09998Q438.34155 409.46457 438.54044 409.9728Q438.73932 410.45892 438.7835 411.21024Q438.8277 411.93945 438.70618 413.4089Q438.59567 414.64633 438.60672 415.0551Q438.61777 415.44183 438.69513 415.76224L441.67822 412.7791ZM438.1869 407.14438L437.46872 406.4262L441.402 402.49292L441.98758 403.07852Q442.03177 404.27176 442.48477 405.87378Q442.93774 407.45374 443.71115 408.84586Q444.2415 409.8402 445.09222 410.80145L444.31882 411.57483Q443.61172 410.84564 442.8604 409.564Q442.12018 408.27133 441.67822 406.83502Q441.2473 405.38766 441.16998 404.16125L438.1869 407.14438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M429.44382 448.1345L430.162 448.85263L426.14032 452.8743Q425.87515 452.60913 425.7094 452.26663Q425.4553 451.70316 425.389 450.97394Q425.33377 450.2337 425.4553 449.0736Q425.63208 447.26163 425.4995 446.44406Q425.37796 445.61542 424.95813 445.19556Q424.51617 444.75363 423.89746 444.77573Q423.2677 444.78677 422.75946 445.295Q422.21808 445.83636 422.21808 446.4772Q422.21808 447.118 422.78156 447.70358L421.94186 448.38858Q421.1574 447.44946 421.22372 446.4993Q421.29 445.527 422.16284 444.65417Q423.03568 443.78134 424.03003 443.75925Q425.0244 443.73715 425.74255 444.45532Q426.10718 444.81992 426.30603 445.32816Q426.5049 445.81427 426.5491 446.56558Q426.5933 447.2948 426.47177 448.76425Q426.3613 450.00168 426.37234 450.4105Q426.3834 450.79718 426.46072 451.11758L429.44382 448.1345ZM428.19534 444.83096Q427.11258 443.7482 426.6817 442.87537Q426.23975 441.9915 426.31708 441.20703Q426.4055 440.41156 427.0684 439.74863Q427.55453 439.26248 428.118 439.09677Q428.69254 438.91998 429.31125 439.05258Q429.9189 439.1741 430.58182 439.57187Q431.24475 439.9696 432.15073 440.87558Q433.22244 441.9473 433.65332 442.82013Q434.09528 443.68192 434.0179 444.48846Q433.94058 445.27292 433.26663 445.94687Q432.3938 446.8197 431.2558 446.69818Q429.90787 446.5435 428.19534 444.83096ZM428.9577 444.0686Q430.44925 445.56018 431.3 445.7038Q432.15073 445.84744 432.65897 445.3392Q433.17822 444.81992 433.02356 443.98022Q432.8799 443.1295 431.38837 441.63794Q429.88577 440.13535 429.04608 440.00275Q428.2064 439.84808 427.67606 440.3784Q427.16782 440.88663 427.28937 441.6269Q427.45508 442.566 428.9577 444.0686ZM439.34332 438.235L440.06146 438.95312L436.0398 442.9748Q435.77463 442.70966 435.60892 442.36713Q435.3548 441.80365 435.2885 441.07446Q435.23328 440.3342 435.3548 439.1741Q435.5316 437.36215 435.399 436.54456Q435.27747 435.7159 434.8576 435.29608Q434.41568 434.85413 433.79697 434.87622Q433.16718 434.88727 432.65897 435.3955Q432.11758 435.9369 432.11758 436.5777Q432.11758 437.2185 432.68106 437.80408L431.84137 438.4891Q431.05692 437.54996 431.1232 436.5998Q431.18948 435.62753 432.06232 434.7547Q432.93518 433.88187 433.92953 433.85977Q434.92392 433.83765 435.64206 434.55582Q436.00665 434.9204 436.20554 435.42865Q436.40442 435.9148 436.4486 436.66608Q436.4928 437.3953 436.37128 438.86475Q436.26077 440.10217 436.27182 440.511Q436.28287 440.89767 436.36023 441.21808L439.34332 438.235ZM438.09485 434.93146Q437.0121 433.84872 436.58118 432.97586Q436.13925 432.09198 436.21658 431.30756Q436.30496 430.51205 436.9679 429.84915Q437.454 429.363 438.0175 429.19727Q438.592 429.0205 439.21075 429.15308Q439.81842 429.27463 440.48132 429.67236Q441.14423 430.0701 442.0502 430.97607Q443.12192 432.0478 443.55283 432.92062Q443.99475 433.7824 443.91742 434.58896Q443.8401 435.3734 443.1661 436.04736Q442.29327 436.9202 441.15527 436.79868Q439.80737 436.64398 438.09485 434.93146ZM438.85718 434.16913Q440.34872 435.66068 441.19946 435.8043Q442.0502 435.94794 442.55844 435.4397Q443.07773 434.9204 442.92307 434.08072Q442.77942 433.22998 441.28787 431.73843Q439.78528 430.23584 438.9456 430.10324Q438.1059 429.94858 437.57556 430.4789Q437.06732 430.98715 437.18884 431.7274Q437.35458 432.6665 438.85718 434.16913ZM444.12735 431.24124L443.37604 430.48996L445.67413 428.19186L446.42545 428.94315L444.12735 431.24124ZM445.87302 427.1533Q444.79025 426.07053 444.35938 425.1977Q443.91742 424.3138 443.99475 423.52936Q444.08316 422.7339 444.74606 422.07095Q445.2322 421.58484 445.7957 421.4191Q446.3702 421.2423 446.98892 421.3749Q447.5966 421.49643 448.2595 421.8942Q448.92242 422.29193 449.8284 423.1979Q450.9001 424.26962 451.331 425.14246Q451.77292 426.00424 451.6956 426.8108Q451.61826 427.59525 450.9443 428.2692Q450.07147 429.14203 448.93347 429.0205Q447.58554 428.8658 445.87302 427.1533ZM446.63538 426.39093Q448.12692 427.8825 448.97766 428.02612Q449.8284 428.16977 450.3366 427.66153Q450.8559 427.14224 450.70123 426.30255Q450.5576 425.4518 449.06604 423.96027Q447.56345 422.45767 446.72375 422.32507Q445.88406 422.1704 445.35373 422.70074Q444.8455 423.20895 444.96704 423.94922Q445.13275 424.88834 446.63538 426.39093ZM451.6735 420.7562Q451.03268 421.04346 450.4913 420.9661Q449.94992 420.86667 449.51904 420.4358Q448.8561 419.77286 448.8782 418.8448Q448.91135 417.90567 449.6958 417.12122Q450.4913 416.3257 451.44147 416.30362Q452.39166 416.28152 453.05457 416.94443Q453.4744 417.3643 453.5628 417.89462Q453.65118 418.42496 453.37497 419.05472Q454.11523 418.668 454.81128 418.78955Q455.50735 418.91107 456.07083 419.47455Q456.8442 420.24796 456.8221 421.33072Q456.81107 422.4024 455.9051 423.3084Q455.01016 424.20334 453.9274 424.22543Q452.84464 424.24753 452.04913 423.45203Q451.4525 422.8554 451.3531 422.15936Q451.2647 421.45224 451.6735 420.7562ZM450.24823 419.6403Q450.67914 420.07117 451.23157 420.07117Q451.79504 420.06012 452.23697 419.6182Q452.66788 419.1873 452.67892 418.6459Q452.67892 418.09348 452.28116 417.69574Q451.87238 417.28696 451.3089 417.298Q450.73438 417.298 450.3145 417.71783Q449.88364 418.14874 449.8726 418.71222Q449.8726 419.26462 450.24823 419.6403ZM452.82254 422.67862Q453.14294 422.99905 453.5849 423.15372Q454.03787 423.29736 454.50192 423.16476Q454.96597 423.0322 455.30847 422.68967Q455.8388 422.15936 455.8388 421.47433Q455.84985 420.7783 455.31952 420.24796Q454.77814 419.70657 454.07104 419.70657Q453.36392 419.70657 452.82254 420.24796Q452.2922 420.7783 452.30325 421.47433Q452.30325 422.15936 452.82254 422.67862ZM456.85526 418.51334L456.10397 417.76202L458.40207 415.46393L459.15335 416.21524L456.85526 418.51334ZM458.60092 414.42538Q457.5182 413.34262 457.08728 412.4698Q456.64536 411.5859 456.7227 410.80145Q456.81107 410.00595 457.47397 409.34305Q457.9601 408.8569 458.5236 408.69116Q459.0981 408.5144 459.71683 408.64697Q460.3245 408.76852 460.98743 409.16626Q461.65033 409.56403 462.5563 410.47Q463.62802 411.5417 464.0589 412.41455Q464.50085 413.27634 464.42352 414.08286Q464.34616 414.8673 463.6722 415.54126Q462.79938 416.41412 461.66138 416.29257Q460.31345 416.1379 458.60092 414.42538ZM459.36328 413.66302Q460.85483 415.15457 461.70557 415.29822Q462.5563 415.44183 463.06454 414.9336Q463.58383 414.41434 463.42914 413.57465Q463.28552 412.7239 461.79398 411.23233Q460.29135 409.72974 459.45166 409.59717Q458.61197 409.44247 458.08167 409.9728Q457.57343 410.48105 457.69495 411.22128Q457.8607 412.16043 459.36328 413.66302ZM468.93134 410.08328L467.4729 408.62488L464.84335 411.25443L464.15836 410.56943L462.99826 403.86298L463.60593 403.25528L467.5392 407.18857L468.3568 406.37097L469.0418 407.056L468.2242 407.8736L469.68262 409.332L468.93134 410.08328ZM466.7879 407.93988L464.0589 405.21088L464.88754 409.84024L466.7879 407.93988Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M452.56476 448.1345L453.28293 448.85263L449.26126 452.8743Q448.9961 452.60913 448.83035 452.26663Q448.57623 451.70316 448.50995 450.97397Q448.4547 450.2337 448.57623 449.0736Q448.75302 447.26166 448.62045 446.44406Q448.4989 445.61542 448.07907 445.1956Q447.63712 444.75363 447.0184 444.77573Q446.38864 444.78677 445.8804 445.295Q445.33902 445.8364 445.33902 446.4772Q445.33902 447.118 445.9025 447.70358L445.0628 448.3886Q444.27835 447.44946 444.34467 446.4993Q444.41095 445.52704 445.28378 444.6542Q446.15662 443.78137 447.151 443.75928Q448.14536 443.73715 448.8635 444.45532Q449.22812 444.81992 449.42697 445.32816Q449.62585 445.8143 449.67004 446.56558Q449.71423 447.2948 449.5927 448.76425Q449.48224 450.00168 449.4933 450.4105Q449.50433 450.79718 449.58167 451.11758L452.56476 448.1345ZM451.31628 444.83096Q450.23352 443.7482 449.80264 442.87537Q449.3607 441.9915 449.43805 441.20706Q449.52643 440.41156 450.18933 439.74863Q450.67548 439.2625 451.23895 439.09677Q451.81348 438.92 452.4322 439.05258Q453.03986 439.1741 453.70276 439.57187Q454.3657 439.9696 455.27167 440.87558Q456.34338 441.9473 456.77426 442.82013Q457.21622 443.68192 457.13885 444.48846Q457.06152 445.27292 456.38757 445.94687Q455.51474 446.8197 454.37674 446.69818Q453.0288 446.5435 451.31628 444.83096ZM452.07864 444.06863Q453.5702 445.56018 454.42093 445.7038Q455.27167 445.84744 455.7799 445.3392Q456.2992 444.81992 456.1445 443.98022Q456.00085 443.1295 454.5093 441.63794Q453.0067 440.13535 452.16702 440.00275Q451.32733 439.84808 450.797 440.37842Q450.28876 440.88663 450.4103 441.6269Q450.57602 442.566 452.07864 444.06863ZM462.46426 438.235L463.18243 438.95316L459.16077 442.97482Q458.8956 442.70966 458.72986 442.36716Q458.47574 441.80368 458.40945 441.07446Q458.35422 440.33423 458.47574 439.1741Q458.65253 437.36215 458.51993 436.54456Q458.3984 435.7159 457.97855 435.29608Q457.53662 434.85413 456.9179 434.87622Q456.28812 434.88727 455.7799 435.3955Q455.23853 435.9369 455.23853 436.5777Q455.23853 437.21854 455.802 437.8041L454.9623 438.4891Q454.17786 437.55 454.24414 436.5998Q454.31046 435.62753 455.1833 434.7547Q456.05612 433.88187 457.05048 433.85977Q458.04486 433.83768 458.763 434.55582Q459.1276 434.92044 459.32648 435.42865Q459.52536 435.9148 459.56955 436.6661Q459.61374 437.3953 459.49222 438.86475Q459.3817 440.1022 459.39276 440.511Q459.4038 440.8977 459.48117 441.2181L462.46426 438.235ZM461.2158 434.9315Q460.13303 433.84872 459.70212 432.9759Q459.2602 432.092 459.33752 431.30756Q459.4259 430.51205 460.08884 429.84915Q460.57495 429.363 461.13843 429.1973Q461.71295 429.0205 462.3317 429.15308Q462.93936 429.27463 463.60226 429.67236Q464.26517 430.07013 465.17117 430.9761Q466.24286 432.04782 466.67377 432.92065Q467.1157 433.78244 467.03836 434.58896Q466.96103 435.3734 466.28705 436.0474Q465.4142 436.92023 464.2762 436.79868Q462.9283 436.644 461.2158 434.9315ZM461.97812 434.16913Q463.4697 435.66068 464.32043 435.80432Q465.17117 435.94794 465.67938 435.4397Q466.19867 434.92044 466.044 434.08075Q465.90036 433.23 464.4088 431.73843Q462.90622 430.23584 462.06653 430.10327Q461.22684 429.94858 460.6965 430.4789Q460.18826 430.98715 460.3098 431.7274Q460.47552 432.66653 461.97812 434.16913ZM467.2483 431.24127L466.49698 430.48996L468.79507 428.19186L469.5464 428.94318L467.2483 431.24127ZM468.99396 427.1533Q467.9112 426.07056 467.48032 425.19772Q467.03836 424.3138 467.1157 423.5294Q467.2041 422.7339 467.867 422.07098Q468.35315 421.58484 468.91663 421.4191Q469.49115 421.24234 470.10986 421.3749Q470.71753 421.49646 471.38043 421.8942Q472.04337 422.29193 472.94934 423.19794Q474.02106 424.26962 474.45193 425.14246Q474.8939 426.00424 474.81653 426.8108Q474.7392 427.59525 474.06525 428.2692Q473.1924 429.14203 472.0544 429.0205Q470.70648 428.8658 468.99396 427.1533ZM469.75632 426.39096Q471.24786 427.8825 472.0986 428.02612Q472.94934 428.16977 473.45758 427.66153Q473.97684 427.14224 473.82217 426.30255Q473.67853 425.4518 472.18698 423.96027Q470.6844 422.45767 469.8447 422.32507Q469.005 422.1704 468.47467 422.70074Q467.96643 423.20898 468.08798 423.94922Q468.2537 424.88834 469.75632 426.39096ZM474.79443 420.7562Q474.15363 421.04346 473.61224 420.96613Q473.07086 420.86667 472.63998 420.4358Q471.97705 419.7729 471.99915 418.8448Q472.03232 417.90567 472.81674 417.12122Q473.61224 416.3257 474.5624 416.30362Q475.5126 416.28152 476.1755 416.94446Q476.59537 417.3643 476.68375 417.89462Q476.77213 418.42496 476.4959 419.05472Q477.23618 418.66803 477.93222 418.78955Q478.6283 418.9111 479.19177 419.47458Q479.96515 420.24796 479.94305 421.33072Q479.932 422.40244 479.02603 423.3084Q478.1311 424.20334 477.04834 424.22543Q475.96558 424.24753 475.1701 423.45203Q474.57346 422.8554 474.47403 422.15936Q474.38565 421.45224 474.79443 420.7562ZM473.36917 419.6403Q473.80008 420.0712 474.3525 420.0712Q474.916 420.06015 475.3579 419.6182Q475.78882 419.18732 475.79987 418.64594Q475.79987 418.0935 475.4021 417.69574Q474.99332 417.28696 474.42984 417.298Q473.85532 417.298 473.4355 417.71783Q473.00458 418.14874 472.99353 418.71222Q472.99353 419.26465 473.36917 419.6403ZM475.94348 422.67865Q476.2639 422.99905 476.70584 423.15372Q477.15884 423.29736 477.62286 423.16476Q478.0869 423.0322 478.4294 422.6897Q478.95975 422.15936 478.95975 421.47437Q478.9708 420.7783 478.44046 420.24796Q477.89908 419.70657 477.192 419.70657Q476.48486 419.70657 475.94348 420.24796Q475.41315 420.7783 475.4242 421.47437Q475.4242 422.15936 475.94348 422.67865ZM479.9762 418.51334L479.2249 417.76205L481.523 415.46393L482.2743 416.21524L479.9762 418.51334ZM487.52237 414.61322L486.7821 415.35345L482.03125 410.60257Q482.00916 411.1329 481.83237 411.84003Q481.65558 412.52502 481.43463 412.98907L480.71646 412.2709Q481.03687 411.35388 481.0921 410.48105Q481.14734 409.58612 480.9485 408.9895L481.42355 408.5144L487.52237 414.61322ZM486.6716 409.47565Q485.58884 408.39288 485.15796 407.52005Q484.716 406.63617 484.79337 405.85175Q484.88174 405.05624 485.54465 404.3933Q486.0308 403.9072 486.59427 403.74146Q487.1688 403.5647 487.7875 403.69727Q488.39517 403.8188 489.05807 404.21655Q489.721 404.6143 490.62698 405.52026Q491.6987 406.59198 492.12958 407.4648Q492.57153 408.3266 492.4942 409.13315Q492.41684 409.9176 491.7429 410.59155Q490.87006 411.4644 489.73206 411.34286Q488.38412 411.18817 486.6716 409.47565ZM487.43396 408.71332Q488.9255 410.20486 489.77625 410.34848Q490.62698 410.49213 491.13522 409.9839Q491.6545 409.4646 491.49982 408.6249Q491.3562 407.77417 489.86462 406.28262Q488.36203 404.78003 487.52234 404.64743Q486.68265 404.49277 486.1523 405.0231Q485.6441 405.5313 485.76562 406.27158Q485.93137 407.2107 487.43396 408.71332Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M475.68573 448.13446L476.4039 448.85263L472.38223 452.8743Q472.11707 452.60913 471.95132 452.26663Q471.6972 451.70316 471.63092 450.97394Q471.57568 450.2337 471.6972 449.0736Q471.874 447.26163 471.7414 446.44406Q471.61987 445.61542 471.20004 445.19556Q470.7581 444.75363 470.13937 444.77573Q469.5096 444.78677 469.00137 445.29498Q468.46 445.83636 468.46 446.4772Q468.46 447.118 469.02347 447.70358L468.18378 448.38858Q467.39932 447.44946 467.46564 446.4993Q467.53192 445.527 468.40475 444.65417Q469.2776 443.78134 470.27194 443.75925Q471.26633 443.73715 471.98447 444.45532Q472.3491 444.81992 472.54794 445.32816Q472.74683 445.81427 472.79102 446.56558Q472.8352 447.29477 472.71368 448.76425Q472.60318 450.00168 472.61426 450.41046Q472.6253 450.79718 472.70264 451.11758L475.68573 448.13446ZM474.43726 444.83096Q473.3545 443.7482 472.9236 442.87537Q472.48166 441.9915 472.559 441.20703Q472.6474 440.41153 473.3103 439.74863Q473.79645 439.26248 474.35992 439.09677Q474.93445 438.91998 475.55316 439.05258Q476.16083 439.1741 476.82373 439.57184Q477.48666 439.9696 478.39264 440.87558Q479.46436 441.9473 479.89523 442.82013Q480.3372 443.68192 480.25983 444.48846Q480.1825 445.2729 479.50854 445.94687Q478.6357 446.8197 477.4977 446.69815Q476.14978 446.5435 474.43726 444.83096ZM475.19962 444.0686Q476.69116 445.56015 477.5419 445.7038Q478.39264 445.8474 478.90088 445.3392Q479.42014 444.81992 479.26547 443.98022Q479.12183 443.1295 477.63028 441.63794Q476.1277 440.1353 475.288 440.00275Q474.4483 439.84805 473.91797 440.3784Q473.40973 440.88663 473.53128 441.6269Q473.697 442.566 475.19962 444.0686ZM485.58524 438.235L486.30338 438.95312L482.2817 442.9748Q482.01654 442.70963 481.85083 442.36713Q481.5967 441.80365 481.53043 441.07446Q481.4752 440.3342 481.5967 439.1741Q481.7735 437.36215 481.6409 436.54456Q481.51938 435.7159 481.09952 435.29605Q480.6576 434.85413 480.03888 434.87622Q479.4091 434.88727 478.90088 435.3955Q478.3595 435.9369 478.3595 436.5777Q478.3595 437.2185 478.92297 437.80408L478.08328 438.4891Q477.29883 437.54996 477.3651 436.5998Q477.4314 435.62753 478.30423 434.7547Q479.1771 433.88187 480.17145 433.85974Q481.1658 433.83765 481.88397 434.55582Q482.24857 434.9204 482.44745 435.42865Q482.64633 435.9148 482.69052 436.66608Q482.7347 437.3953 482.6132 438.86475Q482.5027 440.10217 482.51373 440.511Q482.52478 440.89767 482.6021 441.21808L485.58524 438.235ZM484.33676 434.93146Q483.254 433.8487 482.8231 432.97586Q482.38116 432.09198 482.4585 431.30756Q482.54688 430.51205 483.2098 429.84912Q483.69592 429.363 484.2594 429.19727Q484.83392 429.0205 485.45264 429.15308Q486.06033 429.2746 486.72324 429.67236Q487.38614 430.0701 488.2921 430.97607Q489.36383 432.0478 489.79474 432.92062Q490.23666 433.7824 490.15933 434.58896Q490.082 435.3734 489.40802 436.04736Q488.5352 436.9202 487.3972 436.79868Q486.0493 436.64398 484.33676 434.93146ZM485.0991 434.16913Q486.59064 435.66068 487.44138 435.8043Q488.2921 435.94794 488.80035 435.4397Q489.31964 434.9204 489.16495 434.08072Q489.02133 433.22998 487.5298 431.73843Q486.02716 430.23584 485.1875 430.10324Q484.3478 429.94858 483.81747 430.4789Q483.30923 430.98712 483.43076 431.7274Q483.5965 432.6665 485.0991 434.16913ZM490.36926 431.24124L489.61795 430.48996L491.91605 428.19186L492.66736 428.94315L490.36926 431.24124ZM492.1149 427.15332Q491.03214 426.07056 490.60126 425.19772Q490.1593 424.31384 490.23666 423.5294Q490.32504 422.7339 490.98795 422.07098Q491.4741 421.58484 492.03757 421.41913Q492.6121 421.24234 493.2308 421.3749Q493.83847 421.49646 494.50137 421.8942Q495.1643 422.29196 496.07028 423.19794Q497.142 424.26965 497.57288 425.1425Q498.01483 426.00427 497.93747 426.8108Q497.86014 427.59525 497.1862 428.26923Q496.31335 429.14206 495.17535 429.0205Q493.82742 428.86584 492.1149 427.15332ZM492.87726 426.39096Q494.3688 427.8825 495.21954 428.02615Q496.07028 428.16977 496.57852 427.66153Q497.0978 427.14227 496.9431 426.30258Q496.79947 425.45184 495.30792 423.9603Q493.80533 422.45767 492.96564 422.3251Q492.12595 422.1704 491.5956 422.70074Q491.08737 423.20898 491.20892 423.94922Q491.37463 424.88837 492.87726 426.39096ZM497.91537 420.7562Q497.27457 421.04346 496.7332 420.96613Q496.1918 420.8667 495.76093 420.4358Q495.09802 419.7729 495.12012 418.84482Q495.15326 417.90567 495.93768 417.12125Q496.7332 416.32574 497.68338 416.30365Q498.63354 416.28156 499.29645 416.94446Q499.7163 417.3643 499.8047 417.89462Q499.89307 418.42496 499.61685 419.05472Q500.35712 418.66803 501.05316 418.78955Q501.74924 418.9111 502.3127 419.47458Q503.0861 420.248 503.064 421.33072Q503.05295 422.40244 502.14697 423.3084Q501.25204 424.20334 500.16928 424.22543Q499.08652 424.24756 498.29105 423.45206Q497.69443 422.85544 497.59497 422.15936Q497.5066 421.45227 497.91537 420.7562ZM496.4901 419.6403Q496.92102 420.0712 497.47345 420.0712Q498.03693 420.06015 498.47885 419.6182Q498.90976 419.18732 498.9208 418.64594Q498.9208 418.0935 498.52307 417.69577Q498.11426 417.28696 497.55078 417.298Q496.97626 417.298 496.55643 417.71786Q496.12552 418.14874 496.11447 418.71222Q496.11447 419.26465 496.4901 419.6403ZM499.06442 422.67865Q499.38486 422.99905 499.82678 423.15375Q500.2798 423.29736 500.7438 423.1648Q501.20786 423.0322 501.55035 422.6897Q502.0807 422.15936 502.0807 421.47437Q502.09174 420.7783 501.5614 420.248Q501.02002 419.7066 500.31293 419.7066Q499.6058 419.7066 499.06442 420.248Q498.53412 420.7783 498.54517 421.47437Q498.54517 422.15936 499.06442 422.67865ZM503.09717 418.51334L502.34586 417.76205L504.64395 415.46396L505.39526 416.21524L503.09717 418.51334ZM510.6433 414.61322L509.90305 415.35345L505.1522 410.6026Q505.1301 411.13293 504.9533 411.84003Q504.77652 412.52502 504.55557 412.98907L503.8374 412.27094Q504.1578 411.35388 504.21304 410.48105Q504.2683 409.58612 504.06943 408.9895L504.54453 408.5144L510.6433 414.61322ZM510.6433 408.0283Q510.0025 408.31555 509.46112 408.2382Q508.91974 408.13876 508.48883 407.7079Q507.82593 407.04495 507.84802 406.11688Q507.88116 405.17776 508.66562 404.3933Q509.46112 403.5978 510.4113 403.5757Q511.36145 403.55362 512.02435 404.21652Q512.4442 404.63638 512.5326 405.16672Q512.621 405.69705 512.3448 406.3268Q513.085 405.9401 513.78107 406.06165Q514.4772 406.18317 515.04065 406.74664Q515.814 407.52005 515.79193 408.6028Q515.7809 409.67453 514.8749 410.5805Q513.98 411.47543 512.8972 411.49753Q511.81445 411.51962 511.01895 410.72412Q510.42233 410.1275 510.3229 409.43146Q510.23453 408.72433 510.6433 408.0283ZM509.21805 406.91238Q509.64893 407.34326 510.20135 407.34326Q510.76483 407.3322 511.2068 406.8903Q511.63766 406.45938 511.6487 405.918Q511.6487 405.36557 511.25098 404.96783Q510.8422 404.55905 510.27872 404.5701Q509.7042 404.5701 509.28433 404.98993Q508.85345 405.42084 508.8424 405.9843Q508.8424 406.53674 509.21805 406.91238ZM511.79236 409.9507Q512.1128 410.27115 512.5547 410.4258Q513.0077 410.56946 513.47174 410.43686Q513.9358 410.3043 514.27826 409.9618Q514.8086 409.43146 514.8086 408.74643Q514.81964 408.05038 514.2893 407.52005Q513.7479 406.97867 513.04083 406.97867Q512.33374 406.97867 511.79236 407.52005Q511.26202 408.05038 511.27307 408.74643Q511.27307 409.43146 511.79236 409.9507Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M498.80667 448.1345L499.52484 448.85263L495.50317 452.8743Q495.238 452.60913 495.07227 452.26663Q494.81815 451.70316 494.75186 450.97397Q494.69662 450.2337 494.81815 449.0736Q494.99493 447.26166 494.86237 446.44406Q494.7408 445.61542 494.32098 445.19556Q493.87903 444.75363 493.2603 444.77573Q492.63055 444.78677 492.1223 445.295Q491.58093 445.8364 491.58093 446.4772Q491.58093 447.118 492.1444 447.70358L491.30472 448.3886Q490.52026 447.44946 490.58658 446.4993Q490.65286 445.52704 491.5257 444.6542Q492.39853 443.78134 493.39288 443.75925Q494.38727 443.73715 495.1054 444.45532Q495.47003 444.81992 495.66888 445.32816Q495.86777 445.8143 495.91196 446.56558Q495.95615 447.2948 495.83463 448.76425Q495.72415 450.00168 495.7352 450.4105Q495.74625 450.79718 495.82358 451.11758L498.80667 448.1345ZM497.5582 444.83096Q496.47543 443.7482 496.04456 442.87537Q495.6026 441.9915 495.67993 441.20703Q495.76834 440.41156 496.43124 439.74863Q496.9174 439.2625 497.48087 439.09677Q498.0554 438.91998 498.6741 439.05258Q499.28177 439.1741 499.94467 439.57187Q500.6076 439.9696 501.51358 440.87558Q502.5853 441.9473 503.01617 442.82013Q503.45813 443.68192 503.38077 444.48846Q503.30344 445.27292 502.6295 445.94687Q501.75665 446.8197 500.61865 446.69818Q499.27072 446.5435 497.5582 444.83096ZM498.32056 444.0686Q499.8121 445.56018 500.66284 445.7038Q501.51358 445.84744 502.02182 445.3392Q502.54108 444.81992 502.3864 443.98022Q502.24277 443.1295 500.75122 441.63794Q499.24863 440.13535 498.40894 440.00275Q497.56924 439.84808 497.0389 440.37842Q496.53067 440.88663 496.65222 441.6269Q496.81793 442.566 498.32056 444.0686ZM508.70618 438.235L509.42435 438.95316L505.40265 442.97482Q505.1375 442.70966 504.97177 442.36716Q504.71765 441.80368 504.65137 441.07446Q504.59613 440.3342 504.71765 439.1741Q504.89444 437.36215 504.76184 436.54456Q504.64032 435.7159 504.22046 435.29608Q503.77853 434.85413 503.15982 434.87622Q502.53003 434.88727 502.02182 435.3955Q501.48044 435.9369 501.48044 436.5777Q501.48044 437.21854 502.0439 437.8041L501.20422 438.4891Q500.41977 437.55 500.48605 436.5998Q500.55237 435.62753 501.4252 434.7547Q502.29803 433.88187 503.2924 433.85977Q504.28677 433.83768 505.0049 434.55582Q505.3695 434.9204 505.5684 435.42865Q505.76727 435.9148 505.81146 436.6661Q505.85565 437.3953 505.73413 438.86475Q505.62363 440.1022 505.63467 440.511Q505.64572 440.89767 505.72308 441.2181L508.70618 438.235ZM507.4577 434.9315Q506.37494 433.84872 505.94403 432.9759Q505.5021 432.092 505.57944 431.30756Q505.66782 430.51205 506.33075 429.84915Q506.81686 429.363 507.38034 429.19727Q507.95486 429.0205 508.5736 429.15308Q509.18127 429.27463 509.84418 429.67236Q510.50708 430.0701 511.4131 430.9761Q512.4848 432.0478 512.91565 432.92062Q513.3576 433.7824 513.2803 434.58896Q513.20294 435.3734 512.529 436.04736Q511.65613 436.9202 510.51813 436.79868Q509.17023 436.644 507.4577 434.9315ZM508.22003 434.16913Q509.7116 435.66068 510.56235 435.80432Q511.4131 435.94794 511.9213 435.4397Q512.4406 434.9204 512.2859 434.08075Q512.1423 433.23 510.65073 431.73843Q509.14813 430.23584 508.30844 430.10327Q507.46875 429.94858 506.93842 430.4789Q506.43018 430.98715 506.55173 431.7274Q506.71744 432.66653 508.22003 434.16913ZM513.4902 431.24127L512.7389 430.48996L515.037 428.19186L515.78827 428.94318L513.4902 431.24127ZM515.23584 427.1533Q514.15314 426.07053 513.7222 425.1977Q513.2803 424.3138 513.3576 423.5294Q513.446 422.7339 514.1089 422.07095Q514.59503 421.58484 515.1585 421.4191Q515.73303 421.24234 516.35175 421.3749Q516.9594 421.49643 517.6224 421.8942Q518.2853 422.29193 519.1912 423.1979Q520.26294 424.26962 520.69385 425.14246Q521.1358 426.00424 521.0585 426.8108Q520.98114 427.59525 520.3071 428.2692Q519.4343 429.14203 518.2963 429.0205Q516.94836 428.8658 515.23584 427.1533ZM515.9982 426.39096Q517.48975 427.8825 518.3405 428.02612Q519.1912 428.16977 519.69946 427.66153Q520.21875 427.14224 520.0641 426.30255Q519.9205 425.4518 518.4289 423.96027Q516.9263 422.45767 516.0866 422.32507Q515.2469 422.1704 514.7166 422.70074Q514.2084 423.20895 514.3299 423.94922Q514.4956 424.88834 515.9982 426.39096ZM521.0364 420.7562Q520.3955 421.04346 519.8542 420.96613Q519.3128 420.86667 518.8819 420.4358Q518.219 419.77286 518.2411 418.8448Q518.27423 417.90567 519.05865 417.12122Q519.8542 416.3257 520.8043 416.30362Q521.7545 416.28152 522.4174 416.94446Q522.8373 417.3643 522.92566 417.89462Q523.01404 418.42496 522.73785 419.05472Q523.4781 418.66803 524.17413 418.78955Q524.8702 418.91107 525.43365 419.47455Q526.2071 420.24796 526.185 421.33072Q526.17395 422.40244 525.26794 423.3084Q524.373 424.20334 523.2903 424.22543Q522.2075 424.24753 521.412 423.45203Q520.81537 422.8554 520.71594 422.15936Q520.62756 421.45224 521.0364 420.7562ZM519.6111 419.6403Q520.042 420.07117 520.5944 420.07117Q521.1579 420.06012 521.59985 419.6182Q522.0307 419.1873 522.04175 418.64594Q522.04175 418.0935 521.64404 417.69574Q521.2352 417.28696 520.67175 417.298Q520.0972 417.298 519.67737 417.71783Q519.24646 418.14874 519.2354 418.71222Q519.2354 419.26465 519.6111 419.6403ZM522.1854 422.67865Q522.5058 422.99905 522.94775 423.15372Q523.40076 423.29736 523.8648 423.16476Q524.3288 423.0322 524.6713 422.6897Q525.20166 422.15936 525.20166 421.47433Q525.2127 420.7783 524.6824 420.24796Q524.141 419.70657 523.4339 419.70657Q522.7268 419.70657 522.1854 420.24796Q521.6551 420.7783 521.66614 421.47433Q521.66614 422.15936 522.1854 422.67865ZM526.21814 418.51334L525.4668 417.76202L527.7649 415.46393L528.51624 416.21524L526.21814 418.51334ZM534.16205 412.77914L534.8802 413.49728L530.8585 417.51898Q530.5933 417.2538 530.4276 416.9113Q530.1735 416.3478 530.1072 415.61862Q530.05194 414.87836 530.1735 413.71826Q530.3503 411.9063 530.2177 411.0887Q530.0961 410.26007 529.67633 409.84024Q529.2344 409.3983 528.61566 409.42038Q527.9859 409.43143 527.47766 409.93967Q526.9363 410.48105 526.9363 411.12186Q526.9363 411.76266 527.49976 412.34824L526.66003 413.03326Q525.8756 412.09415 525.9419 411.14395Q526.0082 410.1717 526.88104 409.29886Q527.75385 408.42603 528.7482 408.40393Q529.7426 408.38184 530.46075 409.09998Q530.8254 409.46457 531.02423 409.9728Q531.2231 410.45895 531.26733 411.21024Q531.3115 411.93945 531.18994 413.4089Q531.07947 414.64636 531.0905 415.05515Q531.10156 415.44183 531.1789 415.76224L534.16205 412.77914ZM538.2942 410.0833L536.83575 408.62488L534.20624 411.25446L533.5212 410.56943L532.3611 403.86298L532.96875 403.2553L536.90204 407.18857L537.71967 406.371L538.40466 407.056L537.5871 407.8736L539.0455 409.332L538.2942 410.0833ZM536.15076 407.93988L533.42175 405.21088L534.2504 409.84024L536.15076 407.93988Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M521.9277 448.13446L522.6458 448.85263L518.62415 452.8743Q518.35895 452.60913 518.19324 452.26663Q517.93915 451.70316 517.87286 450.97394Q517.81757 450.2337 517.93915 449.0736Q518.1159 447.26163 517.98334 446.44403Q517.8618 445.6154 517.44196 445.19556Q517.0 444.7536 516.3813 444.77573Q515.7515 444.78677 515.2433 445.29498Q514.7019 445.83636 514.7019 446.4772Q514.7019 447.118 515.2654 447.70358L514.42566 448.38858Q513.64124 447.44946 513.7075 446.4993Q513.7738 445.527 514.64667 444.65417Q515.5195 443.78134 516.51385 443.75925Q517.50824 443.73715 518.2264 444.4553Q518.591 444.81992 518.78986 445.32812Q518.9887 445.81427 519.03296 446.56558Q519.07715 447.29477 518.95557 448.76425Q518.8451 450.00168 518.85614 450.41046Q518.8672 450.79718 518.9445 451.11758L521.9277 448.13446ZM520.67914 444.83096Q519.59644 443.7482 519.1655 442.87537Q518.7236 441.9915 518.8009 441.20703Q518.8893 440.41153 519.5522 439.74863Q520.0383 439.26248 520.6018 439.09677Q521.17633 438.91998 521.79504 439.05258Q522.4027 439.1741 523.0657 439.57184Q523.7286 439.9696 524.6345 440.87558Q525.70624 441.9473 526.13715 442.82013Q526.5791 443.68192 526.5018 444.48846Q526.4244 445.2729 525.7504 445.94687Q524.8776 446.8197 523.7396 446.69815Q522.39166 446.5435 520.67914 444.83096ZM521.4415 444.0686Q522.93304 445.56015 523.7838 445.7038Q524.6345 445.8474 525.14276 445.3392Q525.66205 444.81992 525.5074 443.98022Q525.3638 443.1295 523.8722 441.63794Q522.36957 440.1353 521.5299 440.00275Q520.6902 439.84805 520.1599 440.3784Q519.6517 440.88663 519.7732 441.6269Q519.9389 442.566 521.4415 444.0686ZM531.82715 438.235L532.5453 438.95312L528.5236 442.9748Q528.2585 442.70963 528.0927 442.36713Q527.8386 441.80365 527.77234 441.07446Q527.7171 440.3342 527.8386 439.1741Q528.0154 437.36215 527.8828 436.54456Q527.7613 435.7159 527.34143 435.29605Q526.8995 434.85413 526.28076 434.87622Q525.651 434.88727 525.14276 435.3955Q524.6014 435.9369 524.6014 436.5777Q524.6014 437.2185 525.16486 437.80408L524.3252 438.4891Q523.5407 437.54996 523.60706 436.5998Q523.67334 435.62753 524.54614 434.75467Q525.419 433.88184 526.4133 433.85974Q527.4077 433.83765 528.12585 434.55582Q528.4905 434.9204 528.68933 435.42865Q528.88824 435.9148 528.93243 436.66608Q528.9766 437.3953 528.8551 438.86475Q528.7446 440.10217 528.7557 440.511Q528.7667 440.89767 528.84406 441.21808L531.82715 438.235ZM530.5787 434.93146Q529.4959 433.8487 529.065 432.97586Q528.62305 432.09198 528.7004 431.30753Q528.7888 430.51205 529.4517 429.84912Q529.93787 429.363 530.50134 429.19727Q531.07587 429.02048 531.6946 429.15308Q532.30225 429.2746 532.96515 429.67236Q533.62805 430.0701 534.53406 430.97607Q535.6058 432.0478 536.0366 432.92062Q536.4786 433.7824 536.40125 434.58896Q536.3239 435.3734 535.64996 436.04736Q534.7771 436.9202 533.6391 436.79868Q532.2912 436.64398 530.5787 434.93146ZM531.341 434.1691Q532.8326 435.66068 533.6833 435.8043Q534.53406 435.94794 535.0423 435.4397Q535.5615 434.9204 535.40686 434.08072Q535.26324 433.22998 533.77167 431.73843Q532.2691 430.23584 531.4294 430.10324Q530.5897 429.94858 530.0594 430.4789Q529.55115 430.98712 529.67267 431.7274Q529.8384 432.6665 531.341 434.1691ZM536.61115 431.24124L535.85986 430.48996L538.15796 428.19186L538.90924 428.94315L536.61115 431.24124ZM538.3568 427.1533Q537.27405 426.07053 536.8432 425.1977Q536.40125 424.3138 536.4786 423.52936Q536.56696 422.73386 537.22986 422.07095Q537.716 421.5848 538.2795 421.4191Q538.854 421.2423 539.4727 421.3749Q540.0804 421.49643 540.74335 421.89417Q541.40625 422.29193 542.3122 423.1979Q543.3839 424.26962 543.8148 425.14246Q544.2568 426.00424 544.17944 426.8108Q544.10205 427.5952 543.4281 428.2692Q542.5553 429.14203 541.4173 429.02048Q540.06934 428.8658 538.3568 427.1533ZM539.1192 426.39093Q540.6107 427.88248 541.4615 428.02612Q542.3122 428.16974 542.82043 427.66153Q543.3397 427.14224 543.18506 426.30255Q543.04144 425.4518 541.54987 423.96027Q540.04724 422.45764 539.2076 422.32507Q538.36786 422.17038 537.8375 422.7007Q537.32935 423.20895 537.45087 423.94922Q537.6166 424.88834 539.1192 426.39093ZM545.00806 423.68405L545.6599 422.8996Q546.25653 423.31943 546.7427 423.29733Q547.2288 423.25314 547.6266 422.8554Q547.96906 422.5129 548.0685 422.1041Q548.16797 421.67322 548.0795 421.25336Q547.9801 420.82248 547.6487 420.27005Q547.30615 419.70657 546.8421 419.24252Q546.78687 419.1873 546.68744 419.08786Q546.82 419.66238 546.66534 420.2811Q546.49963 420.88876 546.04663 421.34177Q545.28424 422.1041 544.22363 422.082Q543.1519 422.04886 542.25696 421.15393Q541.3289 420.22586 541.3068 419.121Q541.2958 418.0051 542.11334 417.1875Q542.6989 416.60193 543.50543 416.4362Q544.32306 416.25943 545.17377 416.60193Q546.0135 416.93338 547.1294 418.0493Q548.2895 419.20938 548.73145 420.15955Q549.17334 421.08765 549.0297 421.96048Q548.8861 422.81122 548.2232 423.47412Q547.505 424.1923 546.66534 424.25858Q545.8146 424.3138 545.00806 423.68405ZM545.3727 417.94986Q544.7319 417.30902 544.0137 417.27588Q543.3066 417.2317 542.82043 417.71783Q542.32324 418.21503 542.3564 418.99945Q542.3895 419.7618 543.04144 420.41367Q543.61597 420.9882 544.3341 420.99924Q545.05225 421.01028 545.5605 420.50208Q546.0798 419.9828 546.04663 419.2867Q546.0135 418.59067 545.3727 417.94986ZM549.3391 418.51334L548.58777 417.76202L550.88586 415.46393L551.6372 416.21524L549.3391 418.51334ZM551.0848 414.42535Q550.002 413.34262 549.5711 412.46976Q549.12915 411.58588 549.2065 410.80145Q549.2949 410.00595 549.9578 409.34305Q550.444 408.8569 551.00745 408.69116Q551.582 408.5144 552.2007 408.64697Q552.80835 408.76852 553.47125 409.16626Q554.13416 409.564 555.04016 410.46997Q556.1118 411.5417 556.5427 412.41452Q556.9847 413.2763 556.90735 414.08286Q556.83 414.8673 556.15607 415.54126Q555.2832 416.4141 554.1452 416.29257Q552.7973 416.13788 551.0848 414.42535ZM551.8471 413.66302Q553.3387 415.15457 554.1894 415.2982Q555.04016 415.44183 555.54834 414.9336Q556.0676 414.4143 555.91296 413.57462Q555.76935 412.72388 554.2778 411.23233Q552.7752 409.72974 551.9355 409.59714Q551.0958 409.44247 550.5655 409.9728Q550.05725 410.48105 550.1788 411.22128Q550.3445 412.1604 551.8471 413.66302ZM561.83496 409.66345L561.0947 410.4037L556.3439 405.65283Q556.3218 406.18314 556.145 406.89026Q555.9682 407.57526 555.74725 408.0393L555.0291 407.32114Q555.3495 406.4041 555.4047 405.53128Q555.45996 404.63635 555.2611 404.03973L555.7362 403.56464L561.83496 409.66345Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M545.04865 448.13446L545.7668 448.8526L541.7451 452.87427Q541.4799 452.60913 541.3142 452.2666Q541.0601 451.70312 540.9938 450.97394Q540.93854 450.23367 541.0601 449.07358Q541.2369 447.26163 541.1043 446.44403Q540.9827 445.6154 540.5629 445.19556Q540.121 444.7536 539.50226 444.7757Q538.8725 444.78674 538.36426 445.29498Q537.8229 445.83636 537.8229 446.47717Q537.8229 447.11798 538.38635 447.70355L537.54663 448.38858Q536.7622 447.44946 536.8285 446.49927Q536.8948 445.527 537.76764 444.65417Q538.64044 443.78134 539.6348 443.75925Q540.6292 443.73715 541.34735 444.4553Q541.712 444.8199 541.9108 445.32812Q542.1097 445.81427 542.1539 446.56555Q542.1981 447.29477 542.07654 448.76422Q541.96606 450.00165 541.9771 450.41046Q541.98816 450.79715 542.0655 451.11755L545.04865 448.13446ZM543.8001 444.83093Q542.71735 443.7482 542.2865 442.87534Q541.84454 441.99146 541.9219 441.20703Q542.01025 440.41153 542.67316 439.74863Q543.1593 439.26248 543.7228 439.09674Q544.2973 438.91998 544.916 439.05255Q545.5237 439.1741 546.18665 439.57184Q546.84955 439.96957 547.7555 440.87555Q548.8272 441.94727 549.2581 442.8201Q549.7001 443.6819 549.62274 444.48843Q549.54535 445.2729 548.8714 445.94684Q547.9986 446.81967 546.8606 446.69815Q545.51263 446.54346 543.8001 444.83093ZM544.5625 444.0686Q546.054 445.56015 546.9048 445.70377Q547.7555 445.8474 548.26373 445.33917Q548.783 444.8199 548.62836 443.9802Q548.48474 443.12946 546.99316 441.6379Q545.49054 440.1353 544.6509 440.00272Q543.81116 439.84805 543.2808 440.3784Q542.77264 440.88663 542.89417 441.62686Q543.0599 442.56598 544.5625 444.0686ZM554.9481 438.23495L555.66626 438.95312L551.6446 442.9748Q551.37946 442.70963 551.2137 442.36713Q550.9596 441.80365 550.8933 441.07443Q550.8381 440.3342 550.9596 439.1741Q551.13635 437.36212 551.0038 436.54453Q550.88226 435.71588 550.4624 435.29605Q550.02045 434.8541 549.40173 434.8762Q548.772 434.88727 548.26373 435.39548Q547.72235 435.93686 547.72235 436.57767Q547.72235 437.2185 548.2858 437.80408L547.44617 438.48907Q546.6617 437.54996 546.72797 436.5998Q546.7943 435.6275 547.6671 434.75467Q548.54 433.88184 549.5343 433.85974Q550.5287 433.83765 551.2468 434.5558Q551.61145 434.9204 551.8103 435.42862Q552.0092 435.91476 552.0534 436.66608Q552.0976 437.39526 551.9761 438.86472Q551.86554 440.10217 551.8766 440.51096Q551.8877 440.89767 551.965 441.21808L554.9481 438.23495ZM553.69965 434.93146Q552.6169 433.8487 552.186 432.97586Q551.744 432.09198 551.82135 431.30753Q551.9098 430.51202 552.5727 429.84912Q553.05884 429.36298 553.6223 429.19727Q554.19684 429.02048 554.81555 429.15305Q555.4232 429.2746 556.0861 429.67233Q556.749 430.0701 557.655 430.97607Q558.7267 432.0478 559.1576 432.92062Q559.59955 433.7824 559.5222 434.58893Q559.4449 435.37338 558.77094 436.04736Q557.8981 436.9202 556.7601 436.79865Q555.4122 436.64398 553.69965 434.93146ZM554.462 434.1691Q555.95355 435.66064 556.80426 435.8043Q557.655 435.9479 558.1632 435.43967Q558.6825 434.9204 558.52783 434.08072Q558.3842 433.22998 556.89264 431.73843Q555.3901 430.2358 554.55035 430.10324Q553.7107 429.94855 553.18036 430.47888Q552.6721 430.98712 552.79364 431.72736Q552.95935 432.6665 554.462 434.1691ZM559.7321 431.24124L558.98083 430.48993L561.27893 428.19183L562.0302 428.94315L559.7321 431.24124ZM561.4778 427.15326Q560.395 426.07053 559.9642 425.1977Q559.5222 424.3138 559.59955 423.52936Q559.6879 422.73386 560.3508 422.07095Q560.837 421.5848 561.40045 421.41907Q561.975 421.2423 562.5937 421.37488Q563.20135 421.49643 563.86426 421.89417Q564.5272 422.2919 565.43317 423.1979Q566.5049 424.2696 566.9358 425.14243Q567.37775 426.0042 567.30035 426.81076Q567.223 427.5952 566.5491 428.26917Q565.6763 429.142 564.53827 429.02048Q563.1903 428.86578 561.4778 427.15326ZM562.2402 426.39093Q563.7317 427.88248 564.58246 428.02612Q565.43317 428.16974 565.9414 427.6615Q566.4607 427.1422 566.306 426.30252Q566.16235 425.4518 564.67084 423.96024Q563.1682 422.45764 562.32855 422.32507Q561.48883 422.17038 560.9585 422.7007Q560.45026 423.20895 560.57184 423.9492Q560.73755 424.88834 562.2402 426.39093ZM568.129 423.68402L568.7809 422.8996Q569.3775 423.31943 569.86365 423.29733Q570.3498 423.25314 570.74756 422.85538Q571.09 422.51288 571.18945 422.1041Q571.2889 421.6732 571.2005 421.25336Q571.1011 420.82245 570.76965 420.27002Q570.4271 419.70654 569.9631 419.24252Q569.90784 419.1873 569.8084 419.08783Q569.941 419.66235 569.7863 420.28107Q569.6206 420.88876 569.1676 421.34174Q568.4052 422.1041 567.3446 422.082Q566.2729 422.04886 565.3779 421.1539Q564.4498 420.22583 564.42773 419.12097Q564.4167 418.00507 565.2343 417.1875Q565.8199 416.60193 566.6264 416.4362Q567.44403 416.2594 568.29474 416.60193Q569.13446 416.93338 570.25037 418.0493Q571.41046 419.20938 571.85236 420.15955Q572.2943 421.08762 572.1507 421.96045Q572.0071 422.8112 571.3442 423.47412Q570.626 424.19226 569.7863 424.25854Q568.93555 424.3138 568.129 423.68402ZM568.49365 417.94983Q567.8528 417.30902 567.13464 417.27588Q566.42755 417.2317 565.9414 417.7178Q565.4442 418.215 565.47736 418.99945Q565.5105 419.7618 566.16235 420.41367Q566.7369 420.9882 567.4551 420.99924Q568.1732 421.01028 568.68146 420.50204Q569.20074 419.98276 569.1676 419.2867Q569.13446 418.59064 568.49365 417.94983ZM572.4601 418.5133L571.70874 417.76202L574.00684 415.46393L574.7582 416.2152L572.4601 418.5133ZM580.0062 414.6132L579.2659 415.35342L574.5151 410.60257Q574.493 411.13287 574.3162 411.84Q574.1394 412.525 573.91846 412.98904L573.2003 412.27087Q573.5207 411.35385 573.5759 410.48102Q573.6312 409.5861 573.4323 408.98947L573.9074 408.51437L580.0062 414.6132ZM580.55865 410.87878L581.2768 410.02805Q581.9397 410.51416 582.5363 410.49207Q583.144 410.45892 583.597 410.00592Q584.1273 409.47562 584.0942 408.69116Q584.06104 407.9067 583.39813 407.2438Q582.7573 406.603 582.0281 406.603Q581.2989 406.58087 580.7133 407.16647Q580.35974 407.52002 580.2272 407.98404Q580.10565 408.43704 580.19403 408.85687L579.4096 409.46457L576.87946 405.7633L579.9068 402.736L580.6139 403.44308L578.1832 405.87378L579.498 407.82938Q579.65265 406.9013 580.24927 406.30466Q581.0448 405.5092 582.13855 405.52023Q583.2434 405.52023 584.1163 406.39307Q584.93384 407.21066 585.06647 408.2934Q585.2101 409.6082 584.20465 410.61362Q583.37604 411.44223 582.38165 411.50854Q581.3983 411.56378 580.55865 410.87878Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M568.16956 448.1345L568.8877 448.85263L564.866 452.8743Q564.6008 452.60916 564.4351 452.26663Q564.181 451.70316 564.11475 450.97397Q564.0595 450.2337 564.181 449.0736Q564.3578 447.26166 564.2252 446.44406Q564.1037 445.61542 563.68384 445.1956Q563.2419 444.75363 562.62317 444.77573Q561.9934 444.78677 561.48517 445.295Q560.9438 445.8364 560.9438 446.4772Q560.9438 447.118 561.50726 447.70358L560.6676 448.3886Q559.8831 447.4495 559.9494 446.4993Q560.0157 445.52704 560.88855 444.6542Q561.7614 443.78137 562.75574 443.75928Q563.7501 443.73718 564.46826 444.45532Q564.8329 444.81992 565.03174 445.32816Q565.23065 445.8143 565.27484 446.56558Q565.31903 447.2948 565.1975 448.76425Q565.087 450.00168 565.098 450.4105Q565.1091 450.79718 565.18646 451.11758L568.16956 448.1345ZM566.9211 444.83096Q565.8383 443.74823 565.4074 442.8754Q564.96545 441.9915 565.0428 441.20706Q565.13116 440.41156 565.7941 439.74866Q566.2802 439.2625 566.8437 439.09677Q567.4182 438.92 568.037 439.05258Q568.64465 439.17413 569.30756 439.57187Q569.97046 439.9696 570.8764 440.8756Q571.9481 441.9473 572.379 442.82013Q572.821 443.68192 572.74365 444.48846Q572.6663 445.27292 571.9923 445.94687Q571.1195 446.8197 569.9815 446.69818Q568.6336 446.5435 566.9211 444.83096ZM567.6834 444.06863Q569.1749 445.56018 570.0257 445.7038Q570.8764 445.84744 571.38464 445.3392Q571.90393 444.81992 571.74927 443.98022Q571.60565 443.1295 570.1141 441.63794Q568.6115 440.13535 567.7718 440.00275Q566.9321 439.84808 566.4018 440.37842Q565.89355 440.88666 566.0151 441.6269Q566.1808 442.566 567.6834 444.06863ZM578.06903 438.235L578.7872 438.95316L574.7655 442.97482Q574.50037 442.70966 574.33466 442.36716Q574.0805 441.80368 574.0142 441.07446Q573.959 440.33423 574.0805 439.17413Q574.25726 437.36215 574.1247 436.54456Q574.0032 435.7159 573.5833 435.29608Q573.14136 434.85413 572.52264 434.87625Q571.8929 434.8873 571.38464 435.3955Q570.84326 435.9369 570.84326 436.5777Q570.84326 437.21854 571.40674 437.8041L570.5671 438.4891Q569.78265 437.55 569.84894 436.59982Q569.9152 435.62753 570.788 434.7547Q571.6609 433.88187 572.6553 433.85977Q573.6496 433.83768 574.3678 434.55582Q574.73236 434.92044 574.9313 435.42865Q575.1301 435.9148 575.1743 436.6661Q575.2185 437.3953 575.097 438.86475Q574.9865 440.1022 574.99756 440.511Q575.0086 440.8977 575.08594 441.2181L578.06903 438.235ZM576.82056 434.9315Q575.7378 433.84872 575.3069 432.9759Q574.8649 432.092 574.9423 431.30756Q575.0307 430.51205 575.6936 429.84915Q576.17975 429.363 576.7432 429.1973Q577.31775 429.0205 577.93646 429.15308Q578.5441 429.27463 579.20703 429.67236Q579.86993 430.07013 580.77594 430.9761Q581.84766 432.04782 582.2785 432.92065Q582.72046 433.78244 582.6431 434.58896Q582.5658 435.3734 581.89185 436.0474Q581.019 436.92023 579.881 436.79868Q578.5331 436.644 576.82056 434.9315ZM577.5829 434.16913Q579.07446 435.66068 579.9252 435.80432Q580.77594 435.94794 581.2842 435.4397Q581.80347 434.92044 581.64874 434.08075Q581.5051 433.23 580.01355 431.73846Q578.511 430.23584 577.67126 430.10327Q576.8316 429.94858 576.3013 430.4789Q575.793 430.98715 575.91455 431.7274Q576.0803 432.66653 577.5829 434.16913ZM582.853 431.24127L582.10175 430.48996L584.39984 428.19186L585.1511 428.94318L582.853 431.24127ZM584.5987 427.1533Q583.516 426.07056 583.0851 425.19772Q582.6431 424.31384 582.72046 423.5294Q582.80884 422.7339 583.4718 422.07098Q583.9579 421.58484 584.52136 421.4191Q585.0959 421.24234 585.7146 421.3749Q586.3223 421.49646 586.9852 421.8942Q587.64813 422.29193 588.5541 423.19794Q589.6258 424.26962 590.0567 425.14246Q590.49866 426.00424 590.4213 426.8108Q590.344 427.59525 589.67 428.2692Q588.7972 429.14203 587.6592 429.0205Q586.3112 428.8658 584.5987 427.1533ZM585.3611 426.39096Q586.8526 427.8825 587.70337 428.02615Q588.5541 428.16977 589.0623 427.66153Q589.5816 427.14224 589.42694 426.30255Q589.2833 425.45184 587.79175 423.96027Q586.2891 422.45767 585.44946 422.3251Q584.6098 422.1704 584.07947 422.70074Q583.5712 423.20898 583.69275 423.94922Q583.85846 424.88837 585.3611 426.39096ZM591.24994 423.68405L591.9018 422.89963Q592.4984 423.31946 592.98456 423.29736Q593.4707 423.25317 593.86847 422.8554Q594.21094 422.5129 594.31036 422.10413Q594.40985 421.67322 594.3215 421.2534Q594.222 420.82248 593.89056 420.27005Q593.54803 419.70657 593.084 419.24255Q593.02875 419.18732 592.9293 419.08786Q593.0619 419.66238 592.9072 420.2811Q592.7415 420.8888 592.2885 421.34177Q591.5262 422.10413 590.4655 422.08203Q589.3938 422.0489 588.49884 421.15393Q587.5708 420.22586 587.5487 419.121Q587.53766 418.0051 588.3552 417.18753Q588.9408 416.60196 589.7474 416.43622Q590.56494 416.25943 591.41565 416.60196Q592.2554 416.9334 593.3713 418.04932Q594.5314 419.2094 594.9733 420.15958Q595.4152 421.08765 595.2716 421.96048Q595.128 422.81122 594.4651 423.47415Q593.74695 424.1923 592.9072 424.25858Q592.0565 424.31384 591.24994 423.68405ZM591.61456 417.94986Q590.97375 417.30905 590.25555 417.2759Q589.54846 417.23172 589.0623 417.71783Q588.5651 418.21503 588.59827 418.99948Q588.6315 419.76184 589.2833 420.4137Q589.85785 420.98822 590.576 420.99927Q591.2941 421.0103 591.80237 420.50208Q592.32166 419.9828 592.2885 419.28674Q592.2554 418.5907 591.61456 417.94986ZM595.581 418.51334L594.82965 417.76205L597.12775 415.46396L597.8791 416.21524L595.581 418.51334ZM603.5249 412.77914L604.24304 413.4973L600.2214 417.51898Q599.9562 417.2538 599.79047 416.91132Q599.5364 416.34784 599.4701 415.61862Q599.4148 414.8784 599.5364 413.71826Q599.71313 411.9063 599.58057 411.0887Q599.459 410.26007 599.0392 409.84024Q598.5972 409.3983 597.9785 409.42038Q597.34875 409.43143 596.8405 409.93967Q596.29913 410.48105 596.29913 411.12186Q596.29913 411.7627 596.8626 412.34827L596.0229 413.03326Q595.23846 412.09415 595.30475 411.14395Q595.37103 410.1717 596.2439 409.29886Q597.1167 408.42603 598.1111 408.40393Q599.10547 408.38184 599.8236 409.09998Q600.18823 409.4646 600.3871 409.9728Q600.58594 410.45895 600.6302 411.21027Q600.6744 411.93945 600.5528 413.4089Q600.4423 414.64636 600.45337 415.05515Q600.4644 415.44183 600.54175 415.76227L603.5249 412.77914ZM608.0769 409.66345L607.3366 410.40372L602.58575 405.65283Q602.56366 406.18317 602.3869 406.8903Q602.2101 407.5753 601.98914 408.03934L601.271 407.32117Q601.5914 406.40414 601.6466 405.5313Q601.70184 404.63638 601.503 404.03976L601.9781 403.56467L608.0769 409.66345Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M591.2905 448.13446L592.00867 448.85263L587.987 452.8743Q587.7218 452.60913 587.5561 452.26663Q587.302 451.70316 587.2357 450.97394Q587.1804 450.2337 587.302 449.0736Q587.47876 447.26163 587.3462 446.44406Q587.2247 445.61542 586.8048 445.19556Q586.36285 444.75363 585.74414 444.77573Q585.1144 444.78677 584.60614 445.295Q584.06476 445.83636 584.06476 446.4772Q584.06476 447.118 584.62823 447.70358L583.7886 448.38858Q583.0041 447.44946 583.0704 446.4993Q583.13666 445.527 584.0095 444.65417Q584.8823 443.78134 585.8767 443.75925Q586.8711 443.73715 587.58923 444.45532Q587.95386 444.81992 588.1527 445.32816Q588.3516 445.81427 588.3958 446.56558Q588.44 447.2948 588.3184 448.76425Q588.20795 450.00168 588.219 450.41046Q588.23004 450.79718 588.3074 451.11758L591.2905 448.13446ZM590.042 444.83096Q588.9593 443.7482 588.5284 442.87537Q588.0864 441.9915 588.16376 441.20703Q588.25214 440.41153 588.91504 439.74863Q589.4012 439.26248 589.96466 439.09677Q590.5392 438.91998 591.1579 439.05258Q591.76556 439.1741 592.4285 439.57187Q593.09143 439.9696 593.9974 440.87558Q595.0691 441.9473 595.5 442.82013Q595.94196 443.68192 595.8646 444.48846Q595.7873 445.2729 595.1133 445.94687Q594.2405 446.8197 593.1025 446.69815Q591.7545 446.5435 590.042 444.83096ZM590.8044 444.0686Q592.2959 445.56015 593.14667 445.7038Q593.9974 445.8474 594.5056 445.3392Q595.0249 444.81992 594.87024 443.98022Q594.7266 443.1295 593.23505 441.63794Q591.7324 440.13535 590.89276 440.00275Q590.05304 439.84805 589.52277 440.3784Q589.0145 440.88663 589.13605 441.6269Q589.30176 442.566 590.8044 444.0686ZM601.19 438.235L601.90814 438.95312L597.8865 442.9748Q597.62134 442.70966 597.45557 442.36713Q597.2015 441.80365 597.1352 441.07446Q597.07996 440.3342 597.2015 439.1741Q597.37823 437.36215 597.24567 436.54456Q597.12415 435.7159 596.7043 435.29608Q596.2623 434.85413 595.6436 434.87622Q595.01385 434.88727 594.5056 435.3955Q593.96423 435.9369 593.96423 436.5777Q593.96423 437.2185 594.5277 437.80408L593.68805 438.4891Q592.90356 437.54996 592.9699 436.5998Q593.0362 435.62753 593.909 434.7547Q594.78186 433.88187 595.77625 433.85977Q596.77057 433.83765 597.4888 434.55582Q597.85333 434.9204 598.0522 435.42865Q598.2511 435.9148 598.2953 436.66608Q598.3395 437.3953 598.21796 438.86475Q598.1075 440.10217 598.1185 440.511Q598.1296 440.89767 598.2069 441.21808L601.19 438.235ZM599.9415 434.93146Q598.85876 433.8487 598.42786 432.97586Q597.9859 432.09198 598.0633 431.30756Q598.1517 430.51205 598.8146 429.84912Q599.3007 429.363 599.8642 429.19727Q600.4387 429.0205 601.05743 429.15308Q601.6651 429.2746 602.328 429.67236Q602.9909 430.0701 603.8969 430.97607Q604.9686 432.0478 605.3995 432.92062Q605.84143 433.7824 605.7641 434.58896Q605.68677 435.3734 605.0128 436.04736Q604.13995 436.9202 603.00195 436.79868Q601.65405 436.64398 599.9415 434.93146ZM600.70386 434.16913Q602.19543 435.66068 603.04614 435.8043Q603.8969 435.94794 604.40515 435.4397Q604.92444 434.9204 604.7697 434.08072Q604.6261 433.22998 603.1345 431.73843Q601.63196 430.23584 600.79224 430.10324Q599.9526 429.94858 599.42224 430.4789Q598.914 430.98712 599.0355 431.7274Q599.2013 432.6665 600.70386 434.16913ZM605.974 431.24124L605.2227 430.48996L607.5208 428.19186L608.2721 428.94315L605.974 431.24124ZM607.71967 427.1533Q606.63696 426.07053 606.20605 425.1977Q605.7641 424.3138 605.84143 423.52936Q605.9298 422.7339 606.5927 422.07095Q607.07886 421.58484 607.64233 421.4191Q608.21686 421.2423 608.8356 421.3749Q609.44324 421.49643 610.1062 421.8942Q610.7691 422.29193 611.67505 423.1979Q612.74677 424.26962 613.1777 425.14246Q613.6196 426.00424 613.5423 426.8108Q613.4649 427.59525 612.79095 428.2692Q611.91815 429.14203 610.78015 429.0205Q609.4322 428.8658 607.71967 427.1533ZM608.48206 426.39093Q609.9736 427.8825 610.82434 428.02612Q611.67505 428.16977 612.1833 427.66153Q612.7026 427.14224 612.5479 426.30255Q612.4043 425.4518 610.9127 423.96027Q609.4101 422.45767 608.57043 422.32507Q607.7307 422.1704 607.2004 422.7007Q606.6922 423.20895 606.8137 423.94922Q606.97943 424.88834 608.48206 426.39093ZM614.3709 423.68405L615.02277 422.8996Q615.6194 423.31946 616.1055 423.29736Q616.5917 423.25314 616.98944 422.8554Q617.3319 422.5129 617.43134 422.1041Q617.5308 421.67322 617.4424 421.25336Q617.34296 420.82248 617.01154 420.27005Q616.669 419.70657 616.20496 419.24252Q616.1497 419.1873 616.0503 419.08786Q616.18286 419.66238 616.0282 420.2811Q615.8625 420.88876 615.4095 421.34177Q614.64716 422.1041 613.5865 422.082Q612.5148 422.04886 611.6198 421.15393Q610.6918 420.22586 610.6697 419.121Q610.6586 418.0051 611.4762 417.1875Q612.06177 416.60193 612.8683 416.43622Q613.6859 416.25943 614.5366 416.60193Q615.37634 416.93338 616.49225 418.0493Q617.65234 419.20938 618.0943 420.15958Q618.5362 421.08765 618.3926 421.96048Q618.24896 422.81122 617.58606 423.47412Q616.86786 424.1923 616.0282 424.25858Q615.1774 424.3138 614.3709 423.68405ZM614.73553 417.94986Q614.0947 417.30905 613.3765 417.27588Q612.66943 417.2317 612.1833 417.71783Q611.6861 418.21503 611.71924 418.99948Q611.7524 419.7618 612.4043 420.41367Q612.9788 420.9882 613.69696 420.99927Q614.4151 421.0103 614.92334 420.50208Q615.4426 419.9828 615.4095 419.28674Q615.37634 418.59067 614.73553 417.94986ZM618.70197 418.51334L617.9506 417.76202L620.2487 415.46393L621.00006 416.21524L618.70197 418.51334ZM626.6459 412.77914L627.364 413.49728L623.34235 417.51895Q623.07715 417.25378 622.91144 416.9113Q622.65735 416.3478 622.591 415.61862Q622.53577 414.87836 622.65735 413.71826Q622.8341 411.9063 622.70154 411.0887Q622.57996 410.26007 622.16016 409.8402Q621.7182 409.3983 621.0995 409.42038Q620.4697 409.43143 619.9615 409.93967Q619.4201 410.48105 619.4201 411.12186Q619.4201 411.76266 619.9836 412.34824L619.14386 413.03326Q618.35944 412.09412 618.4257 411.14395Q618.492 410.1717 619.36487 409.29886Q620.2377 408.42603 621.23206 408.4039Q622.22644 408.3818 622.9446 409.09998Q623.3092 409.46457 623.50806 409.9728Q623.7069 410.45895 623.7511 411.21024Q623.79535 411.93945 623.67377 413.4089Q623.5633 414.64633 623.57434 415.05515Q623.5854 415.44183 623.6627 415.76224L626.6459 412.77914ZM627.0988 410.95612L627.7507 410.1717Q628.34735 410.59152 628.83344 410.56943Q629.3196 410.52524 629.71735 410.12747Q630.0599 409.78497 630.1593 409.3762Q630.2587 408.94528 630.17035 408.52545Q630.0709 408.09454 629.73944 407.5421Q629.3969 406.97864 628.9329 406.51462Q628.8776 406.45938 628.7782 406.35992Q628.91077 406.93445 628.7561 407.55316Q628.5904 408.16086 628.1374 408.61383Q627.37506 409.3762 626.3144 409.3541Q625.2427 409.32095 624.3478 408.42603Q623.4197 407.49792 623.3976 406.39307Q623.38654 405.27716 624.2041 404.4596Q624.7897 403.87402 625.59625 403.70828Q626.4138 403.5315 627.2646 403.87402Q628.10425 404.20547 629.22015 405.32138Q630.38025 406.48148 630.8222 407.43164Q631.26416 408.3597 631.1205 409.23254Q630.97687 410.08328 630.31396 410.74622Q629.5958 411.46436 628.7561 411.53064Q627.9054 411.5859 627.0988 410.95612ZM627.46344 405.22192Q626.82263 404.58112 626.1045 404.54797Q625.39734 404.50378 624.9112 404.9899Q624.41406 405.4871 624.4472 406.27155Q624.48035 407.0339 625.1322 407.68576Q625.7067 408.26028 626.42487 408.27133Q627.143 408.28238 627.65125 407.77414Q628.17053 407.25485 628.1374 406.5588Q628.10425 405.86276 627.46344 405.22192Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M614.4115 448.13446L615.12964 448.85263L611.108 452.8743Q610.8428 452.60913 610.67706 452.26663Q610.423 451.70316 610.3566 450.97394Q610.3014 450.23367 610.423 449.07358Q610.59973 447.26163 610.46716 446.44403Q610.3456 445.6154 609.9258 445.19556Q609.4838 444.7536 608.8651 444.7757Q608.23535 444.78674 607.7271 445.29498Q607.1857 445.83636 607.1857 446.47717Q607.1857 447.118 607.7492 447.70358L606.9095 448.38858Q606.12506 447.44946 606.19135 446.49927Q606.2576 445.527 607.1305 444.65417Q608.0033 443.78134 608.9977 443.75925Q609.99207 443.73715 610.7102 444.4553Q611.0748 444.8199 611.2737 445.32812Q611.47253 445.81427 611.5168 446.56558Q611.561 447.29477 611.4394 448.76422Q611.3289 450.00168 611.33997 450.41046Q611.351 450.79715 611.42834 451.11758L614.4115 448.13446ZM613.16296 444.83096Q612.0802 443.7482 611.64935 442.87537Q611.2074 441.9915 611.2847 441.20703Q611.3731 440.41153 612.036 439.74863Q612.52216 439.26248 613.08563 439.09674Q613.66016 438.91998 614.2789 439.05255Q614.88654 439.1741 615.5495 439.57184Q616.2124 439.9696 617.11835 440.87558Q618.19006 441.94727 618.621 442.8201Q619.0629 443.68192 618.9856 444.48843Q618.9082 445.2729 618.23425 445.94684Q617.36145 446.81967 616.22345 446.69815Q614.8755 446.5435 613.16296 444.83096ZM613.92535 444.0686Q615.4169 445.56015 616.26764 445.7038Q617.11835 445.8474 617.6266 445.33917Q618.1459 444.8199 617.9912 443.98022Q617.8476 443.1295 616.356 441.6379Q614.8534 440.1353 614.01373 440.00275Q613.174 439.84805 612.6437 440.3784Q612.1355 440.88663 612.257 441.62686Q612.4227 442.566 613.92535 444.0686ZM624.311 438.23495L625.0291 438.95312L621.00745 442.9748Q620.7423 442.70963 620.57654 442.36713Q620.32245 441.80365 620.25616 441.07443Q620.2009 440.3342 620.32245 439.1741Q620.4992 437.36212 620.36664 436.54456Q620.2451 435.7159 619.82526 435.29605Q619.3833 434.85413 618.7646 434.87622Q618.1348 434.88727 617.6266 435.3955Q617.0852 435.93686 617.0852 436.5777Q617.0852 437.2185 617.6487 437.80408L616.809 438.48907Q616.02454 437.54996 616.0909 436.5998Q616.15717 435.6275 617.02997 434.75467Q617.90283 433.88184 618.89716 433.85974Q619.89154 433.83765 620.6097 434.55582Q620.9743 434.9204 621.17316 435.42865Q621.3721 435.91476 621.41626 436.66608Q621.46045 437.3953 621.3389 438.86475Q621.22845 440.10217 621.2395 440.51096Q621.25055 440.89767 621.3279 441.21808L624.311 438.23495ZM623.0625 434.93146Q621.97974 433.8487 621.5488 432.97586Q621.1069 432.09198 621.1842 431.30753Q621.27264 430.51202 621.93555 429.84912Q622.4217 429.36298 622.98517 429.19727Q623.5597 429.02048 624.1784 429.15308Q624.7861 429.2746 625.449 429.67233Q626.1119 430.0701 627.0179 430.97607Q628.0896 432.0478 628.52045 432.92062Q628.9624 433.7824 628.8851 434.58896Q628.80774 435.37338 628.1338 436.04736Q627.2609 436.9202 626.1229 436.79865Q624.775 436.64398 623.0625 434.93146ZM623.8248 434.1691Q625.3164 435.66064 626.1671 435.8043Q627.0179 435.9479 627.5261 435.4397Q628.04535 434.9204 627.8907 434.08072Q627.7471 433.22998 626.2555 431.73843Q624.7529 430.2358 623.9132 430.10324Q623.07355 429.94855 622.5432 430.47888Q622.035 430.98712 622.1565 431.7274Q622.3222 432.6665 623.8248 434.1691ZM629.095 431.24124L628.3437 430.48993L630.6418 428.19183L631.39307 428.94315L629.095 431.24124ZM636.6411 427.3411L635.9009 428.08136L631.15 423.33047Q631.1279 423.8608 630.9512 424.56793Q630.77435 425.25293 630.5534 425.71698L629.83527 424.9988Q630.15564 424.0818 630.2109 423.20895Q630.2661 422.31403 630.06726 421.7174L630.54236 421.2423L636.6411 427.3411ZM635.7904 422.20352Q634.70764 421.1208 634.27673 420.24792Q633.83484 419.36404 633.9122 418.57962Q634.00055 417.78412 634.66345 417.12122Q635.1496 416.63507 635.7131 416.46933Q636.2876 416.29257 636.9063 416.42514Q637.514 416.5467 638.1769 416.94443Q638.8398 417.34216 639.7458 418.24814Q640.8175 419.31985 641.2484 420.1927Q641.6903 421.05447 641.613 421.86102Q641.53564 422.64548 640.8617 423.31943Q639.98883 424.19226 638.8508 424.07074Q637.5029 423.91605 635.7904 422.20352ZM636.55273 421.4412Q638.0443 422.93274 638.895 423.07635Q639.7458 423.22 640.254 422.71176Q640.7733 422.19247 640.6186 421.35278Q640.475 420.50204 638.98346 419.0105Q637.48083 417.5079 636.6411 417.3753Q635.80145 417.22064 635.2711 417.75098Q634.7629 418.25922 634.8844 418.99945Q635.0502 419.93857 636.55273 421.4412ZM641.82294 418.5133L641.0716 417.76202L643.3697 415.46393L644.12103 416.2152L641.82294 418.5133ZM643.5686 414.42535Q642.48584 413.3426 642.05493 412.46976Q641.613 411.58588 641.6903 410.80142Q641.7787 410.00595 642.44165 409.34302Q642.92773 408.8569 643.4912 408.69116Q644.06573 408.51437 644.6845 408.64697Q645.2922 408.7685 645.9551 409.16626Q646.618 409.564 647.524 410.46997Q648.59564 411.5417 649.02655 412.41452Q649.4685 413.2763 649.3912 414.08286Q649.31384 414.8673 648.63983 415.54126Q647.767 416.4141 646.629 416.29257Q645.2811 416.13788 643.5686 414.42535ZM644.33093 413.663Q645.8225 415.15457 646.6732 415.2982Q647.524 415.44183 648.03217 414.9336Q648.55145 414.4143 648.3968 413.57462Q648.2532 412.72388 646.7616 411.23233Q645.25903 409.72974 644.4193 409.59714Q643.57965 409.44247 643.0493 409.9728Q642.5411 410.48102 642.6626 411.22128Q642.8283 412.1604 644.33093 413.663ZM649.9215 410.87878L650.63965 410.02805Q651.30255 410.51416 651.8992 410.49207Q652.50684 410.45892 652.95984 410.00595Q653.4902 409.47562 653.45703 408.69116Q653.4239 407.9067 652.761 407.2438Q652.1202 406.603 651.3909 406.603Q650.66174 406.5809 650.0762 407.16647Q649.7226 407.52002 649.59 407.98407Q649.4685 408.43704 649.5569 408.8569L648.77246 409.46457L646.2423 405.7633L649.26965 402.736L649.97675 403.4431L647.5461 405.87378L648.86084 407.82938Q649.0155 406.9013 649.6121 406.3047Q650.40765 405.5092 651.5014 405.52023Q652.60626 405.52023 653.4791 406.39307Q654.2967 407.21066 654.4293 408.29343Q654.57294 409.6082 653.5675 410.61362Q652.7389 411.44226 651.7445 411.50854Q650.76117 411.56378 649.9215 410.87878Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M637.5324 448.1345L638.25055 448.85266L634.2289 452.87433Q633.96375 452.60916 633.798 452.26666Q633.5439 451.7032 633.4776 450.97397Q633.42236 450.2337 633.5439 449.0736Q633.72064 447.26166 633.5881 446.44406Q633.46655 445.61542 633.0467 445.1956Q632.60474 444.75363 631.986 444.77573Q631.35626 444.78677 630.848 445.295Q630.30664 445.8364 630.30664 446.4772Q630.30664 447.11804 630.8701 447.7036L630.03046 448.3886Q629.246 447.4495 629.31226 446.4993Q629.3786 445.52704 630.2514 444.6542Q631.12427 443.78137 632.1186 443.75928Q633.113 443.73718 633.8311 444.45532Q634.19574 444.81992 634.3946 445.32816Q634.5935 445.8143 634.6377 446.5656Q634.6819 447.2948 634.56036 448.76425Q634.4498 450.0017 634.4609 450.4105Q634.4719 450.79718 634.5493 451.1176L637.5324 448.1345ZM636.28394 444.831Q635.2012 443.74823 634.77026 442.8754Q634.3283 441.99152 634.40564 441.20706Q634.494 440.41156 635.157 439.74866Q635.64307 439.2625 636.20654 439.09677Q636.78107 438.92 637.39984 439.05258Q638.0075 439.17413 638.6704 439.57187Q639.3333 439.96964 640.2393 440.8756Q641.311 441.9473 641.7419 442.82013Q642.18384 443.68195 642.1065 444.48846Q642.0292 445.27292 641.35516 445.94687Q640.48236 446.8197 639.34436 446.69818Q637.99646 446.54352 636.28394 444.831ZM637.04626 444.06863Q638.53784 445.56018 639.38855 445.70383Q640.2393 445.84744 640.7475 445.3392Q641.2668 444.81992 641.1121 443.98026Q640.9685 443.12952 639.4769 441.63794Q637.97437 440.13535 637.13464 440.00278Q636.295 439.84808 635.76465 440.37842Q635.2564 440.88666 635.3779 441.6269Q635.54364 442.56604 637.04626 444.06863ZM647.4319 438.235L648.15 438.95316L644.12836 442.97482Q643.8632 442.70966 643.6975 442.36716Q643.44336 441.80368 643.3771 441.07446Q643.32184 440.33423 643.44336 439.17413Q643.6201 437.36215 643.48755 436.5446Q643.366 435.71594 642.94617 435.29608Q642.5042 434.85416 641.8855 434.87625Q641.25574 434.8873 640.7475 435.39554Q640.2061 435.9369 640.2061 436.57773Q640.2061 437.21854 640.7696 437.8041L639.92993 438.4891Q639.1455 437.55 639.2118 436.59982Q639.2781 435.62753 640.1509 434.7547Q641.02374 433.88187 642.0181 433.85977Q643.01245 433.83768 643.73065 434.55585Q644.0952 434.92044 644.2941 435.42868Q644.493 435.9148 644.5372 436.6661Q644.58136 437.39532 644.45984 438.86478Q644.34937 440.1022 644.3604 440.511Q644.37146 440.8977 644.4488 441.2181L647.4319 438.235ZM646.1834 434.9315Q645.10065 433.84872 644.66974 432.9759Q644.2278 432.092 644.3052 431.30756Q644.39355 430.51205 645.05646 429.84915Q645.5426 429.363 646.1061 429.1973Q646.6806 429.0205 647.2993 429.1531Q647.907 429.27463 648.5699 429.67236Q649.2328 430.07013 650.1388 430.9761Q651.2105 432.04782 651.64136 432.92065Q652.0833 433.78244 652.006 434.589Q651.92865 435.3734 651.2547 436.0474Q650.38184 436.92023 649.24384 436.79868Q647.89594 436.644 646.1834 434.9315ZM646.94574 434.16913Q648.4373 435.66068 649.288 435.80432Q650.1388 435.94794 650.64703 435.43973Q651.1663 434.92044 651.0116 434.08075Q650.868 433.23 649.37646 431.73846Q647.87384 430.23584 647.0341 430.10327Q646.19446 429.94858 645.6641 430.4789Q645.1559 430.98715 645.2774 431.72742Q645.4432 432.66653 646.94574 434.16913ZM652.2159 431.24127L651.4646 430.48996L653.7627 428.19186L654.514 428.94318L652.2159 431.24127ZM659.7621 427.34113L659.0218 428.0814L654.27094 423.3305Q654.24884 423.86084 654.0721 424.56796Q653.89526 425.25296 653.6743 425.717L652.9562 424.99884Q653.27655 424.08182 653.3318 423.20898Q653.3871 422.31406 653.1882 421.71744L653.66327 421.24234L659.7621 427.34113ZM658.9113 422.20355Q657.82855 421.12082 657.3977 420.24796Q656.95575 419.36407 657.0331 418.57965Q657.12146 417.78415 657.78436 417.12125Q658.2705 416.6351 658.834 416.46936Q659.4085 416.2926 660.0272 416.42517Q660.6349 416.54672 661.2978 416.94446Q661.96075 417.3422 662.8667 418.24817Q663.9384 419.3199 664.3693 420.19272Q664.8113 421.0545 664.7339 421.86105Q664.65656 422.6455 663.9826 423.31946Q663.1098 424.1923 661.9718 424.07077Q660.62384 423.91608 658.9113 422.20355ZM659.6737 421.44122Q661.1652 422.93277 662.016 423.0764Q662.8667 423.22003 663.37494 422.7118Q663.8942 422.1925 663.73956 421.3528Q663.5959 420.50208 662.1044 419.01053Q660.60175 417.50793 659.7621 417.37534Q658.92236 417.22067 658.392 417.751Q657.8838 418.25925 658.0054 418.99948Q658.1711 419.9386 659.6737 421.44122ZM664.94385 418.51334L664.1925 417.76205L666.4906 415.46396L667.24194 416.21524L664.94385 418.51334ZM672.49 414.61322L671.74976 415.35345L666.99884 410.6026Q666.97675 411.13293 666.8 411.84003Q666.6232 412.52502 666.4022 412.98907L665.6841 412.27094Q666.0045 411.35388 666.05975 410.48105Q666.115 409.58612 665.9161 408.9895L666.3912 408.5144L672.49 414.61322ZM673.0314 410.86777L673.6832 410.01703Q674.4345 410.52524 675.0311 410.50314Q675.6167 410.47 676.05865 410.02808Q676.589 409.49774 676.589 408.76852Q676.589 408.03934 676.0476 407.49796Q675.53937 406.98972 674.8654 407.00076Q674.19147 406.98972 673.6722 407.509Q673.4623 407.71893 673.2302 408.12772L672.6557 407.3764Q672.7441 407.31012 672.78827 407.26593Q673.26337 406.79083 673.396 406.17212Q673.52856 405.5313 673.0093 405.01202Q672.60046 404.60324 672.0591 404.6143Q671.50665 404.6143 671.0647 405.0562Q670.63385 405.48712 670.61176 406.06165Q670.6007 406.62512 671.0647 407.24384L670.18085 407.86255Q669.5732 406.98972 669.6505 406.0948Q669.7168 405.1888 670.43494 404.47064Q670.9321 403.97348 671.57294 403.7746Q672.2027 403.56467 672.78827 403.7083Q673.3739 403.85193 673.7937 404.2718Q674.1804 404.65848 674.30194 405.19986Q674.4124 405.7302 674.19147 406.3268Q674.8433 405.918 675.53937 406.01746Q676.22437 406.10583 676.82104 406.70245Q677.6165 407.49796 677.5834 408.63596Q677.5613 409.7629 676.67737 410.6468Q675.8819 411.4423 674.87646 411.49753Q673.86 411.54172 673.0314 410.86777Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M660.6534 448.1345L661.3715 448.85263L657.34985 452.8743Q657.08466 452.60913 656.91895 452.26663Q656.66486 451.70316 656.5986 450.97397Q656.54333 450.2337 656.66486 449.0736Q656.8416 447.26166 656.70905 446.44406Q656.5875 445.61542 656.16766 445.19556Q655.7257 444.75363 655.107 444.77573Q654.47723 444.78677 653.969 445.295Q653.4276 445.8364 653.4276 446.4772Q653.4276 447.118 653.9911 447.70358L653.1514 448.3886Q652.36694 447.44946 652.4332 446.4993Q652.4995 445.52704 653.3724 444.6542Q654.2452 443.78134 655.23956 443.75925Q656.23395 443.73715 656.9521 444.45532Q657.3167 444.81992 657.51556 445.32816Q657.7145 445.8143 657.75867 446.56558Q657.80286 447.2948 657.6813 448.76425Q657.5708 450.00168 657.58185 450.4105Q657.5929 450.79718 657.6702 451.11758L660.6534 448.1345ZM659.4049 444.83096Q658.32214 443.7482 657.89124 442.87537Q657.4493 441.9915 657.5266 441.20703Q657.615 440.41156 658.27795 439.74863Q658.76404 439.2625 659.3275 439.09677Q659.90204 438.91998 660.52075 439.05258Q661.1285 439.1741 661.7914 439.57187Q662.4543 439.9696 663.3602 440.87558Q664.43195 441.9473 664.86285 442.82013Q665.3048 443.68192 665.2275 444.48846Q665.15015 445.27292 664.47614 445.94687Q663.60333 446.8197 662.46533 446.69818Q661.11743 446.5435 659.4049 444.83096ZM660.16724 444.0686Q661.65875 445.56018 662.5095 445.7038Q663.3602 445.84744 663.86847 445.3392Q664.38776 444.81992 664.2331 443.98022Q664.0895 443.1295 662.5979 441.63794Q661.0953 440.13535 660.2556 440.00275Q659.41595 439.84808 658.8856 440.37842Q658.3774 440.88663 658.4989 441.6269Q658.6646 442.566 660.16724 444.0686ZM670.55286 438.235L671.271 438.95316L667.2493 442.97482Q666.9842 442.70966 666.8184 442.36713Q666.56433 441.80368 666.49805 441.07446Q666.4428 440.3342 666.56433 439.1741Q666.7411 437.36215 666.6085 436.54456Q666.487 435.7159 666.06714 435.29608Q665.6252 434.85413 665.0065 434.87622Q664.3767 434.88727 663.86847 435.3955Q663.3271 435.9369 663.3271 436.5777Q663.3271 437.2185 663.89056 437.8041L663.0509 438.4891Q662.2665 437.55 662.33276 436.5998Q662.39905 435.62753 663.27185 434.7547Q664.1447 433.88187 665.1391 433.85977Q666.1334 433.83768 666.8516 434.55582Q667.2162 434.9204 667.4151 435.42865Q667.61395 435.9148 667.65814 436.6661Q667.70233 437.3953 667.5808 438.86475Q667.47034 440.1022 667.4814 440.511Q667.49243 440.89767 667.56976 441.21808L670.55286 438.235ZM669.3044 434.93146Q668.2216 433.84872 667.7907 432.9759Q667.34875 432.092 667.42615 431.30756Q667.5145 430.51205 668.1774 429.84915Q668.6636 429.363 669.22705 429.19727Q669.8016 429.0205 670.4203 429.15308Q671.02795 429.27463 671.69086 429.67236Q672.35376 430.0701 673.25977 430.9761Q674.3315 432.0478 674.7623 432.92062Q675.2043 433.7824 675.12695 434.58896Q675.0496 435.3734 674.3757 436.04736Q673.5028 436.9202 672.3648 436.79868Q671.0169 436.64398 669.3044 434.93146ZM670.0667 434.16913Q671.5583 435.66068 672.409 435.80432Q673.25977 435.94794 673.768 435.4397Q674.2873 434.9204 674.13257 434.08072Q673.98895 433.23 672.4974 431.73843Q670.9948 430.23584 670.1551 430.10327Q669.3154 429.94858 668.7851 430.4789Q668.27686 430.98715 668.3984 431.7274Q668.56415 432.66653 670.0667 434.16913ZM675.33685 431.24127L674.5856 430.48996L676.88367 428.19186L677.63495 428.94318L675.33685 431.24127ZM682.88306 427.34113L682.14276 428.08136L677.3919 423.3305Q677.3698 423.86084 677.19305 424.56793Q677.01624 425.25296 676.7953 425.71698L676.07715 424.99884Q676.3975 424.0818 676.45276 423.20895Q676.508 422.31403 676.30914 421.7174L676.78424 421.24234L682.88306 427.34113ZM682.0323 422.20355Q680.9495 421.1208 680.5186 420.24796Q680.0767 419.36407 680.15405 418.57962Q680.24243 417.78412 680.90533 417.12122Q681.3915 416.63507 681.95496 416.46936Q682.5295 416.29257 683.1482 416.42517Q683.75586 416.5467 684.41876 416.94446Q685.08167 417.3422 685.9877 418.24817Q687.0594 419.3199 687.4903 420.19272Q687.9322 421.0545 687.85486 421.86105Q687.7775 422.64548 687.1036 423.31946Q686.2307 424.1923 685.0927 424.07074Q683.7448 423.91608 682.0323 422.20355ZM682.7946 421.4412Q684.2862 422.93274 685.13696 423.0764Q685.9877 423.22 686.4959 422.7118Q687.0152 422.1925 686.86053 421.3528Q686.71686 420.50208 685.22534 419.01053Q683.7227 417.5079 682.88306 417.37534Q682.04333 417.22064 681.513 417.75098Q681.00476 418.25922 681.12634 418.99948Q681.29205 419.9386 682.7946 421.4412ZM688.0648 418.51334L687.3135 417.76202L689.6116 415.46393L690.3629 416.21524L688.0648 418.51334ZM695.61096 414.6132L694.8707 415.35345L690.1198 410.60257Q690.0977 411.1329 689.92096 411.84003Q689.7442 412.52502 689.5232 412.98907L688.80505 412.2709Q689.1255 411.35388 689.1807 410.48105Q689.23596 409.58612 689.03705 408.9895L689.51215 408.5144L695.61096 414.6132ZM696.4617 410.95615L697.1136 410.1717Q697.7102 410.59152 698.1963 410.56943Q698.68243 410.52524 699.0802 410.1275Q699.4227 409.78497 699.52216 409.3762Q699.6216 408.9453 699.5332 408.52545Q699.4338 408.09457 699.1023 407.54214Q698.75977 406.97867 698.2958 406.51462Q698.2405 406.45938 698.14105 406.35992Q698.2737 406.93445 698.11896 407.5532Q697.95325 408.16086 697.50024 408.61383Q696.7379 409.3762 695.67725 409.3541Q694.6055 409.32095 693.71063 408.42603Q692.78253 407.49792 692.76044 406.3931Q692.7494 405.2772 693.56696 404.4596Q694.1525 403.87402 694.9591 403.70828Q695.7767 403.53152 696.62744 403.87402Q697.4671 404.20547 698.583 405.32138Q699.7431 406.48148 700.18506 407.43164Q700.627 408.3597 700.48334 409.23257Q700.3397 410.08328 699.6768 410.74622Q698.9587 411.46436 698.11896 411.53067Q697.26825 411.5859 696.4617 410.95615ZM696.8263 405.22192Q696.1855 404.58112 695.46735 404.54797Q694.7602 404.50378 694.2741 404.98993Q693.7769 405.4871 693.81006 406.27155Q693.8432 407.0339 694.49506 407.68576Q695.0696 408.26028 695.7877 408.27133Q696.50586 408.28238 697.0141 407.77414Q697.5334 407.25488 697.50024 406.5588Q697.4671 405.86276 696.8263 405.22192Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M683.77435 448.13446L684.4925 448.85263L680.4708 452.8743Q680.2056 452.60913 680.0399 452.26663Q679.7858 451.70316 679.71954 450.97394Q679.66425 450.2337 679.7858 449.0736Q679.9626 447.26163 679.83 446.44403Q679.70844 445.6154 679.28864 445.19556Q678.8467 444.7536 678.22797 444.77573Q677.5982 444.78677 677.08997 445.29498Q676.5486 445.83636 676.5486 446.47717Q676.5486 447.118 677.11206 447.70358L676.27234 448.38858Q675.4879 447.44946 675.5542 446.4993Q675.6205 445.527 676.49335 444.65417Q677.36615 443.78134 678.36053 443.75925Q679.3549 443.73715 680.07306 444.4553Q680.4377 444.81992 680.63654 445.32812Q680.8354 445.81427 680.87964 446.56558Q680.9238 447.29477 680.80225 448.76422Q680.6918 450.00168 680.7028 450.41046Q680.71387 450.79718 680.7912 451.11758L683.77435 448.13446ZM682.5258 444.83096Q681.4431 443.7482 681.0122 442.87537Q680.57025 441.9915 680.6476 441.20703Q680.73596 440.41153 681.39886 439.74863Q681.885 439.26248 682.4485 439.09677Q683.023 438.91998 683.6417 439.05255Q684.2494 439.1741 684.91235 439.57184Q685.57526 439.9696 686.4812 440.87558Q687.5529 441.9473 687.9838 442.82013Q688.4258 443.68192 688.34845 444.48846Q688.27106 445.2729 687.5971 445.94687Q686.7243 446.8197 685.5863 446.69815Q684.23834 446.5435 682.5258 444.83096ZM683.2882 444.0686Q684.7797 445.56015 685.6305 445.7038Q686.4812 445.8474 686.98944 445.33917Q687.5087 444.81992 687.35406 443.98022Q687.21045 443.1295 685.7189 441.63794Q684.21625 440.1353 683.3766 440.00275Q682.53687 439.84805 682.0066 440.3784Q681.49835 440.88663 681.6199 441.62686Q681.7856 442.566 683.2882 444.0686ZM693.6738 438.235L694.39197 438.95312L690.3703 442.9748Q690.10516 442.70963 689.9394 442.36713Q689.6853 441.80365 689.619 441.07446Q689.5638 440.3342 689.6853 439.1741Q689.86206 437.36215 689.7295 436.54456Q689.608 435.7159 689.1881 435.29605Q688.74615 434.85413 688.12744 434.87622Q687.4977 434.88727 686.98944 435.3955Q686.44806 435.9369 686.44806 436.5777Q686.44806 437.2185 687.01154 437.80408L686.1719 438.4891Q685.3874 437.54996 685.45374 436.5998Q685.52 435.6275 686.3928 434.75467Q687.2657 433.88184 688.26 433.85974Q689.2544 433.83765 689.97253 434.55582Q690.33716 434.9204 690.536 435.42865Q690.7349 435.9148 690.7791 436.66608Q690.8233 437.3953 690.7018 438.86475Q690.5913 440.10217 690.60236 440.511Q690.6134 440.89767 690.69073 441.21808L693.6738 438.235ZM692.42535 434.93146Q691.3426 433.8487 690.9117 432.97586Q690.4697 432.09198 690.54706 431.30753Q690.6355 430.51205 691.2984 429.84912Q691.78455 429.363 692.348 429.19727Q692.92255 429.02048 693.54126 429.15308Q694.1489 429.2746 694.8118 429.67236Q695.47473 430.0701 696.38074 430.97607Q697.45245 432.0478 697.8833 432.92062Q698.32526 433.7824 698.2479 434.58896Q698.1706 435.3734 697.49664 436.04736Q696.6238 436.9202 695.4858 436.79868Q694.1379 436.64398 692.42535 434.93146ZM693.1877 434.1691Q694.67926 435.66068 695.52997 435.8043Q696.38074 435.94794 696.889 435.4397Q697.4082 434.9204 697.25354 434.08072Q697.1099 433.22998 695.61835 431.73843Q694.1158 430.23584 693.27606 430.10324Q692.4364 429.94858 691.90607 430.47888Q691.3978 430.98712 691.51935 431.7274Q691.68506 432.6665 693.1877 434.1691ZM698.4578 431.24124L697.70654 430.48996L700.00464 428.19183L700.7559 428.94315L698.4578 431.24124ZM706.004 427.3411L705.26373 428.08136L700.5129 423.33047Q700.4908 423.8608 700.314 424.56793Q700.1372 425.25293 699.91626 425.71698L699.1981 424.9988Q699.5185 424.0818 699.5737 423.20895Q699.62897 422.31403 699.4301 421.7174L699.9052 421.2423L706.004 427.3411ZM705.15326 422.20355Q704.0705 421.1208 703.6396 420.24796Q703.1977 419.36407 703.275 418.57962Q703.3634 417.78412 704.0263 417.12122Q704.51245 416.63507 705.0759 416.46933Q705.65045 416.29257 706.26917 416.42514Q706.87683 416.5467 707.53973 416.94443Q708.20264 417.34216 709.10864 418.24817Q710.18036 419.31985 710.61127 420.1927Q711.05316 421.05447 710.9758 421.86102Q710.8985 422.64548 710.22455 423.31943Q709.3517 424.19226 708.2137 424.07074Q706.8658 423.91608 705.15326 422.20355ZM705.9156 421.4412Q707.40717 422.93274 708.2579 423.0764Q709.10864 423.22 709.6169 422.71176Q710.13617 422.19247 709.98145 421.3528Q709.8378 420.50208 708.3463 419.0105Q706.8437 417.5079 706.004 417.37534Q705.1643 417.22064 704.634 417.75098Q704.12573 418.25922 704.24725 418.99945Q704.413 419.9386 705.9156 421.4412ZM711.1858 418.51334L710.43445 417.76202L712.73254 415.46393L713.4839 416.21524L711.1858 418.51334ZM719.12964 412.77914L719.84784 413.49728L715.8262 417.51895Q715.561 417.25378 715.39526 416.9113Q715.1412 416.3478 715.0748 415.6186Q715.0196 414.87836 715.1412 413.71826Q715.31793 411.90628 715.18536 411.0887Q715.0638 410.26007 714.644 409.8402Q714.202 409.3983 713.5833 409.42038Q712.95355 409.43143 712.4453 409.93967Q711.90393 410.48102 711.90393 411.12186Q711.90393 411.76266 712.4674 412.34824L711.6277 413.03323Q710.84326 412.09412 710.90955 411.14395Q710.9758 410.17166 711.8487 409.29883Q712.7215 408.426 713.7159 408.4039Q714.71027 408.3818 715.4284 409.09998Q715.793 409.46457 715.9919 409.9728Q716.19073 410.45892 716.2349 411.21024Q716.2791 411.93945 716.1576 413.4089Q716.0471 414.64633 716.05817 415.0551Q716.0692 415.44183 716.14655 415.76224L719.12964 412.77914ZM724.0794 407.82938L724.79755 408.54755L720.7759 412.5692Q720.51074 412.30405 720.34503 411.96155Q720.0909 411.39807 720.0246 410.66885Q719.96936 409.92862 720.0909 408.7685Q720.26764 406.95654 720.1351 406.13895Q720.01355 405.3103 719.5937 404.89047Q719.1518 404.44852 718.533 404.4706Q717.90326 404.48166 717.395 404.9899Q716.8537 405.53128 716.8537 406.1721Q716.8537 406.81293 717.4171 407.3985L716.57745 408.0835Q715.793 407.14438 715.8593 406.19418Q715.9256 405.22192 716.7984 404.3491Q717.67126 403.47626 718.66565 403.45416Q719.66 403.43207 720.3782 404.1502Q720.74274 404.51483 720.94165 405.02304Q721.1405 405.5092 721.1847 406.2605Q721.2289 406.9897 721.10736 408.45914Q720.9969 409.6966 721.00793 410.10538Q721.019 410.4921 721.0963 410.8125L724.0794 407.82938Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M237.0 70.5C237.0 69.947716 237.44771 69.5 238.0 69.5L248.0 69.5C248.55229 69.5 249.0 69.947716 249.0 70.5L249.0 80.5C249.0 81.052284 248.55229 81.5 248.0 81.5L238.0 81.5C237.44771 81.5 237.0 81.052284 237.0 80.5Z" fill="#38761d" fill-rule="nonzero"></path>
     <path d="M256.98438 80.5L260.82812 70.484375L262.25 70.484375L266.35938 80.5L264.84375 80.5L263.67188 77.46875L259.48438 77.46875L258.39062 80.5L256.98438 80.5ZM259.875 76.390625L263.26562 76.390625L262.21875 73.609375Q261.75 72.34375 261.51562 71.53125Q261.32812 72.5 260.96875 73.4375L259.875 76.390625ZM269.60938 79.40625L269.78125 80.484375Q269.26562 80.59375 268.85938 80.59375Q268.1875 80.59375 267.8125 80.390625Q267.45312 80.171875 267.29688 79.828125Q267.15625 79.484375 267.15625 78.375L267.15625 74.203125L266.25 74.203125L266.25 73.234375L267.15625 73.234375L267.15625 71.4375L268.375 70.703125L268.375 73.234375L269.60938 73.234375L269.60938 74.203125L268.375 74.203125L268.375 78.4375Q268.375 78.96875 268.4375 79.125Q268.5 79.265625 268.64062 79.359375Q268.79688 79.453125 269.0625 79.453125Q269.28125 79.453125 269.60938 79.40625ZM273.60938 79.40625L273.78125 80.484375Q273.26562 80.59375 272.85938 80.59375Q272.1875 80.59375 271.8125 80.390625Q271.45312 80.171875 271.29688 79.828125Q271.15625 79.484375 271.15625 78.375L271.15625 74.203125L270.25 74.203125L270.25 73.234375L271.15625 73.234375L271.15625 71.4375L272.375 70.703125L272.375 73.234375L273.60938 73.234375L273.60938 74.203125L272.375 74.203125L272.375 78.4375Q272.375 78.96875 272.4375 79.125Q272.5 79.265625 272.64062 79.359375Q272.79688 79.453125 273.0625 79.453125Q273.28125 79.453125 273.60938 79.40625ZM279.89062 78.15625L281.17188 78.3125Q280.85938 79.4375 280.04688 80.0625Q279.23438 80.671875 277.96875 80.671875Q276.375 80.671875 275.4375 79.6875Q274.51562 78.703125 274.51562 76.9375Q274.51562 75.09375 275.45312 74.09375Q276.40625 73.078125 277.90625 73.078125Q279.35938 73.078125 280.28125 74.078125Q281.20312 75.0625 281.20312 76.859375Q281.20312 76.96875 281.20312 77.1875L275.78125 77.1875Q275.85938 78.375 276.45312 79.015625Q277.0625 79.65625 277.98438 79.65625Q278.65625 79.65625 279.125 79.296875Q279.60938 78.9375 279.89062 78.15625ZM275.85938 76.171875L279.90625 76.171875Q279.82812 75.25 279.4375 74.796875Q278.85938 74.09375 277.92188 74.09375Q277.0625 74.09375 276.48438 74.65625Q275.92188 75.21875 275.85938 76.171875ZM282.92188 80.5L282.92188 73.234375L284.03125 73.234375L284.03125 74.265625Q284.82812 73.078125 286.34375 73.078125Q287.0 73.078125 287.54688 73.3125Q288.09375 73.546875 288.35938 73.9375Q288.64062 74.3125 288.75 74.84375Q288.82812 75.1875 288.82812 76.03125L288.82812 80.5L287.59375 80.5L287.59375 76.078125Q287.59375 75.328125 287.45312 74.96875Q287.3125 74.59375 286.9375 74.375Q286.57812 74.140625 286.07812 74.140625Q285.29688 74.140625 284.71875 74.640625Q284.15625 75.140625 284.15625 76.53125L284.15625 80.5L282.92188 80.5ZM295.64062 80.5L295.64062 79.578125Q294.9375 80.671875 293.60938 80.671875Q292.73438 80.671875 292.0 80.1875Q291.28125 79.703125 290.875 78.84375Q290.48438 77.984375 290.48438 76.875Q290.48438 75.796875 290.84375 74.90625Q291.20312 74.015625 291.92188 73.546875Q292.65625 73.078125 293.54688 73.078125Q294.20312 73.078125 294.71875 73.359375Q295.23438 73.625 295.54688 74.078125L295.54688 70.484375L296.78125 70.484375L296.78125 80.5L295.64062 80.5ZM291.75 76.875Q291.75 78.265625 292.32812 78.96875Q292.92188 79.65625 293.71875 79.65625Q294.53125 79.65625 295.09375 79.0Q295.65625 78.328125 295.65625 76.984375Q295.65625 75.484375 295.07812 74.796875Q294.5 74.09375 293.67188 74.09375Q292.84375 74.09375 292.29688 74.765625Q291.75 75.4375 291.75 76.875ZM303.65625 79.609375Q302.98438 80.1875 302.34375 80.4375Q301.71875 80.671875 300.98438 80.671875Q299.79688 80.671875 299.14062 80.09375Q298.5 79.5 298.5 78.578125Q298.5 78.046875 298.73438 77.609375Q298.98438 77.171875 299.375 76.90625Q299.78125 76.640625 300.26562 76.5Q300.625 76.40625 301.35938 76.3125Q302.85938 76.140625 303.5625 75.890625Q303.5625 75.640625 303.5625 75.578125Q303.5625 74.8125 303.21875 74.515625Q302.75 74.09375 301.8125 74.09375Q300.95312 74.09375 300.53125 74.40625Q300.125 74.703125 299.92188 75.46875L298.71875 75.3125Q298.875 74.53125 299.25 74.0625Q299.64062 73.59375 300.34375 73.34375Q301.0625 73.078125 302.0 73.078125Q302.92188 73.078125 303.5 73.296875Q304.07812 73.515625 304.34375 73.84375Q304.625 74.171875 304.73438 74.6875Q304.79688 75.0 304.79688 75.8125L304.79688 77.453125Q304.79688 79.171875 304.875 79.625Q304.95312 80.078125 305.1875 80.5L303.90625 80.5Q303.71875 80.109375 303.65625 79.609375ZM303.5625 76.859375Q302.89062 77.125 301.54688 77.328125Q300.79688 77.4375 300.46875 77.578125Q300.15625 77.703125 299.98438 77.96875Q299.8125 78.234375 299.8125 78.546875Q299.8125 79.046875 300.1875 79.375Q300.5625 79.703125 301.28125 79.703125Q302.0 79.703125 302.54688 79.390625Q303.09375 79.078125 303.35938 78.53125Q303.5625 78.125 303.5625 77.3125L303.5625 76.859375ZM306.92188 80.5L306.92188 73.234375L308.03125 73.234375L308.03125 74.265625Q308.82812 73.078125 310.34375 73.078125Q311.0 73.078125 311.54688 73.3125Q312.09375 73.546875 312.35938 73.9375Q312.64062 74.3125 312.75 74.84375Q312.82812 75.1875 312.82812 76.03125L312.82812 80.5L311.59375 80.5L311.59375 76.078125Q311.59375 75.328125 311.45312 74.96875Q311.3125 74.59375 310.9375 74.375Q310.57812 74.140625 310.07812 74.140625Q309.29688 74.140625 308.71875 74.640625Q308.15625 75.140625 308.15625 76.53125L308.15625 80.5L306.92188 80.5ZM319.65625 77.84375L320.875 78.0Q320.67188 79.25 319.84375 79.96875Q319.03125 80.671875 317.84375 80.671875Q316.35938 80.671875 315.45312 79.703125Q314.54688 78.71875 314.54688 76.890625Q314.54688 75.71875 314.9375 74.84375Q315.32812 73.953125 316.125 73.515625Q316.92188 73.078125 317.85938 73.078125Q319.03125 73.078125 319.78125 73.671875Q320.54688 74.265625 320.75 75.375L319.5625 75.5625Q319.39062 74.828125 318.95312 74.46875Q318.51562 74.09375 317.90625 74.09375Q316.96875 74.09375 316.39062 74.765625Q315.8125 75.421875 315.8125 76.859375Q315.8125 78.328125 316.375 79.0Q316.9375 79.65625 317.82812 79.65625Q318.5625 79.65625 319.04688 79.21875Q319.53125 78.765625 319.65625 77.84375ZM326.89062 78.15625L328.17188 78.3125Q327.85938 79.4375 327.04688 80.0625Q326.23438 80.671875 324.96875 80.671875Q323.375 80.671875 322.4375 79.6875Q321.51562 78.703125 321.51562 76.9375Q321.51562 75.09375 322.45312 74.09375Q323.40625 73.078125 324.90625 73.078125Q326.35938 73.078125 327.28125 74.078125Q328.20312 75.0625 328.20312 76.859375Q328.20312 76.96875 328.20312 77.1875L322.78125 77.1875Q322.85938 78.375 323.45312 79.015625Q324.0625 79.65625 324.98438 79.65625Q325.65625 79.65625 326.125 79.296875Q326.60938 78.9375 326.89062 78.15625ZM322.85938 76.171875L326.90625 76.171875Q326.82812 75.25 326.4375 74.796875Q325.85938 74.09375 324.92188 74.09375Q324.0625 74.09375 323.48438 74.65625Q322.92188 75.21875 322.85938 76.171875Z" fill="#38761d" fill-rule="nonzero"></path>
     <path d="M345.0 75.5L357.0 75.5" fill-rule="nonzero" stroke="#0000ff" stroke-linecap="butt" stroke-opacity="0.5019608" stroke-width="4.0"></path>
     <path d="M365.59375 77.859375L366.8125 77.6875Q367.03125 78.734375 367.53125 79.203125Q368.04688 79.65625 368.78125 79.65625Q369.65625 79.65625 370.25 79.0625Q370.84375 78.453125 370.84375 77.5625Q370.84375 76.71875 370.28125 76.171875Q369.73438 75.625 368.89062 75.625Q368.53125 75.625 368.01562 75.75L368.15625 74.671875Q368.28125 74.6875 368.34375 74.6875Q369.14062 74.6875 369.76562 74.28125Q370.39062 73.875 370.39062 73.015625Q370.39062 72.34375 369.9375 71.90625Q369.48438 71.453125 368.75 71.453125Q368.03125 71.453125 367.54688 71.90625Q367.07812 72.34375 366.9375 73.25L365.71875 73.03125Q365.9375 71.796875 366.73438 71.125Q367.53125 70.4375 368.71875 70.4375Q369.54688 70.4375 370.23438 70.796875Q370.92188 71.140625 371.28125 71.75Q371.65625 72.359375 371.65625 73.046875Q371.65625 73.6875 371.3125 74.21875Q370.96875 74.75 370.28125 75.078125Q371.17188 75.28125 371.65625 75.921875Q372.15625 76.5625 372.15625 77.546875Q372.15625 78.859375 371.1875 79.765625Q370.23438 80.671875 368.78125 80.671875Q367.45312 80.671875 366.57812 79.890625Q365.71875 79.109375 365.59375 77.859375ZM379.82812 80.5L377.17188 70.484375L378.53125 70.484375L380.0625 77.046875Q380.29688 78.078125 380.48438 79.09375Q380.85938 77.484375 380.9375 77.25L382.84375 70.484375L384.4375 70.484375L385.875 75.546875Q386.40625 77.4375 386.65625 79.09375Q386.84375 78.140625 387.15625 76.921875L388.71875 70.484375L390.0625 70.484375L387.3125 80.5L386.03125 80.5L383.92188 72.859375Q383.65625 71.90625 383.60938 71.6875Q383.45312 72.375 383.3125 72.859375L381.1875 80.5L379.82812 80.5ZM395.89062 78.15625L397.17188 78.3125Q396.85938 79.4375 396.04688 80.0625Q395.23438 80.671875 393.96875 80.671875Q392.375 80.671875 391.4375 79.6875Q390.51562 78.703125 390.51562 76.9375Q390.51562 75.09375 391.45312 74.09375Q392.40625 73.078125 393.90625 73.078125Q395.35938 73.078125 396.28125 74.078125Q397.20312 75.0625 397.20312 76.859375Q397.20312 76.96875 397.20312 77.1875L391.78125 77.1875Q391.85938 78.375 392.45312 79.015625Q393.0625 79.65625 393.98438 79.65625Q394.65625 79.65625 395.125 79.296875Q395.60938 78.9375 395.89062 78.15625ZM391.85938 76.171875L395.90625 76.171875Q395.82812 75.25 395.4375 74.796875Q394.85938 74.09375 393.92188 74.09375Q393.0625 74.09375 392.48438 74.65625Q391.92188 75.21875 391.85938 76.171875ZM403.89062 78.15625L405.17188 78.3125Q404.85938 79.4375 404.04688 80.0625Q403.23438 80.671875 401.96875 80.671875Q400.375 80.671875 399.4375 79.6875Q398.51562 78.703125 398.51562 76.9375Q398.51562 75.09375 399.45312 74.09375Q400.40625 73.078125 401.90625 73.078125Q403.35938 73.078125 404.28125 74.078125Q405.20312 75.0625 405.20312 76.859375Q405.20312 76.96875 405.20312 77.1875L399.78125 77.1875Q399.85938 78.375 400.45312 79.015625Q401.0625 79.65625 401.98438 79.65625Q402.65625 79.65625 403.125 79.296875Q403.60938 78.9375 403.89062 78.15625ZM399.85938 76.171875L403.90625 76.171875Q403.82812 75.25 403.4375 74.796875Q402.85938 74.09375 401.92188 74.09375Q401.0625 74.09375 400.48438 74.65625Q399.92188 75.21875 399.85938 76.171875ZM406.9375 80.5L406.9375 70.484375L408.15625 70.484375L408.15625 76.1875L411.07812 73.234375L412.67188 73.234375L409.89062 75.9375L412.95312 80.5L411.42188 80.5L409.03125 76.78125L408.15625 77.625L408.15625 80.5L406.9375 80.5ZM418.04688 80.5L418.04688 70.484375L420.03125 70.484375L422.40625 77.578125Q422.73438 78.5625 422.89062 79.0625Q423.0625 78.515625 423.42188 77.453125L425.8125 70.484375L427.60938 70.484375L427.60938 80.5L426.32812 80.5L426.32812 72.109375L423.40625 80.5L422.21875 80.5L419.3125 71.96875L419.3125 80.5L418.04688 80.5ZM429.46875 76.875Q429.46875 74.859375 430.59375 73.875Q431.51562 73.078125 432.875 73.078125Q434.35938 73.078125 435.3125 74.0625Q436.26562 75.03125 436.26562 76.765625Q436.26562 78.171875 435.84375 78.984375Q435.42188 79.78125 434.60938 80.234375Q433.8125 80.671875 432.875 80.671875Q431.34375 80.671875 430.40625 79.6875Q429.46875 78.703125 429.46875 76.875ZM430.73438 76.875Q430.73438 78.265625 431.34375 78.96875Q431.95312 79.65625 432.875 79.65625Q433.78125 79.65625 434.39062 78.953125Q435.0 78.25 435.0 76.828125Q435.0 75.484375 434.39062 74.796875Q433.78125 74.09375 432.875 74.09375Q431.95312 74.09375 431.34375 74.78125Q430.73438 75.46875 430.73438 76.875ZM439.9375 80.5L437.17188 73.234375L438.48438 73.234375L440.03125 77.59375Q440.28125 78.296875 440.5 79.046875Q440.67188 78.46875 440.95312 77.671875L442.57812 73.234375L443.84375 73.234375L441.09375 80.5L439.9375 80.5ZM444.9375 71.890625L444.9375 70.484375L446.15625 70.484375L446.15625 71.890625L444.9375 71.890625ZM444.9375 80.5L444.9375 73.234375L446.15625 73.234375L446.15625 80.5L444.9375 80.5ZM447.92188 80.5L447.92188 73.234375L449.03125 73.234375L449.03125 74.265625Q449.82812 73.078125 451.34375 73.078125Q452.0 73.078125 452.54688 73.3125Q453.09375 73.546875 453.35938 73.9375Q453.64062 74.3125 453.75 74.84375Q453.82812 75.1875 453.82812 76.03125L453.82812 80.5L452.59375 80.5L452.59375 76.078125Q452.59375 75.328125 452.45312 74.96875Q452.3125 74.59375 451.9375 74.375Q451.57812 74.140625 451.07812 74.140625Q450.29688 74.140625 449.71875 74.640625Q449.15625 75.140625 449.15625 76.53125L449.15625 80.5L447.92188 80.5ZM455.70312 81.109375L456.89062 81.28125Q456.96875 81.828125 457.3125 82.09375Q457.76562 82.421875 458.5625 82.421875Q459.42188 82.421875 459.875 82.078125Q460.34375 81.75 460.51562 81.125Q460.60938 80.75 460.59375 79.546875Q459.79688 80.5 458.59375 80.5Q457.09375 80.5 456.26562 79.421875Q455.45312 78.34375 455.45312 76.828125Q455.45312 75.796875 455.82812 74.921875Q456.20312 74.03125 456.90625 73.5625Q457.625 73.078125 458.59375 73.078125Q459.875 73.078125 460.71875 74.109375L460.71875 73.234375L461.84375 73.234375L461.84375 79.515625Q461.84375 81.21875 461.5 81.921875Q461.15625 82.625 460.40625 83.03125Q459.65625 83.453125 458.5625 83.453125Q457.26562 83.453125 456.46875 82.859375Q455.67188 82.28125 455.70312 81.109375ZM456.71875 76.734375Q456.71875 78.171875 457.28125 78.828125Q457.84375 79.484375 458.70312 79.484375Q459.54688 79.484375 460.125 78.828125Q460.70312 78.171875 460.70312 76.78125Q460.70312 75.453125 460.10938 74.78125Q459.51562 74.09375 458.6875 74.09375Q457.85938 74.09375 457.28125 74.765625Q456.71875 75.421875 456.71875 76.734375ZM466.98438 80.5L470.82812 70.484375L472.25 70.484375L476.35938 80.5L474.84375 80.5L473.67188 77.46875L469.48438 77.46875L468.39062 80.5L466.98438 80.5ZM469.875 76.390625L473.26562 76.390625L472.21875 73.609375Q471.75 72.34375 471.51562 71.53125Q471.32812 72.5 470.96875 73.4375L469.875 76.390625ZM478.9375 80.5L476.17188 73.234375L477.48438 73.234375L479.03125 77.59375Q479.28125 78.296875 479.5 79.046875Q479.67188 78.46875 479.95312 77.671875L481.57812 73.234375L482.84375 73.234375L480.09375 80.5L478.9375 80.5ZM488.89062 78.15625L490.17188 78.3125Q489.85938 79.4375 489.04688 80.0625Q488.23438 80.671875 486.96875 80.671875Q485.375 80.671875 484.4375 79.6875Q483.51562 78.703125 483.51562 76.9375Q483.51562 75.09375 484.45312 74.09375Q485.40625 73.078125 486.90625 73.078125Q488.35938 73.078125 489.28125 74.078125Q490.20312 75.0625 490.20312 76.859375Q490.20312 76.96875 490.20312 77.1875L484.78125 77.1875Q484.85938 78.375 485.45312 79.015625Q486.0625 79.65625 486.98438 79.65625Q487.65625 79.65625 488.125 79.296875Q488.60938 78.9375 488.89062 78.15625ZM484.85938 76.171875L488.90625 76.171875Q488.82812 75.25 488.4375 74.796875Q487.85938 74.09375 486.92188 74.09375Q486.0625 74.09375 485.48438 74.65625Q484.92188 75.21875 484.85938 76.171875ZM491.90625 80.5L491.90625 73.234375L493.01562 73.234375L493.01562 74.34375Q493.4375 73.5625 493.79688 73.328125Q494.15625 73.078125 494.59375 73.078125Q495.21875 73.078125 495.85938 73.46875L495.4375 74.609375Q494.98438 74.34375 494.53125 74.34375Q494.125 74.34375 493.79688 74.59375Q493.48438 74.828125 493.34375 75.265625Q493.14062 75.921875 493.14062 76.703125L493.14062 80.5L491.90625 80.5ZM501.65625 79.609375Q500.98438 80.1875 500.34375 80.4375Q499.71875 80.671875 498.98438 80.671875Q497.79688 80.671875 497.14062 80.09375Q496.5 79.5 496.5 78.578125Q496.5 78.046875 496.73438 77.609375Q496.98438 77.171875 497.375 76.90625Q497.78125 76.640625 498.26562 76.5Q498.625 76.40625 499.35938 76.3125Q500.85938 76.140625 501.5625 75.890625Q501.5625 75.640625 501.5625 75.578125Q501.5625 74.8125 501.21875 74.515625Q500.75 74.09375 499.8125 74.09375Q498.95312 74.09375 498.53125 74.40625Q498.125 74.703125 497.92188 75.46875L496.71875 75.3125Q496.875 74.53125 497.25 74.0625Q497.64062 73.59375 498.34375 73.34375Q499.0625 73.078125 500.0 73.078125Q500.92188 73.078125 501.5 73.296875Q502.07812 73.515625 502.34375 73.84375Q502.625 74.171875 502.73438 74.6875Q502.79688 75.0 502.79688 75.8125L502.79688 77.453125Q502.79688 79.171875 502.875 79.625Q502.95312 80.078125 503.1875 80.5L501.90625 80.5Q501.71875 80.109375 501.65625 79.609375ZM501.5625 76.859375Q500.89062 77.125 499.54688 77.328125Q498.79688 77.4375 498.46875 77.578125Q498.15625 77.703125 497.98438 77.96875Q497.8125 78.234375 497.8125 78.546875Q497.8125 79.046875 498.1875 79.375Q498.5625 79.703125 499.28125 79.703125Q500.0 79.703125 500.54688 79.390625Q501.09375 79.078125 501.35938 78.53125Q501.5625 78.125 501.5625 77.3125L501.5625 76.859375ZM504.70312 81.109375L505.89062 81.28125Q505.96875 81.828125 506.3125 82.09375Q506.76562 82.421875 507.5625 82.421875Q508.42188 82.421875 508.875 82.078125Q509.34375 81.75 509.51562 81.125Q509.60938 80.75 509.59375 79.546875Q508.79688 80.5 507.59375 80.5Q506.09375 80.5 505.26562 79.421875Q504.45312 78.34375 504.45312 76.828125Q504.45312 75.796875 504.82812 74.921875Q505.20312 74.03125 505.90625 73.5625Q506.625 73.078125 507.59375 73.078125Q508.875 73.078125 509.71875 74.109375L509.71875 73.234375L510.84375 73.234375L510.84375 79.515625Q510.84375 81.21875 510.5 81.921875Q510.15625 82.625 509.40625 83.03125Q508.65625 83.453125 507.5625 83.453125Q506.26562 83.453125 505.46875 82.859375Q504.67188 82.28125 504.70312 81.109375ZM505.71875 76.734375Q505.71875 78.171875 506.28125 78.828125Q506.84375 79.484375 507.70312 79.484375Q508.54688 79.484375 509.125 78.828125Q509.70312 78.171875 509.70312 76.78125Q509.70312 75.453125 509.10938 74.78125Q508.51562 74.09375 507.6875 74.09375Q506.85938 74.09375 506.28125 74.765625Q505.71875 75.421875 505.71875 76.734375ZM517.8906 78.15625L519.1719 78.3125Q518.8594 79.4375 518.0469 80.0625Q517.2344 80.671875 515.96875 80.671875Q514.375 80.671875 513.4375 79.6875Q512.5156 78.703125 512.5156 76.9375Q512.5156 75.09375 513.4531 74.09375Q514.40625 73.078125 515.90625 73.078125Q517.3594 73.078125 518.28125 74.078125Q519.2031 75.0625 519.2031 76.859375Q519.2031 76.96875 519.2031 77.1875L513.78125 77.1875Q513.8594 78.375 514.4531 79.015625Q515.0625 79.65625 515.9844 79.65625Q516.65625 79.65625 517.125 79.296875Q517.6094 78.9375 517.8906 78.15625ZM513.8594 76.171875L517.90625 76.171875Q517.8281 75.25 517.4375 74.796875Q516.8594 74.09375 515.9219 74.09375Q515.0625 74.09375 514.4844 74.65625Q513.9219 75.21875 513.8594 76.171875Z" fill="#0000ff" fill-rule="nonzero"></path>
     <path d="M164.07812 43.66875L164.07812 45.7L152.73438 45.7Q152.70312 44.934376 152.96875 44.23125Q153.40625 43.075 154.35938 41.95Q155.3125 40.825 157.125 39.340626Q159.92188 37.04375 160.90625 35.715626Q161.89062 34.371876 161.89062 33.16875Q161.89062 31.91875 160.98438 31.059376Q160.09375 30.2 158.65625 30.2Q157.14062 30.2 156.21875 31.121876Q155.3125 32.028126 155.29688 33.6375L153.125 33.41875Q153.34375 30.996876 154.79688 29.73125Q156.25 28.45 158.70312 28.45Q161.17188 28.45 162.60938 29.825Q164.0625 31.184376 164.0625 33.215626Q164.0625 34.246876 163.64062 35.246876Q163.21875 36.246876 162.23438 37.35625Q161.26562 38.45 158.98438 40.371876Q157.09375 41.965626 156.54688 42.528126Q156.01562 43.090626 155.65625 43.66875L164.07812 43.66875ZM166.0 37.23125Q166.0 34.184376 166.625 32.325Q167.25 30.465626 168.48438 29.465626Q169.71875 28.45 171.59375 28.45Q172.98438 28.45 174.01562 29.0125Q175.0625 29.559376 175.73438 30.60625Q176.42188 31.653126 176.8125 33.16875Q177.20312 34.66875 177.20312 37.23125Q177.20312 40.246876 176.57812 42.10625Q175.95312 43.965626 174.71875 44.98125Q173.48438 45.996876 171.59375 45.996876Q169.10938 45.996876 167.70312 44.215626Q166.0 42.059376 166.0 37.23125ZM168.17188 37.23125Q168.17188 41.45 169.15625 42.85625Q170.14062 44.2625 171.59375 44.2625Q173.04688 44.2625 174.03125 42.85625Q175.03125 41.45 175.03125 37.23125Q175.03125 32.98125 174.03125 31.590626Q173.04688 30.2 171.57812 30.2Q170.125 30.2 169.25 31.41875Q168.17188 32.996876 168.17188 37.23125ZM190.07812 43.66875L190.07812 45.7L178.73438 45.7Q178.70312 44.934376 178.96875 44.23125Q179.40625 43.075 180.35938 41.95Q181.3125 40.825 183.125 39.340626Q185.92188 37.04375 186.90625 35.715626Q187.89062 34.371876 187.89062 33.16875Q187.89062 31.91875 186.98438 31.059376Q186.09375 30.2 184.65625 30.2Q183.14062 30.2 182.21875 31.121876Q181.3125 32.028126 181.29688 33.6375L179.125 33.41875Q179.34375 30.996876 180.79688 29.73125Q182.25 28.45 184.70312 28.45Q187.17188 28.45 188.60938 29.825Q190.0625 31.184376 190.0625 33.215626Q190.0625 34.246876 189.64062 35.246876Q189.21875 36.246876 188.23438 37.35625Q187.26562 38.45 184.98438 40.371876Q183.09375 41.965626 182.54688 42.528126Q182.01562 43.090626 181.65625 43.66875L190.07812 43.66875ZM192.0 37.23125Q192.0 34.184376 192.625 32.325Q193.25 30.465626 194.48438 29.465626Q195.71875 28.45 197.59375 28.45Q198.98438 28.45 200.01562 29.0125Q201.0625 29.559376 201.73438 30.60625Q202.42188 31.653126 202.8125 33.16875Q203.20312 34.66875 203.20312 37.23125Q203.20312 40.246876 202.57812 42.10625Q201.95312 43.965626 200.71875 44.98125Q199.48438 45.996876 197.59375 45.996876Q195.10938 45.996876 193.70312 44.215626Q192.0 42.059376 192.0 37.23125ZM194.17188 37.23125Q194.17188 41.45 195.15625 42.85625Q196.14062 44.2625 197.59375 44.2625Q199.04688 44.2625 200.03125 42.85625Q201.03125 41.45 201.03125 37.23125Q201.03125 32.98125 200.03125 31.590626Q199.04688 30.2 197.57812 30.2Q196.125 30.2 195.25 31.41875Q194.17188 32.996876 194.17188 37.23125ZM212.76562 45.7L212.76562 28.5125L215.03125 28.5125L215.03125 43.66875L223.5 43.66875L223.5 45.7L212.76562 45.7ZM225.59375 30.95L225.59375 28.5125L227.70312 28.5125L227.70312 30.95L225.59375 30.95ZM225.59375 45.7L225.59375 33.246876L227.70312 33.246876L227.70312 45.7L225.59375 45.7ZM232.53125 45.7L230.57812 45.7L230.57812 28.5125L232.6875 28.5125L232.6875 34.653126Q234.01562 32.965626 236.09375 32.965626Q237.23438 32.965626 238.26562 33.434376Q239.29688 33.903126 239.95312 34.746876Q240.60938 35.575 240.98438 36.7625Q241.35938 37.934376 241.35938 39.29375Q241.35938 42.48125 239.78125 44.23125Q238.20312 45.98125 235.98438 45.98125Q233.78125 45.98125 232.53125 44.1375L232.53125 45.7ZM232.5 39.3875Q232.5 41.621876 233.10938 42.621876Q234.10938 44.246876 235.8125 44.246876Q237.1875 44.246876 238.1875 43.04375Q239.20312 41.840626 239.20312 39.465626Q239.20312 37.028126 238.23438 35.871876Q237.28125 34.7 235.90625 34.7Q234.51562 34.7 233.5 35.903126Q232.5 37.10625 232.5 39.3875ZM243.5625 45.7L243.5625 33.246876L245.45312 33.246876L245.45312 35.1375Q246.1875 33.809376 246.79688 33.3875Q247.42188 32.965626 248.15625 32.965626Q249.21875 32.965626 250.32812 33.653126L249.59375 35.60625Q248.82812 35.153126 248.04688 35.153126Q247.35938 35.153126 246.79688 35.575Q246.25 35.98125 246.01562 36.715626Q245.67188 37.840626 245.67188 39.184376L245.67188 45.7L243.5625 45.7ZM259.70312 44.16875Q258.53125 45.153126 257.4375 45.575Q256.35938 45.98125 255.125 45.98125Q253.07812 45.98125 251.96875 44.98125Q250.875 43.98125 250.875 42.41875Q250.875 41.496876 251.28125 40.746876Q251.70312 39.996876 252.375 39.54375Q253.04688 39.075 253.89062 38.840626Q254.51562 38.684376 255.76562 38.528126Q258.32812 38.215626 259.53125 37.79375Q259.54688 37.371876 259.54688 37.246876Q259.54688 35.965626 258.9375 35.434376Q258.14062 34.715626 256.54688 34.715626Q255.04688 34.715626 254.34375 35.246876Q253.64062 35.7625 253.29688 37.090626L251.23438 36.809376Q251.51562 35.48125 252.15625 34.66875Q252.79688 33.85625 254.01562 33.41875Q255.23438 32.965626 256.84375 32.965626Q258.4375 32.965626 259.4375 33.340626Q260.4375 33.715626 260.90625 34.29375Q261.375 34.85625 261.5625 35.73125Q261.65625 36.2625 261.65625 37.66875L261.65625 40.48125Q261.65625 43.41875 261.79688 44.2Q261.9375 44.98125 262.32812 45.7L260.125 45.7Q259.79688 45.04375 259.70312 44.16875ZM259.53125 39.45Q258.375 39.91875 256.07812 40.246876Q254.78125 40.434376 254.23438 40.66875Q253.70312 40.903126 253.40625 41.35625Q253.125 41.809376 253.125 42.35625Q253.125 43.2 253.75 43.7625Q254.39062 44.325 255.625 44.325Q256.84375 44.325 257.79688 43.79375Q258.75 43.2625 259.1875 42.340626Q259.53125 41.621876 259.53125 40.23125L259.53125 39.45ZM264.5625 45.7L264.5625 33.246876L266.45312 33.246876L266.45312 35.1375Q267.1875 33.809376 267.79688 33.3875Q268.42188 32.965626 269.15625 32.965626Q270.21875 32.965626 271.32812 33.653126L270.59375 35.60625Q269.82812 35.153126 269.04688 35.153126Q268.35938 35.153126 267.79688 35.575Q267.25 35.98125 267.01562 36.715626Q266.67188 37.840626 266.67188 39.184376L266.67188 45.7L264.5625 45.7ZM272.48438 50.496876L272.25 48.5125Q272.95312 48.7 273.46875 48.7Q274.17188 48.7 274.59375 48.465626Q275.01562 48.23125 275.28125 47.809376Q275.48438 47.496876 275.92188 46.246876Q275.98438 46.059376 276.10938 45.73125L271.39062 33.246876L273.65625 33.246876L276.25 40.465626Q276.75 41.825 277.15625 43.340626Q277.51562 41.8875 278.01562 40.5125L280.6875 33.246876L282.79688 33.246876L278.0625 45.91875Q277.29688 47.965626 276.875 48.73125Q276.3125 49.778126 275.57812 50.2625Q274.85938 50.746876 273.84375 50.746876Q273.23438 50.746876 272.48438 50.496876ZM291.90625 45.7L291.90625 28.5125L304.32812 28.5125L304.32812 30.54375L294.17188 30.54375L294.17188 35.809376L303.67188 35.809376L303.67188 37.825L294.17188 37.825L294.17188 43.66875L304.71875 43.66875L304.71875 45.7L291.90625 45.7ZM311.04688 45.7L306.3125 33.246876L308.53125 33.246876L311.20312 40.7Q311.64062 41.91875 312.0 43.215626Q312.28125 42.23125 312.78125 40.840626L315.54688 33.246876L317.71875 33.246876L313.01562 45.7L311.04688 45.7ZM318.79688 39.48125Q318.79688 36.0125 320.71875 34.35625Q322.32812 32.965626 324.64062 32.965626Q327.20312 32.965626 328.82812 34.653126Q330.45312 36.340626 330.45312 39.29375Q330.45312 41.7 329.73438 43.075Q329.01562 44.45 327.64062 45.215626Q326.26562 45.98125 324.64062 45.98125Q322.01562 45.98125 320.40625 44.309376Q318.79688 42.621876 318.79688 39.48125ZM320.96875 39.48125Q320.96875 41.871876 322.0 43.059376Q323.04688 44.246876 324.64062 44.246876Q326.20312 44.246876 327.25 43.059376Q328.29688 41.85625 328.29688 39.403126Q328.29688 37.090626 327.23438 35.903126Q326.1875 34.715626 324.64062 34.715626Q323.04688 34.715626 322.0 35.903126Q320.96875 37.090626 320.96875 39.48125ZM332.53125 45.7L332.53125 28.5125L334.64062 28.5125L334.64062 45.7L332.53125 45.7ZM345.73438 45.7L345.73438 43.871876Q344.28125 45.98125 341.79688 45.98125Q340.6875 45.98125 339.73438 45.559376Q338.78125 45.1375 338.3125 44.496876Q337.85938 43.85625 337.67188 42.934376Q337.53125 42.309376 337.53125 40.965626L337.53125 33.246876L339.64062 33.246876L339.64062 40.153126Q339.64062 41.809376 339.78125 42.3875Q339.96875 43.215626 340.60938 43.7Q341.26562 44.16875 342.21875 44.16875Q343.15625 44.16875 343.98438 43.684376Q344.82812 43.184376 345.17188 42.35625Q345.51562 41.5125 345.51562 39.91875L345.51562 33.246876L347.625 33.246876L347.625 45.7L345.73438 45.7ZM355.1875 43.809376L355.5 45.66875Q354.60938 45.871876 353.90625 45.871876Q352.75 45.871876 352.10938 45.5125Q351.48438 45.1375 351.21875 44.54375Q350.96875 43.95 350.96875 42.059376L350.96875 34.8875L349.42188 34.8875L349.42188 33.246876L350.96875 33.246876L350.96875 30.16875L353.0625 28.903126L353.0625 33.246876L355.1875 33.246876L355.1875 34.8875L353.0625 34.8875L353.0625 42.16875Q353.0625 43.075 353.17188 43.340626Q353.29688 43.590626 353.54688 43.746876Q353.79688 43.8875 354.26562 43.8875Q354.60938 43.8875 355.1875 43.809376ZM357.59375 30.95L357.59375 28.5125L359.70312 28.5125L359.70312 30.95L357.59375 30.95ZM357.59375 45.7L357.59375 33.246876L359.70312 33.246876L359.70312 45.7L357.59375 45.7ZM361.79688 39.48125Q361.79688 36.0125 363.71875 34.35625Q365.32812 32.965626 367.64062 32.965626Q370.20312 32.965626 371.82812 34.653126Q373.45312 36.340626 373.45312 39.29375Q373.45312 41.7 372.73438 43.075Q372.01562 44.45 370.64062 45.215626Q369.26562 45.98125 367.64062 45.98125Q365.01562 45.98125 363.40625 44.309376Q361.79688 42.621876 361.79688 39.48125ZM363.96875 39.48125Q363.96875 41.871876 365.0 43.059376Q366.04688 44.246876 367.64062 44.246876Q369.20312 44.246876 370.25 43.059376Q371.29688 41.85625 371.29688 39.403126Q371.29688 37.090626 370.23438 35.903126Q369.1875 34.715626 367.64062 34.715626Q366.04688 34.715626 365.0 35.903126Q363.96875 37.090626 363.96875 39.48125ZM375.57812 45.7L375.57812 33.246876L377.48438 33.246876L377.48438 35.028126Q378.85938 32.965626 381.4375 32.965626Q382.5625 32.965626 383.5 33.371876Q384.45312 33.778126 384.92188 34.434376Q385.39062 35.090626 385.57812 35.996876Q385.70312 36.575 385.70312 38.04375L385.70312 45.7L383.59375 45.7L383.59375 38.121876Q383.59375 36.840626 383.34375 36.2Q383.09375 35.559376 382.46875 35.184376Q381.84375 34.79375 381.0 34.79375Q379.65625 34.79375 378.67188 35.653126Q377.6875 36.5125 377.6875 38.903126L377.6875 45.7L375.57812 45.7ZM400.21875 45.7L400.21875 30.54375L394.5625 30.54375L394.5625 28.5125L408.1875 28.5125L408.1875 30.54375L402.5 30.54375L402.5 45.7L400.21875 45.7ZM419.10938 41.684376L421.28125 41.965626Q420.76562 43.871876 419.375 44.934376Q417.98438 45.98125 415.8125 45.98125Q413.07812 45.98125 411.46875 44.309376Q409.875 42.621876 409.875 39.575Q409.875 36.434376 411.48438 34.7Q413.10938 32.965626 415.6875 32.965626Q418.1875 32.965626 419.76562 34.66875Q421.35938 36.371876 421.35938 39.45Q421.35938 39.6375 421.34375 40.0125L412.0625 40.0125Q412.17188 42.059376 413.21875 43.153126Q414.26562 44.246876 415.82812 44.246876Q416.98438 44.246876 417.79688 43.6375Q418.625 43.028126 419.10938 41.684376ZM412.17188 38.278126L419.125 38.278126Q418.98438 36.715626 418.32812 35.91875Q417.32812 34.7 415.71875 34.7Q414.26562 34.7 413.26562 35.684376Q412.28125 36.653126 412.17188 38.278126ZM423.53125 45.7L423.53125 28.5125L425.64062 28.5125L425.64062 45.7L423.53125 45.7ZM437.10938 41.684376L439.28125 41.965626Q438.76562 43.871876 437.375 44.934376Q435.98438 45.98125 433.8125 45.98125Q431.07812 45.98125 429.46875 44.309376Q427.875 42.621876 427.875 39.575Q427.875 36.434376 429.48438 34.7Q431.10938 32.965626 433.6875 32.965626Q436.1875 32.965626 437.76562 34.66875Q439.35938 36.371876 439.35938 39.45Q439.35938 39.6375 439.34375 40.0125L430.0625 40.0125Q430.17188 42.059376 431.21875 43.153126Q432.26562 44.246876 433.82812 44.246876Q434.98438 44.246876 435.79688 43.6375Q436.625 43.028126 437.10938 41.684376ZM430.17188 38.278126L437.125 38.278126Q436.98438 36.715626 436.32812 35.91875Q435.32812 34.7 433.71875 34.7Q432.26562 34.7 431.26562 35.684376Q430.28125 36.653126 430.17188 38.278126ZM449.70312 41.1375L451.78125 41.403126Q451.4375 43.559376 450.03125 44.778126Q448.64062 45.98125 446.59375 45.98125Q444.04688 45.98125 442.48438 44.309376Q440.9375 42.6375 440.9375 39.528126Q440.9375 37.5125 441.60938 35.996876Q442.28125 34.48125 443.64062 33.73125Q445.0 32.965626 446.60938 32.965626Q448.64062 32.965626 449.92188 33.996876Q451.21875 35.028126 451.57812 36.903126L449.53125 37.23125Q449.23438 35.965626 448.48438 35.340626Q447.75 34.7 446.6875 34.7Q445.09375 34.7 444.09375 35.85625Q443.10938 36.996876 443.10938 39.465626Q443.10938 41.965626 444.0625 43.10625Q445.03125 44.246876 446.57812 44.246876Q447.8125 44.246876 448.64062 43.48125Q449.48438 42.715626 449.70312 41.1375ZM452.79688 39.48125Q452.79688 36.0125 454.71875 34.35625Q456.32812 32.965626 458.64062 32.965626Q461.20312 32.965626 462.82812 34.653126Q464.45312 36.340626 464.45312 39.29375Q464.45312 41.7 463.73438 43.075Q463.01562 44.45 461.64062 45.215626Q460.26562 45.98125 458.64062 45.98125Q456.01562 45.98125 454.40625 44.309376Q452.79688 42.621876 452.79688 39.48125ZM454.96875 39.48125Q454.96875 41.871876 456.0 43.059376Q457.04688 44.246876 458.64062 44.246876Q460.20312 44.246876 461.25 43.059376Q462.29688 41.85625 462.29688 39.403126Q462.29688 37.090626 461.23438 35.903126Q460.1875 34.715626 458.64062 34.715626Q457.04688 34.715626 456.0 35.903126Q454.96875 37.090626 454.96875 39.48125ZM466.57812 45.7L466.57812 33.246876L468.48438 33.246876L468.48438 35.028126Q469.85938 32.965626 472.4375 32.965626Q473.5625 32.965626 474.5 33.371876Q475.45312 33.778126 475.92188 34.434376Q476.39062 35.090626 476.57812 35.996876Q476.70312 36.575 476.70312 38.04375L476.70312 45.7L474.59375 45.7L474.59375 38.121876Q474.59375 36.840626 474.34375 36.2Q474.09375 35.559376 473.46875 35.184376Q472.84375 34.79375 472.0 34.79375Q470.65625 34.79375 469.67188 35.653126Q468.6875 36.5125 468.6875 38.903126L468.6875 45.7L466.57812 45.7ZM484.96875 45.7L491.5625 28.5125L494.01562 28.5125L501.04688 45.7L498.45312 45.7L496.45312 40.496876L489.26562 40.496876L487.375 45.7L484.96875 45.7ZM489.92188 38.6375L495.75 38.6375L493.95312 33.8875Q493.14062 31.715626 492.73438 30.325Q492.40625 31.98125 491.8125 33.60625L489.92188 38.6375ZM507.1875 43.809376L507.5 45.66875Q506.60938 45.871876 505.90625 45.871876Q504.75 45.871876 504.10938 45.5125Q503.48438 45.1375 503.21875 44.54375Q502.96875 43.95 502.96875 42.059376L502.96875 34.8875L501.42188 34.8875L501.42188 33.246876L502.96875 33.246876L502.96875 30.16875L505.0625 28.903126L505.0625 33.246876L507.1875 33.246876L507.1875 34.8875L505.0625 34.8875L505.0625 42.16875Q505.0625 43.075 505.17188 43.340626Q505.29688 43.590626 505.54688 43.746876Q505.79688 43.8875 506.26562 43.8875Q506.60938 43.8875 507.1875 43.809376ZM514.1875 43.809376L514.5 45.66875Q513.6094 45.871876 512.90625 45.871876Q511.75 45.871876 511.10938 45.5125Q510.48438 45.1375 510.21875 44.54375Q509.96875 43.95 509.96875 42.059376L509.96875 34.8875L508.42188 34.8875L508.42188 33.246876L509.96875 33.246876L509.96875 30.16875L512.0625 28.903126L512.0625 33.246876L514.1875 33.246876L514.1875 34.8875L512.0625 34.8875L512.0625 42.16875Q512.0625 43.075 512.1719 43.340626Q512.2969 43.590626 512.5469 43.746876Q512.7969 43.8875 513.2656 43.8875Q513.6094 43.8875 514.1875 43.809376ZM525.1094 41.684376L527.28125 41.965626Q526.7656 43.871876 525.375 44.934376Q523.9844 45.98125 521.8125 45.98125Q519.0781 45.98125 517.46875 44.309376Q515.875 42.621876 515.875 39.575Q515.875 36.434376 517.4844 34.7Q519.1094 32.965626 521.6875 32.965626Q524.1875 32.965626 525.7656 34.66875Q527.3594 36.371876 527.3594 39.45Q527.3594 39.6375 527.34375 40.0125L518.0625 40.0125Q518.1719 42.059376 519.21875 43.153126Q520.2656 44.246876 521.8281 44.246876Q522.9844 44.246876 523.7969 43.6375Q524.625 43.028126 525.1094 41.684376ZM518.1719 38.278126L525.125 38.278126Q524.9844 36.715626 524.3281 35.91875Q523.3281 34.7 521.71875 34.7Q520.2656 34.7 519.2656 35.684376Q518.28125 36.653126 518.1719 38.278126ZM529.5781 45.7L529.5781 33.246876L531.4844 33.246876L531.4844 35.028126Q532.8594 32.965626 535.4375 32.965626Q536.5625 32.965626 537.5 33.371876Q538.4531 33.778126 538.9219 34.434376Q539.3906 35.090626 539.5781 35.996876Q539.7031 36.575 539.7031 38.04375L539.7031 45.7L537.59375 45.7L537.59375 38.121876Q537.59375 36.840626 537.34375 36.2Q537.09375 35.559376 536.46875 35.184376Q535.84375 34.79375 535.0 34.79375Q533.65625 34.79375 532.6719 35.653126Q531.6875 36.5125 531.6875 38.903126L531.6875 45.7L529.5781 45.7ZM550.65625 45.7L550.65625 44.121876Q549.46875 45.98125 547.1719 45.98125Q545.6875 45.98125 544.4375 45.16875Q543.1875 44.340626 542.5 42.871876Q541.8281 41.403126 541.8281 39.48125Q541.8281 37.621876 542.4375 36.10625Q543.0625 34.590626 544.2969 33.778126Q545.5469 32.965626 547.0781 32.965626Q548.2031 32.965626 549.0781 33.45Q549.96875 33.91875 550.5156 34.684376L550.5156 28.5125L552.6094 28.5125L552.6094 45.7L550.65625 45.7ZM543.9844 39.48125Q543.9844 41.871876 544.9844 43.059376Q546.0 44.246876 547.375 44.246876Q548.7656 44.246876 549.71875 43.121876Q550.6875 41.98125 550.6875 39.66875Q550.6875 37.10625 549.7031 35.91875Q548.71875 34.715626 547.28125 34.715626Q545.875 34.715626 544.9219 35.871876Q543.9844 37.0125 543.9844 39.48125ZM563.7031 44.16875Q562.53125 45.153126 561.4375 45.575Q560.3594 45.98125 559.125 45.98125Q557.0781 45.98125 555.96875 44.98125Q554.875 43.98125 554.875 42.41875Q554.875 41.496876 555.28125 40.746876Q555.7031 39.996876 556.375 39.54375Q557.0469 39.075 557.8906 38.840626Q558.5156 38.684376 559.7656 38.528126Q562.3281 38.215626 563.53125 37.79375Q563.5469 37.371876 563.5469 37.246876Q563.5469 35.965626 562.9375 35.434376Q562.1406 34.715626 560.5469 34.715626Q559.0469 34.715626 558.34375 35.246876Q557.6406 35.7625 557.2969 37.090626L555.2344 36.809376Q555.5156 35.48125 556.15625 34.66875Q556.7969 33.85625 558.0156 33.41875Q559.2344 32.965626 560.84375 32.965626Q562.4375 32.965626 563.4375 33.340626Q564.4375 33.715626 564.90625 34.29375Q565.375 34.85625 565.5625 35.73125Q565.65625 36.2625 565.65625 37.66875L565.65625 40.48125Q565.65625 43.41875 565.7969 44.2Q565.9375 44.98125 566.3281 45.7L564.125 45.7Q563.7969 45.04375 563.7031 44.16875ZM563.53125 39.45Q562.375 39.91875 560.0781 40.246876Q558.78125 40.434376 558.2344 40.66875Q557.7031 40.903126 557.40625 41.35625Q557.125 41.809376 557.125 42.35625Q557.125 43.2 557.75 43.7625Q558.3906 44.325 559.625 44.325Q560.84375 44.325 561.7969 43.79375Q562.75 43.2625 563.1875 42.340626Q563.53125 41.621876 563.53125 40.23125L563.53125 39.45ZM568.5781 45.7L568.5781 33.246876L570.4844 33.246876L570.4844 35.028126Q571.8594 32.965626 574.4375 32.965626Q575.5625 32.965626 576.5 33.371876Q577.4531 33.778126 577.9219 34.434376Q578.3906 35.090626 578.5781 35.996876Q578.7031 36.575 578.7031 38.04375L578.7031 45.7L576.59375 45.7L576.59375 38.121876Q576.59375 36.840626 576.34375 36.2Q576.09375 35.559376 575.46875 35.184376Q574.84375 34.79375 574.0 34.79375Q572.65625 34.79375 571.6719 35.653126Q570.6875 36.5125 570.6875 38.903126L570.6875 45.7L568.5781 45.7ZM589.7031 41.1375L591.78125 41.403126Q591.4375 43.559376 590.03125 44.778126Q588.6406 45.98125 586.59375 45.98125Q584.0469 45.98125 582.4844 44.309376Q580.9375 42.6375 580.9375 39.528126Q580.9375 37.5125 581.6094 35.996876Q582.28125 34.48125 583.6406 33.73125Q585.0 32.965626 586.6094 32.965626Q588.6406 32.965626 589.9219 33.996876Q591.21875 35.028126 591.5781 36.903126L589.53125 37.23125Q589.2344 35.965626 588.4844 35.340626Q587.75 34.7 586.6875 34.7Q585.09375 34.7 584.09375 35.85625Q583.1094 36.996876 583.1094 39.465626Q583.1094 41.965626 584.0625 43.10625Q585.03125 44.246876 586.5781 44.246876Q587.8125 44.246876 588.6406 43.48125Q589.4844 42.715626 589.7031 41.1375ZM602.1094 41.684376L604.28125 41.965626Q603.7656 43.871876 602.375 44.934376Q600.9844 45.98125 598.8125 45.98125Q596.0781 45.98125 594.46875 44.309376Q592.875 42.621876 592.875 39.575Q592.875 36.434376 594.4844 34.7Q596.1094 32.965626 598.6875 32.965626Q601.1875 32.965626 602.7656 34.66875Q604.3594 36.371876 604.3594 39.45Q604.3594 39.6375 604.34375 40.0125L595.0625 40.0125Q595.1719 42.059376 596.21875 43.153126Q597.2656 44.246876 598.8281 44.246876Q599.9844 44.246876 600.7969 43.6375Q601.625 43.028126 602.1094 41.684376ZM595.1719 38.278126L602.125 38.278126Q601.9844 36.715626 601.3281 35.91875Q600.3281 34.7 598.71875 34.7Q597.2656 34.7 596.2656 35.684376Q595.28125 36.653126 595.1719 38.278126Z" fill="#000000" fill-rule="nonzero"></path>
    </svg>
    <svg fill="none" height="435" stroke="none" stroke-linecap="square" stroke-miterlimit="10" version="1.1" viewBox="0.0 0.0 704.0 435.0" width="704" xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
     <path d="M0 0L704.0 0L704.0 435.0L0 435.0L0 0Z" fill="#ffffff" fill-opacity="0.0" fill-rule="nonzero"></path>
     <path d="M100.5 345.5L682.5 345.5" fill-rule="nonzero" stroke="#333333" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M100.5 290.5L682.5 290.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M100.5 236.5L682.5 236.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M100.5 181.5L682.5 181.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M100.5 126.5L682.5 126.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <path d="M100.5 72.5L682.5 72.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
     <clipPath id="id_0①">
      <path clip-rule="nonzero" d="M100.75 72.25L682.25 72.25L682.25 345.25L100.75 345.25L100.75 72.25Z"></path>
     </clipPath>
     <path clip-path="url(#id_0)" d="M120.0 345.0L102.0 345.0L102.0 96.0C102.0 94.89543 102.89543 94.0 104.0 94.0L118.0 94.0C119.10457 94.0 120.0 94.89543 120.0 96.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M120.0 345.0L102.0 345.0L102.0 96.0C102.0 94.89543 102.89543 94.0 104.0 94.0L118.0 94.0C119.10457 94.0 120.0 94.89543 120.0 96.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M140.0 345.0L122.0 345.0L122.0 265.0C122.0 263.89542 122.89543 263.0 124.0 263.0L138.0 263.0C139.10457 263.0 140.0 263.89542 140.0 265.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M140.0 345.0L122.0 345.0L122.0 265.0C122.0 263.89542 122.89543 263.0 124.0 263.0L138.0 263.0C139.10457 263.0 140.0 263.89542 140.0 265.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M160.0 345.0L142.0 345.0L142.0 271.0C142.0 269.89542 142.89543 269.0 144.0 269.0L158.0 269.0C159.10457 269.0 160.0 269.89542 160.0 271.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M160.0 345.0L142.0 345.0L142.0 271.0C142.0 269.89542 142.89543 269.0 144.0 269.0L158.0 269.0C159.10457 269.0 160.0 269.89542 160.0 271.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M180.0 345.0L162.0 345.0L162.0 314.0C162.0 312.89542 162.89543 312.0 164.0 312.0L178.0 312.0C179.10457 312.0 180.0 312.89542 180.0 314.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M180.0 345.0L162.0 345.0L162.0 314.0C162.0 312.89542 162.89543 312.0 164.0 312.0L178.0 312.0C179.10457 312.0 180.0 312.89542 180.0 314.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M200.0 345.0L182.0 345.0L182.0 325.0C182.0 323.89542 182.89543 323.0 184.0 323.0L198.0 323.0C199.10457 323.0 200.0 323.89542 200.0 325.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M200.0 345.0L182.0 345.0L182.0 325.0C182.0 323.89542 182.89543 323.0 184.0 323.0L198.0 323.0C199.10457 323.0 200.0 323.89542 200.0 325.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M220.0 345.0L202.0 345.0L202.0 336.0C202.0 334.89542 202.89543 334.0 204.0 334.0L218.0 334.0C219.10457 334.0 220.0 334.89542 220.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M220.0 345.0L202.0 345.0L202.0 336.0C202.0 334.89542 202.89543 334.0 204.0 334.0L218.0 334.0C219.10457 334.0 220.0 334.89542 220.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M240.0 345.0L222.0 345.0L222.0 320.0C222.0 318.89542 222.89543 318.0 224.0 318.0L238.0 318.0C239.10457 318.0 240.0 318.89542 240.0 320.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M240.0 345.0L222.0 345.0L222.0 320.0C222.0 318.89542 222.89543 318.0 224.0 318.0L238.0 318.0C239.10457 318.0 240.0 318.89542 240.0 320.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M260.0 345.0L242.0 345.0L242.0 342.0C242.0 340.89542 242.89543 340.0 244.0 340.0L258.0 340.0C259.10458 340.0 260.0 340.89542 260.0 342.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M260.0 345.0L242.0 345.0L242.0 342.0C242.0 340.89542 242.89543 340.0 244.0 340.0L258.0 340.0C259.10458 340.0 260.0 340.89542 260.0 342.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M280.0 345.0L262.0 345.0L262.0 336.0C262.0 334.89542 262.89542 334.0 264.0 334.0L278.0 334.0C279.10458 334.0 280.0 334.89542 280.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M280.0 345.0L262.0 345.0L262.0 336.0C262.0 334.89542 262.89542 334.0 264.0 334.0L278.0 334.0C279.10458 334.0 280.0 334.89542 280.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M300.0 345.0L282.0 345.0L282.0 331.0C282.0 329.89542 282.89542 329.0 284.0 329.0L298.0 329.0C299.10458 329.0 300.0 329.89542 300.0 331.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M300.0 345.0L282.0 345.0L282.0 331.0C282.0 329.89542 282.89542 329.0 284.0 329.0L298.0 329.0C299.10458 329.0 300.0 329.89542 300.0 331.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M320.0 345.0L302.0 345.0L302.0 336.0C302.0 334.89542 302.89542 334.0 304.0 334.0L318.0 334.0C319.10458 334.0 320.0 334.89542 320.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M320.0 345.0L302.0 345.0L302.0 336.0C302.0 334.89542 302.89542 334.0 304.0 334.0L318.0 334.0C319.10458 334.0 320.0 334.89542 320.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M340.0 345.0L322.0 345.0L322.0 320.0C322.0 318.89542 322.89542 318.0 324.0 318.0L338.0 318.0C339.10458 318.0 340.0 318.89542 340.0 320.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M340.0 345.0L322.0 345.0L322.0 320.0C322.0 318.89542 322.89542 318.0 324.0 318.0L338.0 318.0C339.10458 318.0 340.0 318.89542 340.0 320.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M360.0 345.0L342.0 345.0L342.0 336.0C342.0 334.89542 342.89542 334.0 344.0 334.0L358.0 334.0C359.10458 334.0 360.0 334.89542 360.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M360.0 345.0L342.0 345.0L342.0 336.0C342.0 334.89542 342.89542 334.0 344.0 334.0L358.0 334.0C359.10458 334.0 360.0 334.89542 360.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M380.0 345.0L362.0 345.0L362.0 342.0C362.0 340.89542 362.89542 340.0 364.0 340.0L378.0 340.0C379.10458 340.0 380.0 340.89542 380.0 342.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M380.0 345.0L362.0 345.0L362.0 342.0C362.0 340.89542 362.89542 340.0 364.0 340.0L378.0 340.0C379.10458 340.0 380.0 340.89542 380.0 342.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M401.0 345.0L383.0 345.0L383.0 336.0C383.0 334.89542 383.89542 334.0 385.0 334.0L399.0 334.0C400.10458 334.0 401.0 334.89542 401.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M401.0 345.0L383.0 345.0L383.0 336.0C383.0 334.89542 383.89542 334.0 385.0 334.0L399.0 334.0C400.10458 334.0 401.0 334.89542 401.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M421.0 345.0L403.0 345.0L403.0 336.0C403.0 334.89542 403.89542 334.0 405.0 334.0L419.0 334.0C420.10458 334.0 421.0 334.89542 421.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M421.0 345.0L403.0 345.0L403.0 336.0C403.0 334.89542 403.89542 334.0 405.0 334.0L419.0 334.0C420.10458 334.0 421.0 334.89542 421.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M441.0 345.0L423.0 345.0L423.0 342.0C423.0 340.89542 423.89542 340.0 425.0 340.0L439.0 340.0C440.10458 340.0 441.0 340.89542 441.0 342.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M441.0 345.0L423.0 345.0L423.0 342.0C423.0 340.89542 423.89542 340.0 425.0 340.0L439.0 340.0C440.10458 340.0 441.0 340.89542 441.0 342.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M461.0 345.0L443.0 345.0L443.0 345.0L461.0 345.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M461.0 345.0L443.0 345.0L443.0 345.0L461.0 345.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M481.0 345.0L463.0 345.0L463.0 336.0C463.0 334.89542 463.89542 334.0 465.0 334.0L479.0 334.0C480.10458 334.0 481.0 334.89542 481.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M481.0 345.0L463.0 345.0L463.0 336.0C463.0 334.89542 463.89542 334.0 465.0 334.0L479.0 334.0C480.10458 334.0 481.0 334.89542 481.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M501.0 345.0L483.0 345.0L483.0 345.0L501.0 345.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M501.0 345.0L483.0 345.0L483.0 345.0L501.0 345.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M521.0 345.0L503.0 345.0L503.0 336.0C503.0 334.89542 503.89542 334.0 505.0 334.0L519.0 334.0C520.10455 334.0 521.0 334.89542 521.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M521.0 345.0L503.0 345.0L503.0 336.0C503.0 334.89542 503.89542 334.0 505.0 334.0L519.0 334.0C520.10455 334.0 521.0 334.89542 521.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M541.0 345.0L523.0 345.0L523.0 325.0C523.0 323.89542 523.89545 323.0 525.0 323.0L539.0 323.0C540.10455 323.0 541.0 323.89542 541.0 325.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M541.0 345.0L523.0 345.0L523.0 325.0C523.0 323.89542 523.89545 323.0 525.0 323.0L539.0 323.0C540.10455 323.0 541.0 323.89542 541.0 325.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M561.0 345.0L543.0 345.0L543.0 331.0C543.0 329.89542 543.89545 329.0 545.0 329.0L559.0 329.0C560.10455 329.0 561.0 329.89542 561.0 331.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M561.0 345.0L543.0 345.0L543.0 331.0C543.0 329.89542 543.89545 329.0 545.0 329.0L559.0 329.0C560.10455 329.0 561.0 329.89542 561.0 331.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M581.0 345.0L563.0 345.0L563.0 342.0C563.0 340.89542 563.89545 340.0 565.0 340.0L579.0 340.0C580.10455 340.0 581.0 340.89542 581.0 342.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M581.0 345.0L563.0 345.0L563.0 342.0C563.0 340.89542 563.89545 340.0 565.0 340.0L579.0 340.0C580.10455 340.0 581.0 340.89542 581.0 342.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M601.0 345.0L583.0 345.0L583.0 345.0L601.0 345.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M601.0 345.0L583.0 345.0L583.0 345.0L601.0 345.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M621.0 345.0L603.0 345.0L603.0 336.0C603.0 334.89542 603.89545 334.0 605.0 334.0L619.0 334.0C620.10455 334.0 621.0 334.89542 621.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M621.0 345.0L603.0 345.0L603.0 336.0C603.0 334.89542 603.89545 334.0 605.0 334.0L619.0 334.0C620.10455 334.0 621.0 334.89542 621.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M641.0 345.0L623.0 345.0L623.0 342.0C623.0 340.89542 623.89545 340.0 625.0 340.0L639.0 340.0C640.10455 340.0 641.0 340.89542 641.0 342.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M641.0 345.0L623.0 345.0L623.0 342.0C623.0 340.89542 623.89545 340.0 625.0 340.0L639.0 340.0C640.10455 340.0 641.0 340.89542 641.0 342.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M661.0 345.0L643.0 345.0L643.0 336.0C643.0 334.89542 643.89545 334.0 645.0 334.0L659.0 334.0C660.10455 334.0 661.0 334.89542 661.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M661.0 345.0L643.0 345.0L643.0 336.0C643.0 334.89542 643.89545 334.0 645.0 334.0L659.0 334.0C660.10455 334.0 661.0 334.89542 661.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path clip-path="url(#id_0)" d="M681.0 345.0L663.0 345.0L663.0 336.0C663.0 334.89542 663.89545 334.0 665.0 334.0L679.0 334.0C680.10455 334.0 681.0 334.89542 681.0 336.0Z" fill-rule="nonzero" stroke="#000000" stroke-linecap="butt" stroke-opacity="0.0" stroke-width="2.0"></path>
     <path clip-path="url(#id_0)" d="M681.0 345.0L663.0 345.0L663.0 336.0C663.0 334.89542 663.89545 334.0 665.0 334.0L679.0 334.0C680.10455 334.0 681.0 334.89542 681.0 336.0Z" fill="#38761d" fill-rule="nonzero"></path>
     <path d="M321.17188 409.25L321.17188 397.89062L316.92188 397.89062L316.92188 396.35938L327.14062 396.35938L327.14062 397.89062L322.875 397.89062L322.875 409.25L321.17188 409.25ZM335.07812 406.25L336.71875 406.45312Q336.32812 407.875 335.28125 408.67188Q334.23438 409.46875 332.60938 409.46875Q330.5625 409.46875 329.35938 408.20312Q328.15625 406.9375 328.15625 404.65625Q328.15625 402.3125 329.35938 401.01562Q330.57812 399.70312 332.51562 399.70312Q334.39062 399.70312 335.57812 400.98438Q336.76562 402.25 336.76562 404.5625Q336.76562 404.70312 336.75 404.98438L329.79688 404.98438Q329.875 406.53125 330.65625 407.34375Q331.45312 408.15625 332.60938 408.15625Q333.48438 408.15625 334.09375 407.70312Q334.71875 407.25 335.07812 406.25ZM329.875 403.6875L335.09375 403.6875Q334.98438 402.51562 334.5 401.92188Q333.73438 401.0 332.53125 401.0Q331.45312 401.0 330.70312 401.73438Q329.96875 402.46875 329.875 403.6875ZM338.65625 409.25L338.65625 396.35938L340.23438 396.35938L340.23438 409.25L338.65625 409.25ZM349.07812 406.25L350.71875 406.45312Q350.32812 407.875 349.28125 408.67188Q348.23438 409.46875 346.60938 409.46875Q344.5625 409.46875 343.35938 408.20312Q342.15625 406.9375 342.15625 404.65625Q342.15625 402.3125 343.35938 401.01562Q344.57812 399.70312 346.51562 399.70312Q348.39062 399.70312 349.57812 400.98438Q350.76562 402.25 350.76562 404.5625Q350.76562 404.70312 350.75 404.98438L343.79688 404.98438Q343.875 406.53125 344.65625 407.34375Q345.45312 408.15625 346.60938 408.15625Q347.48438 408.15625 348.09375 407.70312Q348.71875 407.25 349.07812 406.25ZM343.875 403.6875L349.09375 403.6875Q348.98438 402.51562 348.5 401.92188Q347.73438 401.0 346.53125 401.0Q345.45312 401.0 344.70312 401.73438Q343.96875 402.46875 343.875 403.6875ZM358.78125 405.82812L360.32812 406.03125Q360.07812 407.64062 359.03125 408.5625Q357.98438 409.46875 356.45312 409.46875Q354.53125 409.46875 353.35938 408.21875Q352.20312 406.95312 352.20312 404.625Q352.20312 403.10938 352.70312 401.98438Q353.20312 400.84375 354.21875 400.28125Q355.25 399.70312 356.45312 399.70312Q357.98438 399.70312 358.9375 400.48438Q359.90625 401.25 360.1875 402.65625L358.64062 402.89062Q358.42188 401.95312 357.85938 401.48438Q357.3125 401.0 356.51562 401.0Q355.32812 401.0 354.57812 401.85938Q353.82812 402.71875 353.82812 404.57812Q353.82812 406.45312 354.54688 407.3125Q355.26562 408.15625 356.4375 408.15625Q357.35938 408.15625 357.98438 407.59375Q358.60938 407.01562 358.78125 405.82812ZM361.09375 404.57812Q361.09375 401.98438 362.54688 400.73438Q363.75 399.70312 365.46875 399.70312Q367.40625 399.70312 368.625 400.96875Q369.84375 402.23438 369.84375 404.45312Q369.84375 406.25 369.29688 407.28125Q368.76562 408.3125 367.73438 408.89062Q366.70312 409.46875 365.46875 409.46875Q363.51562 409.46875 362.29688 408.21875Q361.09375 406.95312 361.09375 404.57812ZM362.71875 404.57812Q362.71875 406.375 363.5 407.26562Q364.28125 408.15625 365.46875 408.15625Q366.65625 408.15625 367.4375 407.26562Q368.21875 406.35938 368.21875 404.53125Q368.21875 402.79688 367.42188 401.90625Q366.64062 401.01562 365.46875 401.01562Q364.28125 401.01562 363.5 401.90625Q362.71875 402.79688 362.71875 404.57812ZM371.6875 409.25L371.6875 399.92188L373.10938 399.92188L373.10938 401.25Q374.14062 399.70312 376.07812 399.70312Q376.92188 399.70312 377.625 400.01562Q378.34375 400.3125 378.6875 400.8125Q379.04688 401.29688 379.1875 401.96875Q379.26562 402.40625 379.26562 403.51562L379.26562 409.25L377.6875 409.25L377.6875 403.57812Q377.6875 402.60938 377.5 402.125Q377.32812 401.64062 376.84375 401.35938Q376.375 401.07812 375.75 401.07812Q374.73438 401.07812 374.0 401.71875Q373.26562 402.35938 373.26562 404.15625L373.26562 409.25L371.6875 409.25ZM381.04688 406.46875L382.625 406.21875Q382.75 407.15625 383.34375 407.65625Q383.95312 408.15625 385.03125 408.15625Q386.125 408.15625 386.65625 407.71875Q387.1875 407.26562 387.1875 406.67188Q387.1875 406.14062 386.71875 405.82812Q386.39062 405.625 385.09375 405.29688Q383.35938 404.85938 382.6875 404.54688Q382.01562 404.21875 381.65625 403.65625Q381.3125 403.07812 381.3125 402.39062Q381.3125 401.76562 381.59375 401.23438Q381.89062 400.70312 382.375 400.35938Q382.75 400.07812 383.39062 399.89062Q384.03125 399.70312 384.75 399.70312Q385.85938 399.70312 386.6875 400.03125Q387.51562 400.34375 387.90625 400.89062Q388.3125 401.42188 388.45312 402.32812L386.90625 402.53125Q386.79688 401.8125 386.29688 401.40625Q385.79688 401.0 384.875 401.0Q383.78125 401.0 383.3125 401.35938Q382.84375 401.71875 382.84375 402.20312Q382.84375 402.51562 383.04688 402.76562Q383.23438 403.01562 383.64062 403.1875Q383.89062 403.26562 385.04688 403.59375Q386.71875 404.03125 387.375 404.32812Q388.04688 404.60938 388.42188 405.15625Q388.8125 405.70312 388.8125 406.5Q388.8125 407.29688 388.34375 408.0Q387.89062 408.70312 387.01562 409.09375Q386.14062 409.46875 385.04688 409.46875Q383.21875 409.46875 382.26562 408.71875Q381.3125 407.95312 381.04688 406.46875ZM394.46875 409.25L399.42188 396.35938L401.26562 396.35938L406.53125 409.25L404.59375 409.25L403.09375 405.34375L397.70312 405.34375L396.28125 409.25L394.46875 409.25ZM398.1875 403.95312L402.5625 403.95312L401.21875 400.39062Q400.59375 398.76562 400.29688 397.71875Q400.0625 398.95312 399.60938 400.17188L398.1875 403.95312ZM411.14062 407.82812L411.375 409.23438Q410.70312 409.375 410.17188 409.375Q409.3125 409.375 408.82812 409.10938Q408.35938 408.82812 408.17188 408.39062Q407.98438 407.9375 407.98438 406.51562L407.98438 401.14062L406.8125 401.14062L406.8125 399.92188L407.98438 399.92188L407.98438 397.60938L409.54688 396.65625L409.54688 399.92188L411.14062 399.92188L411.14062 401.14062L409.54688 401.14062L409.54688 406.60938Q409.54688 407.28125 409.625 407.48438Q409.71875 407.67188 409.90625 407.78125Q410.09375 407.89062 410.45312 407.89062Q410.70312 407.89062 411.14062 407.82812ZM416.14062 407.82812L416.375 409.23438Q415.70312 409.375 415.17188 409.375Q414.3125 409.375 413.82812 409.10938Q413.35938 408.82812 413.17188 408.39062Q412.98438 407.9375 412.98438 406.51562L412.98438 401.14062L411.8125 401.14062L411.8125 399.92188L412.98438 399.92188L412.98438 397.60938L414.54688 396.65625L414.54688 399.92188L416.14062 399.92188L416.14062 401.14062L414.54688 401.14062L414.54688 406.60938Q414.54688 407.28125 414.625 407.48438Q414.71875 407.67188 414.90625 407.78125Q415.09375 407.89062 415.45312 407.89062Q415.70312 407.89062 416.14062 407.82812ZM424.07812 406.25L425.71875 406.45312Q425.32812 407.875 424.28125 408.67188Q423.23438 409.46875 421.60938 409.46875Q419.5625 409.46875 418.35938 408.20312Q417.15625 406.9375 417.15625 404.65625Q417.15625 402.3125 418.35938 401.01562Q419.57812 399.70312 421.51562 399.70312Q423.39062 399.70312 424.57812 400.98438Q425.76562 402.25 425.76562 404.5625Q425.76562 404.70312 425.75 404.98438L418.79688 404.98438Q418.875 406.53125 419.65625 407.34375Q420.45312 408.15625 421.60938 408.15625Q422.48438 408.15625 423.09375 407.70312Q423.71875 407.25 424.07812 406.25ZM418.875 403.6875L424.09375 403.6875Q423.98438 402.51562 423.5 401.92188Q422.73438 401.0 421.53125 401.0Q420.45312 401.0 419.70312 401.73438Q418.96875 402.46875 418.875 403.6875ZM427.6875 409.25L427.6875 399.92188L429.10938 399.92188L429.10938 401.25Q430.14062 399.70312 432.07812 399.70312Q432.92188 399.70312 433.625 400.01562Q434.34375 400.3125 434.6875 400.8125Q435.04688 401.29688 435.1875 401.96875Q435.26562 402.40625 435.26562 403.51562L435.26562 409.25L433.6875 409.25L433.6875 403.57812Q433.6875 402.60938 433.5 402.125Q433.32812 401.64062 432.84375 401.35938Q432.375 401.07812 431.75 401.07812Q430.73438 401.07812 430.0 401.71875Q429.26562 402.35938 429.26562 404.15625L429.26562 409.25L427.6875 409.25ZM443.75 409.25L443.75 408.07812Q442.85938 409.46875 441.125 409.46875Q440.01562 409.46875 439.07812 408.85938Q438.14062 408.23438 437.625 407.14062Q437.10938 406.03125 437.10938 404.59375Q437.10938 403.1875 437.57812 402.0625Q438.04688 400.92188 438.96875 400.3125Q439.90625 399.70312 441.0625 399.70312Q441.90625 399.70312 442.5625 400.0625Q443.21875 400.42188 443.64062 400.98438L443.64062 396.35938L445.20312 396.35938L445.20312 409.25L443.75 409.25ZM438.73438 404.59375Q438.73438 406.39062 439.48438 407.28125Q440.25 408.15625 441.28125 408.15625Q442.3125 408.15625 443.03125 407.3125Q443.76562 406.46875 443.76562 404.71875Q443.76562 402.8125 443.03125 401.92188Q442.29688 401.01562 441.21875 401.01562Q440.15625 401.01562 439.4375 401.875Q438.73438 402.73438 438.73438 404.59375ZM454.07812 406.25L455.71875 406.45312Q455.32812 407.875 454.28125 408.67188Q453.23438 409.46875 451.60938 409.46875Q449.5625 409.46875 448.35938 408.20312Q447.15625 406.9375 447.15625 404.65625Q447.15625 402.3125 448.35938 401.01562Q449.57812 399.70312 451.51562 399.70312Q453.39062 399.70312 454.57812 400.98438Q455.76562 402.25 455.76562 404.5625Q455.76562 404.70312 455.75 404.98438L448.79688 404.98438Q448.875 406.53125 449.65625 407.34375Q450.45312 408.15625 451.60938 408.15625Q452.48438 408.15625 453.09375 407.70312Q453.71875 407.25 454.07812 406.25ZM448.875 403.6875L454.09375 403.6875Q453.98438 402.51562 453.5 401.92188Q452.73438 401.0 451.53125 401.0Q450.45312 401.0 449.70312 401.73438Q448.96875 402.46875 448.875 403.6875ZM463.75 409.25L463.75 408.07812Q462.85938 409.46875 461.125 409.46875Q460.01562 409.46875 459.07812 408.85938Q458.14062 408.23438 457.625 407.14062Q457.10938 406.03125 457.10938 404.59375Q457.10938 403.1875 457.57812 402.0625Q458.04688 400.92188 458.96875 400.3125Q459.90625 399.70312 461.0625 399.70312Q461.90625 399.70312 462.5625 400.0625Q463.21875 400.42188 463.64062 400.98438L463.64062 396.35938L465.20312 396.35938L465.20312 409.25L463.75 409.25ZM458.73438 404.59375Q458.73438 406.39062 459.48438 407.28125Q460.25 408.15625 461.28125 408.15625Q462.3125 408.15625 463.03125 407.3125Q463.76562 406.46875 463.76562 404.71875Q463.76562 402.8125 463.03125 401.92188Q462.29688 401.01562 461.21875 401.01562Q460.15625 401.01562 459.4375 401.875Q458.73438 402.73438 458.73438 404.59375Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M38.75 255.28125L25.859375 250.32812L25.859375 248.48438L38.75 243.21875L38.75 245.15625L34.84375 246.65625L34.84375 252.04688L38.75 253.46875L38.75 255.28125ZM33.453125 251.5625L33.453125 247.1875L29.890625 248.53125Q28.265625 249.15625 27.21875 249.45312Q28.453125 249.6875 29.671875 250.14062L33.453125 251.5625ZM37.328125 238.60938L38.734375 238.375Q38.875 239.04688 38.875 239.57812Q38.875 240.4375 38.609375 240.92188Q38.328125 241.39062 37.890625 241.57812Q37.4375 241.76562 36.015625 241.76562L30.640625 241.76562L30.640625 242.9375L29.421875 242.9375L29.421875 241.76562L27.109375 241.76562L26.15625 240.20312L29.421875 240.20312L29.421875 238.60938L30.640625 238.60938L30.640625 240.20312L36.109375 240.20312Q36.78125 240.20312 36.984375 240.125Q37.171875 240.03125 37.28125 239.84375Q37.390625 239.65625 37.390625 239.29688Q37.390625 239.04688 37.328125 238.60938ZM37.328125 233.60938L38.734375 233.375Q38.875 234.04688 38.875 234.57812Q38.875 235.4375 38.609375 235.92188Q38.328125 236.39062 37.890625 236.57812Q37.4375 236.76562 36.015625 236.76562L30.640625 236.76562L30.640625 237.9375L29.421875 237.9375L29.421875 236.76562L27.109375 236.76562L26.15625 235.20312L29.421875 235.20312L29.421875 233.60938L30.640625 233.60938L30.640625 235.20312L36.109375 235.20312Q36.78125 235.20312 36.984375 235.125Q37.171875 235.03125 37.28125 234.84375Q37.390625 234.65625 37.390625 234.29688Q37.390625 234.04688 37.328125 233.60938ZM35.75 225.67188L35.953125 224.03125Q37.375 224.42188 38.171875 225.46875Q38.96875 226.51562 38.96875 228.14062Q38.96875 230.1875 37.703125 231.39062Q36.4375 232.59375 34.15625 232.59375Q31.8125 232.59375 30.515625 231.39062Q29.203125 230.17188 29.203125 228.23438Q29.203125 226.35938 30.484375 225.17188Q31.75 223.98438 34.0625 223.98438Q34.203125 223.98438 34.484375 224.0L34.484375 230.95312Q36.03125 230.875 36.84375 230.09375Q37.65625 229.29688 37.65625 228.14062Q37.65625 227.26562 37.203125 226.65625Q36.75 226.03125 35.75 225.67188ZM33.1875 230.875L33.1875 225.65625Q32.015625 225.76562 31.421875 226.25Q30.5 227.01562 30.5 228.21875Q30.5 229.29688 31.234375 230.04688Q31.96875 230.78125 33.1875 230.875ZM38.75 222.0625L29.421875 222.0625L29.421875 220.64062L30.75 220.64062Q29.203125 219.60938 29.203125 217.67188Q29.203125 216.82812 29.515625 216.125Q29.8125 215.40625 30.3125 215.0625Q30.796875 214.70312 31.46875 214.5625Q31.90625 214.48438 33.015625 214.48438L38.75 214.48438L38.75 216.0625L33.078125 216.0625Q32.109375 216.0625 31.625 216.25Q31.140625 216.42188 30.859375 216.90625Q30.578125 217.375 30.578125 218.0Q30.578125 219.01562 31.21875 219.75Q31.859375 220.48438 33.65625 220.48438L38.75 220.48438L38.75 222.0625ZM38.75 206.0L37.578125 206.0Q38.96875 206.89062 38.96875 208.625Q38.96875 209.73438 38.359375 210.67188Q37.734375 211.60938 36.640625 212.125Q35.53125 212.64062 34.09375 212.64062Q32.6875 212.64062 31.5625 212.17188Q30.421875 211.70312 29.8125 210.78125Q29.203125 209.84375 29.203125 208.6875Q29.203125 207.84375 29.5625 207.1875Q29.921875 206.53125 30.484375 206.10938L25.859375 206.10938L25.859375 204.54688L38.75 204.54688L38.75 206.0ZM34.09375 211.01562Q35.890625 211.01562 36.78125 210.26562Q37.65625 209.5 37.65625 208.46875Q37.65625 207.4375 36.8125 206.71875Q35.96875 205.98438 34.21875 205.98438Q32.3125 205.98438 31.421875 206.71875Q30.515625 207.45312 30.515625 208.53125Q30.515625 209.59375 31.375 210.3125Q32.234375 211.01562 34.09375 211.01562ZM35.75 195.67188L35.953125 194.03125Q37.375 194.42188 38.171875 195.46875Q38.96875 196.51562 38.96875 198.14062Q38.96875 200.1875 37.703125 201.39062Q36.4375 202.59375 34.15625 202.59375Q31.8125 202.59375 30.515625 201.39062Q29.203125 200.17188 29.203125 198.23438Q29.203125 196.35938 30.484375 195.17188Q31.75 193.98438 34.0625 193.98438Q34.203125 193.98438 34.484375 194.0L34.484375 200.95312Q36.03125 200.875 36.84375 200.09375Q37.65625 199.29688 37.65625 198.14062Q37.65625 197.26562 37.203125 196.65625Q36.75 196.03125 35.75 195.67188ZM33.1875 200.875L33.1875 195.65625Q32.015625 195.76562 31.421875 196.25Q30.5 197.01562 30.5 198.21875Q30.5 199.29688 31.234375 200.04688Q31.96875 200.78125 33.1875 200.875ZM35.75 185.67188L35.953125 184.03125Q37.375 184.42188 38.171875 185.46875Q38.96875 186.51562 38.96875 188.14062Q38.96875 190.1875 37.703125 191.39062Q36.4375 192.59375 34.15625 192.59375Q31.8125 192.59375 30.515625 191.39062Q29.203125 190.17188 29.203125 188.23438Q29.203125 186.35938 30.484375 185.17188Q31.75 183.98438 34.0625 183.98438Q34.203125 183.98438 34.484375 184.0L34.484375 190.95312Q36.03125 190.875 36.84375 190.09375Q37.65625 189.29688 37.65625 188.14062Q37.65625 187.26562 37.203125 186.65625Q36.75 186.03125 35.75 185.67188ZM33.1875 190.875L33.1875 185.65625Q32.015625 185.76562 31.421875 186.25Q30.5 187.01562 30.5 188.21875Q30.5 189.29688 31.234375 190.04688Q31.96875 190.78125 33.1875 190.875ZM35.96875 182.70312L35.71875 181.125Q36.65625 181.0 37.15625 180.40625Q37.65625 179.79688 37.65625 178.71875Q37.65625 177.625 37.21875 177.09375Q36.765625 176.5625 36.171875 176.5625Q35.640625 176.5625 35.328125 177.03125Q35.125 177.35938 34.796875 178.65625Q34.359375 180.39062 34.046875 181.0625Q33.71875 181.73438 33.15625 182.09375Q32.578125 182.4375 31.890625 182.4375Q31.265625 182.4375 30.734375 182.15625Q30.203125 181.85938 29.859375 181.375Q29.578125 181.0 29.390625 180.35938Q29.203125 179.71875 29.203125 179.0Q29.203125 177.89062 29.53125 177.0625Q29.84375 176.23438 30.390625 175.84375Q30.921875 175.4375 31.828125 175.29688L32.03125 176.84375Q31.3125 176.95312 30.90625 177.45312Q30.5 177.95312 30.5 178.875Q30.5 179.96875 30.859375 180.4375Q31.21875 180.90625 31.703125 180.90625Q32.015625 180.90625 32.265625 180.70312Q32.515625 180.51562 32.6875 180.10938Q32.765625 179.85938 33.09375 178.70312Q33.53125 177.03125 33.828125 176.375Q34.109375 175.70312 34.65625 175.32812Q35.203125 174.9375 36.0 174.9375Q36.796875 174.9375 37.5 175.40625Q38.203125 175.85938 38.59375 176.73438Q38.96875 177.60938 38.96875 178.70312Q38.96875 180.53125 38.21875 181.48438Q37.453125 182.4375 35.96875 182.70312Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M86.328125 345.3125Q86.328125 343.53125 86.6875 342.45312Q87.0625 341.35938 87.78125 340.78125Q88.5 340.1875 89.59375 340.1875Q90.40625 340.1875 91.015625 340.51562Q91.625 340.84375 92.015625 341.45312Q92.421875 342.0625 92.640625 342.9375Q92.859375 343.8125 92.859375 345.3125Q92.859375 347.07812 92.5 348.15625Q92.140625 349.23438 91.421875 349.82812Q90.703125 350.42188 89.59375 350.42188Q88.15625 350.42188 87.328125 349.375Q86.328125 348.125 86.328125 345.3125ZM87.59375 345.3125Q87.59375 347.78125 88.171875 348.59375Q88.75 349.40625 89.59375 349.40625Q90.453125 349.40625 91.03125 348.59375Q91.609375 347.76562 91.609375 345.3125Q91.609375 342.82812 91.03125 342.01562Q90.453125 341.20312 89.578125 341.20312Q88.734375 341.20312 88.234375 341.92188Q87.59375 342.84375 87.59375 345.3125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M82.96875 295.65L81.734375 295.65L81.734375 287.80624Q81.296875 288.22812 80.5625 288.66562Q79.84375 289.0875 79.28125 289.29062L79.28125 288.10312Q80.3125 287.61874 81.078125 286.93124Q81.859375 286.24374 82.171875 285.5875L82.96875 285.5875L82.96875 295.65ZM86.328125 290.7125Q86.328125 288.93124 86.6875 287.85312Q87.0625 286.75937 87.78125 286.18124Q88.5 285.5875 89.59375 285.5875Q90.40625 285.5875 91.015625 285.91562Q91.625 286.24374 92.015625 286.85312Q92.421875 287.4625 92.640625 288.3375Q92.859375 289.2125 92.859375 290.7125Q92.859375 292.47812 92.5 293.55624Q92.140625 294.63437 91.421875 295.22812Q90.703125 295.82187 89.59375 295.82187Q88.15625 295.82187 87.328125 294.775Q86.328125 293.525 86.328125 290.7125ZM87.59375 290.7125Q87.59375 293.18124 88.171875 293.99374Q88.75 294.80624 89.59375 294.80624Q90.453125 294.80624 91.03125 293.99374Q91.609375 293.16562 91.609375 290.7125Q91.609375 288.22812 91.03125 287.41562Q90.453125 286.60312 89.578125 286.60312Q88.734375 286.60312 88.234375 287.32187Q87.59375 288.24374 87.59375 290.7125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M84.796875 239.8625L84.796875 241.05L78.171875 241.05Q78.15625 240.6125 78.3125 240.19063Q78.578125 239.51875 79.125 238.8625Q79.6875 238.20625 80.734375 237.34688Q82.375 236.00313 82.9375 235.22188Q83.515625 234.44063 83.515625 233.7375Q83.515625 233.00313 82.984375 232.50313Q82.46875 232.00313 81.640625 232.00313Q80.75 232.00313 80.203125 232.53438Q79.671875 233.06563 79.671875 234.01875L78.40625 233.87813Q78.53125 232.47188 79.375 231.7375Q80.234375 230.9875 81.65625 230.9875Q83.109375 230.9875 83.9375 231.78438Q84.78125 232.58125 84.78125 233.76875Q84.78125 234.37813 84.53125 234.95625Q84.296875 235.53438 83.71875 236.175Q83.15625 236.81563 81.828125 237.94063Q80.71875 238.8625 80.40625 239.20625Q80.09375 239.53438 79.890625 239.8625L84.796875 239.8625ZM86.328125 236.1125Q86.328125 234.33125 86.6875 233.25313Q87.0625 232.15938 87.78125 231.58125Q88.5 230.9875 89.59375 230.9875Q90.40625 230.9875 91.015625 231.31563Q91.625 231.64375 92.015625 232.25313Q92.421875 232.8625 92.640625 233.7375Q92.859375 234.6125 92.859375 236.1125Q92.859375 237.87813 92.5 238.95625Q92.140625 240.03438 91.421875 240.62813Q90.703125 241.22188 89.59375 241.22188Q88.15625 241.22188 87.328125 240.175Q86.328125 238.925 86.328125 236.1125ZM87.59375 236.1125Q87.59375 238.58125 88.171875 239.39375Q88.75 240.20625 89.59375 240.20625Q90.453125 240.20625 91.03125 239.39375Q91.609375 238.56563 91.609375 236.1125Q91.609375 233.62813 91.03125 232.81563Q90.453125 232.00313 89.578125 232.00313Q88.734375 232.00313 88.234375 232.72188Q87.59375 233.64375 87.59375 236.1125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M78.34375 183.80937L79.5625 183.6375Q79.78125 184.68437 80.28125 185.15312Q80.796875 185.60625 81.53125 185.60625Q82.40625 185.60625 83.0 185.0125Q83.59375 184.40312 83.59375 183.5125Q83.59375 182.66875 83.03125 182.12187Q82.484375 181.575 81.640625 181.575Q81.28125 181.575 80.765625 181.7L80.90625 180.62187Q81.03125 180.6375 81.09375 180.6375Q81.890625 180.6375 82.515625 180.23125Q83.140625 179.825 83.140625 178.96562Q83.140625 178.29375 82.6875 177.85625Q82.234375 177.40312 81.5 177.40312Q80.78125 177.40312 80.296875 177.85625Q79.828125 178.29375 79.6875 179.2L78.46875 178.98125Q78.6875 177.74687 79.484375 177.075Q80.28125 176.3875 81.46875 176.3875Q82.296875 176.3875 82.984375 176.74687Q83.671875 177.09062 84.03125 177.7Q84.40625 178.30937 84.40625 178.99687Q84.40625 179.6375 84.0625 180.16875Q83.71875 180.7 83.03125 181.02812Q83.921875 181.23125 84.40625 181.87187Q84.90625 182.5125 84.90625 183.49687Q84.90625 184.80937 83.9375 185.71562Q82.984375 186.62187 81.53125 186.62187Q80.203125 186.62187 79.328125 185.84062Q78.46875 185.05937 78.34375 183.80937ZM86.328125 181.5125Q86.328125 179.73125 86.6875 178.65312Q87.0625 177.55937 87.78125 176.98125Q88.5 176.3875 89.59375 176.3875Q90.40625 176.3875 91.015625 176.71562Q91.625 177.04375 92.015625 177.65312Q92.421875 178.2625 92.640625 179.1375Q92.859375 180.0125 92.859375 181.5125Q92.859375 183.27812 92.5 184.35625Q92.140625 185.43437 91.421875 186.02812Q90.703125 186.62187 89.59375 186.62187Q88.15625 186.62187 87.328125 185.575Q86.328125 184.325 86.328125 181.5125ZM87.59375 181.5125Q87.59375 183.98125 88.171875 184.79375Q88.75 185.60625 89.59375 185.60625Q90.453125 185.60625 91.03125 184.79375Q91.609375 183.96562 91.609375 181.5125Q91.609375 179.02812 91.03125 178.21562Q90.453125 177.40312 89.578125 177.40312Q88.734375 177.40312 88.234375 178.12187Q87.59375 179.04375 87.59375 181.5125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M82.28125 131.85L82.28125 129.44376L77.921875 129.44376L77.921875 128.31876L82.5 121.83438L83.5 121.83438L83.5 128.31876L84.859375 128.31876L84.859375 129.44376L83.5 129.44376L83.5 131.85L82.28125 131.85ZM82.28125 128.31876L82.28125 123.80313L79.140625 128.31876L82.28125 128.31876ZM86.328125 126.912506Q86.328125 125.131256 86.6875 124.05313Q87.0625 122.95938 87.78125 122.381256Q88.5 121.787506 89.59375 121.787506Q90.40625 121.787506 91.015625 122.11563Q91.625 122.443756 92.015625 123.05313Q92.421875 123.662506 92.640625 124.537506Q92.859375 125.412506 92.859375 126.912506Q92.859375 128.67813 92.5 129.75626Q92.140625 130.83438 91.421875 131.42813Q90.703125 132.02188 89.59375 132.02188Q88.15625 132.02188 87.328125 130.975Q86.328125 129.725 86.328125 126.912506ZM87.59375 126.912506Q87.59375 129.38126 88.171875 130.19376Q88.75 131.00626 89.59375 131.00626Q90.453125 131.00626 91.03125 130.19376Q91.609375 129.36563 91.609375 126.912506Q91.609375 124.42813 91.03125 123.61563Q90.453125 122.80313 89.578125 122.80313Q88.734375 122.80313 88.234375 123.52188Q87.59375 124.443756 87.59375 126.912506Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M78.328125 74.625L79.625 74.515625Q79.765625 75.453125 80.28125 75.9375Q80.8125 76.40625 81.546875 76.40625Q82.4375 76.40625 83.046875 75.734375Q83.671875 75.0625 83.671875 73.96875Q83.671875 72.90625 83.078125 72.296875Q82.484375 71.6875 81.53125 71.6875Q80.9375 71.6875 80.453125 71.96875Q79.984375 72.234375 79.703125 72.65625L78.546875 72.515625L79.515625 67.359375L84.5 67.359375L84.5 68.546875L80.5 68.546875L79.96875 71.234375Q80.875 70.609375 81.859375 70.609375Q83.171875 70.609375 84.0625 71.515625Q84.96875 72.421875 84.96875 73.859375Q84.96875 75.21875 84.1875 76.203125Q83.21875 77.421875 81.546875 77.421875Q80.1875 77.421875 79.3125 76.65625Q78.453125 75.890625 78.328125 74.625ZM86.328125 72.3125Q86.328125 70.53125 86.6875 69.453125Q87.0625 68.359375 87.78125 67.78125Q88.5 67.1875 89.59375 67.1875Q90.40625 67.1875 91.015625 67.515625Q91.625 67.84375 92.015625 68.453125Q92.421875 69.0625 92.640625 69.9375Q92.859375 70.8125 92.859375 72.3125Q92.859375 74.078125 92.5 75.15625Q92.140625 76.234375 91.421875 76.828125Q90.703125 77.421875 89.59375 77.421875Q88.15625 77.421875 87.328125 76.375Q86.328125 75.125 86.328125 72.3125ZM87.59375 72.3125Q87.59375 74.78125 88.171875 75.59375Q88.75 76.40625 89.59375 76.40625Q90.453125 76.40625 91.03125 75.59375Q91.609375 74.765625 91.609375 72.3125Q91.609375 69.828125 91.03125 69.015625Q90.453125 68.203125 89.578125 68.203125Q88.734375 68.203125 88.234375 68.921875Q87.59375 69.84375 87.59375 72.3125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M101.71875 362.25L100.671875 362.25L100.671875 355.53125Q100.28125 355.89062 99.65625 356.26562Q99.046875 356.625 98.5625 356.79688L98.5625 355.78125Q99.4375 355.35938 100.09375 354.78125Q100.765625 354.1875 101.046875 353.625L101.71875 353.625L101.71875 362.25Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M123.3486 361.23438L123.3486 362.25L117.6611 362.25Q117.6611 361.875 117.7861 361.51562Q118.00485 360.9375 118.4736 360.375Q118.95798 359.8125 119.86423 359.07812Q121.27048 357.92188 121.75485 357.25Q122.25485 356.57812 122.25485 355.98438Q122.25485 355.35938 121.80173 354.9375Q121.3486 354.5 120.62985 354.5Q119.86423 354.5 119.4111 354.95312Q118.95798 355.40625 118.94235 356.21875L117.86423 356.10938Q117.9736 354.89062 118.69235 354.26562Q119.42673 353.625 120.6611 353.625Q121.89548 353.625 122.61423 354.3125Q123.33298 355.0 123.33298 356.01562Q123.33298 356.53125 123.11423 357.03125Q122.9111 357.51562 122.4111 358.07812Q121.92673 358.625 120.80173 359.57812Q119.8486 360.375 119.56735 360.67188Q119.30173 360.95312 119.12985 361.23438L123.3486 361.23438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M137.85345 359.98438L138.91595 359.84375Q139.08783 360.73438 139.52533 361.14062Q139.96283 361.53125 140.58783 361.53125Q141.33783 361.53125 141.85345 361.01562Q142.36908 360.5 142.36908 359.73438Q142.36908 359.01562 141.8847 358.54688Q141.41595 358.0625 140.68158 358.0625Q140.3847 358.0625 139.93158 358.1875L140.05658 357.25Q140.16595 357.26562 140.22845 357.26562Q140.90033 357.26562 141.43158 356.92188Q141.97845 356.5625 141.97845 355.82812Q141.97845 355.25 141.58783 354.875Q141.1972 354.48438 140.5722 354.48438Q139.96283 354.48438 139.54095 354.875Q139.1347 355.26562 139.02533 356.03125L137.96283 355.84375Q138.15033 354.79688 138.83783 354.21875Q139.52533 353.625 140.54095 353.625Q141.24408 353.625 141.83783 353.9375Q142.43158 354.23438 142.74408 354.75Q143.05658 355.26562 143.05658 355.85938Q143.05658 356.40625 142.7597 356.875Q142.46283 357.32812 141.8847 357.59375Q142.6347 357.76562 143.05658 358.32812Q143.47845 358.875 143.47845 359.71875Q143.47845 360.84375 142.65033 361.625Q141.83783 362.40625 140.58783 362.40625Q139.46283 362.40625 138.71283 361.73438Q137.96283 361.04688 137.85345 359.98438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M161.28017 362.25L161.28017 360.1875L157.56142 360.1875L157.56142 359.21875L161.48329 353.65625L162.34267 353.65625L162.34267 359.21875L163.49892 359.21875L163.49892 360.1875L162.34267 360.1875L162.34267 362.25L161.28017 362.25ZM161.28017 359.21875L161.28017 355.35938L158.59267 359.21875L161.28017 359.21875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M177.9569 360.0L179.06627 359.90625Q179.19127 360.71875 179.62877 361.125Q180.0819 361.53125 180.72252 361.53125Q181.47252 361.53125 182.00377 360.95312Q182.53502 360.375 182.53502 359.4375Q182.53502 358.53125 182.0194 358.01562Q181.5194 357.48438 180.69127 357.48438Q180.19127 357.48438 179.7694 357.71875Q179.36314 357.95312 179.12877 358.3125L178.1444 358.1875L178.97252 353.78125L183.25377 353.78125L183.25377 354.78125L179.81627 354.78125L179.36314 357.09375Q180.12877 356.54688 180.97252 356.54688Q182.09752 356.54688 182.86314 357.32812Q183.6444 358.10938 183.6444 359.34375Q183.6444 360.5 182.97252 361.35938Q182.1444 362.39062 180.72252 362.39062Q179.55064 362.39062 178.80064 361.73438Q178.06627 361.07812 177.9569 360.0Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M203.47737 355.76562L202.4305 355.84375Q202.28987 355.21875 202.03987 354.9375Q201.60237 354.48438 200.97737 354.48438Q200.47737 354.48438 200.08675 354.76562Q199.60237 355.14062 199.3055 355.84375Q199.02425 356.53125 199.00862 357.8125Q199.38362 357.23438 199.9305 356.95312Q200.493 356.67188 201.10237 356.67188Q202.14925 356.67188 202.88362 357.45312Q203.63362 358.23438 203.63362 359.45312Q203.63362 360.26562 203.27425 360.96875Q202.9305 361.65625 202.32112 362.03125Q201.71175 362.39062 200.94612 362.39062Q199.618 362.39062 198.78987 361.42188Q197.96175 360.45312 197.96175 358.23438Q197.96175 355.73438 198.88362 354.60938Q199.6805 353.625 201.03987 353.625Q202.0555 353.625 202.69612 354.20312Q203.35237 354.76562 203.47737 355.76562ZM199.1805 359.46875Q199.1805 360.01562 199.39925 360.51562Q199.63362 361.0 200.03987 361.26562Q200.46175 361.53125 200.9305 361.53125Q201.58675 361.53125 202.07112 361.0Q202.5555 360.45312 202.5555 359.53125Q202.5555 358.64062 202.07112 358.125Q201.60237 357.60938 200.88362 357.60938Q200.16487 357.60938 199.66487 358.125Q199.1805 358.64062 199.1805 359.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M218.12285 354.78125L218.12285 353.76562L223.68535 353.76562L223.68535 354.59375Q222.87285 355.46875 222.06035 356.92188Q221.26347 358.35938 220.82597 359.89062Q220.49785 360.96875 220.41972 362.25L219.32597 362.25Q219.3416 361.23438 219.7166 359.79688Q220.10722 358.35938 220.81035 357.03125Q221.5291 355.70312 222.3416 354.78125L218.12285 354.78125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M239.73708 357.59375Q239.08083 357.34375 238.7527 356.90625Q238.4402 356.45312 238.4402 355.84375Q238.4402 354.90625 239.11208 354.26562Q239.79958 353.625 240.90895 353.625Q242.03395 353.625 242.72145 354.28125Q243.40895 354.9375 243.40895 355.875Q243.40895 356.46875 243.09645 356.90625Q242.78395 357.34375 242.14333 357.59375Q242.9402 357.84375 243.34645 358.42188Q243.7527 359.0 243.7527 359.79688Q243.7527 360.89062 242.97145 361.64062Q242.20583 362.39062 240.92458 362.39062Q239.65895 362.39062 238.8777 361.64062Q238.09645 360.89062 238.09645 359.76562Q238.09645 358.92188 238.51833 358.35938Q238.95583 357.79688 239.73708 357.59375ZM239.51833 355.79688Q239.51833 356.40625 239.90895 356.79688Q240.3152 357.1875 240.9402 357.1875Q241.54958 357.1875 241.9402 356.8125Q242.33083 356.42188 242.33083 355.85938Q242.33083 355.28125 241.92458 354.89062Q241.51833 354.48438 240.92458 354.48438Q240.3152 354.48438 239.90895 354.875Q239.51833 355.26562 239.51833 355.79688ZM239.1902 359.76562Q239.1902 360.21875 239.39333 360.64062Q239.61208 361.0625 240.03395 361.29688Q240.45583 361.53125 240.9402 361.53125Q241.6902 361.53125 242.17458 361.04688Q242.67458 360.5625 242.67458 359.8125Q242.67458 359.04688 242.17458 358.54688Q241.67458 358.04688 240.90895 358.04688Q240.15895 358.04688 239.67458 358.54688Q239.1902 359.03125 239.1902 359.76562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M258.32004 360.26562L259.33566 360.17188Q259.46066 360.89062 259.82004 361.21875Q260.19504 361.53125 260.75754 361.53125Q261.2419 361.53125 261.6013 361.3125Q261.9763 361.07812 262.21066 360.71875Q262.44504 360.34375 262.6013 359.71875Q262.75754 359.07812 262.75754 358.42188Q262.75754 358.34375 262.75754 358.20312Q262.44504 358.70312 261.89816 359.03125Q261.3513 359.34375 260.71066 359.34375Q259.63254 359.34375 258.89816 358.57812Q258.1638 357.79688 258.1638 356.53125Q258.1638 355.21875 258.9294 354.42188Q259.71066 353.625 260.8669 353.625Q261.69504 353.625 262.38254 354.07812Q263.08566 354.53125 263.44504 355.375Q263.8044 356.20312 263.8044 357.78125Q263.8044 359.42188 263.44504 360.40625Q263.1013 361.375 262.38254 361.89062Q261.6794 362.39062 260.7419 362.39062Q259.7263 362.39062 259.08566 361.84375Q258.44504 361.28125 258.32004 360.26562ZM262.63254 356.46875Q262.63254 355.5625 262.14816 355.03125Q261.6794 354.5 260.9919 354.5Q260.2888 354.5 259.75754 355.07812Q259.2419 355.64062 259.2419 356.5625Q259.2419 357.375 259.7419 357.89062Q260.2419 358.40625 260.96066 358.40625Q261.69504 358.40625 262.1638 357.89062Q262.63254 357.375 262.63254 356.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M278.68427 362.25L277.6374 362.25L277.6374 355.53125Q277.24677 355.89062 276.62177 356.26562Q276.0124 356.625 275.528 356.79688L275.528 355.78125Q276.403 355.35938 277.05927 354.78125Q277.73114 354.1875 278.0124 353.625L278.68427 353.625L278.68427 362.25ZM281.7155 358.01562Q281.7155 356.48438 282.028 355.5625Q282.3405 354.625 282.9499 354.125Q283.5749 353.625 284.5124 353.625Q285.1999 353.625 285.7155 353.90625Q286.24677 354.1875 286.5905 354.71875Q286.93427 355.23438 287.12177 355.98438Q287.30927 356.73438 287.30927 358.01562Q287.30927 359.53125 286.99677 360.45312Q286.6999 361.375 286.0749 361.89062Q285.4655 362.39062 284.5124 362.39062Q283.278 362.39062 282.55927 361.5Q281.7155 360.4375 281.7155 358.01562ZM282.79364 358.01562Q282.79364 360.125 283.29364 360.82812Q283.79364 361.53125 284.5124 361.53125Q285.24677 361.53125 285.73114 360.82812Q286.23114 360.125 286.23114 358.01562Q286.23114 355.89062 285.73114 355.20312Q285.24677 354.5 284.49677 354.5Q283.778 354.5 283.3405 355.10938Q282.79364 355.89062 282.79364 358.01562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M298.736 362.25L297.68912 362.25L297.68912 355.53125Q297.2985 355.89062 296.6735 356.26562Q296.06412 356.625 295.57974 356.79688L295.57974 355.78125Q296.45474 355.35938 297.111 354.78125Q297.78287 354.1875 298.06412 353.625L298.736 353.625L298.736 362.25ZM305.736 362.25L304.68912 362.25L304.68912 355.53125Q304.2985 355.89062 303.6735 356.26562Q303.06412 356.625 302.57974 356.79688L302.57974 355.78125Q303.45474 355.35938 304.111 354.78125Q304.78287 354.1875 305.06412 353.625L305.736 353.625L305.736 362.25Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M318.78772 362.25L317.74084 362.25L317.74084 355.53125Q317.35022 355.89062 316.72522 356.26562Q316.11584 356.625 315.63147 356.79688L315.63147 355.78125Q316.50647 355.35938 317.16272 354.78125Q317.8346 354.1875 318.11584 353.625L318.78772 353.625L318.78772 362.25ZM327.36584 361.23438L327.36584 362.25L321.67834 362.25Q321.67834 361.875 321.80334 361.51562Q322.0221 360.9375 322.49084 360.375Q322.97522 359.8125 323.88147 359.07812Q325.28772 357.92188 325.7721 357.25Q326.2721 356.57812 326.2721 355.98438Q326.2721 355.35938 325.81897 354.9375Q325.36584 354.5 324.6471 354.5Q323.88147 354.5 323.42834 354.95312Q322.97522 355.40625 322.9596 356.21875L321.88147 356.10938Q321.99084 354.89062 322.7096 354.26562Q323.44397 353.625 324.67834 353.625Q325.91272 353.625 326.63147 354.3125Q327.35022 355.0 327.35022 356.01562Q327.35022 356.53125 327.13147 357.03125Q326.92834 357.51562 326.42834 358.07812Q325.94397 358.625 324.81897 359.57812Q323.86584 360.375 323.5846 360.67188Q323.31897 360.95312 323.1471 361.23438L327.36584 361.23438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M338.83945 362.25L337.79257 362.25L337.79257 355.53125Q337.40195 355.89062 336.77695 356.26562Q336.16757 356.625 335.6832 356.79688L335.6832 355.78125Q336.5582 355.35938 337.21445 354.78125Q337.88632 354.1875 338.16757 353.625L338.83945 353.625L338.83945 362.25ZM341.8707 359.98438L342.9332 359.84375Q343.10507 360.73438 343.54257 361.14062Q343.98007 361.53125 344.60507 361.53125Q345.35507 361.53125 345.8707 361.01562Q346.38632 360.5 346.38632 359.73438Q346.38632 359.01562 345.90195 358.54688Q345.4332 358.0625 344.69882 358.0625Q344.40195 358.0625 343.94882 358.1875L344.07382 357.25Q344.1832 357.26562 344.2457 357.26562Q344.91757 357.26562 345.44882 356.92188Q345.9957 356.5625 345.9957 355.82812Q345.9957 355.25 345.60507 354.875Q345.21445 354.48438 344.58945 354.48438Q343.98007 354.48438 343.5582 354.875Q343.15195 355.26562 343.04257 356.03125L341.98007 355.84375Q342.16757 354.79688 342.85507 354.21875Q343.54257 353.625 344.5582 353.625Q345.26132 353.625 345.85507 353.9375Q346.44882 354.23438 346.76132 354.75Q347.07382 355.26562 347.07382 355.85938Q347.07382 356.40625 346.77695 356.875Q346.48007 357.32812 345.90195 357.59375Q346.65195 357.76562 347.07382 358.32812Q347.4957 358.875 347.4957 359.71875Q347.4957 360.84375 346.66757 361.625Q345.85507 362.40625 344.60507 362.40625Q343.48007 362.40625 342.73007 361.73438Q341.98007 361.04688 341.8707 359.98438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M358.89117 362.25L357.8443 362.25L357.8443 355.53125Q357.45367 355.89062 356.82867 356.26562Q356.2193 356.625 355.73492 356.79688L355.73492 355.78125Q356.60992 355.35938 357.26617 354.78125Q357.93805 354.1875 358.2193 353.625L358.89117 353.625L358.89117 362.25ZM365.29742 362.25L365.29742 360.1875L361.57867 360.1875L361.57867 359.21875L365.50055 353.65625L366.35992 353.65625L366.35992 359.21875L367.51617 359.21875L367.51617 360.1875L366.35992 360.1875L366.35992 362.25L365.29742 362.25ZM365.29742 359.21875L365.29742 355.35938L362.60992 359.21875L365.29742 359.21875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M378.9429 362.25L377.89603 362.25L377.89603 355.53125Q377.5054 355.89062 376.8804 356.26562Q376.27103 356.625 375.78665 356.79688L375.78665 355.78125Q376.66165 355.35938 377.3179 354.78125Q377.98978 354.1875 378.27103 353.625L378.9429 353.625L378.9429 362.25ZM381.97415 360.0L383.08353 359.90625Q383.20853 360.71875 383.64603 361.125Q384.09915 361.53125 384.73978 361.53125Q385.48978 361.53125 386.02103 360.95312Q386.55228 360.375 386.55228 359.4375Q386.55228 358.53125 386.03665 358.01562Q385.53665 357.48438 384.70853 357.48438Q384.20853 357.48438 383.78665 357.71875Q383.3804 357.95312 383.14603 358.3125L382.16165 358.1875L382.98978 353.78125L387.27103 353.78125L387.27103 354.78125L383.83353 354.78125L383.3804 357.09375Q384.14603 356.54688 384.98978 356.54688Q386.11478 356.54688 386.8804 357.32812Q387.66165 358.10938 387.66165 359.34375Q387.66165 360.5 386.98978 361.35938Q386.16165 362.39062 384.73978 362.39062Q383.5679 362.39062 382.8179 361.73438Q382.08353 361.07812 381.97415 360.0Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M398.9946 362.25L397.94772 362.25L397.94772 355.53125Q397.5571 355.89062 396.9321 356.26562Q396.32272 356.625 395.83835 356.79688L395.83835 355.78125Q396.71335 355.35938 397.3696 354.78125Q398.04147 354.1875 398.32272 353.625L398.9946 353.625L398.9946 362.25ZM407.4946 355.76562L406.44772 355.84375Q406.3071 355.21875 406.0571 354.9375Q405.6196 354.48438 404.9946 354.48438Q404.4946 354.48438 404.10397 354.76562Q403.6196 355.14062 403.32272 355.84375Q403.04147 356.53125 403.02585 357.8125Q403.40085 357.23438 403.94772 356.95312Q404.51022 356.67188 405.1196 356.67188Q406.16647 356.67188 406.90085 357.45312Q407.65085 358.23438 407.65085 359.45312Q407.65085 360.26562 407.29147 360.96875Q406.94772 361.65625 406.33835 362.03125Q405.72897 362.39062 404.96335 362.39062Q403.63522 362.39062 402.8071 361.42188Q401.97897 360.45312 401.97897 358.23438Q401.97897 355.73438 402.90085 354.60938Q403.69772 353.625 405.0571 353.625Q406.07272 353.625 406.71335 354.20312Q407.3696 354.76562 407.4946 355.76562ZM403.19772 359.46875Q403.19772 360.01562 403.41647 360.51562Q403.65085 361.0 404.0571 361.26562Q404.47897 361.53125 404.94772 361.53125Q405.60397 361.53125 406.08835 361.0Q406.57272 360.45312 406.57272 359.53125Q406.57272 358.64062 406.08835 358.125Q405.6196 357.60938 404.90085 357.60938Q404.1821 357.60938 403.6821 358.125Q403.19772 358.64062 403.19772 359.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M419.04633 362.25L417.99945 362.25L417.99945 355.53125Q417.60883 355.89062 416.98383 356.26562Q416.37445 356.625 415.89008 356.79688L415.89008 355.78125Q416.76508 355.35938 417.42133 354.78125Q418.0932 354.1875 418.37445 353.625L419.04633 353.625L419.04633 362.25ZM422.14008 354.78125L422.14008 353.76562L427.70258 353.76562L427.70258 354.59375Q426.89008 355.46875 426.07758 356.92188Q425.2807 358.35938 424.8432 359.89062Q424.51508 360.96875 424.43695 362.25L423.3432 362.25Q423.35883 361.23438 423.73383 359.79688Q424.12445 358.35938 424.82758 357.03125Q425.54633 355.70312 426.35883 354.78125L422.14008 354.78125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M439.09805 362.25L438.05118 362.25L438.05118 355.53125Q437.66055 355.89062 437.03555 356.26562Q436.42618 356.625 435.9418 356.79688L435.9418 355.78125Q436.8168 355.35938 437.47305 354.78125Q438.14493 354.1875 438.42618 353.625L439.09805 353.625L439.09805 362.25ZM443.7543 357.59375Q443.09805 357.34375 442.76993 356.90625Q442.45743 356.45312 442.45743 355.84375Q442.45743 354.90625 443.1293 354.26562Q443.8168 353.625 444.92618 353.625Q446.05118 353.625 446.73868 354.28125Q447.42618 354.9375 447.42618 355.875Q447.42618 356.46875 447.11368 356.90625Q446.80118 357.34375 446.16055 357.59375Q446.95743 357.84375 447.36368 358.42188Q447.76993 359.0 447.76993 359.79688Q447.76993 360.89062 446.98868 361.64062Q446.22305 362.39062 444.9418 362.39062Q443.67618 362.39062 442.89493 361.64062Q442.11368 360.89062 442.11368 359.76562Q442.11368 358.92188 442.53555 358.35938Q442.97305 357.79688 443.7543 357.59375ZM443.53555 355.79688Q443.53555 356.40625 443.92618 356.79688Q444.33243 357.1875 444.95743 357.1875Q445.5668 357.1875 445.95743 356.8125Q446.34805 356.42188 446.34805 355.85938Q446.34805 355.28125 445.9418 354.89062Q445.53555 354.48438 444.9418 354.48438Q444.33243 354.48438 443.92618 354.875Q443.53555 355.26562 443.53555 355.79688ZM443.20743 359.76562Q443.20743 360.21875 443.41055 360.64062Q443.6293 361.0625 444.05118 361.29688Q444.47305 361.53125 444.95743 361.53125Q445.70743 361.53125 446.1918 361.04688Q446.6918 360.5625 446.6918 359.8125Q446.6918 359.04688 446.1918 358.54688Q445.6918 358.04688 444.92618 358.04688Q444.17618 358.04688 443.6918 358.54688Q443.20743 359.03125 443.20743 359.76562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M459.14978 362.25L458.1029 362.25L458.1029 355.53125Q457.71228 355.89062 457.08728 356.26562Q456.4779 356.625 455.99353 356.79688L455.99353 355.78125Q456.86853 355.35938 457.52478 354.78125Q458.19666 354.1875 458.4779 353.625L459.14978 353.625L459.14978 362.25ZM462.33728 360.26562L463.3529 360.17188Q463.4779 360.89062 463.83728 361.21875Q464.21228 361.53125 464.77478 361.53125Q465.25916 361.53125 465.61853 361.3125Q465.99353 361.07812 466.2279 360.71875Q466.46228 360.34375 466.61853 359.71875Q466.77478 359.07812 466.77478 358.42188Q466.77478 358.34375 466.77478 358.20312Q466.46228 358.70312 465.9154 359.03125Q465.36853 359.34375 464.7279 359.34375Q463.64978 359.34375 462.9154 358.57812Q462.18103 357.79688 462.18103 356.53125Q462.18103 355.21875 462.94666 354.42188Q463.7279 353.625 464.88416 353.625Q465.71228 353.625 466.39978 354.07812Q467.1029 354.53125 467.46228 355.375Q467.82166 356.20312 467.82166 357.78125Q467.82166 359.42188 467.46228 360.40625Q467.11853 361.375 466.39978 361.89062Q465.69666 362.39062 464.75916 362.39062Q463.74353 362.39062 463.1029 361.84375Q462.46228 361.28125 462.33728 360.26562ZM466.64978 356.46875Q466.64978 355.5625 466.1654 355.03125Q465.69666 354.5 465.00916 354.5Q464.30603 354.5 463.77478 355.07812Q463.25916 355.64062 463.25916 356.5625Q463.25916 357.375 463.75916 357.89062Q464.25916 358.40625 464.9779 358.40625Q465.71228 358.40625 466.18103 357.89062Q466.64978 357.375 466.64978 356.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M480.77963 361.23438L480.77963 362.25L475.09213 362.25Q475.09213 361.875 475.21713 361.51562Q475.43588 360.9375 475.90463 360.375Q476.389 359.8125 477.29526 359.07812Q478.7015 357.92188 479.18588 357.25Q479.68588 356.57812 479.68588 355.98438Q479.68588 355.35938 479.23276 354.9375Q478.77963 354.5 478.06088 354.5Q477.29526 354.5 476.84213 354.95312Q476.389 355.40625 476.37338 356.21875L475.29526 356.10938Q475.40463 354.89062 476.12338 354.26562Q476.85776 353.625 478.09213 353.625Q479.3265 353.625 480.04526 354.3125Q480.764 355.0 480.764 356.01562Q480.764 356.53125 480.54526 357.03125Q480.34213 357.51562 479.84213 358.07812Q479.35776 358.625 478.23276 359.57812Q477.27963 360.375 476.99838 360.67188Q476.73276 360.95312 476.56088 361.23438L480.77963 361.23438ZM482.23276 358.01562Q482.23276 356.48438 482.54526 355.5625Q482.85776 354.625 483.46713 354.125Q484.09213 353.625 485.02963 353.625Q485.71713 353.625 486.23276 353.90625Q486.764 354.1875 487.10776 354.71875Q487.4515 355.23438 487.639 355.98438Q487.8265 356.73438 487.8265 358.01562Q487.8265 359.53125 487.514 360.45312Q487.21713 361.375 486.59213 361.89062Q485.98276 362.39062 485.02963 362.39062Q483.79526 362.39062 483.0765 361.5Q482.23276 360.4375 482.23276 358.01562ZM483.31088 358.01562Q483.31088 360.125 483.81088 360.82812Q484.31088 361.53125 485.02963 361.53125Q485.764 361.53125 486.24838 360.82812Q486.74838 360.125 486.74838 358.01562Q486.74838 355.89062 486.24838 355.20312Q485.764 354.5 485.014 354.5Q484.29526 354.5 483.85776 355.10938Q483.31088 355.89062 483.31088 358.01562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M500.83136 361.23438L500.83136 362.25L495.14386 362.25Q495.14386 361.875 495.26886 361.51562Q495.4876 360.9375 495.95636 360.375Q496.44073 359.8125 497.347 359.07812Q498.75323 357.92188 499.2376 357.25Q499.7376 356.57812 499.7376 355.98438Q499.7376 355.35938 499.2845 354.9375Q498.83136 354.5 498.1126 354.5Q497.347 354.5 496.89386 354.95312Q496.44073 355.40625 496.4251 356.21875L495.347 356.10938Q495.45636 354.89062 496.1751 354.26562Q496.9095 353.625 498.14386 353.625Q499.37823 353.625 500.097 354.3125Q500.81573 355.0 500.81573 356.01562Q500.81573 356.53125 500.597 357.03125Q500.39386 357.51562 499.89386 358.07812Q499.4095 358.625 498.2845 359.57812Q497.33136 360.375 497.0501 360.67188Q496.7845 360.95312 496.6126 361.23438L500.83136 361.23438ZM506.25323 362.25L505.20636 362.25L505.20636 355.53125Q504.81573 355.89062 504.19073 356.26562Q503.58136 356.625 503.097 356.79688L503.097 355.78125Q503.972 355.35938 504.62823 354.78125Q505.3001 354.1875 505.58136 353.625L506.25323 353.625L506.25323 362.25Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M520.88306 361.23438L520.88306 362.25L515.19556 362.25Q515.19556 361.875 515.32056 361.51562Q515.5393 360.9375 516.00806 360.375Q516.49243 359.8125 517.3987 359.07812Q518.80493 357.92188 519.2893 357.25Q519.7893 356.57812 519.7893 355.98438Q519.7893 355.35938 519.3362 354.9375Q518.88306 354.5 518.1643 354.5Q517.3987 354.5 516.94556 354.95312Q516.49243 355.40625 516.4768 356.21875L515.3987 356.10938Q515.50806 354.89062 516.2268 354.26562Q516.9612 353.625 518.19556 353.625Q519.42993 353.625 520.1487 354.3125Q520.86743 355.0 520.86743 356.01562Q520.86743 356.53125 520.6487 357.03125Q520.44556 357.51562 519.94556 358.07812Q519.4612 358.625 518.3362 359.57812Q517.38306 360.375 517.1018 360.67188Q516.8362 360.95312 516.6643 361.23438L520.88306 361.23438ZM527.88306 361.23438L527.88306 362.25L522.19556 362.25Q522.19556 361.875 522.32056 361.51562Q522.5393 360.9375 523.00806 360.375Q523.49243 359.8125 524.3987 359.07812Q525.80493 357.92188 526.2893 357.25Q526.7893 356.57812 526.7893 355.98438Q526.7893 355.35938 526.3362 354.9375Q525.88306 354.5 525.1643 354.5Q524.3987 354.5 523.94556 354.95312Q523.49243 355.40625 523.4768 356.21875L522.3987 356.10938Q522.50806 354.89062 523.2268 354.26562Q523.9612 353.625 525.19556 353.625Q526.42993 353.625 527.1487 354.3125Q527.86743 355.0 527.86743 356.01562Q527.86743 356.53125 527.6487 357.03125Q527.44556 357.51562 526.94556 358.07812Q526.4612 358.625 525.3362 359.57812Q524.38306 360.375 524.1018 360.67188Q523.8362 360.95312 523.6643 361.23438L527.88306 361.23438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M540.9348 361.23438L540.9348 362.25L535.2473 362.25Q535.2473 361.875 535.3723 361.51562Q535.59106 360.9375 536.0598 360.375Q536.5442 359.8125 537.45044 359.07812Q538.8567 357.92188 539.34106 357.25Q539.84106 356.57812 539.84106 355.98438Q539.84106 355.35938 539.38794 354.9375Q538.9348 354.5 538.21606 354.5Q537.45044 354.5 536.9973 354.95312Q536.5442 355.40625 536.52856 356.21875L535.45044 356.10938Q535.5598 354.89062 536.27856 354.26562Q537.01294 353.625 538.2473 353.625Q539.4817 353.625 540.20044 354.3125Q540.9192 355.0 540.9192 356.01562Q540.9192 356.53125 540.70044 357.03125Q540.4973 357.51562 539.9973 358.07812Q539.51294 358.625 538.38794 359.57812Q537.4348 360.375 537.15356 360.67188Q536.88794 360.95312 536.71606 361.23438L540.9348 361.23438ZM542.38794 359.98438L543.45044 359.84375Q543.6223 360.73438 544.0598 361.14062Q544.4973 361.53125 545.1223 361.53125Q545.8723 361.53125 546.38794 361.01562Q546.90356 360.5 546.90356 359.73438Q546.90356 359.01562 546.4192 358.54688Q545.95044 358.0625 545.21606 358.0625Q544.9192 358.0625 544.46606 358.1875L544.59106 357.25Q544.70044 357.26562 544.76294 357.26562Q545.4348 357.26562 545.96606 356.92188Q546.51294 356.5625 546.51294 355.82812Q546.51294 355.25 546.1223 354.875Q545.7317 354.48438 545.1067 354.48438Q544.4973 354.48438 544.07544 354.875Q543.6692 355.26562 543.5598 356.03125L542.4973 355.84375Q542.6848 354.79688 543.3723 354.21875Q544.0598 353.625 545.07544 353.625Q545.77856 353.625 546.3723 353.9375Q546.96606 354.23438 547.27856 354.75Q547.59106 355.26562 547.59106 355.85938Q547.59106 356.40625 547.2942 356.875Q546.9973 357.32812 546.4192 357.59375Q547.1692 357.76562 547.59106 358.32812Q548.01294 358.875 548.01294 359.71875Q548.01294 360.84375 547.1848 361.625Q546.3723 362.40625 545.1223 362.40625Q543.9973 362.40625 543.2473 361.73438Q542.4973 361.04688 542.38794 359.98438Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M560.9865 361.23438L560.9865 362.25L555.299 362.25Q555.299 361.875 555.424 361.51562Q555.64276 360.9375 556.1115 360.375Q556.5959 359.8125 557.50214 359.07812Q558.9084 357.92188 559.39276 357.25Q559.89276 356.57812 559.89276 355.98438Q559.89276 355.35938 559.43964 354.9375Q558.9865 354.5 558.26776 354.5Q557.50214 354.5 557.049 354.95312Q556.5959 355.40625 556.58026 356.21875L555.50214 356.10938Q555.6115 354.89062 556.33026 354.26562Q557.06464 353.625 558.299 353.625Q559.5334 353.625 560.25214 354.3125Q560.9709 355.0 560.9709 356.01562Q560.9709 356.53125 560.75214 357.03125Q560.549 357.51562 560.049 358.07812Q559.56464 358.625 558.43964 359.57812Q557.4865 360.375 557.20526 360.67188Q556.93964 360.95312 556.76776 361.23438L560.9865 361.23438ZM565.81464 362.25L565.81464 360.1875L562.0959 360.1875L562.0959 359.21875L566.01776 353.65625L566.87714 353.65625L566.87714 359.21875L568.0334 359.21875L568.0334 360.1875L566.87714 360.1875L566.87714 362.25L565.81464 362.25ZM565.81464 359.21875L565.81464 355.35938L563.12714 359.21875L565.81464 359.21875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M581.03827 361.23438L581.03827 362.25L575.35077 362.25Q575.35077 361.875 575.47577 361.51562Q575.6945 360.9375 576.16327 360.375Q576.64764 359.8125 577.5539 359.07812Q578.96014 357.92188 579.4445 357.25Q579.9445 356.57812 579.9445 355.98438Q579.9445 355.35938 579.4914 354.9375Q579.03827 354.5 578.3195 354.5Q577.5539 354.5 577.10077 354.95312Q576.64764 355.40625 576.632 356.21875L575.5539 356.10938Q575.66327 354.89062 576.382 354.26562Q577.1164 353.625 578.35077 353.625Q579.58514 353.625 580.3039 354.3125Q581.02264 355.0 581.02264 356.01562Q581.02264 356.53125 580.8039 357.03125Q580.60077 357.51562 580.10077 358.07812Q579.6164 358.625 578.4914 359.57812Q577.53827 360.375 577.257 360.67188Q576.9914 360.95312 576.8195 361.23438L581.03827 361.23438ZM582.4914 360.0L583.60077 359.90625Q583.72577 360.71875 584.16327 361.125Q584.6164 361.53125 585.257 361.53125Q586.007 361.53125 586.53827 360.95312Q587.0695 360.375 587.0695 359.4375Q587.0695 358.53125 586.5539 358.01562Q586.0539 357.48438 585.22577 357.48438Q584.72577 357.48438 584.3039 357.71875Q583.89764 357.95312 583.66327 358.3125L582.6789 358.1875L583.507 353.78125L587.78827 353.78125L587.78827 354.78125L584.35077 354.78125L583.89764 357.09375Q584.66327 356.54688 585.507 356.54688Q586.632 356.54688 587.39764 357.32812Q588.1789 358.10938 588.1789 359.34375Q588.1789 360.5 587.507 361.35938Q586.6789 362.39062 585.257 362.39062Q584.08514 362.39062 583.33514 361.73438Q582.60077 361.07812 582.4914 360.0Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M601.08997 361.23438L601.08997 362.25L595.40247 362.25Q595.40247 361.875 595.52747 361.51562Q595.7462 360.9375 596.21497 360.375Q596.69934 359.8125 597.6056 359.07812Q599.01184 357.92188 599.4962 357.25Q599.9962 356.57812 599.9962 355.98438Q599.9962 355.35938 599.5431 354.9375Q599.08997 354.5 598.3712 354.5Q597.6056 354.5 597.15247 354.95312Q596.69934 355.40625 596.6837 356.21875L595.6056 356.10938Q595.71497 354.89062 596.4337 354.26562Q597.1681 353.625 598.40247 353.625Q599.63684 353.625 600.3556 354.3125Q601.07434 355.0 601.07434 356.01562Q601.07434 356.53125 600.8556 357.03125Q600.65247 357.51562 600.15247 358.07812Q599.6681 358.625 598.5431 359.57812Q597.58997 360.375 597.3087 360.67188Q597.0431 360.95312 596.8712 361.23438L601.08997 361.23438ZM608.01184 355.76562L606.96497 355.84375Q606.82434 355.21875 606.57434 354.9375Q606.13684 354.48438 605.51184 354.48438Q605.01184 354.48438 604.6212 354.76562Q604.13684 355.14062 603.83997 355.84375Q603.5587 356.53125 603.5431 357.8125Q603.9181 357.23438 604.46497 356.95312Q605.02747 356.67188 605.63684 356.67188Q606.6837 356.67188 607.4181 357.45312Q608.1681 358.23438 608.1681 359.45312Q608.1681 360.26562 607.8087 360.96875Q607.46497 361.65625 606.8556 362.03125Q606.2462 362.39062 605.4806 362.39062Q604.15247 362.39062 603.32434 361.42188Q602.4962 360.45312 602.4962 358.23438Q602.4962 355.73438 603.4181 354.60938Q604.21497 353.625 605.57434 353.625Q606.58997 353.625 607.2306 354.20312Q607.88684 354.76562 608.01184 355.76562ZM603.71497 359.46875Q603.71497 360.01562 603.9337 360.51562Q604.1681 361.0 604.57434 361.26562Q604.9962 361.53125 605.46497 361.53125Q606.1212 361.53125 606.6056 361.0Q607.08997 360.45312 607.08997 359.53125Q607.08997 358.64062 606.6056 358.125Q606.13684 357.60938 605.4181 357.60938Q604.69934 357.60938 604.19934 358.125Q603.71497 358.64062 603.71497 359.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M621.1417 361.23438L621.1417 362.25L615.4542 362.25Q615.4542 361.875 615.5792 361.51562Q615.798 360.9375 616.2667 360.375Q616.7511 359.8125 617.65735 359.07812Q619.0636 357.92188 619.548 357.25Q620.048 356.57812 620.048 355.98438Q620.048 355.35938 619.59485 354.9375Q619.1417 354.5 618.423 354.5Q617.65735 354.5 617.2042 354.95312Q616.7511 355.40625 616.7355 356.21875L615.65735 356.10938Q615.7667 354.89062 616.4855 354.26562Q617.21985 353.625 618.4542 353.625Q619.6886 353.625 620.40735 354.3125Q621.1261 355.0 621.1261 356.01562Q621.1261 356.53125 620.90735 357.03125Q620.7042 357.51562 620.2042 358.07812Q619.71985 358.625 618.59485 359.57812Q617.6417 360.375 617.3605 360.67188Q617.09485 360.95312 616.923 361.23438L621.1417 361.23438ZM622.65735 354.78125L622.65735 353.76562L628.21985 353.76562L628.21985 354.59375Q627.40735 355.46875 626.59485 356.92188Q625.798 358.35938 625.3605 359.89062Q625.03235 360.96875 624.9542 362.25L623.8605 362.25Q623.8761 361.23438 624.2511 359.79688Q624.6417 358.35938 625.34485 357.03125Q626.0636 355.70312 626.8761 354.78125L622.65735 354.78125Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M641.1934 361.23438L641.1934 362.25L635.5059 362.25Q635.5059 361.875 635.6309 361.51562Q635.8497 360.9375 636.3184 360.375Q636.8028 359.8125 637.70905 359.07812Q639.1153 357.92188 639.5997 357.25Q640.0997 356.57812 640.0997 355.98438Q640.0997 355.35938 639.64655 354.9375Q639.1934 354.5 638.4747 354.5Q637.70905 354.5 637.2559 354.95312Q636.8028 355.40625 636.7872 356.21875L635.70905 356.10938Q635.8184 354.89062 636.5372 354.26562Q637.27155 353.625 638.5059 353.625Q639.7403 353.625 640.45905 354.3125Q641.1778 355.0 641.1778 356.01562Q641.1778 356.53125 640.95905 357.03125Q640.7559 357.51562 640.2559 358.07812Q639.77155 358.625 638.64655 359.57812Q637.6934 360.375 637.4122 360.67188Q637.14655 360.95312 636.9747 361.23438L641.1934 361.23438ZM644.27155 357.59375Q643.6153 357.34375 643.2872 356.90625Q642.9747 356.45312 642.9747 355.84375Q642.9747 354.90625 643.64655 354.26562Q644.33405 353.625 645.4434 353.625Q646.5684 353.625 647.2559 354.28125Q647.9434 354.9375 647.9434 355.875Q647.9434 356.46875 647.6309 356.90625Q647.3184 357.34375 646.6778 357.59375Q647.4747 357.84375 647.8809 358.42188Q648.2872 359.0 648.2872 359.79688Q648.2872 360.89062 647.5059 361.64062Q646.7403 362.39062 645.45905 362.39062Q644.1934 362.39062 643.4122 361.64062Q642.6309 360.89062 642.6309 359.76562Q642.6309 358.92188 643.0528 358.35938Q643.4903 357.79688 644.27155 357.59375ZM644.0528 355.79688Q644.0528 356.40625 644.4434 356.79688Q644.8497 357.1875 645.4747 357.1875Q646.08405 357.1875 646.4747 356.8125Q646.8653 356.42188 646.8653 355.85938Q646.8653 355.28125 646.45905 354.89062Q646.0528 354.48438 645.45905 354.48438Q644.8497 354.48438 644.4434 354.875Q644.0528 355.26562 644.0528 355.79688ZM643.7247 359.76562Q643.7247 360.21875 643.9278 360.64062Q644.14655 361.0625 644.5684 361.29688Q644.9903 361.53125 645.4747 361.53125Q646.2247 361.53125 646.70905 361.04688Q647.20905 360.5625 647.20905 359.8125Q647.20905 359.04688 646.70905 358.54688Q646.20905 358.04688 645.4434 358.04688Q644.6934 358.04688 644.20905 358.54688Q643.7247 359.03125 643.7247 359.76562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M661.2452 361.23438L661.2452 362.25L655.5577 362.25Q655.5577 361.875 655.6827 361.51562Q655.9014 360.9375 656.3702 360.375Q656.85455 359.8125 657.7608 359.07812Q659.16705 357.92188 659.6514 357.25Q660.1514 356.57812 660.1514 355.98438Q660.1514 355.35938 659.6983 354.9375Q659.2452 354.5 658.5264 354.5Q657.7608 354.5 657.3077 354.95312Q656.85455 355.40625 656.8389 356.21875L655.7608 356.10938Q655.8702 354.89062 656.5889 354.26562Q657.3233 353.625 658.5577 353.625Q659.79205 353.625 660.5108 354.3125Q661.22955 355.0 661.22955 356.01562Q661.22955 356.53125 661.0108 357.03125Q660.8077 357.51562 660.3077 358.07812Q659.8233 358.625 658.6983 359.57812Q657.7452 360.375 657.4639 360.67188Q657.1983 360.95312 657.0264 361.23438L661.2452 361.23438ZM662.85455 360.26562L663.8702 360.17188Q663.9952 360.89062 664.35455 361.21875Q664.72955 361.53125 665.29205 361.53125Q665.7764 361.53125 666.1358 361.3125Q666.5108 361.07812 666.7452 360.71875Q666.97955 360.34375 667.1358 359.71875Q667.29205 359.07812 667.29205 358.42188Q667.29205 358.34375 667.29205 358.20312Q666.97955 358.70312 666.4327 359.03125Q665.8858 359.34375 665.2452 359.34375Q664.16705 359.34375 663.4327 358.57812Q662.6983 357.79688 662.6983 356.53125Q662.6983 355.21875 663.4639 354.42188Q664.2452 353.625 665.4014 353.625Q666.22955 353.625 666.91705 354.07812Q667.6202 354.53125 667.97955 355.375Q668.3389 356.20312 668.3389 357.78125Q668.3389 359.42188 667.97955 360.40625Q667.6358 361.375 666.91705 361.89062Q666.2139 362.39062 665.2764 362.39062Q664.2608 362.39062 663.6202 361.84375Q662.97955 361.28125 662.85455 360.26562ZM667.16705 356.46875Q667.16705 355.5625 666.6827 355.03125Q666.2139 354.5 665.5264 354.5Q664.8233 354.5 664.29205 355.07812Q663.7764 355.64062 663.7764 356.5625Q663.7764 357.375 664.2764 357.89062Q664.7764 358.40625 665.4952 358.40625Q666.22955 358.40625 666.6983 357.89062Q667.16705 357.375 667.16705 356.46875Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M675.75 359.98438L676.8125 359.84375Q676.9844 360.73438 677.4219 361.14062Q677.8594 361.53125 678.4844 361.53125Q679.2344 361.53125 679.75 361.01562Q680.2656 360.5 680.2656 359.73438Q680.2656 359.01562 679.78125 358.54688Q679.3125 358.0625 678.5781 358.0625Q678.28125 358.0625 677.8281 358.1875L677.9531 357.25Q678.0625 357.26562 678.125 357.26562Q678.7969 357.26562 679.3281 356.92188Q679.875 356.5625 679.875 355.82812Q679.875 355.25 679.4844 354.875Q679.09375 354.48438 678.46875 354.48438Q677.8594 354.48438 677.4375 354.875Q677.03125 355.26562 676.9219 356.03125L675.8594 355.84375Q676.0469 354.79688 676.7344 354.21875Q677.4219 353.625 678.4375 353.625Q679.1406 353.625 679.7344 353.9375Q680.3281 354.23438 680.6406 354.75Q680.9531 355.26562 680.9531 355.85938Q680.9531 356.40625 680.65625 356.875Q680.3594 357.32812 679.78125 357.59375Q680.53125 357.76562 680.9531 358.32812Q681.375 358.875 681.375 359.71875Q681.375 360.84375 680.5469 361.625Q679.7344 362.40625 678.4844 362.40625Q677.3594 362.40625 676.6094 361.73438Q675.8594 361.04688 675.75 359.98438ZM682.75 358.01562Q682.75 356.48438 683.0625 355.5625Q683.375 354.625 683.9844 354.125Q684.6094 353.625 685.5469 353.625Q686.2344 353.625 686.75 353.90625Q687.28125 354.1875 687.625 354.71875Q687.96875 355.23438 688.15625 355.98438Q688.34375 356.73438 688.34375 358.01562Q688.34375 359.53125 688.03125 360.45312Q687.7344 361.375 687.1094 361.89062Q686.5 362.39062 685.5469 362.39062Q684.3125 362.39062 683.59375 361.5Q682.75 360.4375 682.75 358.01562ZM683.8281 358.01562Q683.8281 360.125 684.3281 360.82812Q684.8281 361.53125 685.5469 361.53125Q686.28125 361.53125 686.7656 360.82812Q687.2656 360.125 687.2656 358.01562Q687.2656 355.89062 686.7656 355.20312Q686.28125 354.5 685.53125 354.5Q684.8125 354.5 684.375 355.10938Q683.8281 355.89062 683.8281 358.01562Z" fill="#000000" fill-rule="nonzero"></path>
     <path d="M71.09346 40.54624L71.09346 42.57749L59.74971 42.57749Q59.71846 41.811867 59.984085 41.10874Q60.421585 39.95249 61.37471 38.82749Q62.327835 37.70249 64.140335 36.218117Q66.93721 33.92124 67.921585 32.593117Q68.90596 31.249367 68.90596 30.046242Q68.90596 28.796242 67.99971 27.936867Q67.109085 27.077492 65.671585 27.077492Q64.15596 27.077492 63.234085 27.999367Q62.327835 28.905617 62.31221 30.514992L60.140335 30.296242Q60.359085 27.874367 61.81221 26.608742Q63.265335 25.327492 65.71846 25.327492Q68.18721 25.327492 69.62471 26.702492Q71.077835 28.061867 71.077835 30.093117Q71.077835 31.124367 70.65596 32.124367Q70.234085 33.124367 69.24971 34.23374Q68.28096 35.32749 65.99971 37.249367Q64.109085 38.843117 63.56221 39.405617Q63.03096 39.968117 62.671585 40.54624L71.09346 40.54624ZM73.015335 34.10874Q73.015335 31.061867 73.640335 29.202492Q74.265335 27.343117 75.49971 26.343117Q76.734085 25.327492 78.609085 25.327492Q79.99971 25.327492 81.03096 25.889992Q82.077835 26.436867 82.74971 27.483742Q83.43721 28.530617 83.827835 30.046242Q84.21846 31.546242 84.21846 34.10874Q84.21846 37.124367 83.59346 38.98374Q82.96846 40.843117 81.734085 41.85874Q80.49971 42.874367 78.609085 42.874367Q76.12471 42.874367 74.71846 41.093117Q73.015335 38.936867 73.015335 34.10874ZM75.18721 34.10874Q75.18721 38.32749 76.171585 39.73374Q77.15596 41.13999 78.609085 41.13999Q80.06221 41.13999 81.046585 39.73374Q82.046585 38.32749 82.046585 34.10874Q82.046585 29.858742 81.046585 28.468117Q80.06221 27.077492 78.59346 27.077492Q77.140335 27.077492 76.265335 28.296242Q75.18721 29.874367 75.18721 34.10874ZM97.09346 40.54624L97.09346 42.57749L85.74971 42.57749Q85.71846 41.811867 85.984085 41.10874Q86.421585 39.95249 87.37471 38.82749Q88.327835 37.70249 90.140335 36.218117Q92.93721 33.92124 93.921585 32.593117Q94.90596 31.249367 94.90596 30.046242Q94.90596 28.796242 93.99971 27.936867Q93.109085 27.077492 91.671585 27.077492Q90.15596 27.077492 89.234085 27.999367Q88.327835 28.905617 88.31221 30.514992L86.140335 30.296242Q86.359085 27.874367 87.81221 26.608742Q89.265335 25.327492 91.71846 25.327492Q94.18721 25.327492 95.62471 26.702492Q97.077835 28.061867 97.077835 30.093117Q97.077835 31.124367 96.65596 32.124367Q96.234085 33.124367 95.24971 34.23374Q94.28096 35.32749 91.99971 37.249367Q90.109085 38.843117 89.56221 39.405617Q89.03096 39.968117 88.671585 40.54624L97.09346 40.54624ZM99.015335 34.10874Q99.015335 31.061867 99.640335 29.202492Q100.265335 27.343117 101.49971 26.343117Q102.734085 25.327492 104.609085 25.327492Q105.99971 25.327492 107.03096 25.889992Q108.077835 26.436867 108.74971 27.483742Q109.43721 28.530617 109.827835 30.046242Q110.21846 31.546242 110.21846 34.10874Q110.21846 37.124367 109.59346 38.98374Q108.96846 40.843117 107.734085 41.85874Q106.49971 42.874367 104.609085 42.874367Q102.12471 42.874367 100.71846 41.093117Q99.015335 38.936867 99.015335 34.10874ZM101.18721 34.10874Q101.18721 38.32749 102.171585 39.73374Q103.15596 41.13999 104.609085 41.13999Q106.06221 41.13999 107.046585 39.73374Q108.046585 38.32749 108.046585 34.10874Q108.046585 29.858742 107.046585 28.468117Q106.06221 27.077492 104.59346 27.077492Q103.140335 27.077492 102.265335 28.296242Q101.18721 29.874367 101.18721 34.10874ZM119.78096 42.57749L119.78096 25.389992L122.046585 25.389992L122.046585 40.54624L130.51534 40.54624L130.51534 42.57749L119.78096 42.57749ZM132.60909 27.827492L132.60909 25.389992L134.71846 25.389992L134.71846 27.827492L132.60909 27.827492ZM132.60909 42.57749L132.60909 30.124367L134.71846 30.124367L134.71846 42.57749L132.60909 42.57749ZM139.54659 42.57749L137.59346 42.57749L137.59346 25.389992L139.70284 25.389992L139.70284 31.530617Q141.03096 29.843117 143.10909 29.843117Q144.24971 29.843117 145.28096 30.311867Q146.31221 30.780617 146.96846 31.624367Q147.62471 32.45249 147.99971 33.63999Q148.37471 34.811867 148.37471 36.17124Q148.37471 39.35874 146.79659 41.10874Q145.21846 42.85874 142.99971 42.85874Q140.79659 42.85874 139.54659 41.01499L139.54659 42.57749ZM139.51534 36.26499Q139.51534 38.499367 140.12471 39.499367Q141.12471 41.124367 142.82784 41.124367Q144.20284 41.124367 145.20284 39.92124Q146.21846 38.718117 146.21846 36.343117Q146.21846 33.905617 145.24971 32.749367Q144.29659 31.577492 142.92159 31.577492Q141.53096 31.577492 140.51534 32.780617Q139.51534 33.98374 139.51534 36.26499ZM150.57784 42.57749L150.57784 30.124367L152.46846 30.124367L152.46846 32.01499Q153.20284 30.686867 153.81221 30.264992Q154.43721 29.843117 155.17159 29.843117Q156.23409 29.843117 157.34346 30.530617L156.60909 32.48374Q155.84346 32.030617 155.06221 32.030617Q154.37471 32.030617 153.81221 32.45249Q153.26534 32.85874 153.03096 33.593117Q152.68721 34.718117 152.68721 36.061867L152.68721 42.57749L150.57784 42.57749ZM166.71846 41.04624Q165.54659 42.030617 164.45284 42.45249Q163.37471 42.85874 162.14034 42.85874Q160.09346 42.85874 158.98409 41.85874Q157.89034 40.85874 157.89034 39.29624Q157.89034 38.374367 158.29659 37.624367Q158.71846 36.874367 159.39034 36.42124Q160.06221 35.95249 160.90596 35.718117Q161.53096 35.561867 162.78096 35.405617Q165.34346 35.093117 166.54659 34.67124Q166.56221 34.249367 166.56221 34.124367Q166.56221 32.843117 165.95284 32.311867Q165.15596 31.593117 163.56221 31.593117Q162.06221 31.593117 161.35909 32.124367Q160.65596 32.63999 160.31221 33.968117L158.24971 33.686867Q158.53096 32.35874 159.17159 31.546242Q159.81221 30.733742 161.03096 30.296242Q162.24971 29.843117 163.85909 29.843117Q165.45284 29.843117 166.45284 30.218117Q167.45284 30.593117 167.92159 31.171242Q168.39034 31.733742 168.57784 32.60874Q168.67159 33.13999 168.67159 34.54624L168.67159 37.35874Q168.67159 40.29624 168.81221 41.07749Q168.95284 41.85874 169.34346 42.57749L167.14034 42.57749Q166.81221 41.92124 166.71846 41.04624ZM166.54659 36.32749Q165.39034 36.79624 163.09346 37.124367Q161.79659 37.311867 161.24971 37.54624Q160.71846 37.780617 160.42159 38.23374Q160.14034 38.686867 160.14034 39.23374Q160.14034 40.07749 160.76534 40.63999Q161.40596 41.20249 162.64034 41.20249Q163.85909 41.20249 164.81221 40.67124Q165.76534 40.13999 166.20284 39.218117Q166.54659 38.499367 166.54659 37.10874L166.54659 36.32749ZM171.57784 42.57749L171.57784 30.124367L173.46846 30.124367L173.46846 32.01499Q174.20284 30.686867 174.81221 30.264992Q175.43721 29.843117 176.17159 29.843117Q177.23409 29.843117 178.34346 30.530617L177.60909 32.48374Q176.84346 32.030617 176.06221 32.030617Q175.37471 32.030617 174.81221 32.45249Q174.26534 32.85874 174.03096 33.593117Q173.68721 34.718117 173.68721 36.061867L173.68721 42.57749L171.57784 42.57749ZM179.49971 47.374367L179.26534 45.38999Q179.96846 45.57749 180.48409 45.57749Q181.18721 45.57749 181.60909 45.343117Q182.03096 45.10874 182.29659 44.686867Q182.49971 44.374367 182.93721 43.124367Q182.99971 42.936867 183.12471 42.60874L178.40596 30.124367L180.67159 30.124367L183.26534 37.343117Q183.76534 38.70249 184.17159 40.218117Q184.53096 38.76499 185.03096 37.38999L187.70284 30.124367L189.81221 30.124367L185.07784 42.79624Q184.31221 44.843117 183.89034 45.60874Q183.32784 46.655617 182.59346 47.13999Q181.87471 47.624367 180.85909 47.624367Q180.24971 47.624367 179.49971 47.374367ZM198.92159 42.57749L198.92159 25.389992L211.34346 25.389992L211.34346 27.421242L201.18721 27.421242L201.18721 32.686867L210.68721 32.686867L210.68721 34.70249L201.18721 34.70249L201.18721 40.54624L211.73409 40.54624L211.73409 42.57749L198.92159 42.57749ZM218.06221 42.57749L213.32784 30.124367L215.54659 30.124367L218.21846 37.57749Q218.65596 38.79624 219.01534 40.093117Q219.29659 39.10874 219.79659 37.718117L222.56221 30.124367L224.73409 30.124367L220.03096 42.57749L218.06221 42.57749ZM225.81221 36.35874Q225.81221 32.88999 227.73409 31.233742Q229.34346 29.843117 231.65596 29.843117Q234.21846 29.843117 235.84346 31.530617Q237.46846 33.218117 237.46846 36.17124Q237.46846 38.57749 236.74971 39.95249Q236.03096 41.32749 234.65596 42.093117Q233.28096 42.85874 231.65596 42.85874Q229.03096 42.85874 227.42159 41.186867Q225.81221 39.499367 225.81221 36.35874ZM227.98409 36.35874Q227.98409 38.749367 229.01534 39.936867Q230.06221 41.124367 231.65596 41.124367Q233.21846 41.124367 234.26534 39.936867Q235.31221 38.73374 235.31221 36.280617Q235.31221 33.968117 234.24971 32.780617Q233.20284 31.593117 231.65596 31.593117Q230.06221 31.593117 229.01534 32.780617Q227.98409 33.968117 227.98409 36.35874ZM239.54659 42.57749L239.54659 25.389992L241.65596 25.389992L241.65596 42.57749L239.54659 42.57749ZM252.74971 42.57749L252.74971 40.749367Q251.29659 42.85874 248.81221 42.85874Q247.70284 42.85874 246.74971 42.436867Q245.79659 42.01499 245.32784 41.374367Q244.87471 40.73374 244.68721 39.811867Q244.54659 39.186867 244.54659 37.843117L244.54659 30.124367L246.65596 30.124367L246.65596 37.030617Q246.65596 38.686867 246.79659 39.26499Q246.98409 40.093117 247.62471 40.57749Q248.28096 41.04624 249.23409 41.04624Q250.17159 41.04624 250.99971 40.561867Q251.84346 40.061867 252.18721 39.23374Q252.53096 38.38999 252.53096 36.79624L252.53096 30.124367L254.64034 30.124367L254.64034 42.57749L252.74971 42.57749ZM262.20282 40.686867L262.51532 42.54624Q261.6247 42.749367 260.92157 42.749367Q259.76532 42.749367 259.1247 42.38999Q258.4997 42.01499 258.23407 41.42124Q257.98407 40.82749 257.98407 38.936867L257.98407 31.764992L256.4372 31.764992L256.4372 30.124367L257.98407 30.124367L257.98407 27.046242L260.07782 25.780617L260.07782 30.124367L262.20282 30.124367L262.20282 31.764992L260.07782 31.764992L260.07782 39.04624Q260.07782 39.95249 260.1872 40.218117Q260.3122 40.468117 260.5622 40.624367Q260.8122 40.76499 261.28094 40.76499Q261.6247 40.76499 262.20282 40.686867ZM264.60907 27.827492L264.60907 25.389992L266.71844 25.389992L266.71844 27.827492L264.60907 27.827492ZM264.60907 42.57749L264.60907 30.124367L266.71844 30.124367L266.71844 42.57749L264.60907 42.57749ZM268.8122 36.35874Q268.8122 32.88999 270.73407 31.233742Q272.34344 29.843117 274.65594 29.843117Q277.21844 29.843117 278.84344 31.530617Q280.46844 33.218117 280.46844 36.17124Q280.46844 38.57749 279.7497 39.95249Q279.03094 41.32749 277.65594 42.093117Q276.28094 42.85874 274.65594 42.85874Q272.03094 42.85874 270.42157 41.186867Q268.8122 39.499367 268.8122 36.35874ZM270.98407 36.35874Q270.98407 38.749367 272.01532 39.936867Q273.0622 41.124367 274.65594 41.124367Q276.21844 41.124367 277.26532 39.936867Q278.3122 38.73374 278.3122 36.280617Q278.3122 33.968117 277.2497 32.780617Q276.20282 31.593117 274.65594 31.593117Q273.0622 31.593117 272.01532 32.780617Q270.98407 33.968117 270.98407 36.35874ZM282.59344 42.57749L282.59344 30.124367L284.4997 30.124367L284.4997 31.905617Q285.8747 29.843117 288.45282 29.843117Q289.57782 29.843117 290.51532 30.249367Q291.46844 30.655617 291.9372 31.311867Q292.40594 31.968117 292.59344 32.874367Q292.71844 33.45249 292.71844 34.92124L292.71844 42.57749L290.60907 42.57749L290.60907 34.999367Q290.60907 33.718117 290.35907 33.07749Q290.10907 32.436867 289.48407 32.061867Q288.85907 31.671242 288.01532 31.671242Q286.67157 31.671242 285.6872 32.530617Q284.70282 33.38999 284.70282 35.780617L284.70282 42.57749L282.59344 42.57749ZM307.23407 42.57749L307.23407 27.421242L301.57782 27.421242L301.57782 25.389992L315.20282 25.389992L315.20282 27.421242L309.51532 27.421242L309.51532 42.57749L307.23407 42.57749ZM326.1247 38.561867L328.29657 38.843117Q327.78094 40.749367 326.39032 41.811867Q324.9997 42.85874 322.82782 42.85874Q320.09344 42.85874 318.48407 41.186867Q316.89032 39.499367 316.89032 36.45249Q316.89032 33.311867 318.4997 31.577492Q320.1247 29.843117 322.70282 29.843117Q325.20282 29.843117 326.78094 31.546242Q328.3747 33.249367 328.3747 36.32749Q328.3747 36.51499 328.35907 36.88999L319.07782 36.88999Q319.1872 38.936867 320.23407 40.030617Q321.28094 41.124367 322.84344 41.124367Q323.9997 41.124367 324.8122 40.51499Q325.64032 39.905617 326.1247 38.561867ZM319.1872 35.155617L326.14032 35.155617Q325.9997 33.593117 325.34344 32.79624Q324.34344 31.577492 322.73407 31.577492Q321.28094 31.577492 320.28094 32.561867Q319.29657 33.530617 319.1872 35.155617ZM330.54657 42.57749L330.54657 25.389992L332.65594 25.389992L332.65594 42.57749L330.54657 42.57749ZM344.1247 38.561867L346.29657 38.843117Q345.78094 40.749367 344.39032 41.811867Q342.9997 42.85874 340.82782 42.85874Q338.09344 42.85874 336.48407 41.186867Q334.89032 39.499367 334.89032 36.45249Q334.89032 33.311867 336.4997 31.577492Q338.1247 29.843117 340.70282 29.843117Q343.20282 29.843117 344.78094 31.546242Q346.3747 33.249367 346.3747 36.32749Q346.3747 36.51499 346.35907 36.88999L337.07782 36.88999Q337.1872 38.936867 338.23407 40.030617Q339.28094 41.124367 340.84344 41.124367Q341.9997 41.124367 342.8122 40.51499Q343.64032 39.905617 344.1247 38.561867ZM337.1872 35.155617L344.14032 35.155617Q343.9997 33.593117 343.34344 32.79624Q342.34344 31.577492 340.73407 31.577492Q339.28094 31.577492 338.28094 32.561867Q337.29657 33.530617 337.1872 35.155617ZM356.71844 38.01499L358.79657 38.280617Q358.45282 40.436867 357.04657 41.655617Q355.65594 42.85874 353.60907 42.85874Q351.0622 42.85874 349.4997 41.186867Q347.95282 39.51499 347.95282 36.405617Q347.95282 34.38999 348.6247 32.874367Q349.29657 31.358742 350.65594 30.608742Q352.01532 29.843117 353.6247 29.843117Q355.65594 29.843117 356.9372 30.874367Q358.23407 31.905617 358.59344 33.780617L356.54657 34.10874Q356.2497 32.843117 355.4997 32.218117Q354.76532 31.577492 353.70282 31.577492Q352.10907 31.577492 351.10907 32.73374Q350.1247 33.874367 350.1247 36.343117Q350.1247 38.843117 351.07782 39.98374Q352.04657 41.124367 353.59344 41.124367Q354.82782 41.124367 355.65594 40.35874Q356.4997 39.593117 356.71844 38.01499ZM359.8122 36.35874Q359.8122 32.88999 361.73407 31.233742Q363.34344 29.843117 365.65594 29.843117Q368.21844 29.843117 369.84344 31.530617Q371.46844 33.218117 371.46844 36.17124Q371.46844 38.57749 370.7497 39.95249Q370.03094 41.32749 368.65594 42.093117Q367.28094 42.85874 365.65594 42.85874Q363.03094 42.85874 361.42157 41.186867Q359.8122 39.499367 359.8122 36.35874ZM361.98407 36.35874Q361.98407 38.749367 363.01532 39.936867Q364.0622 41.124367 365.65594 41.124367Q367.21844 41.124367 368.26532 39.936867Q369.3122 38.73374 369.3122 36.280617Q369.3122 33.968117 368.2497 32.780617Q367.20282 31.593117 365.65594 31.593117Q364.0622 31.593117 363.01532 32.780617Q361.98407 33.968117 361.98407 36.35874ZM373.59344 42.57749L373.59344 30.124367L375.4997 30.124367L375.4997 31.905617Q376.8747 29.843117 379.45282 29.843117Q380.57782 29.843117 381.51532 30.249367Q382.46844 30.655617 382.9372 31.311867Q383.40594 31.968117 383.59344 32.874367Q383.71844 33.45249 383.71844 34.92124L383.71844 42.57749L381.60907 42.57749L381.60907 34.999367Q381.60907 33.718117 381.35907 33.07749Q381.10907 32.436867 380.48407 32.061867Q379.85907 31.671242 379.01532 31.671242Q377.67157 31.671242 376.6872 32.530617Q375.70282 33.38999 375.70282 35.780617L375.70282 42.57749L373.59344 42.57749ZM385.7497 38.85874L387.84344 38.530617Q388.01532 39.780617 388.8122 40.45249Q389.6247 41.124367 391.0622 41.124367Q392.51532 41.124367 393.21844 40.530617Q393.92157 39.936867 393.92157 39.13999Q393.92157 38.42124 393.29657 38.01499Q392.8747 37.73374 391.14032 37.29624Q388.82782 36.718117 387.92157 36.29624Q387.03094 35.85874 386.5622 35.10874Q386.10907 34.343117 386.10907 33.436867Q386.10907 32.60874 386.48407 31.905617Q386.8747 31.186867 387.53094 30.718117Q388.01532 30.358742 388.85907 30.108742Q389.71844 29.843117 390.6872 29.843117Q392.15594 29.843117 393.26532 30.264992Q394.3747 30.686867 394.89032 31.421242Q395.42157 32.13999 395.6247 33.343117L393.5622 33.624367Q393.42157 32.655617 392.7497 32.124367Q392.07782 31.577492 390.84344 31.577492Q389.39032 31.577492 388.76532 32.061867Q388.14032 32.54624 388.14032 33.186867Q388.14032 33.593117 388.40594 33.92124Q388.65594 34.26499 389.21844 34.48374Q389.53094 34.60874 391.07782 35.030617Q393.3122 35.624367 394.1872 36.01499Q395.07782 36.38999 395.57782 37.124367Q396.09344 37.843117 396.09344 38.92124Q396.09344 39.968117 395.46844 40.905617Q394.85907 41.843117 393.70282 42.35874Q392.54657 42.85874 391.07782 42.85874Q388.65594 42.85874 387.3747 41.85874Q386.10907 40.843117 385.7497 38.85874ZM403.98407 42.57749L410.57782 25.389992L413.03094 25.389992L420.0622 42.57749L417.46844 42.57749L415.46844 37.374367L408.28094 37.374367L406.39032 42.57749L403.98407 42.57749ZM408.9372 35.51499L414.76532 35.51499L412.96844 30.764992Q412.15594 28.593117 411.7497 27.202492Q411.42157 28.858742 410.82782 30.483742L408.9372 35.51499ZM426.20282 40.686867L426.51532 42.54624Q425.6247 42.749367 424.92157 42.749367Q423.76532 42.749367 423.1247 42.38999Q422.4997 42.01499 422.23407 41.42124Q421.98407 40.82749 421.98407 38.936867L421.98407 31.764992L420.4372 31.764992L420.4372 30.124367L421.98407 30.124367L421.98407 27.046242L424.07782 25.780617L424.07782 30.124367L426.20282 30.124367L426.20282 31.764992L424.07782 31.764992L424.07782 39.04624Q424.07782 39.95249 424.1872 40.218117Q424.3122 40.468117 424.5622 40.624367Q424.8122 40.76499 425.28094 40.76499Q425.6247 40.76499 426.20282 40.686867ZM433.20282 40.686867L433.51532 42.54624Q432.6247 42.749367 431.92157 42.749367Q430.76532 42.749367 430.1247 42.38999Q429.4997 42.01499 429.23407 41.42124Q428.98407 40.82749 428.98407 38.936867L428.98407 31.764992L427.4372 31.764992L427.4372 30.124367L428.98407 30.124367L428.98407 27.046242L431.07782 25.780617L431.07782 30.124367L433.20282 30.124367L433.20282 31.764992L431.07782 31.764992L431.07782 39.04624Q431.07782 39.95249 431.1872 40.218117Q431.3122 40.468117 431.5622 40.624367Q431.8122 40.76499 432.28094 40.76499Q432.6247 40.76499 433.20282 40.686867ZM444.1247 38.561867L446.29657 38.843117Q445.78094 40.749367 444.39032 41.811867Q442.9997 42.85874 440.82782 42.85874Q438.09344 42.85874 436.48407 41.186867Q434.89032 39.499367 434.89032 36.45249Q434.89032 33.311867 436.4997 31.577492Q438.1247 29.843117 440.70282 29.843117Q443.20282 29.843117 444.78094 31.546242Q446.3747 33.249367 446.3747 36.32749Q446.3747 36.51499 446.35907 36.88999L437.07782 36.88999Q437.1872 38.936867 438.23407 40.030617Q439.28094 41.124367 440.84344 41.124367Q441.9997 41.124367 442.8122 40.51499Q443.64032 39.905617 444.1247 38.561867ZM437.1872 35.155617L444.14032 35.155617Q443.9997 33.593117 443.34344 32.79624Q442.34344 31.577492 440.73407 31.577492Q439.28094 31.577492 438.28094 32.561867Q437.29657 33.530617 437.1872 35.155617ZM448.59344 42.57749L448.59344 30.124367L450.4997 30.124367L450.4997 31.905617Q451.8747 29.843117 454.45282 29.843117Q455.57782 29.843117 456.51532 30.249367Q457.46844 30.655617 457.9372 31.311867Q458.40594 31.968117 458.59344 32.874367Q458.71844 33.45249 458.71844 34.92124L458.71844 42.57749L456.60907 42.57749L456.60907 34.999367Q456.60907 33.718117 456.35907 33.07749Q456.10907 32.436867 455.48407 32.061867Q454.85907 31.671242 454.01532 31.671242Q452.67157 31.671242 451.6872 32.530617Q450.70282 33.38999 450.70282 35.780617L450.70282 42.57749L448.59344 42.57749ZM469.67157 42.57749L469.67157 40.999367Q468.48407 42.85874 466.1872 42.85874Q464.70282 42.85874 463.45282 42.04624Q462.20282 41.218117 461.51532 39.749367Q460.84344 38.280617 460.84344 36.35874Q460.84344 34.499367 461.45282 32.98374Q462.07782 31.468117 463.3122 30.655617Q464.5622 29.843117 466.09344 29.843117Q467.21844 29.843117 468.09344 30.327492Q468.98407 30.796242 469.53094 31.561867L469.53094 25.389992L471.6247 25.389992L471.6247 42.57749L469.67157 42.57749ZM462.9997 36.35874Q462.9997 38.749367 463.9997 39.936867Q465.01532 41.124367 466.39032 41.124367Q467.78094 41.124367 468.73407 39.999367Q469.70282 38.85874 469.70282 36.54624Q469.70282 33.98374 468.71844 32.79624Q467.73407 31.593117 466.29657 31.593117Q464.89032 31.593117 463.9372 32.749367Q462.9997 33.88999 462.9997 36.35874ZM483.1247 38.561867L485.29657 38.843117Q484.78094 40.749367 483.39032 41.811867Q481.9997 42.85874 479.82782 42.85874Q477.09344 42.85874 475.48407 41.186867Q473.89032 39.499367 473.89032 36.45249Q473.89032 33.311867 475.4997 31.577492Q477.1247 29.843117 479.70282 29.843117Q482.20282 29.843117 483.78094 31.546242Q485.3747 33.249367 485.3747 36.32749Q485.3747 36.51499 485.35907 36.88999L476.07782 36.88999Q476.1872 38.936867 477.23407 40.030617Q478.28094 41.124367 479.84344 41.124367Q480.9997 41.124367 481.8122 40.51499Q482.64032 39.905617 483.1247 38.561867ZM476.1872 35.155617L483.14032 35.155617Q482.9997 33.593117 482.34344 32.79624Q481.34344 31.577492 479.73407 31.577492Q478.28094 31.577492 477.28094 32.561867Q476.29657 33.530617 476.1872 35.155617ZM495.67157 42.57749L495.67157 40.999367Q494.48407 42.85874 492.1872 42.85874Q490.70282 42.85874 489.45282 42.04624Q488.20282 41.218117 487.51532 39.749367Q486.84344 38.280617 486.84344 36.35874Q486.84344 34.499367 487.45282 32.98374Q488.07782 31.468117 489.3122 30.655617Q490.5622 29.843117 492.09344 29.843117Q493.21844 29.843117 494.09344 30.327492Q494.98407 30.796242 495.53094 31.561867L495.53094 25.389992L497.6247 25.389992L497.6247 42.57749L495.67157 42.57749ZM488.9997 36.35874Q488.9997 38.749367 489.9997 39.936867Q491.01532 41.124367 492.39032 41.124367Q493.78094 41.124367 494.73407 39.999367Q495.70282 38.85874 495.70282 36.54624Q495.70282 33.98374 494.71844 32.79624Q493.73407 31.593117 492.29657 31.593117Q490.89032 31.593117 489.9372 32.749367Q488.9997 33.88999 488.9997 36.35874ZM507.8747 42.57749L507.8747 25.389992L514.34344 25.389992Q516.0622 25.389992 516.96844 25.561867Q518.2341 25.764992 519.0778 26.358742Q519.9372 26.952492 520.4528 28.030617Q520.9841 29.093117 520.9841 30.358742Q520.9841 32.561867 519.5778 34.07749Q518.1872 35.593117 514.5466 35.593117L510.14032 35.593117L510.14032 42.57749L507.8747 42.57749ZM510.14032 33.561867L514.5778 33.561867Q516.78094 33.561867 517.7028 32.749367Q518.6403 31.921242 518.6403 30.436867Q518.6403 29.358742 518.09344 28.593117Q517.5466 27.827492 516.65594 27.577492Q516.0778 27.421242 514.53094 27.421242L510.14032 27.421242L510.14032 33.561867ZM532.1247 38.561867L534.2966 38.843117Q533.78094 40.749367 532.3903 41.811867Q530.9997 42.85874 528.8278 42.85874Q526.09344 42.85874 524.4841 41.186867Q522.8903 39.499367 522.8903 36.45249Q522.8903 33.311867 524.4997 31.577492Q526.1247 29.843117 528.7028 29.843117Q531.2028 29.843117 532.78094 31.546242Q534.3747 33.249367 534.3747 36.32749Q534.3747 36.51499 534.3591 36.88999L525.0778 36.88999Q525.1872 38.936867 526.2341 40.030617Q527.28094 41.124367 528.84344 41.124367Q529.9997 41.124367 530.8122 40.51499Q531.6403 39.905617 532.1247 38.561867ZM525.1872 35.155617L532.1403 35.155617Q531.9997 33.593117 531.34344 32.79624Q530.34344 31.577492 528.7341 31.577492Q527.28094 31.577492 526.28094 32.561867Q525.2966 33.530617 525.1872 35.155617ZM536.5778 42.57749L536.5778 30.124367L538.46844 30.124367L538.46844 32.01499Q539.2028 30.686867 539.8122 30.264992Q540.4372 29.843117 541.1716 29.843117Q542.2341 29.843117 543.34344 30.530617L542.6091 32.48374Q541.84344 32.030617 541.0622 32.030617Q540.3747 32.030617 539.8122 32.45249Q539.2653 32.85874 539.03094 33.593117Q538.6872 34.718117 538.6872 36.061867L538.6872 42.57749L536.5778 42.57749ZM549.9841 42.57749L556.5778 25.389992L559.03094 25.389992L566.0622 42.57749L563.46844 42.57749L561.46844 37.374367L554.28094 37.374367L552.3903 42.57749L549.9841 42.57749ZM554.9372 35.51499L560.7653 35.51499L558.96844 30.764992Q558.15594 28.593117 557.7497 27.202492Q557.4216 28.858742 556.8278 30.483742L554.9372 35.51499ZM572.2028 40.686867L572.5153 42.54624Q571.6247 42.749367 570.9216 42.749367Q569.7653 42.749367 569.1247 42.38999Q568.4997 42.01499 568.2341 41.42124Q567.9841 40.82749 567.9841 38.936867L567.9841 31.764992L566.4372 31.764992L566.4372 30.124367L567.9841 30.124367L567.9841 27.046242L570.0778 25.780617L570.0778 30.124367L572.2028 30.124367L572.2028 31.764992L570.0778 31.764992L570.0778 39.04624Q570.0778 39.95249 570.1872 40.218117Q570.3122 40.468117 570.5622 40.624367Q570.8122 40.76499 571.28094 40.76499Q571.6247 40.76499 572.2028 40.686867ZM579.2028 40.686867L579.5153 42.54624Q578.6247 42.749367 577.9216 42.749367Q576.7653 42.749367 576.1247 42.38999Q575.4997 42.01499 575.2341 41.42124Q574.9841 40.82749 574.9841 38.936867L574.9841 31.764992L573.4372 31.764992L573.4372 30.124367L574.9841 30.124367L574.9841 27.046242L577.0778 25.780617L577.0778 30.124367L579.2028 30.124367L579.2028 31.764992L577.0778 31.764992L577.0778 39.04624Q577.0778 39.95249 577.1872 40.218117Q577.3122 40.468117 577.5622 40.624367Q577.8122 40.76499 578.28094 40.76499Q578.6247 40.76499 579.2028 40.686867ZM590.1247 38.561867L592.2966 38.843117Q591.78094 40.749367 590.3903 41.811867Q588.9997 42.85874 586.8278 42.85874Q584.09344 42.85874 582.4841 41.186867Q580.8903 39.499367 580.8903 36.45249Q580.8903 33.311867 582.4997 31.577492Q584.1247 29.843117 586.7028 29.843117Q589.2028 29.843117 590.78094 31.546242Q592.3747 33.249367 592.3747 36.32749Q592.3747 36.51499 592.3591 36.88999L583.0778 36.88999Q583.1872 38.936867 584.2341 40.030617Q585.28094 41.124367 586.84344 41.124367Q587.9997 41.124367 588.8122 40.51499Q589.6403 39.905617 590.1247 38.561867ZM583.1872 35.155617L590.1403 35.155617Q589.9997 33.593117 589.34344 32.79624Q588.34344 31.577492 586.7341 31.577492Q585.28094 31.577492 584.28094 32.561867Q583.2966 33.530617 583.1872 35.155617ZM594.59344 42.57749L594.59344 30.124367L596.4997 30.124367L596.4997 31.905617Q597.8747 29.843117 600.4528 29.843117Q601.5778 29.843117 602.5153 30.249367Q603.46844 30.655617 603.9372 31.311867Q604.40594 31.968117 604.59344 32.874367Q604.71844 33.45249 604.71844 34.92124L604.71844 42.57749L602.6091 42.57749L602.6091 34.999367Q602.6091 33.718117 602.3591 33.07749Q602.1091 32.436867 601.4841 32.061867Q600.8591 31.671242 600.0153 31.671242Q598.6716 31.671242 597.6872 32.530617Q596.7028 33.38999 596.7028 35.780617L596.7028 42.57749L594.59344 42.57749ZM615.6716 42.57749L615.6716 40.999367Q614.4841 42.85874 612.1872 42.85874Q610.7028 42.85874 609.4528 42.04624Q608.2028 41.218117 607.5153 39.749367Q606.84344 38.280617 606.84344 36.35874Q606.84344 34.499367 607.4528 32.98374Q608.0778 31.468117 609.3122 30.655617Q610.5622 29.843117 612.09344 29.843117Q613.21844 29.843117 614.09344 30.327492Q614.9841 30.796242 615.53094 31.561867L615.53094 25.389992L617.6247 25.389992L617.6247 42.57749L615.6716 42.57749ZM608.9997 36.35874Q608.9997 38.749367 609.9997 39.936867Q611.0153 41.124367 612.3903 41.124367Q613.78094 41.124367 614.7341 39.999367Q615.7028 38.85874 615.7028 36.54624Q615.7028 33.98374 614.71844 32.79624Q613.7341 31.593117 612.2966 31.593117Q610.8903 31.593117 609.9372 32.749367Q608.9997 33.88999 608.9997 36.35874ZM629.1247 38.561867L631.2966 38.843117Q630.78094 40.749367 629.3903 41.811867Q627.9997 42.85874 625.8278 42.85874Q623.09344 42.85874 621.4841 41.186867Q619.8903 39.499367 619.8903 36.45249Q619.8903 33.311867 621.4997 31.577492Q623.1247 29.843117 625.7028 29.843117Q628.2028 29.843117 629.78094 31.546242Q631.3747 33.249367 631.3747 36.32749Q631.3747 36.51499 631.3591 36.88999L622.0778 36.88999Q622.1872 38.936867 623.2341 40.030617Q624.28094 41.124367 625.84344 41.124367Q626.9997 41.124367 627.8122 40.51499Q628.6403 39.905617 629.1247 38.561867ZM622.1872 35.155617L629.1403 35.155617Q628.9997 33.593117 628.34344 32.79624Q627.34344 31.577492 625.7341 31.577492Q624.28094 31.577492 623.28094 32.561867Q622.2966 33.530617 622.1872 35.155617ZM642.1247 38.561867L644.2966 38.843117Q643.78094 40.749367 642.3903 41.811867Q640.9997 42.85874 638.8278 42.85874Q636.09344 42.85874 634.4841 41.186867Q632.8903 39.499367 632.8903 36.45249Q632.8903 33.311867 634.4997 31.577492Q636.1247 29.843117 638.7028 29.843117Q641.2028 29.843117 642.78094 31.546242Q644.3747 33.249367 644.3747 36.32749Q644.3747 36.51499 644.3591 36.88999L635.0778 36.88999Q635.1872 38.936867 636.2341 40.030617Q637.28094 41.124367 638.84344 41.124367Q639.9997 41.124367 640.8122 40.51499Q641.6403 39.905617 642.1247 38.561867ZM635.1872 35.155617L642.1403 35.155617Q641.9997 33.593117 641.34344 32.79624Q640.34344 31.577492 638.7341 31.577492Q637.28094 31.577492 636.28094 32.561867Q635.2966 33.530617 635.1872 35.155617Z" fill="#000000" fill-rule="nonzero"></path>
    </svg>
    <table>
     <tbody>
      <tr>
       <td># of Telecons 
       <td>29 
      <tr>
       <td># of Papers Reviewed On Telecons 
       <td>38 
      <tr>
       <td>Mean Telecon Attendance 
       <td>31.7 
      <tr>
       <td>Total # of Attendees 
       <td>132 
      <tr>
       <td>Mean Telecons Per Attendee 
       <td>7 
      <tr>
       <td>Median Telecons Per Attendee 
       <td>3 
    </table>
   </center>
   <h3 class="heading settled" data-level="1.2" id="mailing-list-reviews"><span class="secno">1.2. </span><span class="content">Mailing List Reviews</span><a class="self-link" href="#mailing-list-reviews"></a></h3>
   <p>Over the summer, we began conducting reviews of papers on the Library Evolution
  mailing list.
We conduct 2 to 3 reviews concurrently, and each review lasts for a few weeks.</p>
   <p>Mailing list reviews are critical to our operations, as they allow us to increase
  our paper-processing bandwidth without increasing the frequency or duration
  of telecons.
Additionally, certain classes of papers tend to be particularly well suited
  for mailing list reviews, such as new proposals which tend need feedback, not decision making.</p>
   <p>More details on how we use mailing lists can be found in <a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a>.</p>
   <table>
    <tbody>
     <tr>
      <td># of Papers Reviewed On The Mailing List 
      <td>14 
   </table>
   <h3 class="heading settled" data-level="1.3" id="electronic-polling"><span class="secno">1.3. </span><span class="content">Electronic Polling</span><a class="self-link" href="#electronic-polling"></a></h3>
   <p>In 2020-10, we began the polling period for our first slate of Library Evolution
  electronic straw polls.
We believe electronic straw polls are the best option for Library Evolution to
  make decisions given our current process.
They ensure that all stakeholders have an opportunity to participate.</p>
   <p>More details on electronic polling can be found in <a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a>.</p>
   <h3 class="heading settled" data-level="1.4" id="chairing-guide"><span class="secno">1.4. </span><span class="content">Chair Guide</span><a class="self-link" href="#chairing-guide"></a></h3>
   <p>We have developed a Library Evolution chairing guide, which can be found on the <a href="https://github.com/cplusplus/LEWG/wiki">Library Evolution GitHub wiki</a>.</p>
   <h3 class="heading settled" data-level="1.5" id="staff"><span class="secno">1.5. </span><span class="content">Staff</span><a class="self-link" href="#staff"></a></h3>
   <p>Library Evolution is organized by a team, not a single individual:</p>
   <ul>
    <li data-md>
     <p>Bryce Adelstein Lelbach, Chair</p>
    <li data-md>
     <p>Fabio Fracassi, Vice Chair</p>
    <li data-md>
     <p>Ben Craig, Vice Chair</p>
    <li data-md>
     <p>Billy Baker, Incubator Chair</p>
    <li data-md>
     <p>Nevin Liber, Incubator Vice Chair</p>
    <li data-md>
     <p>Corentin Jabot, Mailing List Review Manager</p>
    <li data-md>
     <p>Inbal Levi, Mailing List Review Manager</p>
   </ul>
   <p>Team leadership has a number of benefits:</p>
   <ul>
    <li data-md>
     <p>Increases our capacity and capabilities.</p>
    <li data-md>
     <p>Reduces the burden on each leader.</p>
    <li data-md>
     <p>Builds institutional knowledge and redundancy.</p>
   </ul>
   <p>We hold a regular staff meeting every two weeks to discuss our operations and
  make plans for the future.</p>
   <p>Additionally, the following noble individuals take minutes for Library
  Evolution, and deserve accolades:</p>
   <ul>
    <li data-md>
     <p>Ben Craig</p>
    <li data-md>
     <p>Inbal Levi</p>
    <li data-md>
     <p>Mark Hoemmen</p>
    <li data-md>
     <p>Guy Davidson</p>
   </ul>
   <h2 class="heading settled" data-level="2" id="technical"><span class="secno">2. </span><span class="content">Technical</span><a class="self-link" href="#technical"></a></h2>
   <h3 class="heading settled" data-level="2.1" id="plenary-approved-priorities"><span class="secno">2.1. </span><span class="content">Plenary Approved Priorities</span><a class="self-link" href="#plenary-approved-priorities"></a></h3>
   <h4 class="heading settled" data-level="2.1.1" id="executors"><span class="secno">2.1.1. </span><span class="content">Executors</span><a class="self-link" href="#executors"></a></h4>
   <p>During the Summer of 2020, Library Evolution conducted an extensive review of <a data-link-type="biblio" href="#biblio-p0443r13">[P0443R13]</a> Executors.
Six review groups were formed, each of which focused on a particular aspect of
  the proposal and then wrote a report with their findings which was presented
  at a telecon:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2183r0">[P2183R0]</a>: Executors: Properties Review Report</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2202r0">[P2202R0]</a>: Executors: Senders/Receivers Review Report</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2203r0">[P2203R0]</a>: Executors: Customization Points Review Report</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2205r0">[P2205R0]</a>: Executors: Polymorphic Executor Review Report</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2206r0">[P2206R0]</a>: Executors: Static Thread Pool Review Report</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2207r0">[P2207R0]</a>: Executors: Executor Concept Review Report</p>
   </ul>
   <p>Additionally, we reviewed the following papers relating to Executors at
  telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2213r0">[P2213R0]</a>: Executors Naming</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2220r0">[P2220R0]</a>: Redefine Properties in P0443</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2221r0">[P2221R0]</a>: Define P0443 CPOs with <code class="highlight"><c- n>tag_invoke</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2235r0">[P2235R0]</a>: Disentangling schedulers and executors</p>
   </ul>
   <p>In 2020-10, we started taking electronic polls on Executors; the results are
  expected in 2020-11.</p>
   <h4 class="heading settled" data-level="2.1.2" id="networking"><span class="secno">2.1.2. </span><span class="content">Networking</span><a class="self-link" href="#networking"></a></h4>
   <p>Work on Networking has been proceeding in the Networking Study Group, not
  Library Evolution.
We hope to begin a Library Evolution review of Networking for C++23 in the first
  half of 2021.</p>
   <p>We did review <a data-link-type="biblio" href="#biblio-p2161r2">[P2161R2]</a> (Remove Default Candidate Executor), which proposes
  changes to the Networking Technical Specification.
In 2020-10 we began electronic polling to advance this paper.</p>
   <h4 class="heading settled" data-level="2.1.3" id="coroutines-library-support"><span class="secno">2.1.3. </span><span class="content">Coroutines Library Support</span><a class="self-link" href="#coroutines-library-support"></a></h4>
   <p>In the Spring of 2020, we discussed <a href="https://wiki.edg.com/bin/view/Wg21summer2020/CoroutineLibraryRoadmap">the roadmap for Coroutines Library Support</a> at a Library Evolution telecon.
We also discussed the following papers at telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1288r0">[P1288R0]</a>: Coroutine Concepts and Metafunctions</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1056r1">[P1056R1]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>lazy</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2168r0">[P2168R0]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>generator</c-></code></p>
   </ul>
   <p>No further work on Coroutines Library Support occurred after the Spring of 2020
  due to a lack of new papers and a lack of revisions of existing papers.
This plenary-approved priority is at risk of missing C++23 unless authors
  actively drive the work.</p>
   <h4 class="heading settled" data-level="2.1.4" id="standard-library-modules"><span class="secno">2.1.4. </span><span class="content">Standard Library Modules</span><a class="self-link" href="#standard-library-modules"></a></h4>
   <p>In the Spring of 2020, we discussed the existing proposal for Standard Library
  Modules (<a data-link-type="biblio" href="#biblio-p0581r1">[P0581R1]</a>) as well as a paper discussing the merits of modularizing
  the Standard Library (<a data-link-type="biblio" href="#biblio-p2172r0">[P2172R0]</a>).</p>
   <p>No further work on Standard Librarhy Modules occurred after the Spring of 2020
  due to a lack of new papers and a lack of revisions of existing papers.
This plenary-approved priority is at risk of missing C++23 unless authors
  actively drive the work.</p>
   <h3 class="heading settled" data-level="2.2" id="other-highlights"><span class="secno">2.2. </span><span class="content">Other Highlights</span><a class="self-link" href="#other-highlights"></a></h3>
   <h4 class="heading settled" data-level="2.2.1" id="formatting-and-printing"><span class="secno">2.2.1. </span><span class="content">Formatting and Printing</span><a class="self-link" href="#formatting-and-printing"></a></h4>
   <p>We reviewed a proposed output counterpart to <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>format</c-></code>, <a data-link-type="biblio" href="#biblio-p2093r1">[P2093R1]</a> (Formatted Output).
The response was positive and we expect to see additional work in this area.</p>
   <p>Additionally, a few papers proposing additions or fixes to <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>format</c-></code> are on
  our agenda for 2020-11 telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2216r0">[P2216R0]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>format</c-></code> improvements</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2197r0">[P2197R0]</a>: Formatting for <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>complex</c-></code></p>
   </ul>
   <h4 class="heading settled" data-level="2.2.2" id="ranges"><span class="secno">2.2.2. </span><span class="content">Ranges</span><a class="self-link" href="#ranges"></a></h4>
   <p>In 2020-10, we will begin reviewing a group proposal suggesting a set of
  range features for C++23, <a data-link-type="biblio" href="#biblio-p2214r0">[P2214R0]</a>, at Library Evolution telecons.</p>
   <p>We reviewed the following ranges papers at telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1255r6">[P1255R6]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>views</c-><c- o>::</c-><c- n>maybe</c-></code></p>
   </ul>
   <p>We reviewed the following ranges papers on the mailing list:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2164r2">[P2164R2]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>views</c-><c- o>::</c-><c- n>enumerate</c-></code></p>
   </ul>
   <h4 class="heading settled" data-level="2.2.3" id="text-and-unicode"><span class="secno">2.2.3. </span><span class="content">Text and Unicode</span><a class="self-link" href="#text-and-unicode"></a></h4>
   <p>Work on Text and Unicode primarily occurs in the Text and Unicode Study Group,
  however a few papers are advancing to Library Evolution.</p>
   <p>In 2020-11, we will begin a mailing list review of <a data-link-type="biblio" href="#biblio-p1885r3">[P1885R3]</a> Naming Text
  Encodings to Demystify Them.</p>
   <h4 class="heading settled" data-level="2.2.4" id="freestanding"><span class="secno">2.2.4. </span><span class="content">Freestanding</span><a class="self-link" href="#freestanding"></a></h4>
   <p>We reviewed a set of coupled papers proposing a reorganization and enhancement
  of freestanding on Library Evolution telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1641r3">[P1641R3]</a>: Freestanding Library: Rewording the Status Quo</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1642r3">[P1642R3]</a>: Freestanding [utilities], [ranges], and [iterators]</p>
   </ul>
   <p>In 2020-11, we’ll be reviewing a revision of <a data-link-type="biblio" href="#biblio-p1642r4">[P1642R4]</a> at a telecon.</p>
   <h3 class="heading settled" data-level="2.3" id="other-work"><span class="secno">2.3. </span><span class="content">Other Work</span><a class="self-link" href="#other-work"></a></h3>
   <p>The following papers were reviewed at Library Evolution telecons and in 2020-10
  we started electronic polls to forward them to Library Working Group:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2166r1">[P2166R1]</a>: A Proposal to Prohibit <code class="highlight"><c- n>string</c-></code> and <code class="highlight"><c- n>string_view</c-></code> construction from <code class="highlight"><c- k>nullptr</c-></code>.</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2212r1">[P2212R1]</a>: Relax Requirements for <code class="highlight"><c- n>time_point</c-><c- o>::</c-><c- n>clock</c-></code></p>
   </ul>
   <p>The following papers were reviewed at Library Evolution telecons:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-lwg1396">[LWG1396]</a>: <code class="highlight"><c- o>&lt;</c-><c- n>regex</c-><c- o>></c-></code> should support allocators</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-lwg3430">[LWG3430]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>fstream</c-></code> &amp; co. should be constructible from string_view</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-lwg3440">[LWG3440]</a>: Aggregate-paren-init breaks direct-initializing a tuple or optional from {aggregate-member-value}</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-lwg3451">[LWG3451]</a>: Inconsistently explicit deduction guides</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-lwg3454">[LWG3454]</a>: <code class="highlight"><c- n>pointer_traits</c-><c- o>::</c-><c- n>pointer_to</c-></code> should be <code class="highlight"><c- k>constexpr</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1467r4">[P1467R4]</a>: Extended floating-point types</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1478r3">[P1478R3]</a>: Byte-wise atomic memcpy</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1673r2">[P1673R2]</a>: BLAS Linear algebra</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2037r1">[P2037R1]</a>: String’s gratuitous assignment</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2098r1">[P2098R1]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>is_specialization_of</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2136r0">[P2136R0]</a>: <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>invoke</c-><c- o>&lt;</c-><c- n>R</c-><c- o>></c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2139r1">[P2139R1]</a>: Reviewing Deprecated Facilities for C++23</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2162r1">[P2162R1]</a>: Inheriting from <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>variant</c-></code> (resolving LWG3052)</p>
   </ul>
   <p>The following papers were reviewed on the mailing list:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1990r1">[P1990R1]</a>: Add <code class="highlight"><c- k>operator</c-><c- p>[]</c-></code> to <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>initializer_list</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2165r1">[P2165R1]</a>: Compatibility between tuple and tuple-like objects</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p0870r4">[P0870R4]</a>: A proposal for a type trait to detect narrowing conversions</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p0205r0">[P0205R0]</a>: Allow Seeding Random Number Engines With <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>random_device</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1709r2">[P1709R2]</a>: Graph Data Structures</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p0952r0">[P0952R0]</a>: A new specification for <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>generate_canonical</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2146r2">[P2146R2]</a>: Modern <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>byte</c-></code> stream IO for C++</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1944r1">[P1944R1]</a>: Add Constexpr Modifiers to Functions in <code class="highlight"><c- o>&lt;</c-><c- n>cstring</c-><c- o>></c-></code> and <code class="highlight"><c- o>&lt;</c-><c- n>cwchar</c-><c- o>></c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1924r0">[P1924R0]</a>: Making <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>stack</c-></code> constexpr</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1925r0">[P1925R0]</a>: Making <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>queue</c-></code> constexpr</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1926r0">[P1926R0]</a>: Making <code class="highlight"><c- n>std</c-><c- o>::</c-><c- n>priority_queue</c-></code> constexpr</p>
   </ul>
  </main>
<script>
(function() {
  "use strict";
  var collapseSidebarText = '<span aria-hidden="true">←</span> '
                          + '<span>Collapse Sidebar</span>';
  var expandSidebarText   = '<span aria-hidden="true">→</span> '
                          + '<span>Pop Out Sidebar</span>';
  var tocJumpText         = '<span aria-hidden="true">↑</span> '
                          + '<span>Jump to Table of Contents</span>';

  var sidebarMedia = window.matchMedia('screen and (min-width: 78em)');
  var autoToggle   = function(e){ toggleSidebar(e.matches) };
  if(sidebarMedia.addListener) {
    sidebarMedia.addListener(autoToggle);
  }

  function toggleSidebar(on) {
    if (on == undefined) {
      on = !document.body.classList.contains('toc-sidebar');
    }

    /* Don’t scroll to compensate for the ToC if we’re above it already. */
    var headY = 0;
    var head = document.querySelector('.head');
    if (head) {
      // terrible approx of "top of ToC"
      headY += head.offsetTop + head.offsetHeight;
    }
    var skipScroll = window.scrollY < headY;

    var toggle = document.getElementById('toc-toggle');
    var tocNav = document.getElementById('toc');
    if (on) {
      var tocHeight = tocNav.offsetHeight;
      document.body.classList.add('toc-sidebar');
      document.body.classList.remove('toc-inline');
      toggle.innerHTML = collapseSidebarText;
      if (!skipScroll) {
        window.scrollBy(0, 0 - tocHeight);
      }
      tocNav.focus();
      sidebarMedia.addListener(autoToggle); // auto-collapse when out of room
    }
    else {
      document.body.classList.add('toc-inline');
      document.body.classList.remove('toc-sidebar');
      toggle.innerHTML = expandSidebarText;
      if (!skipScroll) {
        window.scrollBy(0, tocNav.offsetHeight);
      }
      if (toggle.matches(':hover')) {
        /* Unfocus button when not using keyboard navigation,
           because I don’t know where else to send the focus. */
        toggle.blur();
      }
    }
  }

  function createSidebarToggle() {
    /* Create the sidebar toggle in JS; it shouldn’t exist when JS is off. */
    var toggle = document.createElement('a');
      /* This should probably be a button, but appearance isn’t standards-track.*/
    toggle.id = 'toc-toggle';
    toggle.class = 'toc-toggle';
    toggle.href = '#toc';
    toggle.innerHTML = collapseSidebarText;

    sidebarMedia.addListener(autoToggle);
    var toggler = function(e) {
      e.preventDefault();
      sidebarMedia.removeListener(autoToggle); // persist explicit off states
      toggleSidebar();
      return false;
    }
    toggle.addEventListener('click', toggler, false);


    /* Get <nav id=toc-nav>, or make it if we don’t have one. */
    var tocNav = document.getElementById('toc-nav');
    if (!tocNav) {
      tocNav = document.createElement('p');
      tocNav.id = 'toc-nav';
      /* Prepend for better keyboard navigation */
      document.body.insertBefore(tocNav, document.body.firstChild);
    }
    /* While we’re at it, make sure we have a Jump to Toc link. */
    var tocJump = document.getElementById('toc-jump');
    if (!tocJump) {
      tocJump = document.createElement('a');
      tocJump.id = 'toc-jump';
      tocJump.href = '#toc';
      tocJump.innerHTML = tocJumpText;
      tocNav.appendChild(tocJump);
    }

    tocNav.appendChild(toggle);
  }

  var toc = document.getElementById('toc');
  if (toc) {
    createSidebarToggle();
    toggleSidebar(sidebarMedia.matches);

    /* If the sidebar has been manually opened and is currently overlaying the text
       (window too small for the MQ to add the margin to body),
       then auto-close the sidebar once you click on something in there. */
    toc.addEventListener('click', function(e) {
      if(e.target.tagName.toLowerCase() == "a" && document.body.classList.contains('toc-sidebar') && !sidebarMedia.matches) {
        toggleSidebar(false);
      }
    }, false);
  }
  else {
    console.warn("Can’t find Table of Contents. Please use <nav id='toc'> around the ToC.");
  }

  /* Wrap tables in case they overflow */
  var tables = document.querySelectorAll(':not(.overlarge) > table.data, :not(.overlarge) > table.index');
  var numTables = tables.length;
  for (var i = 0; i < numTables; i++) {
    var table = tables[i];
    var wrapper = document.createElement('div');
    wrapper.className = 'overlarge';
    table.parentNode.insertBefore(wrapper, table);
    wrapper.appendChild(table);
  }

})();
</script>
  <h2 class="no-num no-ref heading settled" id="references"><span class="content">References</span><a class="self-link" href="#references"></a></h2>
  <h3 class="no-num no-ref heading settled" id="informative"><span class="content">Informative References</span><a class="self-link" href="#informative"></a></h3>
  <dl>
   <dt id="biblio-lwg1396">[LWG1396]
   <dd>INCITS. <a href="https://wg21.link/lwg1396">regex should support allocators</a>. Tentatively NAD. URL: <a href="https://wg21.link/lwg1396">https://wg21.link/lwg1396</a>
   <dt id="biblio-lwg3430">[LWG3430]
   <dd>Jonathan Wakely. <a href="https://wg21.link/lwg3430">std::fstream &amp; co. should be constructible from string_view</a>. Open. URL: <a href="https://wg21.link/lwg3430">https://wg21.link/lwg3430</a>
   <dt id="biblio-lwg3440">[LWG3440]
   <dd>Ville Voutilainen. <a href="https://wg21.link/lwg3440">Aggregate-paren-init breaks direct-initializing a tuple or optional from {aggregate-member-value}</a>. Tentatively NAD. URL: <a href="https://wg21.link/lwg3440">https://wg21.link/lwg3440</a>
   <dt id="biblio-lwg3451">[LWG3451]
   <dd>Johel Ernesto Guerrero Peña. <a href="https://wg21.link/lwg3451">Inconsistently explicit deduction guides</a>. New. URL: <a href="https://wg21.link/lwg3451">https://wg21.link/lwg3451</a>
   <dt id="biblio-lwg3454">[LWG3454]
   <dd>Alisdair Meredith. <a href="https://wg21.link/lwg3454">pointer_traits::pointer_to should be constexpr</a>. LEWG. URL: <a href="https://wg21.link/lwg3454">https://wg21.link/lwg3454</a>
   <dt id="biblio-p0205r0">[P0205R0]
   <dd>Moritz Klammler. <a href="https://wg21.link/p0205r0">Allow Seeding Random Number Engines With std::random_device</a>. 11 February 2016. URL: <a href="https://wg21.link/p0205r0">https://wg21.link/p0205r0</a>
   <dt id="biblio-p0443r13">[P0443R13]
   <dd>Jared Hoberock, Michael Garland, Chris Kohlhoff, Chris Mysen, Carter Edwards, Gordon Brown, D. S. Hollman, Lee Howes, Kirk Shoop, Lewis Baker, Eric Niebler. <a href="https://wg21.link/p0443r13">A Unified Executors Proposal for C++</a>. 2 March 2020. URL: <a href="https://wg21.link/p0443r13">https://wg21.link/p0443r13</a>
   <dt id="biblio-p0581r1">[P0581R1]
   <dd>Marshall Clow, Beman Dawes, Gabriel Dos Reis, Stephan T. Lavavej, Billy O’Neal, Bjarne Stroustrup, Jonathan Wakely. <a href="https://wg21.link/p0581r1">Standard Library Modules</a>. 11 February 2018. URL: <a href="https://wg21.link/p0581r1">https://wg21.link/p0581r1</a>
   <dt id="biblio-p0870r4">[P0870R4]
   <dd>Giuseppe D'Angelo. <a href="https://wg21.link/p0870r4">A proposal for a type trait to detect narrowing conversions</a>. 23 September 2020. URL: <a href="https://wg21.link/p0870r4">https://wg21.link/p0870r4</a>
   <dt id="biblio-p0952r0">[P0952R0]
   <dd>Thomas Köppe, Davis Herring. <a href="https://wg21.link/p0952r0">A new specification for std::generate_canonical</a>. 12 February 2018. URL: <a href="https://wg21.link/p0952r0">https://wg21.link/p0952r0</a>
   <dt id="biblio-p1056r1">[P1056R1]
   <dd>Lewis Baker, Gor Nishanov. <a href="https://wg21.link/p1056r1">Add lazy coroutine (coroutine task) type</a>. 7 October 2018. URL: <a href="https://wg21.link/p1056r1">https://wg21.link/p1056r1</a>
   <dt id="biblio-p1255r6">[P1255R6]
   <dd>Steve Downey. <a href="https://wg21.link/p1255r6">A view of 0 or 1 elements: views::maybe</a>. 5 April 2020. URL: <a href="https://wg21.link/p1255r6">https://wg21.link/p1255r6</a>
   <dt id="biblio-p1288r0">[P1288R0]
   <dd>Lewis Baker. <a href="https://wg21.link/p1288r0">Coroutine concepts and metafunctions</a>. 7 October 2018. URL: <a href="https://wg21.link/p1288r0">https://wg21.link/p1288r0</a>
   <dt id="biblio-p1467r4">[P1467R4]
   <dd>David Olsen, Michał Dominiak. <a href="https://wg21.link/p1467r4">Extended floating-point types and standard names</a>. 14 June 2020. URL: <a href="https://wg21.link/p1467r4">https://wg21.link/p1467r4</a>
   <dt id="biblio-p1478r3">[P1478R3]
   <dd>Hans Boehm. <a href="https://wg21.link/p1478r3">Byte-wise atomic memcpy</a>. 18 November 2019. URL: <a href="https://wg21.link/p1478r3">https://wg21.link/p1478r3</a>
   <dt id="biblio-p1641r3">[P1641R3]
   <dd>Ben Craig. <a href="https://wg21.link/p1641r3">Freestanding Library: Rewording the Status Quo</a>. 11 April 2020. URL: <a href="https://wg21.link/p1641r3">https://wg21.link/p1641r3</a>
   <dt id="biblio-p1642r3">[P1642R3]
   <dd>Ben Craig. <a href="https://wg21.link/p1642r3">Freestanding Library: Easy [utilities], [ranges], and [iterators]</a>. 25 May 2020. URL: <a href="https://wg21.link/p1642r3">https://wg21.link/p1642r3</a>
   <dt id="biblio-p1642r4">[P1642R4]
   <dd>Ben Craig. <a href="https://wg21.link/p1642r4">Freestanding Library: Easy [utilities], [ranges], and [iterators]</a>. 12 July 2020. URL: <a href="https://wg21.link/p1642r4">https://wg21.link/p1642r4</a>
   <dt id="biblio-p1673r2">[P1673R2]
   <dd>Mark Hoemmen, D. S. Hollman, Christian Trott, Daniel Sunderland, Nevin Liber, Siva Rajamanickam, Li-Ta Lo, Damien Lebrun-Grandie, Graham Lopez, Peter Caday, Sarah Knepper, Piotr Luszczek, Timothy Costa. <a href="https://wg21.link/p1673r2">A free function linear algebra interface based on the BLAS</a>. 13 January 2020. URL: <a href="https://wg21.link/p1673r2">https://wg21.link/p1673r2</a>
   <dt id="biblio-p1709r2">[P1709R2]
   <dd>Michael Wong, Phillip Ratzloff, Richard Dosselmann, Michael Wong, Matthew Galati, Andrew Lumsdaine, Jens Maurer, Domagoj Saric, Jesun Firoz, Kevin Deweese. <a href="https://wg21.link/p1709r2">Graph Library</a>. 13 January 2020. URL: <a href="https://wg21.link/p1709r2">https://wg21.link/p1709r2</a>
   <dt id="biblio-p1885r3">[P1885R3]
   <dd>Corentin Jabot. <a href="https://wg21.link/p1885r3">Naming Text Encodings to Demystify Them</a>. 14 September 2020. URL: <a href="https://wg21.link/p1885r3">https://wg21.link/p1885r3</a>
   <dt id="biblio-p1924r0">[P1924R0]
   <dd>Alexander Zaitsev. <a href="https://wg21.link/p1924r0">Making std::stack constexpr</a>. 7 October 2019. URL: <a href="https://wg21.link/p1924r0">https://wg21.link/p1924r0</a>
   <dt id="biblio-p1925r0">[P1925R0]
   <dd>Alexander Zaitsev. <a href="https://wg21.link/p1925r0">Making std::queue constexpr</a>. 7 October 2019. URL: <a href="https://wg21.link/p1925r0">https://wg21.link/p1925r0</a>
   <dt id="biblio-p1926r0">[P1926R0]
   <dd>Alexander Zaitsev. <a href="https://wg21.link/p1926r0">Making std::priority_queue constexpr</a>. 7 October 2019. URL: <a href="https://wg21.link/p1926r0">https://wg21.link/p1926r0</a>
   <dt id="biblio-p1944r1">[P1944R1]
   <dd>Daniil Goncharov, Antony Polukhin. <a href="https://wg21.link/p1944r1">Add Constexpr Modifiers to Functions in cstring and cwchar Headers</a>. 26 May 2020. URL: <a href="https://wg21.link/p1944r1">https://wg21.link/p1944r1</a>
   <dt id="biblio-p1990r1">[P1990R1]
   <dd>Daniil Goncharov, Antony Polukhin. <a href="https://wg21.link/p1990r1">Add operator[] to std::initializer_list</a>. 26 May 2020. URL: <a href="https://wg21.link/p1990r1">https://wg21.link/p1990r1</a>
   <dt id="biblio-p2037r1">[P2037R1]
   <dd>Andrzej Krzemieński. <a href="https://wg21.link/p2037r1">String's gratuitous assignment</a>. 15 June 2020. URL: <a href="https://wg21.link/p2037r1">https://wg21.link/p2037r1</a>
   <dt id="biblio-p2093r1">[P2093R1]
   <dd>Victor Zverovich. <a href="https://wg21.link/p2093r1">Formatted output</a>. 18 July 2020. URL: <a href="https://wg21.link/p2093r1">https://wg21.link/p2093r1</a>
   <dt id="biblio-p2098r1">[P2098R1]
   <dd>Walter E Brown, Bob Steagall. <a href="https://wg21.link/p2098r1">Proposing std::is_specialization_of</a>. 11 April 2020. URL: <a href="https://wg21.link/p2098r1">https://wg21.link/p2098r1</a>
   <dt id="biblio-p2136r0">[P2136R0]
   <dd>Zhihao Yuan. <a href="https://wg21.link/p2136r0">invoke&lt;R></a>. 2 March 2020. URL: <a href="https://wg21.link/p2136r0">https://wg21.link/p2136r0</a>
   <dt id="biblio-p2138r3">[P2138R3]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p2138r3">Rules of Design &lt;=> Specification engagement</a>. 15 September 2020. URL: <a href="https://wg21.link/p2138r3">https://wg21.link/p2138r3</a>
   <dt id="biblio-p2139r1">[P2139R1]
   <dd>Alisdair Meredith. <a href="https://wg21.link/p2139r1">Reviewing Deprecated Facilities of C++20 for C++23</a>. 15 June 2020. URL: <a href="https://wg21.link/p2139r1">https://wg21.link/p2139r1</a>
   <dt id="biblio-p2145r1">[P2145R1]
   <dd>Bryce Adelstein Lelbach, Titus Winters, Fabio Fracassi, Billy Baker, Nevin Liber, JF Bastien, David Stone, Botond Ballo, Tom Honermann. <a href="https://wg21.link/p2145r1">Evolving C++ Remotely</a>. 15 September 2020. URL: <a href="https://wg21.link/p2145r1">https://wg21.link/p2145r1</a>
   <dt id="biblio-p2146r2">[P2146R2]
   <dd>Amanda Kornoushenko. <a href="https://wg21.link/p2146r2">Modern std::byte stream IO for C++</a>. 22 July 2020. URL: <a href="https://wg21.link/p2146r2">https://wg21.link/p2146r2</a>
   <dt id="biblio-p2161r2">[P2161R2]
   <dd>Robert Leahy. <a href="https://wg21.link/p2161r2">Remove Default Candidate Executor</a>. 14 July 2020. URL: <a href="https://wg21.link/p2161r2">https://wg21.link/p2161r2</a>
   <dt id="biblio-p2162r1">[P2162R1]
   <dd>Barry Revzin. <a href="https://wg21.link/p2162r1">Inheriting from std::variant (resolving LWG3052)</a>. 14 August 2020. URL: <a href="https://wg21.link/p2162r1">https://wg21.link/p2162r1</a>
   <dt id="biblio-p2164r2">[P2164R2]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2164r2">views::enumerate</a>. 13 September 2020. URL: <a href="https://wg21.link/p2164r2">https://wg21.link/p2164r2</a>
   <dt id="biblio-p2165r1">[P2165R1]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2165r1">Compatibility between tuple and tuple-like objects</a>. 14 July 2020. URL: <a href="https://wg21.link/p2165r1">https://wg21.link/p2165r1</a>
   <dt id="biblio-p2166r1">[P2166R1]
   <dd>Yuriy Chernyshov. <a href="https://wg21.link/p2166r1">A Proposal to Prohibit std::basic_string and std::basic_string_view construction from nullptr</a>. 7 September 2020. URL: <a href="https://wg21.link/p2166r1">https://wg21.link/p2166r1</a>
   <dt id="biblio-p2168r0">[P2168R0]
   <dd>Corentin Jabot, Lewis Baker. <a href="https://wg21.link/p2168r0">generator: A Synchronous Coroutine Generator Compatible With Ranges</a>. 16 May 2020. URL: <a href="https://wg21.link/p2168r0">https://wg21.link/p2168r0</a>
   <dt id="biblio-p2172r0">[P2172R0]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2172r0">What do we want from a modularized Standard Library?</a>. 16 May 2020. URL: <a href="https://wg21.link/p2172r0">https://wg21.link/p2172r0</a>
   <dt id="biblio-p2183r0">[P2183R0]
   <dd>David Olsen, Ruslan Arutyunyan, Michael J. Voss, Michał Dominiak, Chris Kohlhoff, D.S. Hollman, Kirk Shoop, Inbal Levi. <a href="https://wg21.link/p2183r0">Executors Review: Properties</a>. 14 July 2020. URL: <a href="https://wg21.link/p2183r0">https://wg21.link/p2183r0</a>
   <dt id="biblio-p2195r0">[P2195R0]
   <dd>Bryce Adelstein Lelbach. <a href="https://wg21.link/p2195r0">Electronic Straw Polls</a>. 15 September 2020. URL: <a href="https://wg21.link/p2195r0">https://wg21.link/p2195r0</a>
   <dt id="biblio-p2197r0">[P2197R0]
   <dd>Michael Tesch, Victor Zverovich. <a href="https://wg21.link/p2197r0">Formatting for std::complex</a>. 22 August 2020. URL: <a href="https://wg21.link/p2197r0">https://wg21.link/p2197r0</a>
   <dt id="biblio-p2202r0">[P2202R0]
   <dd>Gašper Ažman, Tony van Eerd, Thomas Rodgers, Tomasz Kamiński, Corentin Jabot, Robert Leahy, Gordon Brown, Kirk Shoop, Eric Niebler, Dietmar Kühl. <a href="https://wg21.link/p2202r0">Senders/Receivers group Executors review report</a>. 15 July 2020. URL: <a href="https://wg21.link/p2202r0">https://wg21.link/p2202r0</a>
   <dt id="biblio-p2203r0">[P2203R0]
   <dd>Ryan McDougall, Tomasz Kamiński, Conor Hoekstra, Bryan St. Amour. <a href="https://wg21.link/p2203r0">LEWG Executors Customization Point Report</a>. 15 July 2020. URL: <a href="https://wg21.link/p2203r0">https://wg21.link/p2203r0</a>
   <dt id="biblio-p2205r0">[P2205R0]
   <dd>Inbal Levi, Ruslan Arutyunyan, Zach Laine, Tom Scogland, Dmitri Mokhov, Chris Kohlhoff, Daisy Hollman, Jared Hoberock. <a href="https://wg21.link/p2205r0">Executors Review - Polymorphic Executor</a>. 19 August 2020. URL: <a href="https://wg21.link/p2205r0">https://wg21.link/p2205r0</a>
   <dt id="biblio-p2206r0">[P2206R0]
   <dd>Ruslan Arutyunyan, Ben Craig, Guy Davidson, Anuya Welling, Michael Voss, Tom Scogland, Chris Kohlhoff, Gordon Brown, Lee Howes. <a href="https://wg21.link/p2206r0">Executors Thread Pool review report</a>. 2 September 2020. URL: <a href="https://wg21.link/p2206r0">https://wg21.link/p2206r0</a>
   <dt id="biblio-p2207r0">[P2207R0]
   <dd>Guy Davidson, Ben Craig, Robert Leahy, Michał Dominiak, Alexey Kukanov, Hartmut Kaiser, Daisy Hollman, Jared Hoberock, Gordon Brown. <a href="https://wg21.link/p2207r0">Executors review: concepts breakout group report</a>. 14 August 2020. URL: <a href="https://wg21.link/p2207r0">https://wg21.link/p2207r0</a>
   <dt id="biblio-p2212r1">[P2212R1]
   <dd>Alexey Dmitriev, Howard Hinnant. <a href="https://wg21.link/p2212r1">Relax Requirements for time_point::clock</a>. 14 September 2020. URL: <a href="https://wg21.link/p2212r1">https://wg21.link/p2212r1</a>
   <dt id="biblio-p2213r0">[P2213R0]
   <dd>Amir Kirsh, Inbal Levi, Dan Raviv, Ran Regev, Dvir Yitzchaki, Andrei Zissu, Yehezkel Bernart, Michael Peeri. <a href="https://wg21.link/p2213r0">Executors Naming</a>. 16 August 2020. URL: <a href="https://wg21.link/p2213r0">https://wg21.link/p2213r0</a>
   <dt id="biblio-p2214r0">[P2214R0]
   <dd>Barry Revzin, Conor Hoekstra, Tim Song. <a href="https://wg21.link/p2214r0">A Plan for C++23 Ranges</a>. 15 October 2020. URL: <a href="https://wg21.link/p2214r0">https://wg21.link/p2214r0</a>
   <dt id="biblio-p2216r0">[P2216R0]
   <dd>Victor Zverovich. <a href="https://wg21.link/p2216r0">std::format improvements</a>. 6 September 2020. URL: <a href="https://wg21.link/p2216r0">https://wg21.link/p2216r0</a>
   <dt id="biblio-p2220r0">[P2220R0]
   <dd>Kirk Shoop. <a href="https://wg21.link/p2220r0">redefine properties in P0443</a>. 15 September 2020. URL: <a href="https://wg21.link/p2220r0">https://wg21.link/p2220r0</a>
   <dt id="biblio-p2221r0">[P2221R0]
   <dd>Kirk Shoop. <a href="https://wg21.link/p2221r0">define P0443 cpos with tag_invoke</a>. 15 September 2020. URL: <a href="https://wg21.link/p2221r0">https://wg21.link/p2221r0</a>
   <dt id="biblio-p2235r0">[P2235R0]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p2235r0">Disentangling schedulers and executors</a>. 15 October 2020. URL: <a href="https://wg21.link/p2235r0">https://wg21.link/p2235r0</a>
  </dl>