<!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>P1018R7: C++ Language Evolution status 🦠 pandemic edition 🦠 2020/03–2020/10</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="http://wg21.link/P1018r7" rel="canonical">
  <link href="https://isocpp.org/favicon.ico" rel="icon">
  <meta content="1ad719ed55ca95fb6bf7e94fabc0d9bde4fd0ac0" name="document-revision">
<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-syntax-highlighting */

code.highlight { padding: .1em; border-radius: .3em; }
pre.highlight, pre > code.highlight { display: block; padding: 1em; margin: .5em 0; overflow: auto; border-radius: 0; }

.highlight:not(.idl) { background: #fdf6e3; }
c-[a] { color: #990055 } /* Keyword.Declaration */
c-[b] { color: #990055 } /* Keyword.Type */
c-[c] { color: #708090 } /* Comment */
c-[d] { color: #708090 } /* Comment.Multiline */
c-[e] { color: #0077aa } /* Name.Attribute */
c-[f] { color: #669900 } /* Name.Tag */
c-[g] { color: #222222 } /* Name.Variable */
c-[k] { color: #990055 } /* Keyword */
c-[l] { color: #000000 } /* Literal */
c-[m] { color: #000000 } /* Literal.Number */
c-[n] { color: #0077aa } /* Name */
c-[o] { color: #999999 } /* Operator */
c-[p] { color: #999999 } /* Punctuation */
c-[s] { color: #a67f59 } /* Literal.String */
c-[t] { color: #a67f59 } /* Literal.String.Single */
c-[u] { color: #a67f59 } /* Literal.String.Double */
c-[cp] { color: #708090 } /* Comment.Preproc */
c-[c1] { color: #708090 } /* Comment.Single */
c-[cs] { color: #708090 } /* Comment.Special */
c-[kc] { color: #990055 } /* Keyword.Constant */
c-[kn] { color: #990055 } /* Keyword.Namespace */
c-[kp] { color: #990055 } /* Keyword.Pseudo */
c-[kr] { color: #990055 } /* Keyword.Reserved */
c-[ld] { color: #000000 } /* Literal.Date */
c-[nc] { color: #0077aa } /* Name.Class */
c-[no] { color: #0077aa } /* Name.Constant */
c-[nd] { color: #0077aa } /* Name.Decorator */
c-[ni] { color: #0077aa } /* Name.Entity */
c-[ne] { color: #0077aa } /* Name.Exception */
c-[nf] { color: #0077aa } /* Name.Function */
c-[nl] { color: #0077aa } /* Name.Label */
c-[nn] { color: #0077aa } /* Name.Namespace */
c-[py] { color: #0077aa } /* Name.Property */
c-[ow] { color: #999999 } /* Operator.Word */
c-[mb] { color: #000000 } /* Literal.Number.Bin */
c-[mf] { color: #000000 } /* Literal.Number.Float */
c-[mh] { color: #000000 } /* Literal.Number.Hex */
c-[mi] { color: #000000 } /* Literal.Number.Integer */
c-[mo] { color: #000000 } /* Literal.Number.Oct */
c-[sb] { color: #a67f59 } /* Literal.String.Backtick */
c-[sc] { color: #a67f59 } /* Literal.String.Char */
c-[sd] { color: #a67f59 } /* Literal.String.Doc */
c-[se] { color: #a67f59 } /* Literal.String.Escape */
c-[sh] { color: #a67f59 } /* Literal.String.Heredoc */
c-[si] { color: #a67f59 } /* Literal.String.Interpol */
c-[sx] { color: #a67f59 } /* Literal.String.Other */
c-[sr] { color: #a67f59 } /* Literal.String.Regex */
c-[ss] { color: #a67f59 } /* Literal.String.Symbol */
c-[vc] { color: #0077aa } /* Name.Variable.Class */
c-[vg] { color: #0077aa } /* Name.Variable.Global */
c-[vi] { color: #0077aa } /* Name.Variable.Instance */
c-[il] { color: #000000 } /* Literal.Number.Integer.Long */
</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">P1018R7<br>C++ Language Evolution status 🦠 pandemic edition 🦠 2020/03–2020/10</h1>
   <h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Published Proposal, <time class="dt-updated" datetime="2020-10-27">2020-10-27</time></span></h2>
   <div data-fill-with="spec-metadata">
    <dl>
     <dt>This version:
     <dd><a class="u-url" href="http://wg21.link/P1018r7">http://wg21.link/P1018r7</a>
     <dt class="editor">Author:
     <dd class="editor p-author h-card vcard"><a class="p-name fn u-email email" href="mailto:cxx@jfbastien.com">JF Bastien</a> (<span class="p-org org">Toyota Research Institute—Advanced Development</span>)
     <dt>Audience:
     <dd>WG21, EWG
     <dt>Project:
     <dd>ISO/IEC JTC1/SC22/WG21 14882: Programming Language — C++
     <dt>Source:
     <dd><a href="https://github.com/jfbastien/papers/blob/master/source/P1018r7.bs">github.com/jfbastien/papers/blob/master/source/P1018r7.bs</a>
    </dl>
   </div>
   <div data-fill-with="warning"></div>
   <hr title="Separator for header">
  </div>
  <div class="p-summary" data-fill-with="abstract">
   <h2 class="no-num no-toc no-ref heading settled" id="abstract"><span class="content">Abstract</span></h2>
   <p>This paper is a collection of items that the C++ Language Evolution group has worked on in the latest meeting, their status, and plans for the future.</p>
  </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="#summary"><span class="secno">1</span> <span class="content">Executive summary</span></a>
    <li><a href="#note"><span class="secno">2</span> <span class="content">Paper of note</span></a>
    <li><a href="#tentative"><span class="secno">3</span> <span class="content">Tentatively ready papers</span></a>
    <li><a href="#telecons"><span class="secno">4</span> <span class="content">Teleconferences</span></a>
    <li><a href="#future"><span class="secno">5</span> <span class="content">Near-future EWG plans</span></a>
    <li><a href="#attendance"><span class="secno">6</span> <span class="content">Attendance</span></a>
    <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>
   <h2 class="heading settled" data-level="1" id="summary"><span class="secno">1. </span><span class="content">Executive summary</span><a class="self-link" href="#summary"></a></h2>
   <p>We have not met in-person since the February 2020 meeting in Prague because of the global pandemic. We’re instead holding weekly teleconferences, as detailed in <a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a>. We focus on providing non-final guidance, and will use electronic straw polls as detailed in <a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a> to move papers and issues forward in a asynchronous manner.</p>
   <p>Our main achievements have been:</p>
   <ul>
    <li data-md>
     <p><strong>Issue processing</strong>: most of the 50 language evolution issues have proposed resolutions.</p>
    <li data-md>
     <p><strong>C++23</strong>: we’ve started work on papers for C++23 and later.</p>
    <li data-md>
     <p><strong>Incubation</strong>: we’ve acted as EWG-I and "incubated" some early papers by providing early feedback to authors.</p>
   </ul>
   <h2 class="heading settled" data-level="2" id="note"><span class="secno">2. </span><span class="content">Paper of note</span><a class="self-link" href="#note"></a></h2>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1000r4">[P1000R4]</a> C++ IS schedule</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p0592r4">[P0592R4]</a> To boldly suggest an overall plan for C++23</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1999r0">[P1999R0]</a> Process: double-check evolutionary material via a Tentatively Ready status</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a> Electronic Straw Polls</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2145r1">[P2145R1]</a> Evolving C++ Remotely</p>
   </ul>
   <h2 class="heading settled" data-level="3" id="tentative"><span class="secno">3. </span><span class="content">Tentatively ready papers</span><a class="self-link" href="#tentative"></a></h2>
   <p>Following our process in <a data-link-type="biblio" href="#biblio-p1999r0">[P1999R0]</a>, we usually mark papers as tentatively ready for CWG. We would usually take a brief look at the next meeting, and if nothing particular concerns anyone, send them to CWG. However, given the pandemic, we’ve decided to provide guidance only in virtual teleconferences, and have an asynchronous polling mechanism to officially send papers to CWG or other groups as detailed in <a data-link-type="biblio" href="#biblio-p2195r0">[P2195R0]</a>. This system hasn’t been used by EWG yet. We’re waiting for LEWG’s first successful attempt at using this system before using it ourselves.</p>
   <p>You can follow the lists of papers on GitHub:</p>
   <ul>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/labels/TentativelyReady">tentatively ready papers</a>,</p>
    <li data-md>
     <p><a href="https://github.com/cplusplus/papers/labels/EWG-vote-on-me">EWG vote on me papers</a>.</p>
   </ul>
   <p>The current list of papers which EWG will poll are:</p>
   <ul>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2223r0">[P2223R0]</a> Trimming whitespaces before line splicing</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2201r0">[P2201R0]</a> Mixed string literal concatenation</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2186r0">[P2186R0]</a> Removing Garbage Collection Support</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2173r0">[P2173R0]</a> Attributes on Lambda-Expressions</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2156r1">[P2156R1]</a> Allow Duplicate Attributes</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p2013r3">[P2013R3]</a> Freestanding Language: Optional <code class="highlight"><c- o>::</c-><c- k>operator</c-> <c- k>new</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1949r6">[P1949R6]</a> C++ Identifier Syntax using Unicode Standard Annex 31</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1938r1">[P1938R1]</a> <code class="highlight"><c- k>if</c-> <c- k>consteval</c-></code></p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1847r3">[P1847R3]</a> Make declaration order layout mandated</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1401r3">[P1401R3]</a> Narrowing contextual conversions to bool</p>
    <li data-md>
     <p><a data-link-type="biblio" href="#biblio-p1393r0">[P1393R0]</a> A General Property Customization Mechanism</p>
   </ul>
   <p>We’ve also reviewed 50 Language Evolution issues at the Core groups' request, and have tentative resolutions for most. All of these issues will also be part of our asynchronous polling. Details on all these issues will be published in a separate paper.</p>
   <h2 class="heading settled" data-level="4" id="telecons"><span class="secno">4. </span><span class="content">Teleconferences</span><a class="self-link" href="#telecons"></a></h2>
   <p>Here are the minutes for the virtual discussions that were held since the Prague meeting in February 2020:</p>
   <ol>
    <li>2020-04-09 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Thursday9th-April-2020">Issue Processing</a> 
    <li>2020-04-15 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/IssueProcessing-Wednesday15th-April-2020">Issue Processing</a> 
    <li>2020-04-23 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-23-Apr-2020">Issue Processing</a> 
    <li>2020-04-29 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-29-Apr-2020">Issue Processing</a> 
    <li>2020-05-07 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-07-May-2020">Issue Processing</a> 
    <li>2020-05-13 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-IssueProcessing-13-May-2020">Issue Processing</a> 
    <li>2020-05-21 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1393-21-May-2020">A General Property Customization Mechanism</a>—<a data-link-type="biblio" href="#biblio-p1393r0">[P1393R0]</a> (<a href="https://wg21.link/P1393/github">P1393 tracking issue</a>) 
    <li>2020-06-10 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-D2139R1-10-June-2020">Reviewing Deprecated Facilities of C++20 for C++23</a>—<a data-link-type="biblio" href="#biblio-p2139r1">[P2139R1]</a> (<a href="https://wg21.link/P2139/github">P2139 tracking issue</a>) 
    <li>2020-06-18 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1949-18-June-2020">C++ Identifier Syntax using Unicode Standard Annex 31</a>—<a data-link-type="biblio" href="#biblio-p1949r4">[P1949R4]</a> (<a href="https://wg21.link/P1949/github">P1949 tracking issue</a>) 
    <li>2020-06-24 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1467-24-June-2020">Extended floating-point types and standard names</a>—<a data-link-type="biblio" href="#biblio-p1467r4">[P1467R4]</a> (<a href="https://wg21.link/P1467/github">P1467 tracking issue</a>) 
    <li>2020-07-02 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2156-P2173-2-July-2020">Allow Duplicate Attributes, Attributes on Lambda-Expressions</a>—<a data-link-type="biblio" href="#biblio-p2156r0">[P2156R0]</a> (<a href="https://wg21.link/P2156/github">P2156 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2173r0">[P2173R0]</a> (<a href="https://wg21.link/P2173/github">P2173 tracking issue</a>) 
    <li>2020-07-08 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1726R3-8-July-2020">Pointer lifetime-end zap and provenance, too</a>—<a data-link-type="biblio" href="#biblio-p1726r3">[P1726R3]</a> (<a href="https://wg21.link/P1726/github">P1726 tracking issue</a>) 
    <li>2020-07-16 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1726R3-16-July-2020">Guaranteed copy elision for return variables</a>—<a data-link-type="biblio" href="#biblio-p2025r1">[P2025R1]</a> (<a href="https://wg21.link/P2025/github">P2025 tracking issue</a>) 
    <li>2020-07-30 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2139R2ReviewingDeprecatedFacilitiesOfC20ForC23P2186R0RemovingGarbageCollectionSupport-30-July-2020">Reviewing Deprecated Facilities of C++20 for C++23, Removing Garbage Collection Support</a>—<a data-link-type="biblio" href="#biblio-p2139r2">[P2139R2]</a> (<a href="https://wg21.link/P2139/github">P2139 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2186r0">[P2186R0]</a> (<a href="https://wg21.link/P2186/github">P2186 tracking issue</a>) 
    <li>2020-08-05 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1875R0-5-Aug-2020">Transactional Memory Lite Support in C++</a>—<a data-link-type="biblio" href="#biblio-p1875r0">[P1875R0]</a> (<a href="https://wg21.link/P1875/github">P1875 tracking issue</a>) 
    <li>2020-08-19 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2013R2FreestandingLanguage:Optional::operatorNewP2201R0MixedStringLiteralConcatenation-19-Aug-2020">Freestanding Language: Optional <code class="highlight"><c- o>::</c-><c- k>operator</c-> <c- k>new</c-></code>, Mixed string literal concatenation</a>—<a data-link-type="biblio" href="#biblio-p2013r2">[P2013R2]</a> (<a href="https://wg21.link/P2013/github">P2013 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2201r0">[P2201R0]</a> (<a href="https://wg21.link/P2201/github">P2201 tracking issue</a>) 
    <li>2020-08-27 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-D2211R0-27-Aug-2020">Exhaustiveness Checking for Pattern Matching</a>—<a data-link-type="biblio" href="#biblio-p1371r3">[P1371R3]</a> (<a href="https://wg21.link/P1371/github">P1371 tracking issue</a>) 
    <li>2020-09-02 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1967-02-Sep-2020"><code class="highlight"><c- cp>#embed</c-></code> - a simple, scannable preprocessor-based resource acquisition method</a>—<a data-link-type="biblio" href="#biblio-p1967r2">[P1967R2]</a> (<a href="https://wg21.link/P1967/github">P1967 tracking issue</a>) 
    <li>2020-09-10 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P2011R1-10-Sep-2020">A pipeline-rewrite operator</a>—<a data-link-type="biblio" href="#biblio-p2011r1">[P2011R1]</a> (<a href="https://wg21.link/P2011/github">P2011 tracking issue</a>) 
    <li>2020-09-16 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1371-16-Sep-2020">Pattern matching: inspect is always an expression</a>—<a data-link-type="biblio" href="#biblio-p1371r3">[P1371R3]</a> (<a href="https://wg21.link/P1371/github">P1371 tracking issue</a>) 
    <li>2020-09-24 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-P1949-24-Sep-2020">C++ Identifier Syntax using Unicode Standard Annex 31, Member Templates for Local Classes</a>—<a data-link-type="biblio" href="#biblio-p1949r6">[P1949R6]</a> (<a href="https://wg21.link/P1949/github">P1949 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2044r0">[P2044R0]</a> (<a href="https://wg21.link/P2044/github">P2044 tracking issue</a>) 
    <li>2020-09-30 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-30-Sep-2020">Narrowing contextual conversions to bool, Generalized pack declaration and usage</a>—<a data-link-type="biblio" href="#biblio-p1401r3">[P1401R3]</a> (<a href="https://wg21.link/P1401/github">P1401 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p1858r2">[P1858R2]</a> (<a href="https://wg21.link/P1858/github">P1858 tracking issue</a>) 
    <li>2020-10-08 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG-8-Oct-2020">Compound Literals, <code class="highlight"><c- k>if</c-> <c- k>consteval</c-></code></a>—<a data-link-type="biblio" href="#biblio-p2174r0">[P2174R0]</a> (<a href="https://wg21.link/P2174/github">P2174 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p1938r1">[P1938R1]</a> (<a href="https://wg21.link/P1938/github">P1938 tracking issue</a>) 
    <li>2020-10-14 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG14-Oct-2020">Inline Namespaces: Fragility Bites, Trimming whitespaces before line splicing</a>—<a data-link-type="biblio" href="#biblio-p1701r1">[P1701R1]</a> (<a href="https://wg21.link/P1701/github">P1701 tracking issue</a>) and <a data-link-type="biblio" href="#biblio-p2223r0">[P2223R0]</a> (<a href="https://wg21.link/P2223/github">P2223 tracking issue</a>) 
    <li>2020-10-22 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG22-Oct-2020">Issues Processing</a> 
    <li>2020-10-28 <a href="https://wiki.edg.com/bin/view/Wg21summer2020/EWG28-Oct-2020">Issues Processing</a> 
   </ol>
   <h2 class="heading settled" data-level="5" id="future"><span class="secno">5. </span><span class="content">Near-future EWG plans</span><a class="self-link" href="#future"></a></h2>
   <p>We will continue to work on issue resolution and C++23, prioritizing according to <a data-link-type="biblio" href="#biblio-p0592r4">[P0592R4]</a>.</p>
   <h2 class="heading settled" data-level="6" id="attendance"><span class="secno">6. </span><span class="content">Attendance</span><a class="self-link" href="#attendance"></a></h2>
   <p>The Language Evolution meetings have attracted a mean of 31.9 attendees per meeting, with a median of 30.</p>
   <svg fill="none" height="640" stroke="none" stroke-linecap="square" stroke-miterlimit="10" version="1.1" viewBox="0.0 0.0 752.0 640.0" width="752" xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
    <path d="M0 0L752.0 0L752.0 640.0L0 640.0L0 0Z" fill="#ffffff" fill-opacity="0.0" fill-rule="nonzero"></path>
    <path d="M59.5 551.5L720.5 551.5" fill-rule="nonzero" stroke="#333333" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 456.5L720.5 456.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 360.5L720.5 360.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 265.5L720.5 265.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 169.5L720.5 169.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 74.5L720.5 74.5" fill-rule="nonzero" stroke="#cccccc" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 542.5L720.5 542.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 532.5L720.5 532.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 523.5L720.5 523.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 513.5L720.5 513.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 504.5L720.5 504.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 494.5L720.5 494.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 484.5L720.5 484.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 475.5L720.5 475.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 465.5L720.5 465.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 446.5L720.5 446.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 437.5L720.5 437.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 427.5L720.5 427.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 418.5L720.5 418.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 408.5L720.5 408.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 399.5L720.5 399.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 389.5L720.5 389.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 379.5L720.5 379.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 370.5L720.5 370.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 351.5L720.5 351.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 341.5L720.5 341.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 332.5L720.5 332.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 322.5L720.5 322.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 313.5L720.5 313.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 303.5L720.5 303.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 293.5L720.5 293.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 284.5L720.5 284.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 274.5L720.5 274.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 255.5L720.5 255.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 246.5L720.5 246.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 236.5L720.5 236.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 227.5L720.5 227.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 217.5L720.5 217.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 208.5L720.5 208.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 198.5L720.5 198.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 188.5L720.5 188.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 179.5L720.5 179.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 160.5L720.5 160.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 150.5L720.5 150.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 141.5L720.5 141.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 131.5L720.5 131.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 122.5L720.5 122.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 112.5L720.5 112.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 102.5L720.5 102.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 93.5L720.5 93.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <path d="M59.5 83.5L720.5 83.5" fill-rule="nonzero" stroke="#e6e6e6" stroke-linecap="butt" stroke-width="1.0"></path>
    <clipPath id="id_0">
     <path clip-rule="nonzero" d="M59.0 74.333336L720.0 74.333336L720.0 551.7954L59.0 551.7954L59.0 74.333336Z"></path>
    </clipPath>
    <path clip-path="url(#id_0)" d="M86.0 552.0L69.0 552.0L69.0 124.0C69.0 122.89543 69.89543 122.0 71.0 122.0L84.0 122.0C85.10457 122.0 86.0 122.89543 86.0 124.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="M86.0 552.0L69.0 552.0L69.0 124.0C69.0 122.89543 69.89543 122.0 71.0 122.0L84.0 122.0C85.10457 122.0 86.0 122.89543 86.0 124.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M112.0 552.0L95.0 552.0L95.0 277.0C95.0 275.89542 95.89543 275.0 97.0 275.0L110.0 275.0C111.10457 275.0 112.0 275.89542 112.0 277.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="M112.0 552.0L95.0 552.0L95.0 277.0C95.0 275.89542 95.89543 275.0 97.0 275.0L110.0 275.0C111.10457 275.0 112.0 275.89542 112.0 277.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M138.0 552.0L121.0 552.0L121.0 181.0C121.0 179.89543 121.89543 179.0 123.0 179.0L136.0 179.0C137.10457 179.0 138.0 179.89543 138.0 181.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="M138.0 552.0L121.0 552.0L121.0 181.0C121.0 179.89543 121.89543 179.0 123.0 179.0L136.0 179.0C137.10457 179.0 138.0 179.89543 138.0 181.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M164.0 552.0L147.0 552.0L147.0 306.0C147.0 304.89542 147.89543 304.0 149.0 304.0L162.0 304.0C163.10457 304.0 164.0 304.89542 164.0 306.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="M164.0 552.0L147.0 552.0L147.0 306.0C147.0 304.89542 147.89543 304.0 149.0 304.0L162.0 304.0C163.10457 304.0 164.0 304.89542 164.0 306.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M190.0 552.0L173.0 552.0L173.0 210.0C173.0 208.89543 173.89543 208.0 175.0 208.0L188.0 208.0C189.10457 208.0 190.0 208.89543 190.0 210.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="M190.0 552.0L173.0 552.0L173.0 210.0C173.0 208.89543 173.89543 208.0 175.0 208.0L188.0 208.0C189.10457 208.0 190.0 208.89543 190.0 210.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M216.0 552.0L199.0 552.0L199.0 153.0C199.0 151.89543 199.89543 151.0 201.0 151.0L214.0 151.0C215.10457 151.0 216.0 151.89543 216.0 153.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="M216.0 552.0L199.0 552.0L199.0 153.0C199.0 151.89543 199.89543 151.0 201.0 151.0L214.0 151.0C215.10457 151.0 216.0 151.89543 216.0 153.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M242.0 552.0L225.0 552.0L225.0 124.0C225.0 122.89543 225.89543 122.0 227.0 122.0L240.0 122.0C241.10457 122.0 242.0 122.89543 242.0 124.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="M242.0 552.0L225.0 552.0L225.0 124.0C225.0 122.89543 225.89543 122.0 227.0 122.0L240.0 122.0C241.10457 122.0 242.0 122.89543 242.0 124.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M268.0 552.0L251.0 552.0L251.0 258.0C251.0 256.89542 251.89543 256.0 253.0 256.0L266.0 256.0C267.10458 256.0 268.0 256.89542 268.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="M268.0 552.0L251.0 552.0L251.0 258.0C251.0 256.89542 251.89543 256.0 253.0 256.0L266.0 256.0C267.10458 256.0 268.0 256.89542 268.0 258.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M294.0 552.0L277.0 552.0L277.0 229.0C277.0 227.89543 277.89542 227.0 279.0 227.0L292.0 227.0C293.10458 227.0 294.0 227.89543 294.0 229.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="M294.0 552.0L277.0 552.0L277.0 229.0C277.0 227.89543 277.89542 227.0 279.0 227.0L292.0 227.0C293.10458 227.0 294.0 227.89543 294.0 229.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M320.0 552.0L303.0 552.0L303.0 200.0C303.0 198.89543 303.89542 198.0 305.0 198.0L318.0 198.0C319.10458 198.0 320.0 198.89543 320.0 200.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 552.0L303.0 552.0L303.0 200.0C303.0 198.89543 303.89542 198.0 305.0 198.0L318.0 198.0C319.10458 198.0 320.0 198.89543 320.0 200.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M346.0 552.0L329.0 552.0L329.0 334.0C329.0 332.89542 329.89542 332.0 331.0 332.0L344.0 332.0C345.10458 332.0 346.0 332.89542 346.0 334.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="M346.0 552.0L329.0 552.0L329.0 334.0C329.0 332.89542 329.89542 332.0 331.0 332.0L344.0 332.0C345.10458 332.0 346.0 332.89542 346.0 334.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M372.0 552.0L355.0 552.0L355.0 210.0C355.0 208.89543 355.89542 208.0 357.0 208.0L370.0 208.0C371.10458 208.0 372.0 208.89543 372.0 210.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="M372.0 552.0L355.0 552.0L355.0 210.0C355.0 208.89543 355.89542 208.0 357.0 208.0L370.0 208.0C371.10458 208.0 372.0 208.89543 372.0 210.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M399.0 552.0L382.0 552.0L382.0 210.0C382.0 208.89543 382.89542 208.0 384.0 208.0L397.0 208.0C398.10458 208.0 399.0 208.89543 399.0 210.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="M399.0 552.0L382.0 552.0L382.0 210.0C382.0 208.89543 382.89542 208.0 384.0 208.0L397.0 208.0C398.10458 208.0 399.0 208.89543 399.0 210.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M425.0 552.0L408.0 552.0L408.0 353.0C408.0 351.89542 408.89542 351.0 410.0 351.0L423.0 351.0C424.10458 351.0 425.0 351.89542 425.0 353.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 552.0L408.0 552.0L408.0 353.0C408.0 351.89542 408.89542 351.0 410.0 351.0L423.0 351.0C424.10458 351.0 425.0 351.89542 425.0 353.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M451.0 552.0L434.0 552.0L434.0 325.0C434.0 323.89542 434.89542 323.0 436.0 323.0L449.0 323.0C450.10458 323.0 451.0 323.89542 451.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="M451.0 552.0L434.0 552.0L434.0 325.0C434.0 323.89542 434.89542 323.0 436.0 323.0L449.0 323.0C450.10458 323.0 451.0 323.89542 451.0 325.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M477.0 552.0L460.0 552.0L460.0 277.0C460.0 275.89542 460.89542 275.0 462.0 275.0L475.0 275.0C476.10458 275.0 477.0 275.89542 477.0 277.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="M477.0 552.0L460.0 552.0L460.0 277.0C460.0 275.89542 460.89542 275.0 462.0 275.0L475.0 275.0C476.10458 275.0 477.0 275.89542 477.0 277.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M503.0 552.0L486.0 552.0L486.0 258.0C486.0 256.89542 486.89542 256.0 488.0 256.0L501.0 256.0C502.10458 256.0 503.0 256.89542 503.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="M503.0 552.0L486.0 552.0L486.0 258.0C486.0 256.89542 486.89542 256.0 488.0 256.0L501.0 256.0C502.10458 256.0 503.0 256.89542 503.0 258.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M529.0 552.0L512.0 552.0L512.0 267.0C512.0 265.89542 512.89545 265.0 514.0 265.0L527.0 265.0C528.10455 265.0 529.0 265.89542 529.0 267.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="M529.0 552.0L512.0 552.0L512.0 267.0C512.0 265.89542 512.89545 265.0 514.0 265.0L527.0 265.0C528.10455 265.0 529.0 265.89542 529.0 267.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M555.0 552.0L538.0 552.0L538.0 277.0C538.0 275.89542 538.89545 275.0 540.0 275.0L553.0 275.0C554.10455 275.0 555.0 275.89542 555.0 277.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="M555.0 552.0L538.0 552.0L538.0 277.0C538.0 275.89542 538.89545 275.0 540.0 275.0L553.0 275.0C554.10455 275.0 555.0 275.89542 555.0 277.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M581.0 552.0L564.0 552.0L564.0 277.0C564.0 275.89542 564.89545 275.0 566.0 275.0L579.0 275.0C580.10455 275.0 581.0 275.89542 581.0 277.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 552.0L564.0 552.0L564.0 277.0C564.0 275.89542 564.89545 275.0 566.0 275.0L579.0 275.0C580.10455 275.0 581.0 275.89542 581.0 277.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M607.0 552.0L590.0 552.0L590.0 267.0C590.0 265.89542 590.89545 265.0 592.0 265.0L605.0 265.0C606.10455 265.0 607.0 265.89542 607.0 267.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="M607.0 552.0L590.0 552.0L590.0 267.0C590.0 265.89542 590.89545 265.0 592.0 265.0L605.0 265.0C606.10455 265.0 607.0 265.89542 607.0 267.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M633.0 552.0L616.0 552.0L616.0 239.0C616.0 237.89543 616.89545 237.0 618.0 237.0L631.0 237.0C632.10455 237.0 633.0 237.89543 633.0 239.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 552.0L616.0 552.0L616.0 239.0C616.0 237.89543 616.89545 237.0 618.0 237.0L631.0 237.0C632.10455 237.0 633.0 237.89543 633.0 239.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M659.0 552.0L642.0 552.0L642.0 267.0C642.0 265.89542 642.89545 265.0 644.0 265.0L657.0 265.0C658.10455 265.0 659.0 265.89542 659.0 267.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="M659.0 552.0L642.0 552.0L642.0 267.0C642.0 265.89542 642.89545 265.0 644.0 265.0L657.0 265.0C658.10455 265.0 659.0 265.89542 659.0 267.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M685.0 552.0L668.0 552.0L668.0 334.0C668.0 332.89542 668.89545 332.0 670.0 332.0L683.0 332.0C684.10455 332.0 685.0 332.89542 685.0 334.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="M685.0 552.0L668.0 552.0L668.0 334.0C668.0 332.89542 668.89545 332.0 670.0 332.0L683.0 332.0C684.10455 332.0 685.0 332.89542 685.0 334.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M711.0 552.0L694.0 552.0L694.0 277.0C694.0 275.89542 694.89545 275.0 696.0 275.0L709.0 275.0C710.10455 275.0 711.0 275.89542 711.0 277.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="M711.0 552.0L694.0 552.0L694.0 277.0C694.0 275.89542 694.89545 275.0 696.0 275.0L709.0 275.0C710.10455 275.0 711.0 275.89542 711.0 277.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path clip-path="url(#id_0)" d="M129.0 192.68602C129.0 192.68602 129.66667 194.2323 130.0 195.00543C130.33333 195.77856 130.66667 196.55171 131.0 197.32484C131.33333 198.09798 131.66667 198.87112 132.0 199.64426C132.33333 200.41739 132.66667 201.19054 133.0 201.96367C133.33333 202.7368 133.66667 203.50995 134.0 204.28308C134.33333 205.05621 134.66667 205.82935 135.0 206.6025C135.33333 207.37563 135.66667 208.14876 136.0 208.9219C136.33333 209.69504 136.66667 210.46817 137.0 211.24132C137.33333 212.01445 137.66667 212.78758 138.0 213.56073C138.33333 214.33386 138.66667 215.107 139.0 215.88014C139.33333 216.65327 139.66667 217.4264 140.0 218.19954C140.33333 218.97269 140.66667 219.74582 141.0 220.51895C141.33333 221.2921 141.66667 222.06523 142.0 222.83836C142.33333 223.61151 142.66667 224.38464 143.0 225.15778C143.33333 225.93092 143.66667 226.70406 144.0 227.47719C144.33333 228.25032 144.66667 229.02347 145.0 229.7966C145.33333 230.56973 145.66667 231.34288 146.0 232.11601C146.33333 232.88914 146.66667 233.6623 147.0 234.43542C147.33333 235.20856 147.66667 235.9817 148.0 236.75484C148.33333 237.52797 148.66667 238.3011 149.0 239.07425C149.33333 239.84738 149.66667 240.62051 150.0 241.39366C150.33333 242.1668 150.66667 242.93993 151.0 243.71307C151.33333 244.4862 151.66667 245.25934 152.0 246.03249C152.33333 246.80562 152.66667 247.57875 153.0 248.35188C153.33333 249.12503 153.66667 249.99051 154.0 250.6713C154.33333 251.3521 154.66667 252.28487 155.0 252.43668C155.33333 252.5885 155.66667 251.867 156.0 251.58217C156.33333 251.29732 156.66667 251.01248 157.0 250.72765C157.33333 250.44281 157.66667 250.15796 158.0 249.87312C158.33333 249.58829 158.66667 249.30344 159.0 249.0186C159.33333 248.73376 159.66667 248.44893 160.0 248.16408C160.33333 247.87924 160.66667 247.5944 161.0 247.30957C161.33333 247.02472 161.66667 246.73988 162.0 246.45505C162.33333 246.17021 162.66667 245.88536 163.0 245.60052C163.33333 245.31569 163.66667 245.03084 164.0 244.746C164.33333 244.46117 164.66667 244.17633 165.0 243.89148C165.33333 243.60664 165.66667 243.32181 166.0 243.03697C166.33333 242.75212 166.66667 242.46729 167.0 242.18245C167.33333 241.8976 167.66667 241.61276 168.0 241.32793C168.33333 241.04309 168.66667 240.75824 169.0 240.4734C169.33333 240.18857 169.66667 239.90373 170.0 239.61888C170.33333 239.33405 170.66667 239.04921 171.0 238.76436C171.33333 238.47952 171.66667 238.19469 172.0 237.90985C172.33333 237.625 172.66667 237.34016 173.0 237.05533C173.33333 236.7705 173.66667 236.48564 174.0 236.2008C174.33333 235.91597 174.66667 235.63112 175.0 235.34628C175.33333 235.06145 175.66667 234.77661 176.0 234.49176C176.33333 234.20692 176.66667 233.92209 177.0 233.63725C177.33333 233.3524 177.66667 233.06757 178.0 232.78273C178.33333 232.49788 178.66667 232.21304 179.0 231.9282C179.33333 231.64337 179.66667 231.35042 180.0 231.07368C180.33333 230.79695 180.66667 230.46315 181.0 230.2678C181.33333 230.07245 181.66667 230.02365 182.0 229.90158C182.33333 229.77951 182.66667 229.65742 183.0 229.53535C183.33333 229.41328 183.66667 229.29121 184.0 229.16913C184.33333 229.04706 184.66667 228.92499 185.0 228.80292C185.33333 228.68083 185.66667 228.55876 186.0 228.43669C186.33333 228.31462 186.66667 228.19254 187.0 228.07047C187.33333 227.9484 187.66667 227.82632 188.0 227.70424C188.33333 227.58217 188.66667 227.4601 189.0 227.33803C189.33333 227.21594 189.66667 227.09387 190.0 226.9718C190.33333 226.84972 190.66667 226.72765 191.0 226.60558C191.33333 226.4835 191.66667 226.36142 192.0 226.23935C192.33333 226.11728 192.66667 225.99521 193.0 225.87312C193.33333 225.75105 193.66667 225.62898 194.0 225.50691C194.33333 225.38483 194.66667 225.26276 195.0 225.14069C195.33333 225.01862 195.66667 224.89653 196.0 224.77446C196.33333 224.65239 196.66667 224.53032 197.0 224.40823C197.33333 224.28616 197.66667 224.1641 198.0 224.04202C198.33333 223.91994 198.66667 223.79787 199.0 223.6758C199.33333 223.55371 199.66667 223.43164 200.0 223.30957C200.33333 223.1875 200.66667 223.06541 201.0 222.94334C201.33333 222.82127 201.66667 222.6992 202.0 222.57712C202.33333 222.45505 202.66667 222.33298 203.0 222.2109C203.33333 222.08882 203.66667 221.96675 204.0 221.84468C204.33333 221.72261 204.66667 221.60052 205.0 221.47845C205.33333 221.35638 205.66667 221.24234 206.0 221.11223C206.33333 220.98213 206.66667 221.15349 207.0 220.69786C207.33333 220.24222 207.66667 219.15158 208.0 218.37845C208.33333 217.6053 208.66667 216.83217 209.0 216.05904C209.33333 215.28589 209.66667 214.51276 210.0 213.73962C210.33333 212.96649 210.66667 212.19334 211.0 211.42021C211.33333 210.64708 211.66667 209.87393 212.0 209.1008C212.33333 208.32767 212.66667 207.55452 213.0 206.78139C213.33333 206.00826 213.66667 205.2351 214.0 204.46198C214.33333 203.68884 214.66667 202.9157 215.0 202.14256C215.33333 201.36943 215.66667 200.5963 216.0 199.82315C216.33333 199.05002 216.66667 198.27689 217.0 197.50374C217.33333 196.7306 217.66667 195.95747 218.0 195.18433C218.33333 194.4112 218.66667 193.63806 219.0 192.86491C219.33333 192.09178 219.66667 191.31865 220.0 190.54552C220.33333 189.77237 220.66667 188.99924 221.0 188.2261C221.33333 187.45296 221.66667 186.67982 222.0 185.9067C222.33333 185.13354 222.66667 184.36041 223.0 183.58728C223.33333 182.81413 223.66667 182.041 224.0 181.26787C224.33333 180.49474 224.66667 179.72159 225.0 178.94846C225.33333 178.17532 225.66667 177.40218 226.0 176.62904C226.33333 175.85591 226.66667 175.08276 227.0 174.30963C227.33333 173.5365 227.66667 172.76335 228.0 171.99022C228.33333 171.21709 228.66667 170.44395 229.0 169.6708C229.33333 168.89767 229.66667 168.12454 230.0 167.3514C230.33333 166.57826 230.66667 165.80513 231.0 165.03198C231.33333 164.25885 231.66667 163.48572 232.0 162.71257C232.33333 161.93944 232.66667 160.70256 233.0 160.39316C233.33333 160.08377 233.66667 160.67728 234.0 160.85619C234.33333 161.03508 234.66667 161.26309 235.0 161.46655C235.33333 161.67001 235.66667 161.87346 236.0 162.07692C236.33333 162.28038 236.66667 162.48384 237.0 162.6873C237.33333 162.89075 237.66667 163.09421 238.0 163.29767C238.33333 163.50113 238.66667 163.70457 239.0 163.90804C239.33333 164.1115 239.66667 164.31496 240.0 164.5184C240.33333 164.72186 240.66667 164.92532 241.0 165.12878C241.33333 165.33224 241.66667 165.53569 242.0 165.73915C242.33333 165.94261 242.66667 166.14607 243.0 166.34952C243.33333 166.55298 243.66667 166.75644 244.0 166.9599C244.33333 167.16335 244.66667 167.3668 245.0 167.57027C245.33333 167.77373 245.66667 167.97717 246.0 168.18063C246.33333 168.3841 246.66667 168.58755 247.0 168.79102C247.33333 168.99446 247.66667 169.19792 248.0 169.40138C248.33333 169.60484 248.66667 169.80829 249.0 170.01175C249.33333 170.21521 249.66667 170.41867 250.0 170.62212C250.33333 170.82558 250.66667 171.02904 251.0 171.2325C251.33333 171.43594 251.66667 171.6394 252.0 171.84286C252.33333 172.04633 252.66667 172.24979 253.0 172.45323C253.33333 172.6567 253.66667 172.86015 254.0 173.06361C254.33333 173.26706 254.66667 173.47052 255.0 173.67398C255.33333 173.87744 255.66667 174.08089 256.0 174.28435C256.33334 174.48781 256.66666 174.69127 257.0 174.89471C257.33334 175.09818 257.66666 175.30164 258.0 175.5051C258.33334 175.70856 258.66666 175.85861 259.0 176.11546C259.33334 176.37231 259.66666 176.7283 260.0 177.04619C260.33334 177.36407 260.66666 177.69725 261.0 178.02278C261.33334 178.34831 261.66666 178.67384 262.0 178.99937C262.33334 179.3249 262.66666 179.65044 263.0 179.97597C263.33334 180.3015 263.66666 180.62703 264.0 180.95256C264.33334 181.27809 264.66666 181.60362 265.0 181.92917C265.33334 182.2547 265.66666 182.58023 266.0 182.90576C266.33334 183.2313 266.66666 183.55682 267.0 183.88235C267.33334 184.20789 267.66666 184.53342 268.0 184.85895C268.33334 185.18448 268.66666 185.51001 269.0 185.83554C269.33334 186.16107 269.66666 186.4866 270.0 186.81213C270.33334 187.13766 270.66666 187.4632 271.0 187.78873C271.33334 188.11426 271.66666 188.43979 272.0 188.76532C272.33334 189.09085 272.66666 189.41638 273.0 189.74191C273.33334 190.06744 273.66666 190.39297 274.0 190.7185C274.33334 191.04404 274.66666 191.36957 275.0 191.6951C275.33334 192.02063 275.66666 192.34616 276.0 192.67169C276.33334 192.99722 276.66666 193.32275 277.0 193.64828C277.33334 193.97382 277.66666 194.29935 278.0 194.62488C278.33334 194.95042 278.66666 195.27596 279.0 195.60149C279.33334 195.92702 279.66666 196.25255 280.0 196.57808C280.33334 196.90361 280.66666 197.22914 281.0 197.55467C281.33334 197.8802 281.66666 198.20573 282.0 198.53127C282.33334 198.8568 282.66666 199.18233 283.0 199.50786C283.33334 199.83339 283.66666 200.15892 284.0 200.48445C284.33334 200.80998 284.66666 201.13551 285.0 201.46104C285.33334 201.78658 285.66666 202.1121 286.0 202.43764C286.33334 202.76317 286.66666 203.0887 287.0 203.41423C287.33334 203.73976 287.66666 204.06529 288.0 204.39082C288.33334 204.71635 288.66666 205.04189 289.0 205.36742C289.33334 205.69295 289.66666 206.01848 290.0 206.34401C290.33334 206.66954 290.66666 206.99507 291.0 207.3206C291.33334 207.64613 291.66666 207.97168 292.0 208.29721C292.33334 208.62274 292.66666 208.94827 293.0 209.2738C293.33334 209.59933 293.66666 209.92487 294.0 210.2504C294.33334 210.57593 294.66666 210.90146 295.0 211.22699C295.33334 211.55252 295.66666 211.87805 296.0 212.20358C296.33334 212.52911 296.66666 212.85464 297.0 213.18018C297.33334 213.5057 297.66666 213.83124 298.0 214.15677C298.33334 214.4823 298.66666 214.80783 299.0 215.13336C299.33334 215.4589 299.66666 215.78442 300.0 216.10995C300.33334 216.43549 300.66666 216.76102 301.0 217.08655C301.33334 217.41208 301.66666 217.73761 302.0 218.06314C302.33334 218.38867 302.66666 218.7142 303.0 219.03973C303.33334 219.36526 303.66666 219.6908 304.0 220.01633C304.33334 220.34186 304.66666 220.66739 305.0 220.99294C305.33334 221.31847 305.66666 221.644 306.0 221.96953C306.33334 222.29506 306.66666 222.62059 307.0 222.94612C307.33334 223.27165 307.66666 223.59718 308.0 223.92271C308.33334 224.24825 308.66666 224.57378 309.0 224.8993C309.33334 225.22484 309.66666 225.55037 310.0 225.8759C310.33334 226.20143 310.66666 226.52696 311.0 226.8525C311.33334 227.17802 311.66666 227.50356 312.0 227.82909C312.33334 228.15462 312.66666 228.48015 313.0 228.80568C313.33334 229.13121 313.66666 229.45674 314.0 229.78227C314.33334 230.1078 314.66666 230.43333 315.0 230.75887C315.33334 231.0844 315.66666 231.40993 316.0 231.73546C316.33334 232.06099 316.66666 232.38652 317.0 232.71205C317.33334 233.03758 317.66666 233.36311 318.0 233.68864C318.33334 234.01419 318.66666 234.33972 319.0 234.66525C319.33334 234.99078 319.66666 235.31631 320.0 235.64185C320.33334 235.96738 320.66666 236.29291 321.0 236.61844C321.33334 236.94397 321.66666 237.2695 322.0 237.59503C322.33334 237.92056 322.66666 238.2461 323.0 238.57162C323.33334 238.89716 323.66666 239.22269 324.0 239.54822C324.33334 239.87375 324.66666 240.19928 325.0 240.52481C325.33334 240.85034 325.66666 241.17587 326.0 241.5014C326.33334 241.82693 326.66666 242.15247 327.0 242.478C327.33334 242.80353 327.66666 243.12906 328.0 243.45459C328.33334 243.78012 328.66666 244.10565 329.0 244.43118C329.33334 244.75671 329.66666 245.08224 330.0 245.40778C330.33334 245.7333 330.66666 246.05884 331.0 246.38437C331.33334 246.7099 331.66666 247.03545 332.0 247.36098C332.33334 247.68651 332.66666 248.01204 333.0 248.33757C333.33334 248.6631 333.66666 248.98863 334.0 249.31416C334.33334 249.6397 334.66666 249.96523 335.0 250.29076C335.33334 250.61629 335.66666 250.94182 336.0 251.26735C336.33334 251.59288 336.66666 252.05064 337.0 252.24394C337.33334 252.43724 337.66666 252.43733 338.0 252.42717C338.33334 252.41702 338.66666 252.2644 339.0 252.18303C339.33334 252.10164 339.66666 252.02026 340.0 251.93887C340.33334 251.8575 340.66666 251.77611 341.0 251.69473C341.33334 251.61334 341.66666 251.53197 342.0 251.45058C342.33334 251.3692 342.66666 251.28781 343.0 251.20644C343.33334 251.12505 343.66666 251.04367 344.0 250.96228C344.33334 250.8809 344.66666 250.79951 345.0 250.71814C345.33334 250.63675 345.66666 250.55537 346.0 250.47398C346.33334 250.39261 346.66666 250.31122 347.0 250.22984C347.33334 250.14845 347.66666 250.06708 348.0 249.98569C348.33334 249.9043 348.66666 249.82292 349.0 249.74153C349.33334 249.66016 349.66666 249.57877 350.0 249.49739C350.33334 249.416 350.66666 249.33463 351.0 249.25323C351.33334 249.17186 351.66666 249.09047 352.0 249.0091C352.33334 248.9277 352.66666 248.84633 353.0 248.76494C353.33334 248.68356 353.66666 248.60217 354.0 248.5208C354.33334 248.4394 354.66666 248.35803 355.0 248.27664C355.33334 248.19527 355.66666 248.11388 356.0 248.0325C356.33334 247.95111 356.66666 247.86974 357.0 247.78835C357.33334 247.70697 357.66666 247.62558 358.0 247.5442C358.33334 247.46281 358.66666 247.38144 359.0 247.30005C359.33334 247.21867 359.66666 247.13728 360.0 247.05591C360.33334 246.97452 360.66666 246.89314 361.0 246.81175C361.33334 246.73038 361.66666 246.64899 362.0 246.56761C362.33334 246.48622 362.66666 246.36975 363.0 246.32346C363.33334 246.27718 363.66666 246.27512 364.0 246.28987C364.33334 246.30461 364.66666 246.37125 365.0 246.41194C365.33334 246.45264 365.66666 246.49333 366.0 246.53401C366.33334 246.5747 366.66666 246.6154 367.0 246.6561C367.33334 246.69678 367.66666 246.73747 368.0 246.77817C368.33334 246.81886 368.66666 246.85956 369.0 246.90024C369.33334 246.94093 369.66666 246.98163 370.0 247.02232C370.33334 247.063 370.66666 247.1037 371.0 247.1444C371.33334 247.18509 371.66666 247.22577 372.0 247.26646C372.33334 247.30716 372.66666 247.34785 373.0 247.38853C373.33334 247.42923 373.66666 247.46992 374.0 247.51062C374.33334 247.5513 374.66666 247.592 375.0 247.63269C375.33334 247.67339 375.66666 247.71407 376.0 247.75476C376.33334 247.79546 376.66666 247.83615 377.0 247.87683C377.33334 247.91753 377.66666 247.95822 378.0 247.99892C378.33334 248.0396 378.66666 248.08029 379.0 248.12099C379.33334 248.16168 379.66666 248.20236 380.0 248.24306C380.33334 248.28375 380.66666 248.32445 381.0 248.36513C381.33334 248.40582 381.66666 248.44652 382.0 248.48721C382.33334 248.5279 382.66666 248.56859 383.0 248.60928C383.33334 248.64998 383.66666 248.69066 384.0 248.73135C384.33334 248.77205 384.66666 248.81274 385.0 248.85342C385.33334 248.89412 385.66666 248.93481 386.0 248.97551C386.33334 249.01619 386.66666 249.05688 387.0 249.09758C387.33334 249.13828 387.66666 249.17896 388.0 249.21965C388.33334 249.26035 388.66666 249.29086 389.0 249.34172C389.33334 249.3926 389.66666 249.45363 390.0 249.52484C390.33334 249.59605 390.66666 249.6876 391.0 249.76898C391.33334 249.85037 391.66666 249.93175 392.0 250.01314C392.33334 250.09451 392.66666 250.1759 393.0 250.25728C393.33334 250.33867 393.66666 250.42004 394.0 250.50143C394.33334 250.58281 394.66666 250.6642 395.0 250.74557C395.33334 250.82697 395.66666 250.90834 396.0 250.98973C396.33334 251.0711 396.66666 251.1525 397.0 251.23387C397.33334 251.31526 397.66666 251.39664 398.0 251.47803C398.33334 251.5594 398.66666 251.6408 399.0 251.72218C399.33334 251.80356 399.66666 251.88495 400.0 251.96632C400.33334 252.04771 400.66666 252.12909 401.0 252.21048C401.33334 252.29185 401.66666 252.37325 402.0 252.45462C402.33334 252.53601 402.66666 252.61739 403.0 252.69878C403.33334 252.78015 403.66666 252.86154 404.0 252.94292C404.33334 253.0243 404.66666 253.10568 405.0 253.18707C405.33334 253.26845 405.66666 253.34984 406.0 253.43121C406.33334 253.5126 406.66666 253.59398 407.0 253.67537C407.33334 253.75674 407.66666 253.83813 408.0 253.91951C408.33334 254.0009 408.66666 254.08228 409.0 254.16367C409.33334 254.24504 409.66666 254.32643 410.0 254.4078C410.33334 254.4892 410.66666 254.57057 411.0 254.65196C411.33334 254.73334 411.66666 254.81473 412.0 254.8961C412.33334 254.9775 412.66666 255.05887 413.0 255.14026C413.33334 255.22163 413.66666 255.30302 414.0 255.3844C414.33334 255.46579 414.66666 255.4607 415.0 255.62856C415.33334 255.79642 415.66666 256.02026 416.0 256.39157C416.33334 256.7629 416.66666 257.36816 417.0 257.85648C417.33334 258.34476 417.66666 258.83307 418.0 259.32135C418.33334 259.80966 418.66666 260.29794 419.0 260.78625C419.33334 261.27454 419.66666 261.76285 420.0 262.25113C420.33334 262.73944 420.66666 263.22772 421.0 263.71603C421.33334 264.2043 421.66666 264.69263 422.0 265.18094C422.33334 265.66922 422.66666 266.15753 423.0 266.6458C423.33334 267.13412 423.66666 267.6224 424.0 268.11072C424.33334 268.599 424.66666 269.0873 425.0 269.5756C425.33334 270.0639 425.66666 270.5522 426.0 271.0405C426.33334 271.52878 426.66666 272.0171 427.0 272.50537C427.33334 272.99368 427.66666 273.48196 428.0 273.97028C428.33334 274.45856 428.66666 274.94687 429.0 275.43515C429.33334 275.92346 429.66666 276.41174 430.0 276.90005C430.33334 277.38834 430.66666 277.87665 431.0 278.36496C431.33334 278.85324 431.66666 279.34155 432.0 279.82983C432.33334 280.31815 432.66666 280.80643 433.0 281.29474C433.33334 281.78302 433.66666 282.27133 434.0 282.7596C434.33334 283.24792 434.66666 283.7362 435.0 284.22452C435.33334 284.7128 435.66666 285.2011 436.0 285.6894C436.33334 286.1777 436.66666 286.666 437.0 287.1543C437.33334 287.64258 437.66666 288.1309 438.0 288.61917C438.33334 289.10748 438.66666 289.59576 439.0 290.08408C439.33334 290.57236 439.66666 291.06067 440.0 291.54898C440.33334 292.03726 440.66666 292.5612 441.0 293.01385C441.33334 293.46655 441.66666 293.9141 442.0 294.26505C442.33334 294.616 442.66666 294.83475 443.0 295.11957C443.33334 295.40442 443.66666 295.68927 444.0 295.9741C444.33334 296.25894 444.66666 296.5438 445.0 296.8286C445.33334 297.11346 445.66666 297.3983 446.0 297.68314C446.33334 297.968 446.66666 298.2528 447.0 298.53766C447.33334 298.8225 447.66666 299.10733 448.0 299.39218C448.33334 299.67703 448.66666 299.96185 449.0 300.2467C449.33334 300.53152 449.66666 300.81638 450.0 301.10123C450.33334 301.38605 450.66666 301.6709 451.0 301.95575C451.33334 302.24057 451.66666 302.52542 452.0 302.81027C452.33334 303.0951 452.66666 303.37994 453.0 303.66476C453.33334 303.94962 453.66666 304.23447 454.0 304.5193C454.33334 304.80414 454.66666 305.089 455.0 305.3738C455.33334 305.65866 455.66666 305.9435 456.0 306.22833C456.33334 306.51318 456.66666 306.798 457.0 307.08286C457.33334 307.3677 457.66666 307.65253 458.0 307.93738C458.33334 308.22223 458.66666 308.50705 459.0 308.7919C459.33334 309.07675 459.66666 309.36157 460.0 309.64642C460.33334 309.93124 460.66666 310.2161 461.0 310.50095C461.33334 310.78577 461.66666 311.07062 462.0 311.35547C462.33334 311.6403 462.66666 311.92514 463.0 312.21C463.33334 312.4948 463.66666 312.77966 464.0 313.06448C464.33334 313.34933 464.66666 313.6342 465.0 313.919C465.33334 314.20386 465.66666 314.4887 466.0 314.77353C466.33334 315.05838 466.66666 315.4384 467.0 315.62805C467.33334 315.81772 467.66666 316.06778 468.0 315.91156C468.33334 315.75537 468.66666 315.09775 469.0 314.69083C469.33334 314.2839 469.66666 313.877 470.0 313.4701C470.33334 313.06317 470.66666 312.65625 471.0 312.24933C471.33334 311.84244 471.66666 311.43552 472.0 311.0286C472.33334 310.62167 472.66666 310.21478 473.0 309.80786C473.33334 309.40094 473.66666 308.99402 474.0 308.58713C474.33334 308.1802 474.66666 307.7733 475.0 307.36636C475.33334 306.95947 475.66666 306.55255 476.0 306.14563C476.33334 305.7387 476.66666 305.3318 477.0 304.9249C477.33334 304.51797 477.66666 304.11105 478.0 303.70413C478.33334 303.29724 478.66666 302.89032 479.0 302.4834C479.33334 302.07648 479.66666 301.6696 480.0 301.26266C480.33334 300.85574 480.66666 300.44882 481.0 300.04193C481.33334 299.635 481.66666 299.2281 482.0 298.82117C482.33334 298.41425 482.66666 298.00735 483.0 297.60043C483.33334 297.1935 483.66666 296.7866 484.0 296.3797C484.33334 295.97278 484.66666 295.56586 485.0 295.15894C485.33334 294.75204 485.66666 294.34512 486.0 293.9382C486.33334 293.53128 486.66666 293.1244 487.0 292.71747C487.33334 292.31055 487.66666 291.90363 488.0 291.4967C488.33334 291.0898 488.66666 290.6829 489.0 290.27597C489.33334 289.86905 489.66666 289.46216 490.0 289.05524C490.33334 288.64832 490.66666 288.2414 491.0 287.8345C491.33334 287.42758 491.66666 287.02066 492.0 286.61374C492.33334 286.20682 492.66666 285.78363 493.0 285.393C493.33334 285.00238 493.66666 284.57925 494.0 284.27002C494.33334 283.9608 494.66666 283.7817 495.0 283.53757C495.33334 283.29343 495.66666 283.0493 496.0 282.8051C496.33334 282.56097 496.66666 282.31683 497.0 282.0727C497.33334 281.82852 497.66666 281.58438 498.0 281.34024C498.33334 281.0961 498.66666 280.85193 499.0 280.6078C499.33334 280.36365 499.66666 280.1195 500.0 279.87534C500.33334 279.6312 500.66666 279.38705 501.0 279.14288C501.33334 278.89874 501.66666 278.6546 502.0 278.41046C502.33334 278.1663 502.66666 277.92215 503.0 277.678C503.33334 277.43387 503.66666 277.1897 504.0 276.94556C504.33334 276.70142 504.66666 276.45728 505.0 276.2131C505.33334 275.96896 505.66666 275.72482 506.0 275.48068C506.33334 275.2365 506.66666 274.99237 507.0 274.74823C507.33334 274.5041 507.66666 274.25992 508.0 274.01578C508.33334 273.77164 508.66666 273.5275 509.0 273.28333C509.33334 273.03918 509.66666 272.79504 510.0 272.55087C510.33334 272.30673 510.66666 272.0626 511.0 271.81845C511.33334 271.57428 511.66666 271.33014 512.0 271.086C512.3333 270.84186 512.6667 270.5977 513.0 270.35355C513.3333 270.1094 513.6667 269.86526 514.0 269.6211C514.3333 269.37695 514.6667 269.1328 515.0 268.88867C515.3333 268.6445 515.6667 268.40036 516.0 268.15622C516.3333 267.91208 516.6667 267.6679 517.0 267.42377C517.3333 267.17963 517.6667 266.9355 518.0 266.6913C518.3333 266.44717 518.6667 266.18774 519.0 265.95886C519.3333 265.73 519.6667 265.42496 520.0 265.31818C520.3333 265.2114 520.6667 265.31818 521.0 265.31818C521.3333 265.31818 521.6667 265.31818 522.0 265.31818C522.3333 265.31818 522.6667 265.31818 523.0 265.31818C523.3333 265.31818 523.6667 265.31818 524.0 265.31818C524.3333 265.31818 524.6667 265.31818 525.0 265.31818C525.3333 265.31818 525.6667 265.31818 526.0 265.31818C526.3333 265.31818 526.6667 265.31818 527.0 265.31818C527.3333 265.31818 527.6667 265.31818 528.0 265.31818C528.3333 265.31818 528.6667 265.31818 529.0 265.31818C529.3333 265.31818 529.6667 265.31818 530.0 265.31818C530.3333 265.31818 530.6667 265.31818 531.0 265.31818C531.3333 265.31818 531.6667 265.31818 532.0 265.31818C532.3333 265.31818 532.6667 265.31818 533.0 265.31818C533.3333 265.31818 533.6667 265.31818 534.0 265.31818C534.3333 265.31818 534.6667 265.31818 535.0 265.31818C535.3333 265.31818 535.6667 265.31818 536.0 265.31818C536.3333 265.31818 536.6667 265.31818 537.0 265.31818C537.3333 265.31818 537.6667 265.31818 538.0 265.31818C538.3333 265.31818 538.6667 265.31818 539.0 265.31818C539.3333 265.31818 539.6667 265.31818 540.0 265.31818C540.3333 265.31818 540.6667 265.31818 541.0 265.31818C541.3333 265.31818 541.6667 265.31818 542.0 265.31818C542.3333 265.31818 542.6667 265.31818 543.0 265.31818C543.3333 265.31818 543.6667 265.31818 544.0 265.31818C544.3333 265.31818 544.6667 265.31613 545.0 265.31818C545.3333 265.32022 545.6667 265.28772 546.0 265.33044C546.3333 265.3732 546.6667 265.49323 547.0 265.5746C547.3333 265.65598 547.6667 265.73737 548.0 265.81876C548.3333 265.90012 548.6667 265.9815 549.0 266.0629C549.3333 266.1443 549.6667 266.22565 550.0 266.30704C550.3333 266.38843 550.6667 266.46982 551.0 266.55118C551.3333 266.63257 551.6667 266.71396 552.0 266.79535C552.3333 266.8767 552.6667 266.9581 553.0 267.0395C553.3333 267.12088 553.6667 267.20224 554.0 267.28363C554.3333 267.36502 554.6667 267.4464 555.0 267.52777C555.3333 267.60916 555.6667 267.69055 556.0 267.77194C556.3333 267.8533 556.6667 267.9347 557.0 268.01608C557.3333 268.09747 557.6667 268.17883 558.0 268.26022C558.3333 268.3416 558.6667 268.423 559.0 268.50436C559.3333 268.58575 559.6667 268.66714 560.0 268.74854C560.3333 268.8299 560.6667 268.9113 561.0 268.99268C561.3333 269.07407 561.6667 269.15543 562.0 269.23682C562.3333 269.3182 562.6667 269.3996 563.0 269.48096C563.3333 269.56235 563.6667 269.64374 564.0 269.72513C564.3333 269.80652 564.6667 269.88788 565.0 269.96927C565.3333 270.05066 565.6667 270.13205 566.0 270.2134C566.3333 270.2948 566.6667 270.3762 567.0 270.45758C567.3333 270.53894 567.6667 270.62033 568.0 270.70172C568.3333 270.7831 568.6667 270.86447 569.0 270.94586C569.3333 271.02725 569.6667 271.10864 570.0 271.19C570.3333 271.2714 570.6667 271.35278 571.0 271.43417C571.3333 271.51553 571.6667 271.63663 572.0 271.6783C572.3333 271.72 572.6667 271.68332 573.0 271.68433C573.3333 271.68533 573.6667 271.68433 574.0 271.68433C574.3333 271.68433 574.6667 271.68433 575.0 271.68433C575.3333 271.68433 575.6667 271.68433 576.0 271.68433C576.3333 271.68433 576.6667 271.68433 577.0 271.68433C577.3333 271.68433 577.6667 271.68433 578.0 271.68433C578.3333 271.68433 578.6667 271.68433 579.0 271.68433C579.3333 271.68433 579.6667 271.68433 580.0 271.68433C580.3333 271.68433 580.6667 271.68433 581.0 271.68433C581.3333 271.68433 581.6667 271.68433 582.0 271.68433C582.3333 271.68433 582.6667 271.68433 583.0 271.68433C583.3333 271.68433 583.6667 271.68433 584.0 271.68433C584.3333 271.68433 584.6667 271.68433 585.0 271.68433C585.3333 271.68433 585.6667 271.68433 586.0 271.68433C586.3333 271.68433 586.6667 271.68433 587.0 271.68433C587.3333 271.68433 587.6667 271.68433 588.0 271.68433C588.3333 271.68433 588.6667 271.68433 589.0 271.68433C589.3333 271.68433 589.6667 271.68433 590.0 271.68433C590.3333 271.68433 590.6667 271.68433 591.0 271.68433C591.3333 271.68433 591.6667 271.68433 592.0 271.68433C592.3333 271.68433 592.6667 271.68433 593.0 271.68433C593.3333 271.68433 593.6667 271.68433 594.0 271.68433C594.3333 271.68433 594.6667 271.68433 595.0 271.68433C595.3333 271.68433 595.6667 271.68433 596.0 271.68433C596.3333 271.68433 596.6667 271.68433 597.0 271.68433C597.3333 271.68433 597.6667 271.7576 598.0 271.68433C598.3333 271.61105 598.6667 271.39932 599.0 271.24466C599.3333 271.09 599.6667 270.91913 600.0 270.75638C600.3333 270.5936 600.6667 270.43085 601.0 270.26807C601.3333 270.10532 601.6667 269.94254 602.0 269.7798C602.3333 269.617 602.6667 269.45425 603.0 269.29147C603.3333 269.12872 603.6667 268.96594 604.0 268.8032C604.3333 268.6404 604.6667 268.47766 605.0 268.31488C605.3333 268.15213 605.6667 267.98935 606.0 267.8266C606.3333 267.66382 606.6667 267.50107 607.0 267.3383C607.3333 267.17554 607.6667 267.01276 608.0 266.85C608.3333 266.68723 608.6667 266.52448 609.0 266.3617C609.3333 266.19894 609.6667 266.03616 610.0 265.8734C610.3333 265.71063 610.6667 265.54788 611.0 265.3851C611.3333 265.22235 611.6667 265.05957 612.0 264.89682C612.3333 264.73404 612.6667 264.5713 613.0 264.4085C613.3333 264.24576 613.6667 264.08298 614.0 263.92023C614.3333 263.75745 614.6667 263.5947 615.0 263.43192C615.3333 263.26913 615.6667 263.10638 616.0 262.9436C616.3333 262.78085 616.6667 262.61807 617.0 262.45532C617.3333 262.29254 617.6667 262.1298 618.0 261.967C618.3333 261.80426 618.6667 261.64148 619.0 261.47873C619.3333 261.31595 619.6667 261.1532 620.0 260.99042C620.3333 260.82767 620.6667 260.6649 621.0 260.50214C621.3333 260.33936 621.6667 260.1766 622.0 260.01382C622.3333 259.85107 622.6667 259.6883 623.0 259.52554C623.3333 259.36276 623.6667 259.14963 624.0 259.03723C624.3333 258.92487 624.6667 258.9026 625.0 258.85123C625.3333 258.7999 625.6667 258.76987 626.0 258.72916C626.3333 258.68848 626.6667 258.6478 627.0 258.6071C627.3333 258.5664 627.6667 258.5257 628.0 258.48502C628.3333 258.44434 628.6667 258.40363 629.0 258.36295C629.3333 258.32227 629.6667 258.28156 630.0 258.24088C630.3333 258.20016 630.6667 258.1595 631.0 258.1188C631.3333 258.0781 631.6667 258.0374 632.0 257.99673C632.3333 257.95602 632.6667 257.91534 633.0 257.87463C633.3333 257.83395 633.6667 257.79327 634.0 257.75256C634.3333 257.71188 634.6667 257.6712 635.0 257.6305C635.3333 257.5898 635.6667 257.5491 636.0 257.50842C636.3333 257.46774 636.6667 257.42703 637.0 257.38635C637.3333 257.34567 637.6667 257.30496 638.0 257.26428C638.3333 257.22357 638.6667 257.1829 639.0 257.1422C639.3333 257.1015 639.6667 257.06082 640.0 257.02014C640.3333 256.97943 640.6667 256.93875 641.0 256.89804C641.3333 256.85736 641.6667 256.81668 642.0 256.77597C642.3333 256.7353 642.6667 256.6946 643.0 256.6539C643.3333 256.61322 643.6667 256.5725 644.0 256.53183C644.3333 256.49115 644.6667 256.45044 645.0 256.40976C645.3333 256.36905 645.6667 256.32837 646.0 256.2877C646.3333 256.24698 646.6667 256.2063 647.0 256.16562C647.3333 256.1249 647.6667 256.08423 648.0 256.04352C648.3333 256.00284 648.6667 255.96214 649.0 255.92146C649.3333 255.88077 649.6667 255.71793 650.0 255.79938C650.3333 255.88084 650.6667 256.16602 651.0 256.41025C651.3333 256.65448 651.6667 256.97992 652.0 257.26477C652.3333 257.5496 652.6667 257.83444 653.0 258.11926C653.3333 258.4041 653.6667 258.68896 654.0 258.9738C654.3333 259.25864 654.6667 259.5435 655.0 259.8283C655.3333 260.11316 655.6667 260.398 656.0 260.68283C656.3333 260.96768 656.6667 261.2525 657.0 261.53735C657.3333 261.8222 657.6667 262.10703 658.0 262.39188C658.3333 262.67673 658.6667 262.96155 659.0 263.2464C659.3333 263.53125 659.6667 263.81607 660.0 264.10092C660.3333 264.38574 660.6667 264.6706 661.0 264.95544C661.3333 265.24026 661.6667 265.52512 662.0 265.80997C662.3333 266.0948 662.6667 266.37964 663.0 266.6645C663.3333 266.9493 663.6667 267.23416 664.0 267.51898C664.3333 267.80383 664.6667 268.08868 665.0 268.3735C665.3333 268.65836 665.6667 268.9432 666.0 269.22803C666.3333 269.51288 666.6667 269.79773 667.0 270.08255C667.3333 270.3674 667.6667 270.65222 668.0 270.93707C668.3333 271.22192 668.6667 271.50674 669.0 271.7916C669.3333 272.07645 669.6667 272.36127 670.0 272.64612C670.3333 272.93097 670.6667 273.2158 671.0 273.50064C671.3333 273.78546 671.6667 274.0703 672.0 274.35516C672.3333 274.63998 672.6667 274.92484 673.0 275.2097C673.3333 275.4945 673.6667 275.77936 674.0 276.0642C674.3333 276.34903 674.6667 276.63388 675.0 276.9187C675.3333 277.20355 675.6667 277.52963 676.0 277.77322C676.3333 278.01685 676.6667 278.19778 677.0 278.38034C677.3333 278.56293 677.6667 278.70587 678.0 278.86865C678.3333 279.0314 678.6667 279.19418 679.0 279.35696C679.3333 279.5197 679.6667 279.6825 680.0 279.84525C680.3333 280.00803 680.6667 280.17078 681.0 280.33356C681.3333 280.4963 681.6667 280.6591 682.0 280.82184C682.3333 280.98462 682.6667 281.14737 683.0 281.31015C683.3333 281.4729 683.6667 281.63568 684.0 281.79843C684.3333 281.9612 684.6667 282.12396 685.0 282.28674C685.3333 282.4495 685.6667 282.61227 686.0 282.77502C686.3333 282.9378 686.6667 283.10056 687.0 283.26334C687.3333 283.4261 687.6667 283.58887 688.0 283.75162C688.3333 283.9144 688.6667 284.07715 689.0 284.23993C689.3333 284.40268 689.6667 284.56546 690.0 284.7282C690.3333 284.891 690.6667 285.05374 691.0 285.21652C691.3333 285.37927 691.6667 285.54205 692.0 285.7048C692.3333 285.86758 692.6667 286.03033 693.0 286.1931C693.3333 286.35587 693.6667 286.51865 694.0 286.6814C694.3333 286.84418 694.6667 287.00693 695.0 287.1697C695.3333 287.33246 695.6667 287.49524 696.0 287.658C696.3333 287.82077 696.6667 287.98352 697.0 288.1463C697.3333 288.30905 697.6667 288.47183 698.0 288.63458C698.3333 288.79736 698.6667 288.9601 699.0 289.1229C699.3333 289.28564 699.6667 289.44843 700.0 289.61118C700.3333 289.77396 700.6667 289.9367 701.0 290.0995C701.3333 290.26224 701.6667 290.42502 702.0 290.58777C702.3333 290.75055 702.6667 290.9133 703.0 291.07608C703.3333 291.23883 703.6667 291.4016 704.0 291.56436C704.3333 291.72714 704.6667 291.8899 705.0 292.05267C705.3333 292.21545 705.6667 292.3782 706.0 292.541C706.3333 292.70374 706.6667 292.86652 707.0 293.02927C707.3333 293.19205 707.6667 293.3548 708.0 293.51758C708.3333 293.68033 708.6667 293.8431 709.0 294.00586C709.3333 294.16864 709.6667 294.3314 710.0 294.49417C710.3333 294.65692 710.6667 294.8197 711.0 294.98245C711.3333 295.14523 711.6667 295.30798 712.0 295.47076C712.3333 295.6335 712.6667 295.7963 713.0 295.95905C713.3333 296.12183 713.6667 296.28458 714.0 296.44736C714.3333 296.6101 714.6667 296.7729 715.0 296.93564C715.3333 297.09842 715.6667 297.26117 716.0 297.42395C716.3333 297.5867 716.6667 297.74948 717.0 297.91223C717.3333 298.075 717.6667 298.23776 718.0 298.40054C718.3333 298.5633 718.6667 298.72607 719.0 298.88882C719.3333 299.0516 720.0 299.37714 720.0 299.37714" fill-rule="nonzero" stroke="#ff6d01" stroke-linecap="butt" stroke-opacity="0.4" stroke-width="2.0"></path>
    <path d="M46.5 551.56104Q46.5 550.0298 46.8125 549.1079Q47.125 548.1704 47.734375 547.6704Q48.359375 547.1704 49.296875 547.1704Q49.984375 547.1704 50.5 547.45166Q51.03125 547.7329 51.375 548.26416Q51.71875 548.7798 51.90625 549.5298Q52.09375 550.2798 52.09375 551.56104Q52.09375 553.07666 51.78125 553.99854Q51.484375 554.9204 50.859375 555.43604Q50.25 555.93604 49.296875 555.93604Q48.0625 555.93604 47.34375 555.0454Q46.5 553.9829 46.5 551.56104ZM47.578125 551.56104Q47.578125 553.6704 48.078125 554.37354Q48.578125 555.07666 49.296875 555.07666Q50.03125 555.07666 50.515625 554.37354Q51.015625 553.6704 51.015625 551.56104Q51.015625 549.43604 50.515625 548.74854Q50.03125 548.0454 49.28125 548.0454Q48.5625 548.0454 48.125 548.6548Q47.578125 549.43604 47.578125 551.56104Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M43.46875 460.303L42.421875 460.303L42.421875 453.58426Q42.03125 453.94363 41.40625 454.31863Q40.796875 454.678 40.3125 454.84988L40.3125 453.83426Q41.1875 453.41238 41.84375 452.83426Q42.515625 452.2405 42.796875 451.678L43.46875 451.678L43.46875 460.303ZM46.5 456.06863Q46.5 454.53738 46.8125 453.6155Q47.125 452.678 47.734375 452.178Q48.359375 451.678 49.296875 451.678Q49.984375 451.678 50.5 451.95926Q51.03125 452.2405 51.375 452.77176Q51.71875 453.28738 51.90625 454.03738Q52.09375 454.78738 52.09375 456.06863Q52.09375 457.58426 51.78125 458.50613Q51.484375 459.428 50.859375 459.94363Q50.25 460.44363 49.296875 460.44363Q48.0625 460.44363 47.34375 459.553Q46.5 458.4905 46.5 456.06863ZM47.578125 456.06863Q47.578125 458.178 48.078125 458.88113Q48.578125 459.58426 49.296875 459.58426Q50.03125 459.58426 50.515625 458.88113Q51.015625 458.178 51.015625 456.06863Q51.015625 453.94363 50.515625 453.25613Q50.03125 452.553 49.28125 452.553Q48.5625 452.553 48.125 453.16238Q47.578125 453.94363 47.578125 456.06863Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M45.046875 363.79495L45.046875 364.81058L39.359375 364.81058Q39.359375 364.43558 39.484375 364.0762Q39.703125 363.49808 40.171875 362.93558Q40.65625 362.37308 41.5625 361.6387Q42.96875 360.48245 43.453125 359.81058Q43.953125 359.1387 43.953125 358.54495Q43.953125 357.91995 43.5 357.49808Q43.046875 357.06058 42.328125 357.06058Q41.5625 357.06058 41.109375 357.5137Q40.65625 357.96683 40.640625 358.77933L39.5625 358.66995Q39.671875 357.4512 40.390625 356.8262Q41.125 356.18558 42.359375 356.18558Q43.59375 356.18558 44.3125 356.87308Q45.03125 357.56058 45.03125 358.5762Q45.03125 359.09183 44.8125 359.59183Q44.609375 360.0762 44.109375 360.6387Q43.625 361.18558 42.5 362.1387Q41.546875 362.93558 41.265625 363.23245Q41.0 363.5137 40.828125 363.79495L45.046875 363.79495ZM46.5 360.5762Q46.5 359.04495 46.8125 358.12308Q47.125 357.18558 47.734375 356.68558Q48.359375 356.18558 49.296875 356.18558Q49.984375 356.18558 50.5 356.46683Q51.03125 356.74808 51.375 357.27933Q51.71875 357.79495 51.90625 358.54495Q52.09375 359.29495 52.09375 360.5762Q52.09375 362.09183 51.78125 363.0137Q51.484375 363.93558 50.859375 364.4512Q50.25 364.9512 49.296875 364.9512Q48.0625 364.9512 47.34375 364.06058Q46.5 362.99808 46.5 360.5762ZM47.578125 360.5762Q47.578125 362.68558 48.078125 363.3887Q48.578125 364.09183 49.296875 364.09183Q50.03125 364.09183 50.515625 363.3887Q51.015625 362.68558 51.015625 360.5762Q51.015625 358.4512 50.515625 357.7637Q50.03125 357.06058 49.28125 357.06058Q48.5625 357.06058 48.125 357.66995Q47.578125 358.4512 47.578125 360.5762Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M39.5 267.05255L40.5625 266.91193Q40.734375 267.80255 41.171875 268.2088Q41.609375 268.59943 42.234375 268.59943Q42.984375 268.59943 43.5 268.0838Q44.015625 267.56818 44.015625 266.80255Q44.015625 266.0838 43.53125 265.61505Q43.0625 265.13068 42.328125 265.13068Q42.03125 265.13068 41.578125 265.25568L41.703125 264.31818Q41.8125 264.3338 41.875 264.3338Q42.546875 264.3338 43.078125 263.99005Q43.625 263.63068 43.625 262.8963Q43.625 262.31818 43.234375 261.94318Q42.84375 261.55255 42.21875 261.55255Q41.609375 261.55255 41.1875 261.94318Q40.78125 262.3338 40.671875 263.09943L39.609375 262.91193Q39.796875 261.86505 40.484375 261.28693Q41.171875 260.69318 42.1875 260.69318Q42.890625 260.69318 43.484375 261.00568Q44.078125 261.30255 44.390625 261.81818Q44.703125 262.3338 44.703125 262.92755Q44.703125 263.47443 44.40625 263.94318Q44.109375 264.3963 43.53125 264.66193Q44.28125 264.8338 44.703125 265.3963Q45.125 265.94318 45.125 266.78693Q45.125 267.91193 44.296875 268.69318Q43.484375 269.47443 42.234375 269.47443Q41.109375 269.47443 40.359375 268.80255Q39.609375 268.11505 39.5 267.05255ZM46.5 265.0838Q46.5 263.55255 46.8125 262.63068Q47.125 261.69318 47.734375 261.19318Q48.359375 260.69318 49.296875 260.69318Q49.984375 260.69318 50.5 260.97443Q51.03125 261.25568 51.375 261.78693Q51.71875 262.30255 51.90625 263.05255Q52.09375 263.80255 52.09375 265.0838Q52.09375 266.59943 51.78125 267.5213Q51.484375 268.44318 50.859375 268.9588Q50.25 269.4588 49.296875 269.4588Q48.0625 269.4588 47.34375 268.56818Q46.5 267.50568 46.5 265.0838ZM47.578125 265.0838Q47.578125 267.19318 48.078125 267.8963Q48.578125 268.59943 49.296875 268.59943Q50.03125 268.59943 50.515625 267.8963Q51.015625 267.19318 51.015625 265.0838Q51.015625 262.9588 50.515625 262.2713Q50.03125 261.56818 49.28125 261.56818Q48.5625 261.56818 48.125 262.17755Q47.578125 262.9588 47.578125 265.0838Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M42.875 173.82574L42.875 171.76324L39.15625 171.76324L39.15625 170.7945L43.078125 165.232L43.9375 165.232L43.9375 170.7945L45.09375 170.7945L45.09375 171.76324L43.9375 171.76324L43.9375 173.82574L42.875 173.82574ZM42.875 170.7945L42.875 166.93512L40.1875 170.7945L42.875 170.7945ZM46.5 169.59137Q46.5 168.06012 46.8125 167.13824Q47.125 166.20074 47.734375 165.70074Q48.359375 165.20074 49.296875 165.20074Q49.984375 165.20074 50.5 165.482Q51.03125 165.76324 51.375 166.2945Q51.71875 166.81012 51.90625 167.56012Q52.09375 168.31012 52.09375 169.59137Q52.09375 171.107 51.78125 172.02887Q51.484375 172.95074 50.859375 173.46637Q50.25 173.96637 49.296875 173.96637Q48.0625 173.96637 47.34375 173.07574Q46.5 172.01324 46.5 169.59137ZM47.578125 169.59137Q47.578125 171.70074 48.078125 172.40387Q48.578125 173.107 49.296875 173.107Q50.03125 173.107 50.515625 172.40387Q51.015625 171.70074 51.015625 169.59137Q51.015625 167.46637 50.515625 166.77887Q50.03125 166.07574 49.28125 166.07574Q48.5625 166.07574 48.125 166.68512Q47.578125 167.46637 47.578125 169.59137Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M39.5 76.083336L40.609375 75.989586Q40.734375 76.802086 41.171875 77.208336Q41.625 77.614586 42.265625 77.614586Q43.015625 77.614586 43.546875 77.03646Q44.078125 76.458336 44.078125 75.520836Q44.078125 74.614586 43.5625 74.09896Q43.0625 73.56771 42.234375 73.56771Q41.734375 73.56771 41.3125 73.802086Q40.90625 74.03646 40.671875 74.395836L39.6875 74.270836L40.515625 69.864586L44.796875 69.864586L44.796875 70.864586L41.359375 70.864586L40.90625 73.177086Q41.671875 72.63021 42.515625 72.63021Q43.640625 72.63021 44.40625 73.41146Q45.1875 74.19271 45.1875 75.427086Q45.1875 76.583336 44.515625 77.44271Q43.6875 78.47396 42.265625 78.47396Q41.09375 78.47396 40.34375 77.81771Q39.609375 77.16146 39.5 76.083336ZM46.5 74.09896Q46.5 72.56771 46.8125 71.645836Q47.125 70.708336 47.734375 70.208336Q48.359375 69.708336 49.296875 69.708336Q49.984375 69.708336 50.5 69.989586Q51.03125 70.270836 51.375 70.802086Q51.71875 71.31771 51.90625 72.06771Q52.09375 72.81771 52.09375 74.09896Q52.09375 75.614586 51.78125 76.53646Q51.484375 77.458336 50.859375 77.97396Q50.25 78.47396 49.296875 78.47396Q48.0625 78.47396 47.34375 77.583336Q46.5 76.520836 46.5 74.09896ZM47.578125 74.09896Q47.578125 76.208336 48.078125 76.91146Q48.578125 77.614586 49.296875 77.614586Q50.03125 77.614586 50.515625 76.91146Q51.015625 76.208336 51.015625 74.09896Q51.015625 71.97396 50.515625 71.28646Q50.03125 70.583336 49.28125 70.583336Q48.5625 70.583336 48.125 71.19271Q47.578125 71.97396 47.578125 74.09896Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M42.68156 605.8345L43.399715 606.5526L39.378044 610.5743Q39.11288 610.30914 38.94715 609.9666Q38.693035 609.40314 38.626743 608.67395Q38.5715 607.9337 38.693035 606.7736Q38.869812 604.9617 38.73723 604.14404Q38.615696 603.3154 38.19585 602.89557Q37.75391 602.4536 37.13519 602.4757Q36.505424 602.48676 35.99719 602.995Q35.45581 603.5364 35.45581 604.1772Q35.45581 604.818 36.019287 605.40356L35.179596 606.0886Q34.395153 605.1495 34.46144 604.1993Q34.527733 603.22705 35.40057 602.3542Q36.273403 601.4813 37.267773 601.4592Q38.262142 601.43713 38.980297 602.15533Q39.3449 602.5199 39.543774 603.02814Q39.742645 603.5143 39.786842 604.26556Q39.831036 604.9948 39.7095 606.46423Q39.599014 607.70166 39.610065 608.1105Q39.621113 608.4972 39.698452 608.81757L42.68156 605.8345ZM41.433075 602.53094Q40.350315 601.4482 39.919422 600.5754Q39.47748 599.69147 39.55482 598.90704Q39.643208 598.1116 40.30612 597.4486Q40.79226 596.9625 41.355732 596.79675Q41.93026 596.62 42.548977 596.75256Q43.156647 596.8741 43.819557 597.27185Q44.48247 597.6696 45.38845 598.57556Q46.46016 599.6473 46.891052 600.52014Q47.332996 601.3819 47.255657 602.1885Q47.178314 602.9729 46.504356 603.64685Q45.63152 604.5197 44.49352 604.3982Q43.1456 604.24347 41.433075 602.53094ZM42.195423 601.7686Q43.686977 603.2602 44.537716 603.4038Q45.38845 603.5474 45.896687 603.0392Q46.415966 602.5199 46.261288 601.68024Q46.117657 600.82947 44.626102 599.33795Q43.1235 597.8353 42.28381 597.70276Q41.444122 597.5481 40.91379 598.0784Q40.40556 598.5866 40.527092 599.3269Q40.69282 600.266 42.195423 601.7686ZM52.581055 595.935L53.29921 596.65314L49.27754 600.6748Q49.012375 600.40967 48.846645 600.06714Q48.59253 599.50366 48.526237 598.7745Q48.470997 598.0342 48.59253 596.8741Q48.769306 595.06213 48.636723 594.24457Q48.51519 593.4159 48.095345 592.9961Q47.653404 592.55414 47.034683 592.57623Q46.40492 592.5873 45.896687 593.0955Q45.355305 593.6369 45.355305 594.2777Q45.355305 594.9185 45.91878 595.5041L45.079094 596.1891Q44.294647 595.25 44.36094 594.2998Q44.427227 593.3275 45.300064 592.4547Q46.172897 591.58185 47.167267 591.55975Q48.161636 591.53766 48.87979 592.2558Q49.244392 592.6204 49.443268 593.12866Q49.64214 593.6148 49.686337 594.3661Q49.73053 595.0953 49.608997 596.56476Q49.49851 597.8022 49.50956 598.211Q49.520607 598.59766 49.597946 598.9181L52.581055 595.935ZM51.33257 592.6315Q50.24981 591.5487 49.818916 590.6759Q49.376976 589.792 49.454315 589.00757Q49.542706 588.21204 50.205616 587.54913Q50.691753 587.063 51.25523 586.8973Q51.829754 586.7205 52.44847 586.8531Q53.05614 586.9746 53.719055 587.3724Q54.381966 587.7701 55.28795 588.6761Q56.359657 589.7478 56.79055 590.6206Q57.23249 591.4824 57.15515 592.28894Q57.077812 593.0734 56.40385 593.7474Q55.531013 594.6202 54.393013 594.49866Q53.045094 594.344 51.33257 592.6315ZM52.094917 591.86914Q53.58647 593.36066 54.43721 593.50433Q55.28795 593.64795 55.79618 593.1397Q56.31546 592.6204 56.16078 591.7807Q56.01715 590.93 54.525597 589.4384Q53.022995 587.93585 52.183308 587.8033Q51.343616 587.64856 50.813286 588.1789Q50.305054 588.68713 50.426586 589.42737Q50.592316 590.3665 52.094917 591.86914ZM57.365074 588.9413L56.613773 588.18994L58.91187 585.89185L59.66317 586.6431L57.365074 588.9413ZM59.110744 584.8533Q58.027985 583.7705 57.59709 582.8977Q57.15515 582.0138 57.23249 581.2294Q57.320877 580.4339 57.98379 579.77094Q58.46993 579.28485 59.0334 579.1191Q59.60793 578.9423 60.226646 579.0749Q60.834316 579.1964 61.497227 579.5942Q62.16014 579.99194 63.06612 580.8979Q64.13783 581.9696 64.568726 582.84247Q65.010666 583.7042 64.93333 584.5108Q64.85599 585.2952 64.18202 585.9692Q63.30919 586.84204 62.17119 586.7205Q60.82327 586.5658 59.110744 584.8533ZM59.873093 584.09094Q61.364647 585.5825 62.215385 585.72614Q63.06612 585.86975 63.574356 585.3615Q64.093636 584.8422 63.938957 584.00256Q63.795326 583.1518 62.303772 581.6603Q60.80117 580.15765 59.96148 580.0251Q59.12179 579.8704 58.59146 580.40076Q58.08323 580.90894 58.20476 581.64923Q58.37049 582.5883 59.873093 584.09094ZM69.44113 580.5112L67.98273 579.0528L65.35317 581.6824L64.66816 580.9974L63.508064 574.2909L64.11573 573.6832L68.04901 577.6165L68.86661 576.7989L69.55161 577.4839L68.734024 578.3015L70.19243 579.7599L69.44113 580.5112ZM67.297714 578.3678L64.568726 575.6388L65.39736 580.2681L67.297714 578.3678ZM70.092995 576.2133L69.3417 575.46204L71.63979 573.16394L72.39109 573.9152L70.092995 576.2133ZM71.83867 572.12537Q70.755905 571.0426 70.32501 570.1698Q69.88307 569.2859 69.96041 568.50146Q70.0488 567.70593 70.711716 567.043Q71.19785 566.5569 71.76132 566.3912Q72.335846 566.2144 72.95457 566.347Q73.56224 566.4685 74.22515 566.8663Q74.88806 567.26404 75.794044 568.17Q76.86575 569.2417 77.296646 570.11456Q77.73859 570.9763 77.66125 571.78284Q77.58391 572.5673 76.90995 573.2413Q76.03711 574.11414 74.89911 573.99255Q73.551186 573.8379 71.83867 572.12537ZM72.60101 571.36304Q74.09257 572.85455 74.943306 572.9982Q75.794044 573.14185 76.30228 572.6336Q76.821556 572.1143 76.66688 571.27466Q76.52325 570.4239 75.03169 568.9324Q73.52909 567.42975 72.6894 567.2972Q71.84972 567.14246 71.31938 567.6728Q70.81115 568.181 70.932686 568.92126Q71.09841 569.8604 72.60101 571.36304ZM78.48989 568.6561L79.141754 567.8717Q79.73837 568.2915 80.22451 568.2694Q80.71065 568.2252 81.10839 567.8275Q81.4509 567.485 81.55033 567.0762Q81.64977 566.64526 81.561386 566.22546Q81.461945 565.79456 81.13049 565.2421Q80.78799 564.67865 80.323944 564.2146Q80.26871 564.15936 80.169266 564.05994Q80.30185 564.63446 80.14717 565.2532Q79.981445 565.86084 79.52845 566.31384Q78.7661 567.0762 77.705444 567.0541Q76.633736 567.02094 75.7388 566.12604Q74.81072 565.19794 74.78863 564.0931Q74.77758 562.9772 75.59517 562.1596Q76.18074 561.57404 76.98729 561.40826Q77.80488 561.2315 78.65562 561.57404Q79.49531 561.90546 80.611206 563.02136Q81.77131 564.18146 82.21325 565.13165Q82.65519 566.0597 82.51156 566.93256Q82.36793 567.78326 81.70502 568.4462Q80.98686 569.16437 80.14717 569.23065Q79.29643 569.2859 78.48989 568.6561ZM78.85449 562.92194Q78.21368 562.2811 77.49552 562.248Q76.788414 562.2038 76.30228 562.68994Q75.80509 563.1871 75.838234 563.97156Q75.87138 564.7339 76.52325 565.38574Q77.09777 565.96027 77.815926 565.9713Q78.53408 565.98236 79.04231 565.4741Q79.5616 564.9549 79.52845 564.2588Q79.49531 563.56274 78.85449 562.92194Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M68.75651 605.8345L69.47466 606.5526L65.452995 610.5743Q65.18783 610.30914 65.0221 609.9666Q64.76798 609.40314 64.70169 608.67395Q64.646454 607.9337 64.76798 606.7736Q64.94476 604.9617 64.81218 604.14404Q64.69064 603.3154 64.2708 602.89557Q63.82886 602.4536 63.21014 602.4757Q62.580376 602.48676 62.07214 602.995Q61.53076 603.5364 61.53076 604.1772Q61.53076 604.818 62.09424 605.40356L61.254547 606.0886Q60.4701 605.1495 60.536392 604.1993Q60.602684 603.22705 61.47552 602.3542Q62.348354 601.4813 63.342724 601.4592Q64.33709 601.43713 65.055244 602.15533Q65.41985 602.5199 65.61872 603.02814Q65.8176 603.5143 65.86179 604.26556Q65.90598 604.9948 65.784454 606.46423Q65.673965 607.70166 65.68501 608.1105Q65.69606 608.4972 65.7734 608.81757L68.75651 605.8345ZM67.508026 602.53094Q66.42527 601.4482 65.99438 600.5754Q65.55243 599.69147 65.62977 598.90704Q65.71816 598.1116 66.38107 597.4486Q66.86721 596.9625 67.43069 596.79675Q68.00521 596.62 68.623924 596.75256Q69.2316 596.8741 69.89451 597.27185Q70.55742 597.6696 71.4634 598.57556Q72.53511 599.6473 72.966 600.52014Q73.40794 601.3819 73.330605 602.1885Q73.253265 602.9729 72.57931 603.64685Q71.706474 604.5197 70.568474 604.3982Q69.22055 604.24347 67.508026 602.53094ZM68.27037 601.7686Q69.761925 603.2602 70.61266 603.4038Q71.4634 603.5474 71.971634 603.0392Q72.49092 602.5199 72.336235 601.68024Q72.192604 600.82947 70.70105 599.33795Q69.19845 597.8353 68.358765 597.70276Q67.51907 597.5481 66.98875 598.0784Q66.48051 598.5866 66.60204 599.3269Q66.76777 600.266 68.27037 601.7686ZM78.656006 595.935L79.37416 596.65314L75.35249 600.6748Q75.087326 600.40967 74.9216 600.06714Q74.66748 599.50366 74.60119 598.7745Q74.545944 598.0342 74.66748 596.8741Q74.84425 595.06213 74.71168 594.24457Q74.59014 593.4159 74.170296 592.9961Q73.728355 592.55414 73.109634 592.57623Q72.479866 592.5873 71.971634 593.0955Q71.43026 593.6369 71.43026 594.2777Q71.43026 594.9185 71.99374 595.5041L71.154045 596.1891Q70.3696 595.25 70.43589 594.2998Q70.50218 593.3275 71.375015 592.4547Q72.24785 591.58185 73.24222 591.55975Q74.23659 591.53766 74.95474 592.2558Q75.31934 592.6204 75.51822 593.12866Q75.717094 593.6148 75.761284 594.3661Q75.80548 595.0953 75.683945 596.56476Q75.57346 597.8022 75.58451 598.211Q75.59556 598.59766 75.6729 598.9181L78.656006 595.935ZM77.40752 592.6315Q76.32476 591.5487 75.89387 590.6759Q75.45193 589.792 75.52927 589.00757Q75.61765 588.21204 76.28057 587.54913Q76.7667 587.063 77.33018 586.8973Q77.9047 586.7205 78.52342 586.8531Q79.131096 586.9746 79.79401 587.3724Q80.45692 587.7701 81.3629 588.6761Q82.43461 589.7478 82.8655 590.6206Q83.30744 591.4824 83.2301 592.28894Q83.15276 593.0734 82.4788 593.7474Q81.605965 594.6202 80.467964 594.49866Q79.12004 594.344 77.40752 592.6315ZM78.16987 591.86914Q79.66142 593.36066 80.51216 593.5043Q81.3629 593.64795 81.87113 593.1397Q82.39041 592.6204 82.23573 591.7807Q82.0921 590.93 80.60055 589.4384Q79.097946 587.93585 78.258255 587.8033Q77.41857 587.64856 76.88824 588.1789Q76.380005 588.68713 76.50154 589.42737Q76.66727 590.3665 78.16987 591.86914ZM83.440025 588.9413L82.68872 588.18994L84.98682 585.89185L85.73812 586.6431L83.440025 588.9413ZM85.18569 584.8533Q84.102936 583.7705 83.67204 582.8977Q83.2301 582.0138 83.30744 581.2294Q83.39583 580.4339 84.05875 579.77094Q84.544876 579.28485 85.10835 579.1191Q85.68288 578.9423 86.3016 579.0749Q86.90926 579.1964 87.57218 579.5942Q88.23509 579.99194 89.141075 580.8979Q90.21278 581.9696 90.64368 582.84247Q91.08562 583.7042 91.00828 584.5108Q90.93094 585.2952 90.25697 585.9692Q89.38414 586.84204 88.24614 586.7205Q86.89822 586.5658 85.18569 584.8533ZM85.948044 584.09094Q87.4396 585.5825 88.29034 585.72614Q89.141075 585.86975 89.64931 585.3615Q90.16859 584.8422 90.01391 584.00256Q89.87028 583.1518 88.37872 581.6603Q86.87612 580.15765 86.03643 580.0251Q85.19674 579.8704 84.66641 580.40076Q84.15818 580.90894 84.27972 581.64923Q84.44544 582.5883 85.948044 584.09094ZM95.51608 580.5112L94.05767 579.0528L91.42812 581.6824L90.74311 580.9974L89.583015 574.2909L90.19068 573.6832L94.12396 577.6165L94.94156 576.7989L95.626564 577.4839L94.808975 578.3015L96.26738 579.7599L95.51608 580.5112ZM93.372665 578.3678L90.64368 575.6388L91.47231 580.2681L93.372665 578.3678ZM96.167946 576.2133L95.41665 575.46204L97.714745 573.16394L98.46604 573.9152L96.167946 576.2133ZM103.7141 572.3132L102.97385 573.05347L98.22298 568.30255Q98.20088 568.8329 98.0241 569.54004Q97.84733 570.22504 97.62635 570.6891L96.908195 569.9709Q97.22861 569.0539 97.28385 568.181Q97.33909 567.28613 97.14022 566.6895L97.6153 566.2144L103.7141 572.3132ZM104.266525 568.5788L104.98468 567.728Q105.6476 568.2142 106.24422 568.1921Q106.85189 568.15894 107.30488 567.70593Q107.835205 567.1756 107.80206 566.3912Q107.76891 565.60675 107.106 564.94385Q106.46519 564.303 105.735985 564.303Q105.00678 564.2809 104.42121 564.86646Q104.06766 565.22003 103.935074 565.6841Q103.81354 566.1371 103.901924 566.5569L103.11748 567.16455L100.587364 563.4633L103.61466 560.43604L104.32177 561.1431L101.89109 563.5738L103.20587 565.5294Q103.36055 564.6013 103.95717 564.0047Q104.75266 563.20917 105.84647 563.2202Q106.951324 563.2202 107.82416 564.0931Q108.641754 564.91064 108.77434 565.9934Q108.91797 567.3082 107.912544 568.3136Q107.08391 569.1423 106.08954 569.20856Q105.10622 569.2638 104.266525 568.5788Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M94.83146 605.8345L95.549614 606.5526L91.52795 610.5743Q91.26278 610.30914 91.09705 609.9666Q90.84293 609.40314 90.77664 608.67395Q90.721405 607.9337 90.84293 606.7736Q91.019714 604.9617 90.88713 604.14404Q90.765594 603.3154 90.34575 602.89557Q89.90381 602.4536 89.285095 602.4757Q88.65533 602.48676 88.147095 602.995Q87.60571 603.5364 87.60571 604.1772Q87.60571 604.818 88.16919 605.40356L87.3295 606.0886Q86.54505 605.1495 86.61134 604.1993Q86.677635 603.22705 87.55047 602.3542Q88.42331 601.4813 89.41767 601.4592Q90.41204 601.43713 91.130196 602.15533Q91.494804 602.5199 91.69367 603.02814Q91.89255 603.5143 91.936745 604.26556Q91.980934 604.9948 91.859406 606.46423Q91.74892 607.70166 91.759964 608.1105Q91.77101 608.4972 91.84835 608.81757L94.83146 605.8345ZM93.58298 602.53094Q92.50022 601.4482 92.06933 600.5754Q91.62738 599.69147 91.70472 598.90704Q91.79311 598.1116 92.456024 597.4486Q92.94216 596.9625 93.50564 596.79675Q94.08016 596.62 94.698875 596.75256Q95.30655 596.8741 95.96946 597.27185Q96.63237 597.6696 97.53835 598.57556Q98.61006 599.6473 99.040955 600.52014Q99.482895 601.3819 99.405556 602.1885Q99.32822 602.9729 98.65426 603.64685Q97.781425 604.5197 96.643425 604.3982Q95.2955 604.24347 93.58298 602.53094ZM94.34532 601.7686Q95.836876 603.2602 96.687614 603.4038Q97.53835 603.5474 98.046585 603.0392Q98.56587 602.5199 98.41119 601.68024Q98.267555 600.82947 96.776 599.33795Q95.2734 597.8353 94.433716 597.70276Q93.594025 597.5481 93.06369 598.07837Q92.55546 598.5866 92.676994 599.3269Q92.84272 600.266 94.34532 601.7686ZM104.73096 595.935L105.44911 596.65314L101.427444 600.6748Q101.16228 600.40967 100.99655 600.06714Q100.74243 599.50366 100.67614 598.7745Q100.620895 598.0342 100.74243 596.8741Q100.919205 595.06213 100.78663 594.24457Q100.66509 593.4159 100.24525 592.9961Q99.80331 592.55414 99.184586 592.57623Q98.55482 592.5873 98.046585 593.0955Q97.50521 593.6369 97.50521 594.2777Q97.50521 594.9185 98.06869 595.5041L97.229 596.1891Q96.44455 595.25 96.51084 594.2998Q96.57713 593.3275 97.44997 592.4547Q98.3228 591.58185 99.31717 591.55975Q100.31154 591.53766 101.02969 592.2558Q101.394295 592.6204 101.59317 593.12866Q101.792046 593.6148 101.836235 594.3661Q101.88043 595.0953 101.758896 596.56476Q101.648415 597.8022 101.65946 598.211Q101.67051 598.59766 101.74785 598.9181L104.73096 595.935ZM103.48247 592.6315Q102.39971 591.5487 101.96882 590.6759Q101.52688 589.792 101.60422 589.00757Q101.692604 588.21204 102.35552 587.54913Q102.84165 587.063 103.40513 586.8973Q103.97965 586.7205 104.59837 586.8531Q105.20604 586.9746 105.86896 587.3724Q106.53187 587.7701 107.43785 588.6761Q108.50956 589.7478 108.94045 590.6206Q109.38239 591.4824 109.30505 592.28894Q109.227715 593.0734 108.55375 593.7474Q107.680916 594.6202 106.542915 594.49866Q105.19499 594.344 103.48247 592.6315ZM104.24482 591.86914Q105.736374 593.36066 106.58711 593.5043Q107.43785 593.64795 107.94608 593.1397Q108.46536 592.6204 108.310684 591.7807Q108.16705 590.93 106.6755 589.4384Q105.1729 587.93585 104.333206 587.8033Q103.49352 587.64856 102.96319 588.1789Q102.454956 588.68713 102.57649 589.42737Q102.74222 590.3665 104.24482 591.86914ZM109.51498 588.9413L108.76367 588.18994L111.06177 585.89185L111.81307 586.6431L109.51498 588.9413ZM111.26064 584.8533Q110.17789 583.7705 109.746994 582.8977Q109.30505 582.0138 109.38239 581.2294Q109.47078 580.4339 110.13369 579.77094Q110.61983 579.28485 111.183304 579.1191Q111.75783 578.9423 112.37655 579.0749Q112.984215 579.1964 113.64713 579.5942Q114.31004 579.99194 115.21603 580.8979Q116.287735 581.9696 116.71863 582.84247Q117.16057 583.7042 117.08323 584.5108Q117.00589 585.2952 116.331924 585.9692Q115.45909 586.84204 114.32109 586.7205Q112.97317 586.5658 111.26064 584.8533ZM112.022995 584.09094Q113.51455 585.5825 114.36529 585.72614Q115.21603 585.86975 115.72426 585.3615Q116.24354 584.8422 116.08886 584.00256Q115.94523 583.1518 114.453674 581.6603Q112.95107 580.15765 112.11138 580.0251Q111.27169 579.8704 110.74136 580.40076Q110.23313 580.90894 110.35467 581.64923Q110.52039 582.5883 112.022995 584.09094ZM121.591034 580.5112L120.13262 579.0528L117.503075 581.6824L116.81806 580.9974L115.65797 574.2909L116.26563 573.6832L120.19891 577.6165L121.01651 576.7989L121.701515 577.4839L120.88393 578.3015L122.34233 579.7599L121.591034 580.5112ZM119.44762 578.3678L116.71863 575.6388L117.547264 580.2681L119.44762 578.3678ZM122.2429 576.2133L121.4916 575.46204L123.789696 573.16394L124.54099 573.9152L122.2429 576.2133ZM130.1868 570.4791L130.90495 571.19727L126.883286 575.21893Q126.61812 574.9538 126.45239 574.61127Q126.19827 574.0478 126.13198 573.3186Q126.076744 572.57837 126.19827 571.4183Q126.37505 569.6063 126.24247 568.7887Q126.12093 567.9601 125.70109 567.5402Q125.25915 567.09827 124.640434 567.12036Q124.010666 567.1314 123.50243 567.63965Q122.96105 568.181 122.96105 568.82184Q122.96105 569.46265 123.52453 570.0482L122.68484 570.7333Q121.90039 569.7941 121.96668 568.84393Q122.032974 567.8717 122.90581 566.99884Q123.77865 566.12604 124.77301 566.10394Q125.76738 566.08185 126.485535 566.8Q126.85014 567.16455 127.04901 567.6728Q127.24789 568.15894 127.29208 568.9102Q127.33627 569.63947 127.214745 571.1089Q127.104256 572.3463 127.1153 572.7551Q127.12635 573.14185 127.20369 573.4622L130.1868 570.4791ZM130.33043 568.56775L130.9823 567.717Q131.7336 568.2252 132.33022 568.2031Q132.91579 568.17 133.35773 567.728Q133.88806 567.1977 133.88806 566.4685Q133.88806 565.7393 133.34668 565.19794Q132.83846 564.6897 132.16449 564.70074Q131.49052 564.6897 130.97125 565.209Q130.76132 565.4189 130.52931 565.8277L129.95477 565.0764Q130.04317 565.01013 130.08736 564.96594Q130.56245 564.49084 130.69504 563.87213Q130.82762 563.2313 130.30833 562.71204Q129.89954 562.3032 129.35815 562.3143Q128.80573 562.3143 128.36378 562.7562Q127.9329 563.1871 127.9108 563.7616Q127.89975 564.3251 128.36378 564.94385L127.479904 565.56256Q126.87224 564.6897 126.94958 563.79474Q127.01587 562.8888 127.734024 562.17065Q128.2312 561.67346 128.87202 561.47455Q129.50179 561.26465 130.08736 561.40826Q130.67294 561.55194 131.09277 561.97174Q131.47948 562.35846 131.60101 562.89984Q131.7115 563.4302 131.49052 564.0268Q132.1424 563.618 132.83846 563.7174Q133.52345 563.80585 134.12009 564.40247Q134.91557 565.19794 134.88243 566.33594Q134.86034 567.4629 133.97646 568.34674Q133.18095 569.1423 132.17554 569.1975Q131.15907 569.2417 130.33043 568.56775Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M120.90641 605.8345L121.624565 606.5526L117.6029 610.5743Q117.33773 610.30914 117.172005 609.9666Q116.917885 609.40314 116.85159 608.67395Q116.79636 607.9337 116.917885 606.7736Q117.094666 604.9617 116.96208 604.14404Q116.840546 603.3154 116.4207 602.89557Q115.97876 602.4536 115.36005 602.4757Q114.73028 602.48676 114.222046 602.995Q113.680664 603.5364 113.680664 604.1772Q113.680664 604.818 114.24414 605.40356L113.40445 606.0886Q112.62 605.1495 112.686295 604.1993Q112.75259 603.22705 113.62542 602.3542Q114.49826 601.4813 115.49262 601.4592Q116.48699 601.43713 117.20515 602.15533Q117.569756 602.5199 117.76862 603.02814Q117.9675 603.5143 118.011696 604.26556Q118.055885 604.9948 117.93436 606.46423Q117.82387 607.70166 117.834915 608.1105Q117.84596 608.4972 117.9233 608.81757L120.90641 605.8345ZM119.65793 602.53094Q118.57517 601.4482 118.14428 600.5754Q117.70233 599.69147 117.77967 598.90704Q117.868065 598.1116 118.530975 597.4486Q119.01711 596.9625 119.58059 596.79675Q120.15511 596.62 120.77383 596.75256Q121.3815 596.8741 122.04441 597.27185Q122.70732 597.6696 123.613304 598.57556Q124.68501 599.6473 125.115906 600.52014Q125.557846 601.3819 125.48051 602.1885Q125.40317 602.9729 124.72921 603.64685Q123.85638 604.5197 122.718376 604.3982Q121.37045 604.24347 119.65793 602.53094ZM120.42027 601.7686Q121.91183 603.2602 122.762566 603.4038Q123.613304 603.5474 124.12154 603.0392Q124.64082 602.5199 124.48614 601.68024Q124.34251 600.82947 122.85095 599.33795Q121.34835 597.8353 120.50867 597.70276Q119.668976 597.5481 119.13864 598.07837Q118.63041 598.5866 118.751945 599.3269Q118.91767 600.266 120.42027 601.7686ZM130.80591 595.935L131.52406 596.65314L127.502396 600.6748Q127.23723 600.40967 127.0715 600.06714Q126.81738 599.50366 126.75109 598.7745Q126.69585 598.0342 126.81738 596.8741Q126.994156 595.06213 126.86158 594.24457Q126.74004 593.4159 126.3202 592.9961Q125.87826 592.55414 125.25954 592.57623Q124.62977 592.5873 124.12154 593.0955Q123.58016 593.6369 123.58016 594.2777Q123.58016 594.9185 124.14364 595.5041L123.30395 596.1891Q122.5195 595.25 122.58579 594.2998Q122.652084 593.3275 123.52492 592.4547Q124.39775 591.58185 125.39212 591.55975Q126.38649 591.53766 127.104645 592.2558Q127.469246 592.6204 127.66812 593.12866Q127.867 593.6148 127.91119 594.3661Q127.95538 595.0953 127.83385 596.56476Q127.723366 597.8022 127.73441 598.211Q127.74546 598.59766 127.8228 598.9181L130.80591 595.935ZM129.55742 592.6315Q128.47467 591.5487 128.04378 590.6759Q127.60183 589.792 127.67917 589.00757Q127.767555 588.21204 128.43047 587.54913Q128.91661 587.063 129.48009 586.8973Q130.05461 586.7205 130.67332 586.8531Q131.28099 586.9746 131.94391 587.3724Q132.60683 587.7701 133.5128 588.6761Q134.5845 589.7478 135.0154 590.6206Q135.45734 591.4824 135.38 592.28894Q135.30266 593.0734 134.62871 593.7474Q133.75587 594.6202 132.61787 594.49866Q131.26994 594.344 129.55742 592.6315ZM130.31978 591.86914Q131.81133 593.36066 132.66206 593.5043Q133.5128 593.64795 134.02103 593.1397Q134.54031 592.6204 134.38564 591.7807Q134.242 590.93 132.75046 589.4384Q131.24785 587.93585 130.40816 587.8033Q129.56847 587.64856 129.03815 588.1789Q128.5299 588.68713 128.65144 589.42737Q128.81717 590.3665 130.31978 591.86914ZM135.58992 588.9413L134.83862 588.18994L137.13672 585.89185L137.88802 586.6431L135.58992 588.9413ZM137.3356 584.8533Q136.25284 583.7705 135.82195 582.8977Q135.38 582.0138 135.45734 581.2294Q135.54573 580.4339 136.20865 579.77094Q136.69478 579.28485 137.25826 579.1191Q137.83278 578.9423 138.45149 579.0749Q139.05917 579.1964 139.72208 579.5942Q140.385 579.99194 141.29097 580.8979Q142.36269 581.9696 142.79358 582.84247Q143.23552 583.7042 143.15817 584.5108Q143.08084 585.2952 142.40688 585.9692Q141.53404 586.84204 140.39604 586.7205Q139.04813 586.5658 137.3356 584.8533ZM138.09795 584.09094Q139.5895 585.5825 140.44023 585.72614Q141.29097 585.86975 141.79921 585.3615Q142.3185 584.8422 142.1638 584.00256Q142.02017 583.1518 140.52863 581.6603Q139.02602 580.15765 138.18634 580.0251Q137.34665 579.8704 136.81631 580.40076Q136.30807 580.90894 136.42961 581.64923Q136.59534 582.5883 138.09795 584.09094ZM147.66599 580.5112L146.20758 579.0528L143.57802 581.6824L142.89302 580.9974L141.73291 574.2909L142.34059 573.6832L146.27386 577.6165L147.09146 576.7989L147.77647 577.4839L146.95888 578.3015L148.41728 579.7599L147.66599 580.5112ZM145.52257 578.3678L142.79358 575.6388L143.62222 580.2681L145.52257 578.3678ZM148.31786 576.2133L147.56654 575.46204L149.86464 573.16394L150.61595 573.9152L148.31786 576.2133ZM156.26175 570.4791L156.9799 571.19727L152.95824 575.21893Q152.69307 574.9538 152.52734 574.61127Q152.27322 574.0478 152.20694 573.3186Q152.15169 572.57837 152.27322 571.4183Q152.45 569.6063 152.31743 568.7887Q152.19589 567.9601 151.77605 567.5402Q151.3341 567.09827 150.71538 567.12036Q150.08562 567.1314 149.57738 567.63965Q149.03601 568.181 149.03601 568.82184Q149.03601 569.46265 149.59947 570.0482L148.7598 570.7333Q147.97534 569.7941 148.04164 568.84393Q148.10793 567.8717 148.98076 566.99884Q149.85359 566.12604 150.84796 566.10394Q151.84233 566.0818 152.56049 566.8Q152.9251 567.16455 153.12396 567.6728Q153.32285 568.15894 153.36703 568.9102Q153.41122 569.63947 153.28969 571.1089Q153.17921 572.3463 153.19026 572.7551Q153.20131 573.14185 153.27864 573.4622L156.26175 570.4791ZM156.71474 568.6561L157.36661 567.8717Q157.96323 568.2915 158.44936 568.2694Q158.9355 568.2252 159.33325 567.8275Q159.67575 567.485 159.77519 567.0762Q159.87462 566.64526 159.78624 566.22546Q159.6868 565.79456 159.35535 565.2421Q159.01283 564.67865 158.5488 564.2146Q158.49356 564.15936 158.39412 564.05994Q158.5267 564.63446 158.37202 565.2532Q158.2063 565.86084 157.75331 566.31384Q156.99095 567.0762 155.9303 567.0541Q154.85858 567.02094 153.96365 566.12604Q153.03558 565.19794 153.01347 564.0931Q153.00243 562.9772 153.82002 562.1596Q154.4056 561.57404 155.21214 561.40826Q156.02972 561.2315 156.88046 561.57404Q157.72015 561.90546 158.83606 563.02136Q159.99615 564.18146 160.4381 565.13165Q160.88004 566.0597 160.7364 566.93256Q160.59277 567.78326 159.92987 568.4462Q159.21172 569.16437 158.37202 569.23065Q157.52129 569.2859 156.71474 568.6561ZM157.07935 562.92194Q156.43852 562.2811 155.72037 562.248Q155.01326 562.2038 154.52713 562.68994Q154.02994 563.1871 154.0631 563.97156Q154.09624 564.7339 154.74811 565.38574Q155.32263 565.96027 156.04079 565.9713Q156.75894 565.98236 157.26717 565.4741Q157.78645 564.9549 157.75331 564.2588Q157.72015 563.56274 157.07935 562.92194Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M146.98137 605.8345L147.69952 606.5526L143.67784 610.5743Q143.41269 610.30914 143.24695 609.9666Q142.99284 609.40314 142.92654 608.67395Q142.8713 607.9337 142.99284 606.7736Q143.16962 604.9617 143.03703 604.14404Q142.9155 603.3154 142.49565 602.89557Q142.05371 602.4536 141.435 602.4757Q140.80522 602.48676 140.297 602.995Q139.75562 603.5364 139.75562 604.1772Q139.75562 604.818 140.31909 605.40356L139.4794 606.0886Q138.69496 605.1495 138.76125 604.1993Q138.82755 603.227 139.70038 602.3542Q140.57321 601.4813 141.56758 601.4592Q142.56195 601.43713 143.2801 602.15533Q143.6447 602.5199 143.84358 603.02814Q144.04245 603.5143 144.08664 604.26556Q144.13084 604.9948 144.00931 606.46423Q143.89882 607.70166 143.90987 608.1105Q143.92091 608.4972 143.99826 608.81757L146.98137 605.8345ZM145.73288 602.53094Q144.65012 601.4482 144.21922 600.5754Q143.77728 599.69147 143.85463 598.90704Q143.94301 598.1116 144.60593 597.4486Q145.09206 596.9625 145.65553 596.79675Q146.23006 596.62 146.84879 596.75256Q147.45645 596.8741 148.11937 597.27185Q148.78227 597.6696 149.68826 598.57556Q150.75996 599.6473 151.19086 600.52014Q151.6328 601.3819 151.55547 602.1885Q151.47812 602.9729 150.80415 603.64685Q149.93132 604.5197 148.79332 604.3982Q147.4454 604.24347 145.73288 602.53094ZM146.49522 601.7686Q147.98679 603.2602 148.83752 603.4038Q149.68826 603.5474 150.19649 603.0392Q150.71577 602.5199 150.5611 601.68024Q150.41747 600.82947 148.9259 599.33795Q147.42331 597.8353 146.58362 597.70276Q145.74393 597.5481 145.2136 598.07837Q144.70537 598.5866 144.8269 599.3269Q144.99263 600.266 146.49522 601.7686ZM156.88086 595.935L157.59901 596.65314L153.57735 600.6748Q153.31218 600.40967 153.14645 600.06714Q152.89233 599.50366 152.82605 598.7745Q152.7708 598.0342 152.89233 596.8741Q153.0691 595.06213 152.93652 594.24457Q152.81499 593.4159 152.39516 592.9961Q151.9532 592.55414 151.33449 592.57623Q150.70473 592.5873 150.19649 593.0955Q149.6551 593.6369 149.6551 594.2777Q149.6551 594.9185 150.21858 595.5041L149.37889 596.1891Q148.59445 595.25 148.66074 594.2998Q148.72704 593.3275 149.59987 592.4547Q150.4727 591.58185 151.46707 591.55975Q152.46144 591.53766 153.1796 592.2558Q153.5442 592.6204 153.74307 593.12866Q153.94194 593.6148 153.98615 594.3661Q154.03033 595.0953 153.9088 596.56476Q153.79831 597.8022 153.80936 598.211Q153.8204 598.59766 153.89775 598.9181L156.88086 595.935ZM155.63237 592.6315Q154.54962 591.5487 154.11873 590.6759Q153.67677 589.792 153.75412 589.00757Q153.84251 588.21204 154.50542 587.54913Q154.99156 587.063 155.55504 586.8973Q156.12956 586.7205 156.74828 586.8531Q157.35594 586.9746 158.01886 587.3724Q158.68178 587.7701 159.58775 588.6761Q160.65945 589.7478 161.09035 590.6206Q161.53229 591.4824 161.45496 592.28894Q161.37761 593.0734 160.70366 593.7474Q159.83083 594.6202 158.69283 594.49866Q157.3449 594.344 155.63237 592.6315ZM156.39471 591.86914Q157.88628 593.36066 158.73701 593.5043Q159.58775 593.64795 160.09598 593.1397Q160.61526 592.6204 160.46059 591.7807Q160.31696 590.93 158.82541 589.4384Q157.3228 587.93585 156.48311 587.8033Q155.64342 587.64856 155.1131 588.1789Q154.60486 588.68713 154.7264 589.42737Q154.89212 590.3665 156.39471 591.86914ZM161.66487 588.9412L160.91357 588.18994L163.21167 585.89185L163.96297 586.6431L161.66487 588.9412ZM163.41055 584.8533Q162.32779 583.7705 161.8969 582.8977Q161.45496 582.0138 161.53229 581.2294Q161.62068 580.4339 162.2836 579.77094Q162.76973 579.28485 163.3332 579.1191Q163.90773 578.9423 164.52644 579.0749Q165.13412 579.1964 165.79703 579.5942Q166.45995 579.99194 167.36592 580.8979Q168.43764 581.9696 168.86853 582.84247Q169.31047 583.7042 169.23312 584.5108Q169.15579 585.2952 168.48183 585.9692Q167.609 586.84204 166.471 586.7205Q165.12308 586.5658 163.41055 584.8533ZM164.1729 584.09094Q165.66444 585.5825 166.51518 585.72614Q167.36592 585.86975 167.87416 585.3615Q168.39343 584.8422 168.23875 584.00256Q168.09512 583.1518 166.60358 581.6603Q165.10097 580.15765 164.26129 580.0251Q163.4216 579.8704 162.89127 580.40076Q162.38303 580.90894 162.50456 581.64923Q162.67029 582.5883 164.1729 584.09094ZM169.76346 581.3067L170.48161 580.456Q171.14453 580.9421 171.74115 580.92Q172.34882 580.88684 172.8018 580.4339Q173.33214 579.90356 173.299 579.1191Q173.26585 578.33466 172.60294 577.67175Q171.96211 577.03094 171.23291 577.03094Q170.50371 577.00885 169.91814 577.5944Q169.56459 577.94794 169.432 578.412Q169.31047 578.865 169.39886 579.28485L168.61441 579.8925L166.08429 576.1912L169.1116 573.16394L169.8187 573.87103L167.38802 576.3017L168.7028 578.2573Q168.85748 577.3292 169.4541 576.7326Q170.24959 575.93713 171.3434 575.9482Q172.44826 575.9482 173.32109 576.821Q174.13869 577.6386 174.27127 578.7214Q174.4149 580.03613 173.40948 581.04156Q172.58084 581.8702 171.58647 581.93646Q170.60315 581.9917 169.76346 581.3067ZM174.39279 576.2133L173.6415 575.46204L175.93959 573.16394L176.6909 573.9152L174.39279 576.2133ZM176.13847 572.12537Q175.05571 571.0426 174.62482 570.1698Q174.18288 569.2859 174.26022 568.50146Q174.3486 567.70593 175.01152 567.043Q175.49765 566.5569 176.06113 566.3912Q176.63565 566.2144 177.25438 566.347Q177.86205 566.4685 178.52495 566.8663Q179.18787 567.26404 180.09384 568.17Q181.16556 569.2417 181.59645 570.11456Q182.03839 570.9763 181.96104 571.78284Q181.88371 572.5673 181.20975 573.2413Q180.33691 574.11414 179.19891 573.99255Q177.851 573.8379 176.13847 572.12537ZM176.90082 571.36304Q178.39236 572.85455 179.2431 572.9982Q180.09384 573.14185 180.60208 572.6336Q181.12137 572.1143 180.96669 571.27466Q180.82306 570.4239 179.3315 568.9323Q177.8289 567.42975 176.98921 567.2972Q176.14952 567.14246 175.61919 567.6728Q175.11096 568.181 175.23248 568.92126Q175.39822 569.8604 176.90082 571.36304ZM178.84537 564.84436L178.12721 564.1262L182.06049 560.19293L182.64606 560.7785Q182.69026 561.97174 183.14325 563.5738Q183.59624 565.15375 184.36963 566.54584Q184.89996 567.5402 185.7507 568.50146L184.97731 569.27484Q184.2702 568.54565 183.51889 567.26404Q182.77864 565.9713 182.3367 564.53503Q181.9058 563.08765 181.82848 561.86127L178.84537 564.84436Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M173.05632 605.8345L173.77448 606.5526L169.75279 610.5743Q169.48764 610.30914 169.3219 609.9666Q169.0678 609.40314 169.0015 608.67395Q168.94626 607.9337 169.0678 606.7736Q169.24457 604.9617 169.11198 604.14404Q168.99045 603.3154 168.5706 602.89557Q168.12866 602.4536 167.50995 602.4757Q166.88017 602.48676 166.37195 602.995Q165.83057 603.5364 165.83057 604.1772Q165.83057 604.818 166.39404 605.40356L165.55435 606.0886Q164.76991 605.1495 164.8362 604.1993Q164.9025 603.227 165.77533 602.3542Q166.64816 601.4813 167.64253 601.4592Q168.6369 601.43713 169.35506 602.15533Q169.71965 602.5199 169.91853 603.02814Q170.1174 603.5143 170.16159 604.26556Q170.2058 604.9948 170.08426 606.46423Q169.97377 607.70166 169.98482 608.1105Q169.99586 608.4972 170.07321 608.81757L173.05632 605.8345ZM171.80783 602.53094Q170.72507 601.4482 170.29417 600.5754Q169.85223 599.69147 169.92958 598.90704Q170.01796 598.1116 170.68088 597.4486Q171.167 596.9625 171.73048 596.79675Q172.30501 596.62 172.92374 596.75256Q173.5314 596.8741 174.19432 597.27185Q174.85722 597.6696 175.76321 598.57556Q176.83492 599.6473 177.26581 600.52014Q177.70775 601.3819 177.63042 602.1885Q177.55307 602.9729 176.8791 603.64685Q176.00627 604.5197 174.86827 604.3982Q173.52036 604.24347 171.80783 602.53094ZM172.57018 601.7686Q174.06174 603.2602 174.91248 603.4038Q175.76321 603.5474 176.27144 603.0392Q176.79073 602.5199 176.63605 601.68024Q176.49242 600.82947 175.00085 599.33795Q173.49826 597.8353 172.65857 597.70276Q171.81888 597.5481 171.28854 598.07837Q170.78032 598.5866 170.90186 599.3269Q171.06758 600.266 172.57018 601.7686ZM182.95581 595.935L183.67397 596.65314L179.6523 600.6748Q179.38713 600.40967 179.2214 600.06714Q178.96729 599.50366 178.901 598.7745Q178.84575 598.0342 178.96729 596.8741Q179.14406 595.06213 179.01147 594.24457Q178.88994 593.4159 178.4701 592.9961Q178.02815 592.55414 177.40944 592.57623Q176.77968 592.5873 176.27144 593.0955Q175.73006 593.6369 175.73006 594.2777Q175.73006 594.9185 176.29353 595.5041L175.45384 596.1891Q174.6694 595.25 174.73569 594.2998Q174.80199 593.3275 175.67482 592.4547Q176.54765 591.58185 177.54202 591.55975Q178.53639 591.53766 179.25455 592.2558Q179.61916 592.6204 179.81802 593.12866Q180.01689 593.6148 180.0611 594.3661Q180.10529 595.0953 179.98375 596.56476Q179.87326 597.8022 179.88431 598.211Q179.89536 598.59766 179.9727 598.9181L182.95581 595.935ZM181.70732 592.6315Q180.62457 591.5487 180.19368 590.6759Q179.75172 589.792 179.82907 589.00757Q179.91747 588.21204 180.58037 587.54913Q181.06651 587.063 181.62999 586.8973Q182.20451 586.7205 182.82323 586.8531Q183.4309 586.9746 184.09381 587.3724Q184.75673 587.7701 185.6627 588.6761Q186.7344 589.7478 187.1653 590.6206Q187.60724 591.4824 187.5299 592.28894Q187.45256 593.0734 186.77861 593.7474Q185.90578 594.6202 184.76778 594.49866Q183.41985 594.344 181.70732 592.6315ZM182.46967 591.86914Q183.96123 593.36066 184.81197 593.5043Q185.6627 593.64795 186.17093 593.1397Q186.69022 592.6204 186.53554 591.7807Q186.3919 590.93 184.90036 589.4384Q183.39775 587.93585 182.55806 587.8032Q181.71837 587.64856 181.18805 588.1789Q180.67981 588.68713 180.80135 589.42737Q180.96707 590.3665 182.46967 591.86914ZM187.73982 588.9412L186.98853 588.18994L189.28662 585.89185L190.03792 586.6431L187.73982 588.9412ZM189.4855 584.8533Q188.40274 583.7705 187.97185 582.8977Q187.5299 582.0138 187.60724 581.2294Q187.69563 580.4339 188.35855 579.77094Q188.84468 579.28485 189.40816 579.1191Q189.98268 578.9423 190.6014 579.0749Q191.20908 579.1964 191.87198 579.5942Q192.5349 579.99194 193.44087 580.8979Q194.51259 581.9696 194.94348 582.84247Q195.38542 583.7042 195.30807 584.5108Q195.23074 585.2952 194.55678 585.9692Q193.68394 586.84204 192.54594 586.7205Q191.19803 586.5658 189.4855 584.8533ZM190.24785 584.09094Q191.7394 585.5825 192.59013 585.72614Q193.44087 585.86975 193.94911 585.3615Q194.46838 584.8422 194.3137 584.00256Q194.17007 583.1518 192.67853 581.6603Q191.17592 580.15765 190.33624 580.0251Q189.49655 579.8704 188.96622 580.40076Q188.45798 580.90894 188.57951 581.64923Q188.74524 582.5883 190.24785 584.09094ZM195.83841 581.3067L196.55656 580.456Q197.21948 580.9421 197.8161 580.92Q198.42377 580.88684 198.87675 580.4339Q199.40709 579.90356 199.37395 579.1191Q199.3408 578.33466 198.67789 577.67175Q198.03706 577.03094 197.30786 577.03094Q196.57866 577.00885 195.99309 577.5944Q195.63954 577.94794 195.50696 578.412Q195.38542 578.865 195.47382 579.28485L194.68936 579.8925L192.15924 576.1912L195.18655 573.16394L195.89365 573.87103L193.46297 576.3017L194.77776 578.2573Q194.93243 577.3292 195.52905 576.7326Q196.32454 575.93713 197.41835 575.9482Q198.52321 575.9482 199.39604 576.821Q200.21364 577.6386 200.34622 578.7214Q200.48985 580.03613 199.48444 581.04156Q198.65579 581.8702 197.66142 581.93646Q196.6781 581.9917 195.83841 581.3067ZM200.46774 576.2133L199.71645 575.46204L202.01454 573.16394L202.76585 573.9152L200.46774 576.2133ZM208.0139 572.3132L207.27365 573.05347L202.52278 568.30255Q202.50069 568.8329 202.3239 569.54004Q202.14713 570.22504 201.92616 570.6891L201.20801 569.9709Q201.52841 569.0539 201.58365 568.181Q201.6389 567.28613 201.44002 566.6895L201.91512 566.2144L208.0139 572.3132ZM208.55528 568.56775L209.20715 567.717Q209.95845 568.2252 210.55507 568.2031Q211.14064 568.17 211.58258 567.728Q212.11292 567.1977 212.11292 566.4685Q212.11292 565.7393 211.57153 565.19794Q211.06331 564.6897 210.38934 564.70074Q209.71538 564.6897 209.1961 565.209Q208.98618 565.4189 208.75415 565.8277L208.17963 565.0764Q208.26802 565.01013 208.31221 564.96594Q208.78731 564.49084 208.91989 563.87213Q209.05247 563.23126 208.53319 562.71204Q208.12439 562.3032 207.58301 562.3143Q207.03058 562.3143 206.58864 562.7562Q206.15775 563.1871 206.13565 563.7616Q206.1246 564.3251 206.58864 564.9438L205.70476 565.56256Q205.09709 564.6897 205.17442 563.79474Q205.24072 562.8888 205.95888 562.17065Q206.45605 561.67346 207.09688 561.47455Q207.72664 561.26465 208.31221 561.40826Q208.89778 561.55194 209.31763 561.97174Q209.70433 562.35846 209.82587 562.89984Q209.93636 563.4302 209.71538 564.0268Q210.36725 563.618 211.06331 563.7174Q211.7483 563.80585 212.34494 564.40247Q213.14043 565.19794 213.10728 566.33594Q213.08519 567.4629 212.20131 568.34674Q211.4058 569.1423 210.40039 569.1975Q209.38393 569.2417 208.55528 568.56775Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M199.13127 605.8345L199.84943 606.5526L195.82774 610.5743Q195.56259 610.30914 195.39685 609.9666Q195.14275 609.40314 195.07645 608.67395Q195.02121 607.9337 195.14275 606.7736Q195.31952 604.9617 195.18694 604.14404Q195.0654 603.3154 194.64555 602.89557Q194.20361 602.4536 193.5849 602.4757Q192.95512 602.48676 192.4469 602.995Q191.90552 603.5364 191.90552 604.1772Q191.90552 604.818 192.469 605.40356L191.6293 606.08856Q190.84486 605.1495 190.91115 604.1993Q190.97745 603.227 191.85028 602.3542Q192.72311 601.4813 193.71748 601.4592Q194.71185 601.43713 195.43001 602.15533Q195.7946 602.5199 195.99348 603.02814Q196.19235 603.5143 196.23654 604.26556Q196.28075 604.9948 196.15921 606.46423Q196.04872 607.70166 196.05977 608.1105Q196.07082 608.4972 196.14816 608.81757L199.13127 605.8345ZM197.88278 602.53094Q196.80002 601.4482 196.36913 600.5754Q195.92719 599.69147 196.00453 598.90704Q196.09291 598.1116 196.75583 597.4486Q197.24196 596.9625 197.80544 596.79675Q198.37996 596.62 198.99869 596.75256Q199.60635 596.8741 200.26927 597.27185Q200.93217 597.6696 201.83817 598.57556Q202.90987 599.6473 203.34076 600.52014Q203.7827 601.3819 203.70537 602.1885Q203.62802 602.9729 202.95406 603.64685Q202.08122 604.5197 200.94322 604.3982Q199.5953 604.24347 197.88278 602.53094ZM198.64513 601.7686Q200.13669 603.2602 200.98743 603.4038Q201.83817 603.5474 202.34639 603.0392Q202.86568 602.5199 202.711 601.68024Q202.56737 600.82947 201.0758 599.33795Q199.57321 597.8353 198.73352 597.70276Q197.89383 597.5481 197.3635 598.07837Q196.85527 598.5866 196.9768 599.3269Q197.14253 600.266 198.64513 601.7686ZM209.03076 595.935L209.74892 596.65314L205.72725 600.6748Q205.46208 600.40967 205.29636 600.06714Q205.04224 599.50366 204.97594 598.7745Q204.9207 598.0342 205.04224 596.8741Q205.21901 595.06213 205.08643 594.24457Q204.96489 593.4159 204.54504 592.9961Q204.1031 592.55414 203.48439 592.57623Q202.85463 592.5873 202.34639 593.0955Q201.80501 593.6369 201.80501 594.2777Q201.80501 594.9185 202.36848 595.5041L201.5288 596.1891Q200.74435 595.25 200.81064 594.2998Q200.87694 593.3275 201.74977 592.4547Q202.6226 591.58185 203.61697 591.55975Q204.61134 591.53766 205.3295 592.2558Q205.6941 592.6204 205.89297 593.12866Q206.09184 593.6148 206.13605 594.3661Q206.18024 595.0953 206.0587 596.56476Q205.94821 597.8022 205.95926 598.211Q205.9703 598.59766 206.04765 598.9181L209.03076 595.935ZM207.78227 592.6315Q206.69952 591.5487 206.26863 590.6759Q205.82668 589.792 205.90402 589.00757Q205.99242 588.21204 206.65532 587.54913Q207.14146 587.063 207.70494 586.8973Q208.27946 586.7205 208.89818 586.8531Q209.50584 586.9746 210.16876 587.3724Q210.83167 587.7701 211.73766 588.6761Q212.80936 589.7478 213.24025 590.6206Q213.68219 591.4824 213.60486 592.28894Q213.52751 593.0734 212.85356 593.7474Q211.98073 594.6202 210.84273 594.49866Q209.4948 594.344 207.78227 592.6315ZM208.54462 591.86914Q210.03618 593.36066 210.88692 593.5043Q211.73766 593.64795 212.24588 593.1397Q212.76517 592.6204 212.61049 591.7807Q212.46686 590.93 210.9753 589.4384Q209.4727 587.93585 208.63301 587.8032Q207.79332 587.64856 207.263 588.1789Q206.75476 588.68713 206.8763 589.42737Q207.04202 590.3665 208.54462 591.86914ZM213.81477 588.9412L213.06348 588.18994L215.36157 585.89185L216.11287 586.6431L213.81477 588.9412ZM215.56046 584.8533Q214.47769 583.7705 214.0468 582.8977Q213.60486 582.0138 213.68219 581.2294Q213.77058 580.4339 214.4335 579.77094Q214.91963 579.28485 215.48311 579.1191Q216.05763 578.9423 216.67635 579.0749Q217.28403 579.1964 217.94693 579.5942Q218.60985 579.99194 219.51582 580.8979Q220.58754 581.9696 221.01843 582.84247Q221.46037 583.7042 221.38303 584.5108Q221.3057 585.2952 220.63173 585.9692Q219.7589 586.84204 218.6209 586.7205Q217.27298 586.5658 215.56046 584.8533ZM216.3228 584.09094Q217.81435 585.5825 218.66508 585.72614Q219.51582 585.86975 220.02406 585.3615Q220.54333 584.8422 220.38866 584.00256Q220.24503 583.1518 218.75348 581.6603Q217.25087 580.15765 216.4112 580.0251Q215.5715 579.8704 215.04117 580.40076Q214.53293 580.90894 214.65446 581.64923Q214.82019 582.5883 216.3228 584.09094ZM221.91336 581.3067L222.63152 580.456Q223.29443 580.9421 223.89105 580.92Q224.49872 580.88684 224.9517 580.4339Q225.48204 579.90356 225.4489 579.1191Q225.41576 578.33466 224.75284 577.67175Q224.11201 577.03094 223.38281 577.03094Q222.65361 577.00885 222.06804 577.5944Q221.7145 577.94794 221.58191 578.412Q221.46037 578.865 221.54877 579.28485L220.76431 579.8925L218.23419 576.1912L221.2615 573.16394L221.9686 573.87103L219.53792 576.3017L220.8527 578.2573Q221.00739 577.3292 221.604 576.7326Q222.39949 575.93713 223.4933 575.9482Q224.59816 575.9482 225.471 576.821Q226.28859 577.6386 226.42117 578.7214Q226.5648 580.03613 225.55939 581.04156Q224.73074 581.8702 223.73637 581.93646Q222.75305 581.9917 221.91336 581.3067ZM226.5427 576.2133L225.7914 575.46204L228.0895 573.16394L228.8408 573.9152L226.5427 576.2133ZM234.4866 570.4791L235.20476 571.19727L231.18309 575.21893Q230.91792 574.9538 230.7522 574.61127Q230.49808 574.0478 230.4318 573.3186Q230.37654 572.57837 230.49808 571.4183Q230.67485 569.6063 230.54227 568.7887Q230.42075 567.9601 230.0009 567.5402Q229.55896 567.09827 228.94023 567.12036Q228.31047 567.1314 227.80223 567.63965Q227.26086 568.181 227.26086 568.82184Q227.26086 569.46265 227.82433 570.0482L226.98465 570.7333Q226.2002 569.7941 226.2665 568.84393Q226.33278 567.8717 227.20561 566.99884Q228.07845 566.12604 229.07281 566.10394Q230.06718 566.0818 230.78534 566.8Q231.14995 567.16455 231.34882 567.6728Q231.5477 568.15894 231.59189 568.9102Q231.63608 569.63947 231.51454 571.1089Q231.40407 572.3463 231.41512 572.7551Q231.42616 573.14185 231.5035 573.4622L234.4866 570.4791ZM239.0386 567.36346L238.29836 568.1037L233.54749 563.35284Q233.52538 563.8832 233.3486 564.5903Q233.17183 565.27527 232.95085 565.7393L232.2327 565.0212Q232.55312 564.1041 232.60835 563.23126Q232.66359 562.33636 232.46472 561.73975L232.9398 561.26465L239.0386 567.36346Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M225.20622 605.8345L225.92438 606.5526L221.9027 610.5743Q221.63754 610.30914 221.4718 609.9666Q221.2177 609.40314 221.1514 608.67395Q221.09616 607.9337 221.2177 606.7736Q221.39447 604.9617 221.26189 604.14404Q221.14035 603.3154 220.7205 602.89557Q220.27856 602.4536 219.65985 602.4757Q219.03008 602.48676 218.52185 602.995Q217.98047 603.5364 217.98047 604.1772Q217.98047 604.818 218.54395 605.40356L217.70425 606.08856Q216.91982 605.1495 216.9861 604.1993Q217.05238 603.227 217.92523 602.3542Q218.79807 601.4813 219.79243 601.4592Q220.7868 601.43713 221.50496 602.15533Q221.86955 602.5199 222.06844 603.02814Q222.2673 603.5143 222.3115 604.26556Q222.3557 604.9948 222.23416 606.46423Q222.12367 607.70166 222.13472 608.1105Q222.14577 608.4972 222.22311 608.81757L225.20622 605.8345ZM223.95773 602.53094Q222.87497 601.4482 222.44408 600.5754Q222.00214 599.69147 222.07948 598.90704Q222.16786 598.1116 222.83078 597.4486Q223.31691 596.9625 223.88039 596.79675Q224.45491 596.62 225.07364 596.75256Q225.6813 596.8741 226.34422 597.27185Q227.00713 597.6696 227.91312 598.57556Q228.98482 599.6473 229.41571 600.52014Q229.85765 601.3819 229.78032 602.1885Q229.70297 602.9729 229.029 603.64685Q228.15617 604.5197 227.01817 604.3982Q225.67026 604.24347 223.95773 602.53094ZM224.72008 601.7686Q226.21164 603.2602 227.06238 603.4038Q227.91312 603.5474 228.42134 603.0392Q228.94063 602.5199 228.78595 601.68024Q228.64232 600.82947 227.15076 599.33795Q225.64816 597.8353 224.80847 597.70276Q223.96878 597.5481 223.43845 598.07837Q222.93022 598.5866 223.05174 599.3269Q223.21748 600.266 224.72008 601.7686ZM235.10571 595.935L235.82387 596.65314L231.8022 600.6748Q231.53703 600.40967 231.3713 600.06714Q231.11719 599.50366 231.05089 598.7745Q230.99565 598.0342 231.11719 596.8741Q231.29396 595.06213 231.16138 594.24457Q231.03984 593.4159 230.62 592.9961Q230.17805 592.55414 229.55934 592.57623Q228.92958 592.5873 228.42134 593.0955Q227.87996 593.6369 227.87996 594.2777Q227.87996 594.9185 228.44344 595.5041L227.60374 596.1891Q226.8193 595.25 226.88559 594.2998Q226.95189 593.3275 227.82472 592.4547Q228.69756 591.58185 229.69193 591.55975Q230.6863 591.53766 231.40445 592.2558Q231.76906 592.6204 231.96793 593.12866Q232.1668 593.6148 232.211 594.3661Q232.25519 595.0953 232.13365 596.56476Q232.02316 597.8022 232.03421 598.211Q232.04526 598.59766 232.1226 598.9181L235.10571 595.935ZM233.85722 592.6315Q232.77448 591.5487 232.34358 590.6759Q231.90163 589.792 231.97897 589.00757Q232.06737 588.21204 232.73027 587.54913Q233.21642 587.063 233.77989 586.8973Q234.35442 586.7205 234.97313 586.8531Q235.5808 586.9746 236.24371 587.3724Q236.90662 587.7701 237.8126 588.6761Q238.88431 589.7478 239.3152 590.6206Q239.75714 591.4824 239.67981 592.28894Q239.60246 593.0734 238.92851 593.7474Q238.05568 594.6202 236.91768 594.49866Q235.56975 594.344 233.85722 592.6315ZM234.61957 591.86914Q236.11113 593.36066 236.96187 593.5043Q237.8126 593.64795 238.32083 593.1397Q238.84012 592.6204 238.68544 591.7807Q238.54181 590.93 237.05025 589.4384Q235.54765 587.93585 234.70796 587.8032Q233.86827 587.64856 233.33795 588.1789Q232.82971 588.68713 232.95125 589.42737Q233.11697 590.3665 234.61957 591.86914ZM239.88972 588.9412L239.13843 588.18994L241.43652 585.89185L242.18782 586.6431L239.88972 588.9412ZM241.6354 584.8533Q240.55264 583.7705 240.12175 582.8977Q239.67981 582.0138 239.75714 581.2294Q239.84554 580.4339 240.50845 579.77094Q240.99458 579.28485 241.55806 579.1191Q242.13258 578.9423 242.7513 579.0749Q243.35898 579.1964 244.02188 579.5942Q244.6848 579.99194 245.59077 580.8979Q246.66249 581.9696 247.09338 582.84247Q247.53532 583.7042 247.45798 584.5108Q247.38065 585.2952 246.70668 585.9692Q245.83385 586.84204 244.69585 586.7205Q243.34793 586.5658 241.6354 584.8533ZM242.39775 584.09094Q243.8893 585.5825 244.74004 585.72614Q245.59077 585.86975 246.09901 585.3615Q246.61829 584.8422 246.46361 584.00256Q246.31998 583.1518 244.82843 581.6603Q243.32582 580.15765 242.48615 580.0251Q241.64645 579.8704 241.11612 580.40076Q240.60788 580.90894 240.72942 581.64923Q240.89514 582.5883 242.39775 584.09094ZM248.86115 574.44556L248.17613 575.2411Q247.63477 574.89856 247.25911 574.87646Q246.62935 574.8654 246.1874 575.3074Q245.83385 575.6609 245.7565 576.136Q245.67917 576.74365 245.96643 577.45074Q246.2537 578.1358 247.14862 579.0528Q247.00499 578.37885 247.19281 577.7933Q247.3917 577.19666 247.82259 576.76575Q248.56284 576.0255 249.63455 576.05865Q250.7173 576.08075 251.57909 576.9425Q252.15361 577.517 252.39668 578.2684Q252.63976 578.99756 252.47401 579.6936Q252.29724 580.3786 251.75586 580.92Q250.81674 581.85913 249.54616 581.7597Q248.27557 581.6603 246.70668 580.0914Q244.93892 578.3236 244.79529 576.8762Q244.6627 575.6167 245.62393 574.65546Q246.34209 573.9373 247.20387 573.8931Q248.06566 573.82684 248.86115 574.44556ZM248.4413 580.1024Q248.828 580.48914 249.33623 580.688Q249.84447 580.86475 250.31955 580.7653Q250.8057 580.65485 251.13715 580.32336Q251.60118 579.8594 251.56804 579.1412Q251.52385 578.412 250.87198 577.76013Q250.24222 577.1304 249.53511 577.1083Q248.83905 577.07513 248.33081 577.5834Q247.82259 578.09155 247.83363 578.80975Q247.85573 579.51685 248.4413 580.1024ZM252.61765 576.2133L251.86635 575.46204L254.16444 573.16394L254.91576 573.9152L252.61765 576.2133ZM260.16382 572.3132L259.42355 573.05347L254.67268 568.30255Q254.65059 568.8329 254.4738 569.54004Q254.29703 570.22504 254.07607 570.6891L253.35791 569.9709Q253.67831 569.0539 253.73355 568.181Q253.7888 567.28613 253.58992 566.6895L254.06502 566.2144L260.16382 572.3132ZM259.31308 567.1756Q258.23032 566.09283 257.7994 565.22003Q257.35748 564.3361 257.4348 563.5517Q257.5232 562.7562 258.18613 562.09326Q258.67224 561.6072 259.23572 561.4414Q259.81024 561.26465 260.429 561.3972Q261.03665 561.51874 261.69955 561.9165Q262.36246 562.3143 263.26846 563.2202Q264.34015 564.29193 264.77106 565.1648Q265.21298 566.02655 265.13565 566.8331Q265.05832 567.61755 264.38434 568.2915Q263.5115 569.16437 262.3735 569.04285Q261.0256 568.8881 259.31308 567.1756ZM260.0754 566.41327Q261.567 567.90485 262.41772 568.04846Q263.26846 568.1921 263.77667 567.68384Q264.29596 567.16455 264.1413 566.3249Q263.99765 565.4741 262.5061 563.9826Q261.0035 562.48 260.16382 562.3474Q259.32413 562.19275 258.7938 562.7231Q258.28555 563.23126 258.40707 563.97156Q258.5728 564.91064 260.0754 566.41327Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M251.28117 605.8345L251.99933 606.5526L247.97765 610.5743Q247.7125 610.30914 247.54675 609.9666Q247.29265 609.40314 247.22635 608.67395Q247.17111 607.9337 247.29265 606.7736Q247.46942 604.9617 247.33684 604.14404Q247.2153 603.3154 246.79546 602.89557Q246.35352 602.4536 245.7348 602.4757Q245.10503 602.48676 244.5968 602.995Q244.05542 603.5364 244.05542 604.1772Q244.05542 604.818 244.6189 605.40356L243.7792 606.08856Q242.99477 605.1495 243.06105 604.1993Q243.12733 603.227 244.00018 602.3542Q244.87302 601.4813 245.86739 601.4592Q246.86176 601.43713 247.57991 602.15533Q247.9445 602.5199 248.14339 603.02814Q248.34225 603.5143 248.38644 604.26556Q248.43065 604.9948 248.30911 606.46423Q248.19862 607.70166 248.20967 608.1105Q248.22072 608.4972 248.29807 608.81757L251.28117 605.8345ZM250.03268 602.53094Q248.94992 601.4482 248.51903 600.5754Q248.07709 599.69147 248.15443 598.90704Q248.24281 598.1116 248.90573 597.4486Q249.39186 596.9625 249.95534 596.79675Q250.52986 596.62 251.14859 596.75256Q251.75626 596.8741 252.41917 597.27185Q253.08208 597.6696 253.98807 598.57556Q255.05977 599.6473 255.49066 600.52014Q255.9326 601.3819 255.85527 602.1885Q255.77792 602.9729 255.10396 603.64685Q254.23112 604.5197 253.09312 604.3982Q251.74521 604.24347 250.03268 602.53094ZM250.79503 601.7686Q252.28659 603.2602 253.13733 603.4038Q253.98807 603.5474 254.49629 603.0392Q255.01558 602.5199 254.8609 601.68024Q254.71727 600.82947 253.22571 599.33795Q251.72311 597.8353 250.88342 597.70276Q250.04373 597.5481 249.5134 598.07837Q249.00517 598.5866 249.1267 599.3269Q249.29243 600.266 250.79503 601.7686ZM261.18066 595.935L261.8988 596.65314L257.87714 600.6748Q257.61197 600.40967 257.44626 600.06714Q257.19214 599.50366 257.12585 598.7745Q257.07062 598.0342 257.19214 596.8741Q257.36893 595.06213 257.23633 594.24457Q257.1148 593.4159 256.69495 592.9961Q256.25302 592.55414 255.6343 592.57623Q255.00453 592.5873 254.49629 593.0955Q253.95491 593.6369 253.95491 594.2777Q253.95491 594.9185 254.51839 595.5041L253.6787 596.1891Q252.89426 595.25 252.96054 594.2998Q253.02684 593.3275 253.89967 592.4547Q254.7725 591.58185 255.76688 591.55975Q256.76123 591.53766 257.4794 592.2558Q257.844 592.6204 258.04288 593.12866Q258.24176 593.6148 258.28595 594.3661Q258.33014 595.0953 258.20862 596.56476Q258.0981 597.8022 258.10916 598.211Q258.1202 598.59766 258.19754 598.9181L261.18066 595.935ZM259.9322 592.6315Q258.84943 591.5487 258.41852 590.6759Q257.9766 589.792 258.05392 589.00757Q258.1423 588.21204 258.80524 587.54913Q259.29135 587.063 259.85483 586.8973Q260.42935 586.7205 261.04807 586.8531Q261.65576 586.9746 262.31866 587.3724Q262.98157 587.7701 263.88754 588.6761Q264.95926 589.7478 265.39017 590.6206Q265.8321 591.4824 265.75476 592.28894Q265.67743 593.0734 265.00345 593.7474Q264.1306 594.6202 262.9926 594.49866Q261.6447 594.344 259.9322 592.6315ZM260.69452 591.86914Q262.18607 593.36066 263.0368 593.5043Q263.88754 593.64795 264.39578 593.1397Q264.91507 592.6204 264.76038 591.7807Q264.61676 590.93 263.1252 589.4384Q261.6226 587.93585 260.78293 587.8032Q259.94324 587.64856 259.4129 588.1789Q258.90466 588.68713 259.02618 589.42737Q259.19193 590.3665 260.69452 591.86914ZM265.9647 588.9412L265.21338 588.18994L267.51147 585.89185L268.2628 586.6431L265.9647 588.9412ZM267.71036 584.8533Q266.6276 583.7705 266.1967 582.8977Q265.75476 582.0138 265.8321 581.2294Q265.9205 580.4339 266.5834 579.77094Q267.06955 579.28485 267.63303 579.1191Q268.20755 578.9423 268.82626 579.0749Q269.43393 579.1964 270.09683 579.5942Q270.75974 579.99194 271.66574 580.8979Q272.73743 581.9696 273.16833 582.84247Q273.61026 583.7042 273.53293 584.5108Q273.4556 585.2952 272.78165 585.9692Q271.90878 586.84204 270.7708 586.7205Q269.42288 586.5658 267.71036 584.8533ZM268.4727 584.09094Q269.96426 585.5825 270.815 585.72614Q271.66574 585.86975 272.17395 585.3615Q272.69324 584.8422 272.53857 584.00256Q272.39493 583.1518 270.90338 581.6603Q269.4008 580.15765 268.5611 580.0251Q267.7214 579.8704 267.19107 580.40076Q266.68283 580.90894 266.80438 581.64923Q266.9701 582.5883 268.4727 584.09094ZM274.9361 574.44556L274.2511 575.241Q273.70972 574.89856 273.33405 574.87646Q272.70428 574.8654 272.26236 575.3074Q271.90878 575.6609 271.83145 576.136Q271.75412 576.74365 272.04138 577.45074Q272.32864 578.1358 273.22357 579.0528Q273.07996 578.37885 273.26776 577.7933Q273.46664 577.19666 273.89752 576.76575Q274.6378 576.0255 275.7095 576.05865Q276.79227 576.08075 277.65405 576.9425Q278.22858 577.517 278.47162 578.2684Q278.7147 578.99756 278.54898 579.6936Q278.3722 580.3786 277.8308 580.92Q276.8917 581.85913 275.6211 581.7597Q274.35052 581.6603 272.78165 580.0914Q271.01385 578.3236 270.87024 576.8762Q270.73764 575.6167 271.69888 574.65546Q272.41702 573.9373 273.2788 573.8931Q274.1406 573.82684 274.9361 574.44556ZM274.51627 580.1024Q274.90295 580.48914 275.4112 580.688Q275.91943 580.86475 276.3945 580.7653Q276.88065 580.65485 277.2121 580.32336Q277.67615 579.8594 277.643 579.1412Q277.5988 578.412 276.94693 577.76013Q276.31717 577.1304 275.61005 577.1083Q274.914 577.07513 274.40576 577.5834Q273.89752 578.09155 273.90857 578.80975Q273.9307 579.51685 274.51627 580.1024ZM278.6926 576.2133L277.9413 575.46204L280.2394 573.16394L280.9907 573.9152L278.6926 576.2133ZM286.23877 572.3132L285.4985 573.05347L280.74762 568.30255Q280.72552 568.8329 280.54877 569.54004Q280.37198 570.22504 280.151 570.6891L279.43286 569.9709Q279.75327 569.0539 279.8085 568.181Q279.86374 567.28613 279.6649 566.6895L280.13995 566.2144L286.23877 572.3132ZM286.23877 565.7283Q285.59793 566.0155 285.05658 565.9382Q284.5152 565.83875 284.0843 565.40784Q283.4214 564.74493 283.44348 563.8169Q283.47662 562.87775 284.26108 562.09326Q285.05658 561.2978 286.00674 561.2757Q286.9569 561.2536 287.6198 561.9165Q288.03967 562.33636 288.12805 562.8667Q288.21646 563.39703 287.94025 564.0268Q288.68048 563.6401 289.37656 563.7616Q290.0726 563.8832 290.63608 564.44666Q291.4095 565.22003 291.3874 566.3028Q291.37634 567.3745 290.47034 568.28046Q289.5754 569.1754 288.49268 569.1975Q287.4099 569.2196 286.6144 568.42413Q286.0178 567.8275 285.91837 567.1314Q285.82996 566.4243 286.23877 565.7283ZM284.8135 564.61237Q285.2444 565.0433 285.7968 565.0433Q286.3603 565.0322 286.80225 564.5903Q287.23312 564.15936 287.24417 563.618Q287.24417 563.06555 286.84644 562.6678Q286.43762 562.25903 285.87415 562.2701Q285.29962 562.2701 284.8798 562.68994Q284.44888 563.1208 284.43784 563.68427Q284.43784 564.2367 284.8135 564.61237ZM287.38782 567.6507Q287.70822 567.9711 288.15015 568.1258Q288.60315 568.2694 289.0672 568.13684Q289.53122 568.0043 289.87372 567.66174Q290.40405 567.1314 290.40405 566.4464Q290.4151 565.75037 289.88477 565.22003Q289.3434 564.67865 288.6363 564.67865Q287.9292 564.67865 287.38782 565.22003Q286.85748 565.75037 286.86853 566.4464Q286.86853 567.1314 287.38782 567.6507Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M277.3561 605.8345L278.07428 606.5526L274.0526 610.5743Q273.78745 610.30914 273.6217 609.9666Q273.36758 609.40314 273.3013 608.67395Q273.24606 607.9337 273.36758 606.7736Q273.54437 604.9617 273.41177 604.14404Q273.29025 603.3154 272.87042 602.89557Q272.42847 602.4536 271.80975 602.4757Q271.18 602.48676 270.67175 602.995Q270.13037 603.5364 270.13037 604.1772Q270.13037 604.818 270.69385 605.40356L269.85416 606.08856Q269.0697 605.1495 269.13602 604.1993Q269.2023 603.227 270.07513 602.3542Q270.94797 601.4813 271.94232 601.4592Q272.9367 601.43713 273.65485 602.15533Q274.01947 602.5199 274.21832 603.02814Q274.4172 603.5143 274.4614 604.26556Q274.50558 604.9948 274.38406 606.46423Q274.27356 607.70166 274.28464 608.1105Q274.2957 608.4972 274.37302 608.81757L277.3561 605.8345ZM276.10764 602.53094Q275.02487 601.4482 274.594 600.5754Q274.15204 599.69147 274.22937 598.90704Q274.31778 598.1116 274.98068 597.4486Q275.46683 596.9625 276.0303 596.79675Q276.60483 596.62 277.22354 596.75256Q277.8312 596.8741 278.4941 597.27185Q279.15704 597.6696 280.06302 598.57556Q281.13474 599.6473 281.5656 600.52014Q282.00757 601.3819 281.9302 602.1885Q281.85287 602.9729 281.17892 603.64685Q280.3061 604.5197 279.1681 604.3982Q277.82016 604.24347 276.10764 602.53094ZM276.87 601.7686Q278.36154 603.2602 279.21228 603.4038Q280.06302 603.5474 280.57126 603.0392Q281.0905 602.5199 280.93585 601.68024Q280.7922 600.82947 279.30066 599.33795Q277.79807 597.8353 276.95837 597.70276Q276.11868 597.5481 275.58835 598.07837Q275.0801 598.5866 275.20166 599.3269Q275.36737 600.266 276.87 601.7686ZM287.2556 595.935L287.97375 596.65314L283.9521 600.6748Q283.68692 600.40967 283.5212 600.06714Q283.2671 599.50366 283.2008 598.7745Q283.14557 598.0342 283.2671 596.8741Q283.44388 595.06213 283.31128 594.24457Q283.18976 593.4159 282.7699 592.9961Q282.32797 592.55414 281.70926 592.57623Q281.07947 592.5873 280.57126 593.0955Q280.02988 593.6369 280.02988 594.2777Q280.02988 594.9185 280.59335 595.5041L279.75366 596.1891Q278.9692 595.25 279.0355 594.2998Q279.10178 593.3275 279.9746 592.4547Q280.84744 591.58185 281.84183 591.55975Q282.83618 591.53766 283.55435 592.2558Q283.91895 592.6204 284.11783 593.12866Q284.3167 593.6148 284.3609 594.3661Q284.4051 595.0953 284.28357 596.56476Q284.17307 597.8022 284.1841 598.211Q284.19516 598.59766 284.2725 598.9181L287.2556 595.935ZM286.00714 592.6315Q284.92438 591.5487 284.49347 590.6759Q284.05154 589.792 284.12888 589.00757Q284.21725 588.21204 284.8802 587.54913Q285.3663 587.063 285.92978 586.8973Q286.5043 586.7205 287.12302 586.8531Q287.7307 586.9746 288.39362 587.3724Q289.05652 587.7701 289.9625 588.6761Q291.0342 589.7478 291.46512 590.6206Q291.90704 591.4824 291.8297 592.28894Q291.75238 593.0734 291.0784 593.7474Q290.20557 594.6202 289.06757 594.49866Q287.71967 594.344 286.00714 592.6315ZM286.76947 591.86914Q288.26102 593.36066 289.11176 593.5043Q289.9625 593.64795 290.47073 593.1397Q290.99002 592.6204 290.83533 591.7807Q290.6917 590.93 289.20016 589.4384Q287.69754 587.93585 286.85788 587.8032Q286.0182 587.64856 285.48785 588.1789Q284.9796 588.68713 285.10114 589.42737Q285.26688 590.3665 286.76947 591.86914ZM292.03964 588.9412L291.28833 588.18994L293.58643 585.89185L294.33774 586.6431L292.03964 588.9412ZM293.7853 584.8533Q292.70255 583.7705 292.27164 582.8977Q291.8297 582.0138 291.90704 581.2294Q291.99545 580.4339 292.65836 579.77094Q293.1445 579.28485 293.70798 579.1191Q294.2825 578.9423 294.9012 579.0749Q295.50888 579.1964 296.17178 579.5942Q296.8347 579.99194 297.7407 580.8979Q298.81238 581.9696 299.2433 582.84247Q299.6852 583.7042 299.60788 584.5108Q299.53055 585.2952 298.8566 585.9692Q297.98373 586.84204 296.84573 586.7205Q295.49783 586.5658 293.7853 584.8533ZM294.54764 584.09094Q296.0392 585.5825 296.88995 585.72614Q297.7407 585.86975 298.2489 585.3615Q298.7682 584.8422 298.61353 584.00256Q298.46988 583.1518 296.97833 581.6603Q295.47574 580.15765 294.63605 580.0251Q293.79636 579.8704 293.26602 580.40076Q292.75778 580.90894 292.87933 581.64923Q293.04504 582.5883 294.54764 584.09094ZM301.01105 574.44556L300.32605 575.241Q299.78467 574.89856 299.409 574.87646Q298.77924 574.8654 298.3373 575.3074Q297.98373 575.6609 297.9064 576.136Q297.82907 576.74365 298.11633 577.45074Q298.4036 578.1358 299.29852 579.0528Q299.1549 578.37885 299.3427 577.7933Q299.5416 577.19666 299.97247 576.76575Q300.71274 576.0255 301.78445 576.05865Q302.86722 576.08075 303.729 576.9425Q304.30353 577.517 304.54657 578.2684Q304.78964 578.99756 304.62393 579.6936Q304.44714 580.3786 303.90576 580.92Q302.96664 581.85913 301.69604 581.7597Q300.42548 581.6603 298.8566 580.0914Q297.0888 578.3236 296.9452 576.8762Q296.8126 575.6167 297.77383 574.65546Q298.49197 573.9373 299.35376 573.8931Q300.21555 573.82684 301.01105 574.44556ZM300.59122 580.1024Q300.9779 580.48914 301.48615 580.688Q301.9944 580.86475 302.46945 580.7653Q302.9556 580.65485 303.28705 580.32336Q303.7511 579.8594 303.71796 579.1412Q303.67374 578.412 303.02188 577.76013Q302.39212 577.1304 301.685 577.1083Q300.98895 577.07513 300.4807 577.5834Q299.97247 578.09155 299.98352 578.80975Q300.00565 579.51685 300.59122 580.1024ZM304.76755 576.2133L304.01627 575.46204L306.31436 573.16394L307.06564 573.9152L304.76755 576.2133ZM312.71146 570.4791L313.42963 571.19727L309.40793 575.21893Q309.1428 574.9538 308.97705 574.61127Q308.72293 574.0478 308.65665 573.3186Q308.6014 572.57837 308.72293 571.4183Q308.89972 569.6063 308.76712 568.7887Q308.6456 567.9601 308.22574 567.5402Q307.7838 567.09827 307.1651 567.12036Q306.5353 567.1314 306.0271 567.63965Q305.48572 568.181 305.48572 568.82184Q305.48572 569.46265 306.0492 570.0482L305.2095 570.7333Q304.42505 569.7941 304.49133 568.84393Q304.55762 567.8717 305.43048 566.99884Q306.3033 566.12604 307.29767 566.10394Q308.29205 566.0818 309.0102 566.8Q309.3748 567.16455 309.57367 567.6728Q309.77255 568.15894 309.81674 568.9102Q309.86093 569.63947 309.7394 571.1089Q309.6289 572.3463 309.63995 572.7551Q309.651 573.14185 309.72836 573.4622L312.71146 570.4791ZM316.8436 567.78326L315.3852 566.3249L312.75565 568.9544L312.07065 568.2694L310.91055 561.563L311.51822 560.95526L315.4515 564.88855L316.26907 564.071L316.9541 564.756L316.1365 565.5736L317.5949 567.032L316.8436 567.78326ZM314.7002 565.6399L311.9712 562.9109L312.79984 567.5402L314.7002 565.6399Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M303.43106 605.8345L304.14923 606.5526L300.12756 610.5743Q299.8624 610.30914 299.69666 609.9666Q299.44254 609.40314 299.37625 608.67395Q299.321 607.9337 299.44254 606.7736Q299.61932 604.9617 299.48672 604.14404Q299.3652 603.3154 298.94537 602.89557Q298.50342 602.4536 297.8847 602.4757Q297.25494 602.48676 296.7467 602.995Q296.20532 603.5364 296.20532 604.1772Q296.20532 604.818 296.7688 605.40356L295.9291 606.08856Q295.14465 605.1495 295.21097 604.1993Q295.27725 603.227 296.1501 602.3542Q297.02292 601.4813 298.01727 601.4592Q299.01166 601.43713 299.7298 602.15533Q300.09442 602.5199 300.29327 603.02814Q300.49216 603.5143 300.53635 604.26556Q300.58054 604.9948 300.459 606.46423Q300.3485 607.70166 300.3596 608.1105Q300.37064 608.4972 300.44797 608.81757L303.43106 605.8345ZM302.1826 602.53094Q301.09982 601.4482 300.66895 600.5754Q300.227 599.69147 300.30432 598.90704Q300.39273 598.1116 301.05563 597.4486Q301.54178 596.9625 302.10526 596.79675Q302.67978 596.62 303.2985 596.75256Q303.90616 596.8741 304.56906 597.27185Q305.232 597.6696 306.13797 598.57556Q307.20966 599.6473 307.64056 600.52014Q308.08252 601.3819 308.00516 602.1885Q307.92783 602.9729 307.25388 603.64685Q306.38104 604.5197 305.24304 604.3982Q303.8951 604.24347 302.1826 602.53094ZM302.94495 601.7686Q304.4365 603.2602 305.28723 603.4038Q306.13797 603.5474 306.6462 603.0392Q307.16547 602.5199 307.0108 601.68024Q306.86716 600.82947 305.3756 599.33795Q303.87302 597.8353 303.03333 597.70276Q302.19363 597.5481 301.6633 598.07837Q301.15506 598.5866 301.2766 599.3269Q301.44232 600.266 302.94495 601.7686ZM313.33057 595.935L314.0487 596.65314L310.02704 600.6748Q309.76187 600.40967 309.59616 600.06714Q309.34204 599.50366 309.27576 598.7745Q309.22052 598.0342 309.34204 596.8741Q309.51883 595.06213 309.38623 594.24457Q309.2647 593.4159 308.84485 592.9961Q308.40292 592.55414 307.7842 592.57623Q307.15442 592.5873 306.6462 593.0955Q306.10483 593.6369 306.10483 594.2777Q306.10483 594.9185 306.6683 595.5041L305.8286 596.1891Q305.04416 595.25 305.11044 594.2998Q305.17673 593.3275 306.04956 592.4547Q306.9224 591.58185 307.91678 591.55975Q308.91113 591.53766 309.6293 592.2558Q309.9939 592.6204 310.19278 593.12866Q310.39166 593.6148 310.43585 594.3661Q310.48004 595.0953 310.35852 596.56476Q310.24802 597.8022 310.25906 598.211Q310.2701 598.59766 310.34744 598.9181L313.33057 595.935ZM312.0821 592.6315Q310.99933 591.5487 310.56842 590.67584Q310.1265 589.792 310.20383 589.00757Q310.2922 588.21204 310.95514 587.54913Q311.44125 587.063 312.00473 586.8973Q312.57925 586.7205 313.19797 586.8531Q313.80566 586.9746 314.46857 587.3724Q315.13147 587.7701 316.03745 588.6761Q317.10916 589.7478 317.54007 590.6206Q317.982 591.4824 317.90466 592.28894Q317.82733 593.0734 317.15335 593.7474Q316.28052 594.6202 315.14252 594.49866Q313.79462 594.344 312.0821 592.6315ZM312.84442 591.86914Q314.33597 593.36066 315.1867 593.5043Q316.03745 593.64795 316.5457 593.1397Q317.06497 592.6204 316.91028 591.7807Q316.76666 590.93 315.27512 589.4384Q313.7725 587.93585 312.93283 587.8032Q312.09314 587.64856 311.5628 588.1789Q311.05457 588.68713 311.1761 589.42737Q311.34183 590.3665 312.84442 591.86914ZM318.1146 588.9412L317.36328 588.18994L319.66138 585.89185L320.4127 586.6431L318.1146 588.9412ZM319.86026 584.8533Q318.7775 583.7705 318.3466 582.8977Q317.90466 582.0138 317.982 581.2294Q318.0704 580.4339 318.7333 579.77094Q319.21945 579.28485 319.78293 579.1191Q320.35745 578.9423 320.97617 579.0749Q321.58383 579.1964 322.24673 579.5942Q322.90964 579.99194 323.81564 580.8979Q324.88733 581.9696 325.31824 582.84247Q325.76016 583.7042 325.68283 584.5108Q325.6055 585.2952 324.93155 585.9692Q324.0587 586.84204 322.9207 586.7205Q321.57278 586.5658 319.86026 584.8533ZM320.6226 584.09094Q322.11417 585.5825 322.9649 585.72614Q323.81564 585.86975 324.32385 585.3615Q324.84314 584.8422 324.68848 584.00256Q324.54483 583.1518 323.05328 581.6603Q321.5507 580.15765 320.711 580.0251Q319.8713 579.8704 319.34097 580.40076Q318.83273 580.90894 318.95428 581.64923Q319.12 582.5883 320.6226 584.09094ZM322.56714 577.5723L321.849 576.8541L325.7823 572.92084L326.36786 573.5064Q326.41205 574.6997 326.86502 576.3017Q327.31802 577.88165 328.09143 579.2738Q328.62173 580.2681 329.47247 581.2294L328.6991 582.00275Q327.99197 581.27356 327.2407 579.99194Q326.50043 578.6993 326.05847 577.26294Q325.6276 575.81555 325.55026 574.5892L322.56714 577.5723ZM330.8425 576.2133L330.09122 575.46204L332.3893 573.16394L333.1406 573.9152L330.8425 576.2133ZM332.58817 572.12537Q331.50543 571.0426 331.07452 570.1698Q330.63257 569.2859 330.70993 568.50146Q330.7983 567.70593 331.4612 567.043Q331.94736 566.5569 332.51083 566.3912Q333.08536 566.2144 333.70407 566.347Q334.31174 566.4685 334.97467 566.8663Q335.63757 567.26404 336.54355 568.17Q337.61526 569.2417 338.04614 570.11456Q338.4881 570.9763 338.41077 571.78284Q338.3334 572.5673 337.65945 573.2413Q336.78662 574.11414 335.64862 573.99255Q334.3007 573.8379 332.58817 572.12537ZM333.35052 571.36304Q334.84207 572.85455 335.6928 572.9982Q336.54355 573.14185 337.0518 572.6336Q337.57108 572.1143 337.41638 571.27466Q337.27277 570.4239 335.78122 568.9323Q334.2786 567.42975 333.4389 567.2972Q332.5992 567.14246 332.0689 567.6728Q331.56067 568.181 331.6822 568.92126Q331.84793 569.8604 333.35052 571.36304ZM343.73615 565.52936L344.4543 566.24756L340.43265 570.2692Q340.16748 570.004 340.00174 569.66156Q339.74762 569.0981 339.68134 568.36884Q339.6261 567.6286 339.74762 566.4685Q339.9244 564.65656 339.79184 563.839Q339.6703 563.0103 339.25046 562.59045Q338.8085 562.14856 338.1898 562.17065Q337.56003 562.1817 337.0518 562.68994Q336.5104 563.23126 336.5104 563.87213Q336.5104 564.51294 337.07388 565.0985L336.2342 565.7835Q335.44974 564.84436 335.51605 563.8942Q335.58234 562.92194 336.45517 562.0491Q337.328 561.1763 338.32236 561.1542Q339.31674 561.1321 340.03488 561.8502Q340.3995 562.21484 340.59836 562.7231Q340.79724 563.20917 340.84143 563.9605Q340.88562 564.6897 340.7641 566.1592Q340.65363 567.3966 340.66467 567.80536Q340.67572 568.1921 340.75305 568.5125L343.73615 565.52936Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M329.506 605.8345L330.22418 606.5526L326.2025 610.5743Q325.93735 610.30914 325.7716 609.9666Q325.5175 609.40314 325.4512 608.67395Q325.39597 607.9337 325.5175 606.7736Q325.69427 604.9616 325.56168 604.14404Q325.44016 603.3154 325.02032 602.89557Q324.57837 602.4536 323.95966 602.4757Q323.3299 602.48676 322.82166 602.995Q322.28027 603.5364 322.28027 604.1772Q322.28027 604.818 322.84375 605.40356L322.00406 606.08856Q321.2196 605.1495 321.2859 604.1993Q321.3522 603.227 322.22504 602.3542Q323.09787 601.4813 324.09222 601.4592Q325.0866 601.43713 325.80475 602.15533Q326.16937 602.5199 326.36823 603.02814Q326.5671 603.5143 326.6113 604.26556Q326.6555 604.9948 326.53397 606.46423Q326.42346 607.70166 326.43454 608.1105Q326.4456 608.4972 326.52292 608.81757L329.506 605.8345ZM328.25754 602.53094Q327.17477 601.4482 326.7439 600.5754Q326.30194 599.69147 326.37927 598.90704Q326.46768 598.1116 327.13058 597.4486Q327.61673 596.96246 328.1802 596.79675Q328.75473 596.62 329.37344 596.75256Q329.9811 596.8741 330.644 597.27185Q331.30695 597.6696 332.21292 598.57556Q333.2846 599.6473 333.7155 600.52014Q334.15747 601.3819 334.0801 602.1885Q334.00278 602.9729 333.32883 603.64685Q332.456 604.5197 331.318 604.3982Q329.97006 604.24347 328.25754 602.53094ZM329.0199 601.7686Q330.51144 603.2602 331.36218 603.4038Q332.21292 603.5474 332.72116 603.0392Q333.24042 602.5199 333.08575 601.68024Q332.9421 600.82947 331.45056 599.33795Q329.94797 597.8353 329.10828 597.70276Q328.2686 597.5481 327.73825 598.07837Q327.23 598.5866 327.35156 599.3269Q327.51727 600.266 329.0199 601.7686ZM339.40552 595.935L340.12366 596.65314L336.102 600.6748Q335.83682 600.40967 335.6711 600.06714Q335.417 599.50366 335.3507 598.7745Q335.29547 598.0342 335.417 596.8741Q335.59378 595.06213 335.46118 594.24457Q335.33966 593.4159 334.9198 592.9961Q334.47787 592.55414 333.85916 592.57623Q333.22937 592.5873 332.72116 593.0955Q332.17978 593.6369 332.17978 594.2777Q332.17978 594.9185 332.74326 595.5041L331.90356 596.1891Q331.1191 595.24994 331.1854 594.2998Q331.25168 593.3275 332.1245 592.4547Q332.99734 591.58185 333.99173 591.55975Q334.98608 591.53766 335.70425 592.2558Q336.06885 592.6204 336.26773 593.12866Q336.4666 593.6148 336.5108 594.3661Q336.555 595.0953 336.43347 596.56476Q336.32297 597.8022 336.334 598.211Q336.34506 598.59766 336.4224 598.9181L339.40552 595.935ZM338.15704 592.6315Q337.07428 591.5487 336.64337 590.67584Q336.20145 589.792 336.27878 589.00757Q336.36716 588.21204 337.0301 587.54913Q337.5162 587.063 338.07968 586.8973Q338.6542 586.7205 339.27292 586.8531Q339.8806 586.9746 340.54352 587.3724Q341.20642 587.7701 342.1124 588.6761Q343.1841 589.7478 343.61502 590.6206Q344.05695 591.4824 343.9796 592.28894Q343.90228 593.0734 343.2283 593.7474Q342.35547 594.6202 341.21747 594.49866Q339.86957 594.344 338.15704 592.6315ZM338.91937 591.86914Q340.41092 593.36066 341.26166 593.5043Q342.1124 593.64795 342.62064 593.1397Q343.13992 592.6204 342.98523 591.7807Q342.8416 590.93 341.35007 589.4384Q339.84744 587.93585 339.00778 587.8032Q338.1681 587.64856 337.63776 588.1789Q337.12952 588.68713 337.25104 589.42737Q337.41678 590.3665 338.91937 591.86914ZM344.18954 588.9412L343.43823 588.18994L345.73633 585.89185L346.48764 586.6431L344.18954 588.9412ZM345.9352 584.8533Q344.85245 583.7705 344.42154 582.8977Q343.9796 582.0138 344.05695 581.2294Q344.14536 580.4339 344.80826 579.77094Q345.2944 579.28485 345.85788 579.1191Q346.4324 578.9423 347.05112 579.0749Q347.65878 579.1964 348.3217 579.5942Q348.9846 579.99194 349.8906 580.8979Q350.96228 581.9696 351.3932 582.84247Q351.8351 583.7042 351.75778 584.5108Q351.68045 585.2952 351.0065 585.9692Q350.13364 586.84204 348.99564 586.7205Q347.64774 586.5658 345.9352 584.8533ZM346.69754 584.09094Q348.18912 585.5825 349.03986 585.72614Q349.8906 585.86975 350.3988 585.3615Q350.9181 584.8422 350.76343 584.00256Q350.61978 583.1518 349.12823 581.6603Q347.62564 580.15765 346.78595 580.0251Q345.94626 579.8704 345.41592 580.40076Q344.90768 580.90894 345.02924 581.64923Q345.19495 582.5883 346.69754 584.09094ZM348.6421 577.5723L347.92395 576.8541L351.85724 572.92084L352.4428 573.5064Q352.487 574.6997 352.93997 576.3017Q353.39297 577.88165 354.16638 579.2738Q354.6967 580.2681 355.54742 581.2294L354.77405 582.00275Q354.06693 581.27356 353.31564 579.99194Q352.57538 578.6993 352.13342 577.26294Q351.70255 575.81555 351.6252 574.5892L348.6421 577.5723ZM356.91745 576.2133L356.16617 575.46204L358.46426 573.16394L359.21555 573.9152L356.91745 576.2133ZM358.66312 572.12537Q357.58038 571.0426 357.14948 570.1698Q356.70752 569.2859 356.78488 568.50146Q356.87326 567.70593 357.53616 567.043Q358.0223 566.5569 358.5858 566.3912Q359.1603 566.2144 359.77902 566.347Q360.3867 566.4685 361.04962 566.8663Q361.71252 567.26404 362.6185 568.17Q363.69022 569.2417 364.1211 570.11456Q364.56305 570.9763 364.48572 571.78284Q364.40836 572.5673 363.7344 573.2413Q362.86157 574.11414 361.72357 573.99255Q360.37564 573.8379 358.66312 572.12537ZM359.42548 571.36304Q360.91702 572.85455 361.76776 572.9982Q362.6185 573.14185 363.12674 572.6336Q363.64603 572.1143 363.49133 571.27466Q363.34772 570.4239 361.85617 568.9323Q360.35355 567.42975 359.51385 567.2972Q358.67416 567.14246 358.14386 567.6728Q357.63562 568.181 357.75714 568.92126Q357.92288 569.8604 359.42548 571.36304ZM364.46362 565.7283Q363.82278 566.0155 363.2814 565.9382Q362.74005 565.83875 362.30914 565.40784Q361.64624 564.74493 361.66833 563.81683Q361.70148 562.87775 362.48593 562.09326Q363.2814 561.2978 364.2316 561.2757Q365.18176 561.2536 365.84467 561.9165Q366.26453 562.33636 366.3529 562.8667Q366.4413 563.39703 366.1651 564.0268Q366.90533 563.6401 367.6014 563.7616Q368.29745 563.8832 368.86093 564.44666Q369.63434 565.22003 369.61224 566.3028Q369.6012 567.3745 368.6952 568.28046Q367.80026 569.1754 366.71753 569.1975Q365.63477 569.2196 364.83926 568.42413Q364.24265 567.8275 364.14322 567.1314Q364.0548 566.4243 364.46362 565.7283ZM363.03836 564.61237Q363.46924 565.0433 364.02167 565.0433Q364.58514 565.0322 365.0271 564.5903Q365.45798 564.15936 365.46902 563.618Q365.46902 563.06555 365.0713 562.6678Q364.66248 562.25903 364.099 562.2701Q363.52448 562.2701 363.10464 562.68994Q362.67374 563.1208 362.6627 563.68427Q362.6627 564.2367 363.03836 564.61237ZM365.61267 567.6507Q365.93307 567.9711 366.375 568.1258Q366.828 568.2694 367.29205 568.13684Q367.75607 568.0043 368.09857 567.66174Q368.6289 567.1314 368.6289 566.4464Q368.63995 565.75037 368.10962 565.22003Q367.56824 564.67865 366.86115 564.67865Q366.15405 564.67865 365.61267 565.22003Q365.08234 565.75037 365.09338 566.4464Q365.09338 567.1314 365.61267 567.6507Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M355.58096 605.8345L356.29913 606.5526L352.27747 610.5743Q352.0123 610.30914 351.84656 609.9666Q351.59244 609.40314 351.52615 608.67395Q351.47092 607.9337 351.59244 606.7736Q351.76923 604.9616 351.63663 604.14404Q351.5151 603.3154 351.09528 602.89557Q350.65332 602.4536 350.0346 602.4757Q349.40485 602.48676 348.8966 602.995Q348.35522 603.5364 348.35522 604.1772Q348.35522 604.818 348.9187 605.40356L348.079 606.08856Q347.29456 605.1495 347.36084 604.1993Q347.42715 603.227 348.3 602.3542Q349.17282 601.4813 350.16718 601.4592Q351.16156 601.43713 351.8797 602.15533Q352.24432 602.5199 352.44318 603.02814Q352.64206 603.5143 352.68625 604.26556Q352.73044 604.9948 352.60892 606.46423Q352.4984 607.70166 352.5095 608.1105Q352.52054 608.4972 352.59787 608.81757L355.58096 605.8345ZM354.3325 602.53094Q353.24973 601.4482 352.81885 600.5754Q352.3769 599.69147 352.45422 598.90704Q352.54263 598.1116 353.20554 597.4486Q353.69168 596.96246 354.25516 596.79675Q354.82968 596.62 355.4484 596.75256Q356.05606 596.8741 356.71896 597.27185Q357.3819 597.6696 358.28787 598.57556Q359.35956 599.6473 359.79047 600.52014Q360.23242 601.3819 360.15506 602.1885Q360.07773 602.9729 359.40378 603.64685Q358.53094 604.5197 357.39294 604.3982Q356.045 604.24347 354.3325 602.53094ZM355.09485 601.7686Q356.5864 603.2602 357.43713 603.4038Q358.28787 603.5474 358.7961 603.0392Q359.31537 602.5199 359.1607 601.68024Q359.01706 600.82947 357.5255 599.33795Q356.02292 597.8353 355.18323 597.70276Q354.34354 597.5481 353.8132 598.07837Q353.30496 598.5866 353.4265 599.3269Q353.59222 600.266 355.09485 601.7686ZM365.48047 595.935L366.1986 596.65314L362.17694 600.6748Q361.91177 600.40967 361.74606 600.06714Q361.49194 599.50366 361.42566 598.7745Q361.37042 598.0342 361.49194 596.8741Q361.66873 595.06213 361.53613 594.24457Q361.4146 593.4159 360.99475 592.9961Q360.55283 592.55414 359.9341 592.57623Q359.30432 592.5873 358.7961 593.0955Q358.25473 593.6369 358.25473 594.2777Q358.25473 594.9185 358.8182 595.5041L357.97852 596.1891Q357.19406 595.24994 357.26035 594.2998Q357.32663 593.3275 358.19946 592.4547Q359.0723 591.58185 360.06668 591.55975Q361.06104 591.53766 361.7792 592.2558Q362.1438 592.6204 362.34268 593.12866Q362.54156 593.6148 362.58575 594.3661Q362.62994 595.0953 362.50842 596.56476Q362.39792 597.8022 362.40897 598.211Q362.42 598.59766 362.49734 598.9181L365.48047 595.935ZM364.232 592.6315Q363.14923 591.5487 362.71832 590.67584Q362.2764 589.792 362.35373 589.00757Q362.4421 588.21204 363.10504 587.54913Q363.59116 587.063 364.15463 586.8973Q364.72916 586.7205 365.34787 586.8531Q365.95557 586.9746 366.61847 587.3724Q367.28137 587.7701 368.18735 588.6761Q369.25906 589.7478 369.68997 590.6206Q370.1319 591.4824 370.05457 592.28894Q369.97723 593.0734 369.30325 593.7474Q368.43042 594.6202 367.29242 594.49866Q365.94452 594.344 364.232 592.6315ZM364.99432 591.86914Q366.48587 593.36066 367.3366 593.5043Q368.18735 593.64795 368.6956 593.1397Q369.21487 592.6204 369.06018 591.7807Q368.91656 590.93 367.42502 589.4384Q365.9224 587.93585 365.08273 587.8032Q364.24304 587.64856 363.7127 588.1789Q363.20447 588.68713 363.326 589.42737Q363.49173 590.3665 364.99432 591.86914ZM370.2645 588.9412L369.51318 588.18994L371.81128 585.89185L372.5626 586.6431L370.2645 588.9412ZM372.01016 584.8533Q370.9274 583.7705 370.4965 582.8977Q370.05457 582.0138 370.1319 581.2294Q370.2203 580.4339 370.8832 579.77094Q371.36935 579.28485 371.9328 579.1191Q372.50735 578.9423 373.12607 579.0749Q373.73373 579.1964 374.39664 579.5942Q375.05954 579.99194 375.96555 580.8979Q377.03723 581.9696 377.46814 582.84247Q377.91006 583.7042 377.83273 584.5108Q377.7554 585.2952 377.08145 585.9692Q376.2086 586.84204 375.0706 586.7205Q373.7227 586.5658 372.01016 584.8533ZM372.7725 584.09094Q374.26407 585.5825 375.1148 585.72614Q375.96555 585.86975 376.47375 585.3615Q376.99304 584.8422 376.83838 584.00256Q376.69473 583.1518 375.2032 581.6603Q373.7006 580.15765 372.8609 580.0251Q372.0212 579.8704 371.49088 580.40076Q370.98264 580.90894 371.1042 581.64923Q371.2699 582.5883 372.7725 584.09094ZM374.71704 577.5723L373.9989 576.8541L377.93216 572.92084L378.51776 573.5064Q378.56195 574.6997 379.01492 576.3017Q379.46793 577.88165 380.24133 579.2738Q380.77164 580.2681 381.62238 581.2294L380.849 582.00275Q380.14188 581.27356 379.3906 579.99194Q378.65033 578.6993 378.20837 577.26294Q377.7775 575.81555 377.70016 574.5892L374.71704 577.5723ZM382.9924 576.2133L382.24112 575.46204L384.5392 573.16394L385.2905 573.9152L382.9924 576.2133ZM390.53857 572.3132L389.7983 573.05347L385.04742 568.30255Q385.02533 568.8329 384.84857 569.54Q384.67178 570.22504 384.4508 570.6891L383.73267 569.9709Q384.05307 569.0539 384.1083 568.181Q384.16354 567.28613 383.9647 566.6895L384.43976 566.2144L390.53857 572.3132ZM391.96384 561.71765L391.2788 562.5131Q390.73743 562.17065 390.3618 562.14856Q389.73203 562.1375 389.29007 562.5794Q388.93652 562.933 388.8592 563.4081Q388.78183 564.01575 389.0691 564.72284Q389.35635 565.40784 390.2513 566.3249Q390.10767 565.65094 390.2955 565.06537Q390.49435 564.46875 390.92526 564.03784Q391.66553 563.2976 392.7372 563.33075Q393.81998 563.35284 394.68176 564.2146Q395.2563 564.7891 395.49936 565.5404Q395.74243 566.26965 395.5767 566.9657Q395.39993 567.6507 394.85855 568.1921Q393.9194 569.1312 392.64883 569.0318Q391.37827 568.9323 389.80936 567.36346Q388.0416 565.5957 387.89795 564.1483Q387.76538 562.8888 388.7266 561.92755Q389.44476 561.2094 390.30655 561.1652Q391.16833 561.09894 391.96384 561.71765ZM391.54398 567.3745Q391.93066 567.76117 392.4389 567.9601Q392.94714 568.13684 393.42224 568.0374Q393.90836 567.92694 394.23984 567.59546Q394.70386 567.1314 394.67072 566.41327Q394.62653 565.6841 393.97467 565.0322Q393.34488 564.40247 392.6378 564.3803Q391.94174 564.34717 391.4335 564.8554Q390.92526 565.36365 390.9363 566.0818Q390.9584 566.78894 391.54398 567.3745Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M381.6559 605.8345L382.37408 606.5526L378.35242 610.5743Q378.08725 610.30914 377.9215 609.9666Q377.6674 609.40314 377.6011 608.67395Q377.54587 607.9337 377.6674 606.7736Q377.84418 604.9616 377.71158 604.14404Q377.59006 603.3154 377.17023 602.89557Q376.72827 602.4536 376.10956 602.4757Q375.4798 602.48676 374.97156 602.995Q374.43018 603.5364 374.43018 604.1772Q374.43018 604.818 374.99365 605.40356L374.15396 606.08856Q373.3695 605.1495 373.4358 604.1993Q373.5021 603.227 374.37494 602.3542Q375.24777 601.4813 376.24213 601.4592Q377.2365 601.43713 377.95465 602.15533Q378.31927 602.5199 378.51813 603.02814Q378.717 603.5143 378.7612 604.26556Q378.8054 604.9948 378.68387 606.46423Q378.57336 607.70166 378.58444 608.1105Q378.5955 608.4972 378.67282 608.81757L381.6559 605.8345ZM380.40744 602.53094Q379.32468 601.4482 378.8938 600.5754Q378.45184 599.69147 378.52917 598.90704Q378.61758 598.1115 379.2805 597.4486Q379.76663 596.96246 380.3301 596.79675Q380.90463 596.62 381.52335 596.75256Q382.131 596.8741 382.7939 597.27185Q383.45685 597.6696 384.36282 598.57556Q385.4345 599.6473 385.86542 600.52014Q386.30737 601.3819 386.23 602.1885Q386.15268 602.9729 385.47873 603.64685Q384.6059 604.5197 383.4679 604.39813Q382.11996 604.24347 380.40744 602.53094ZM381.1698 601.7686Q382.66135 603.2602 383.5121 603.4038Q384.36282 603.5474 384.87106 603.0392Q385.39032 602.5199 385.23566 601.68024Q385.092 600.82947 383.60046 599.33795Q382.09787 597.8353 381.25818 597.70276Q380.4185 597.5481 379.88815 598.07837Q379.3799 598.5866 379.50146 599.3269Q379.66718 600.266 381.1698 601.7686ZM391.55542 595.935L392.27356 596.65314L388.2519 600.6748Q387.98672 600.40967 387.821 600.06714Q387.5669 599.50366 387.5006 598.7745Q387.44537 598.0342 387.5669 596.8741Q387.74368 595.06213 387.61108 594.24457Q387.48956 593.4159 387.0697 592.9961Q386.62778 592.55414 386.00903 592.57623Q385.37927 592.5873 384.87106 593.0955Q384.32968 593.6369 384.32968 594.2777Q384.32968 594.9185 384.89316 595.5041L384.05347 596.1891Q383.269 595.24994 383.3353 594.2998Q383.40158 593.3275 384.2744 592.4547Q385.14725 591.58185 386.14163 591.55975Q387.136 591.53766 387.85416 592.2558Q388.21875 592.6204 388.41763 593.12866Q388.61652 593.6148 388.6607 594.3661Q388.7049 595.0953 388.58337 596.56476Q388.47287 597.8022 388.48392 598.211Q388.49496 598.59766 388.5723 598.9181L391.55542 595.935ZM390.30695 592.6315Q389.22418 591.5487 388.79327 590.67584Q388.35135 589.792 388.42868 589.00757Q388.51706 588.21204 389.18 587.54913Q389.6661 587.063 390.22958 586.8973Q390.8041 586.7205 391.42282 586.8531Q392.03052 586.9746 392.69342 587.3724Q393.35632 587.7701 394.2623 588.6761Q395.334 589.7478 395.76492 590.6206Q396.20685 591.4824 396.12952 592.28894Q396.0522 593.0734 395.3782 593.7474Q394.50537 594.6202 393.36737 594.49866Q392.01947 594.344 390.30695 592.6315ZM391.06927 591.86914Q392.56082 593.36066 393.41156 593.5043Q394.2623 593.64795 394.77054 593.1397Q395.28983 592.6204 395.13513 591.7807Q394.99152 590.93 393.49997 589.4384Q391.99734 587.93585 391.15768 587.8032Q390.318 587.64856 389.78766 588.1789Q389.27942 588.68713 389.40094 589.42737Q389.56668 590.3665 391.06927 591.86914ZM396.33945 588.9412L395.58813 588.18994L397.88623 585.89185L398.63754 586.6431L396.33945 588.9412ZM398.0851 584.8533Q397.00235 583.7705 396.57144 582.8977Q396.12952 582.0138 396.20685 581.2294Q396.29526 580.4339 396.95816 579.77094Q397.4443 579.28485 398.00775 579.1191Q398.5823 578.9423 399.20102 579.0749Q399.8087 579.1964 400.4716 579.5942Q401.1345 579.99194 402.0405 580.8979Q403.11218 581.9696 403.5431 582.84247Q403.98502 583.7042 403.90768 584.5108Q403.83035 585.2952 403.1564 585.9692Q402.28354 586.84204 401.14554 586.7205Q399.79764 586.5658 398.0851 584.8533ZM398.84744 584.09094Q400.33902 585.5825 401.18976 585.72614Q402.0405 585.86975 402.5487 585.3615Q403.068 584.8422 402.91333 584.00256Q402.76968 583.1518 401.27814 581.6603Q399.77554 580.15765 398.93585 580.0251Q398.09616 579.8704 397.56583 580.4007Q397.0576 580.90894 397.17914 581.64923Q397.34485 582.5883 398.84744 584.09094ZM400.792 577.5723L400.07385 576.8541L404.0071 572.92084L404.5927 573.5064Q404.6369 574.6997 405.08987 576.3017Q405.54288 577.88165 406.31628 579.2738Q406.8466 580.2681 407.69733 581.2294L406.92395 582.00275Q406.21683 581.27356 405.46555 579.99194Q404.72528 578.6993 404.28333 577.26294Q403.85245 575.81555 403.77512 574.5892L400.792 577.5723ZM409.06735 576.2133L408.31607 575.46204L410.61417 573.16394L411.36545 573.9152L409.06735 576.2133ZM412.20514 573.51746L412.857 572.66675Q413.6083 573.175 414.20493 573.1529Q414.7905 573.11975 415.23245 572.6778Q415.7628 572.14746 415.7628 571.4183Q415.7628 570.6891 415.2214 570.1477Q414.71317 569.63947 414.0392 569.6505Q413.36523 569.63947 412.84595 570.15875Q412.63605 570.36865 412.40402 570.77747L411.8295 570.0261Q411.91788 569.95984 411.96207 569.91565Q412.43716 569.44055 412.56973 568.82184Q412.70233 568.181 412.18304 567.66174Q411.77426 567.2529 411.23288 567.26404Q410.68045 567.26404 410.2385 567.70593Q409.80762 568.13684 409.78552 568.71136Q409.77448 569.27484 410.2385 569.89355L409.3546 570.51227Q408.74695 569.63947 408.82428 568.7445Q408.8906 567.83856 409.60873 567.12036Q410.10593 566.62317 410.74673 566.4243Q411.3765 566.2144 411.96207 566.35803Q412.54764 566.50165 412.9675 566.9215Q413.3542 567.3082 413.47574 567.8496Q413.5862 568.3799 413.36523 568.97656Q414.01712 568.56775 414.71317 568.6672Q415.39816 568.75555 415.99478 569.3522Q416.79028 570.1477 416.75714 571.2857Q416.73505 572.41266 415.85117 573.2965Q415.05566 574.092 414.05026 574.1473Q413.03378 574.19147 412.20514 573.51746ZM415.7628 567.1756Q414.68002 566.09283 414.2491 565.22003Q413.8072 564.3361 413.88452 563.5517Q413.9729 562.7562 414.63583 562.09326Q415.12195 561.6072 415.68542 561.4414Q416.25995 561.26465 416.8787 561.3972Q417.48636 561.51874 418.14926 561.9165Q418.81216 562.3143 419.71814 563.2202Q420.78986 564.29193 421.22076 565.1648Q421.6627 566.02655 421.58536 566.8331Q421.50803 567.61755 420.83405 568.2915Q419.9612 569.16437 418.8232 569.04285Q417.4753 568.8881 415.7628 567.1756ZM416.52512 566.41327Q418.0167 567.90485 418.86743 568.04846Q419.71814 568.1921 420.22638 567.68384Q420.74567 567.16455 420.591 566.3249Q420.44736 565.4741 418.9558 563.9826Q417.45322 562.48 416.61353 562.3474Q415.77383 562.19275 415.2435 562.7231Q414.73526 563.23126 414.85678 563.97156Q415.02252 564.91064 416.52512 566.41327Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M407.73087 605.8345L408.44904 606.5526L404.42737 610.5743Q404.1622 610.30914 403.99646 609.9666Q403.74234 609.40314 403.67606 608.67395Q403.62082 607.9337 403.74234 606.7736Q403.91913 604.9616 403.78653 604.14404Q403.665 603.3154 403.24518 602.89557Q402.80322 602.4536 402.1845 602.4757Q401.55475 602.48676 401.0465 602.995Q400.50513 603.5364 400.50513 604.1772Q400.50513 604.818 401.0686 605.40356L400.2289 606.08856Q399.44446 605.1495 399.51074 604.1993Q399.57706 603.227 400.4499 602.3542Q401.32272 601.4813 402.31708 601.4592Q403.31146 601.43713 404.0296 602.15533Q404.39423 602.5199 404.59308 603.02814Q404.79196 603.5143 404.83615 604.26556Q404.88034 604.9948 404.75882 606.46423Q404.64832 607.70166 404.6594 608.1105Q404.67044 608.4972 404.74777 608.81757L407.73087 605.8345ZM406.4824 602.53094Q405.39963 601.4482 404.96875 600.5754Q404.5268 599.69147 404.60413 598.90704Q404.69254 598.1115 405.35544 597.4486Q405.84158 596.96246 406.40506 596.79675Q406.97958 596.62 407.5983 596.75256Q408.20596 596.8741 408.86887 597.27185Q409.5318 597.6696 410.43777 598.57556Q411.50946 599.6473 411.94037 600.52014Q412.38232 601.3819 412.30496 602.1885Q412.22763 602.9729 411.55368 603.64685Q410.68085 604.5197 409.54285 604.39813Q408.19492 604.24347 406.4824 602.53094ZM407.24475 601.7686Q408.7363 603.26013 409.58704 603.4038Q410.43777 603.5474 410.946 603.0392Q411.46527 602.5199 411.3106 601.68024Q411.16696 600.82947 409.6754 599.33795Q408.17282 597.8353 407.33313 597.70276Q406.49344 597.5481 405.9631 598.07837Q405.45486 598.5866 405.57642 599.3269Q405.74213 600.266 407.24475 601.7686ZM417.63037 595.935L418.3485 596.65314L414.32684 600.6748Q414.06168 600.40967 413.89597 600.06714Q413.64185 599.50366 413.57556 598.7745Q413.52032 598.0342 413.64185 596.8741Q413.81863 595.06213 413.68604 594.24457Q413.5645 593.4159 413.14465 592.9961Q412.70273 592.55414 412.08398 592.57623Q411.45422 592.5873 410.946 593.0955Q410.40463 593.6369 410.40463 594.2777Q410.40463 594.9185 410.9681 595.5041L410.12842 596.1891Q409.34396 595.24994 409.41025 594.2998Q409.47653 593.3275 410.34937 592.4547Q411.2222 591.58185 412.21658 591.55975Q413.21094 591.53766 413.9291 592.2558Q414.2937 592.6204 414.49258 593.12866Q414.69147 593.6148 414.73566 594.3661Q414.77985 595.0953 414.65833 596.56476Q414.54782 597.8022 414.55887 598.211Q414.56992 598.59766 414.64725 598.9181L417.63037 595.935ZM416.3819 592.6315Q415.29913 591.5487 414.86823 590.67584Q414.4263 589.792 414.50363 589.00757Q414.592 588.21204 415.25494 587.54913Q415.74106 587.063 416.30453 586.8973Q416.87906 586.7205 417.49777 586.8531Q418.10547 586.9746 418.76837 587.3724Q419.43127 587.7701 420.33725 588.6761Q421.40897 589.7478 421.83987 590.6206Q422.2818 591.4824 422.20447 592.28894Q422.12714 593.0734 421.45316 593.7474Q420.58032 594.6202 419.44232 594.49866Q418.09442 594.344 416.3819 592.6315ZM417.14423 591.86914Q418.63577 593.36066 419.4865 593.5043Q420.33725 593.64795 420.8455 593.1397Q421.36478 592.6204 421.21008 591.7807Q421.06647 590.93 419.57492 589.4384Q418.0723 587.93585 417.23264 587.8032Q416.39294 587.64856 415.8626 588.1789Q415.35437 588.68713 415.4759 589.42737Q415.64163 590.3665 417.14423 591.86914ZM422.4144 588.9412L421.6631 588.18994L423.96118 585.89185L424.7125 586.6431L422.4144 588.9412ZM424.16006 584.8533Q423.0773 583.7705 422.6464 582.8977Q422.20447 582.0138 422.2818 581.2294Q422.37018 580.4339 423.0331 579.77094Q423.51926 579.28485 424.0827 579.1191Q424.65726 578.9423 425.27597 579.0749Q425.88364 579.1964 426.54654 579.5942Q427.20944 579.99194 428.11545 580.8979Q429.18713 581.9696 429.61804 582.84247Q430.05997 583.7042 429.98264 584.5108Q429.9053 585.2952 429.23135 585.9692Q428.3585 586.84204 427.2205 586.7205Q425.8726 586.5658 424.16006 584.8533ZM424.9224 584.09094Q426.41397 585.5825 427.2647 585.72614Q428.11545 585.86975 428.62366 585.3615Q429.14294 584.8422 428.98828 584.00256Q428.84464 583.1518 427.3531 581.6603Q425.8505 580.15765 425.0108 580.0251Q424.1711 579.8704 423.64078 580.4007Q423.13254 580.90894 423.2541 581.64923Q423.4198 582.5883 424.9224 584.09094ZM429.96054 578.4562Q429.31973 578.74347 428.77835 578.6661Q428.23697 578.56665 427.8061 578.1358Q427.14316 577.47284 427.16525 576.5448Q427.1984 575.60565 427.98285 574.8212Q428.77835 574.0257 429.72852 574.0036Q430.6787 573.9815 431.3416 574.6444Q431.76144 575.0643 431.84985 575.5946Q431.93823 576.12494 431.66202 576.7547Q432.40228 576.368 433.09833 576.48956Q433.79437 576.6111 434.35785 577.17456Q435.13126 577.94794 435.10916 579.0307Q435.0981 580.1024 434.19214 581.0084Q433.2972 581.9033 432.21445 581.9254Q431.13168 581.9475 430.33618 581.15204Q429.73956 580.5554 429.64014 579.8594Q429.55176 579.1522 429.96054 578.4562ZM428.53528 577.3403Q428.9662 577.7712 429.51862 577.7712Q430.08206 577.76013 430.52402 577.3182Q430.95493 576.88727 430.96597 576.3459Q430.96597 575.79346 430.5682 575.39575Q430.15942 574.98694 429.59595 574.998Q429.02142 574.998 428.60156 575.41785Q428.1707 575.84875 428.15964 576.41223Q428.15964 576.9646 428.53528 577.3403ZM431.1096 580.3786Q431.43 580.69904 431.87195 580.8537Q432.32492 580.9974 432.78897 580.86475Q433.25302 580.7322 433.59552 580.38965Q434.12585 579.8594 434.12585 579.1743Q434.1369 578.4783 433.60657 577.94794Q433.0652 577.40656 432.35806 577.40656Q431.65097 577.40656 431.1096 577.94794Q430.57925 578.4783 430.5903 579.1743Q430.5903 579.8594 431.1096 580.3786ZM435.1423 576.2133L434.39102 575.46204L436.68912 573.16394L437.4404 573.9152L435.1423 576.2133ZM436.88797 572.12537Q435.80524 571.0426 435.37433 570.1698Q434.93237 569.2859 435.00974 568.50146Q435.0981 567.70593 435.76102 567.043Q436.24716 566.5569 436.81064 566.3912Q437.38516 566.2144 438.00388 566.347Q438.61154 566.4685 439.27448 566.8663Q439.93738 567.26404 440.84335 568.17Q441.91507 569.2417 442.34595 570.1145Q442.7879 570.9763 442.71057 571.78284Q442.6332 572.5673 441.95926 573.2413Q441.08643 574.1141 439.94843 573.99255Q438.6005 573.8379 436.88797 572.12537ZM437.65033 571.36304Q439.14188 572.85455 439.9926 572.9982Q440.84335 573.14185 441.3516 572.6336Q441.87088 572.1143 441.7162 571.27466Q441.57257 570.4239 440.081 568.9323Q438.5784 567.42975 437.7387 567.2972Q436.89902 567.14246 436.36868 567.6728Q435.86047 568.181 435.982 568.92126Q436.14774 569.8604 437.65033 571.36304ZM443.2409 568.5788L443.95905 567.728Q444.62195 568.2142 445.21857 568.1921Q445.82626 568.15894 446.27924 567.70593Q446.80957 567.1756 446.77643 566.3912Q446.7433 565.60675 446.08035 564.9438Q445.43954 564.303 444.71036 564.303Q443.98114 564.2809 443.39557 564.86646Q443.04202 565.22003 442.90942 565.6841Q442.7879 566.1371 442.87628 566.5569L442.09186 567.16455L439.56174 563.4633L442.58902 560.43604L443.29614 561.1431L440.86545 563.5738L442.18024 565.52936Q442.3349 564.6013 442.93152 564.0047Q443.72702 563.20917 444.82083 563.2202Q445.9257 563.2202 446.79852 564.0931Q447.61612 564.91064 447.7487 565.9934Q447.89233 567.3082 446.8869 568.3136Q446.05826 569.1423 445.0639 569.20856Q444.08057 569.2638 443.2409 568.5788Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M433.80582 605.8345L434.524 606.5526L430.50232 610.5743Q430.23715 610.30914 430.0714 609.9666Q429.8173 609.40314 429.751 608.67395Q429.69577 607.9337 429.8173 606.7736Q429.99408 604.9616 429.86148 604.14404Q429.73996 603.3154 429.32013 602.89557Q428.87817 602.4536 428.25946 602.4757Q427.6297 602.48676 427.12146 602.995Q426.58008 603.5364 426.58008 604.1772Q426.58008 604.818 427.14355 605.40356L426.30386 606.08856Q425.5194 605.1495 425.5857 604.1993Q425.652 603.227 426.52484 602.3542Q427.39767 601.4813 428.39203 601.4592Q429.3864 601.43713 430.10455 602.15533Q430.46918 602.5199 430.66803 603.02814Q430.8669 603.5143 430.9111 604.26556Q430.9553 604.9948 430.83377 606.46423Q430.72327 607.70166 430.7343 608.1105Q430.7454 608.4972 430.82272 608.81757L433.80582 605.8345ZM432.55734 602.53094Q431.47458 601.4482 431.0437 600.5754Q430.60175 599.69147 430.67908 598.90704Q430.7675 598.1115 431.4304 597.4486Q431.91653 596.96246 432.48 596.79675Q433.05453 596.62 433.67325 596.75256Q434.2809 596.8741 434.94382 597.27185Q435.60675 597.6696 436.51273 598.57556Q437.5844 599.6473 438.01532 600.52014Q438.45728 601.3819 438.3799 602.1885Q438.30258 602.9729 437.62863 603.64685Q436.7558 604.5197 435.6178 604.39813Q434.26987 604.24347 432.55734 602.53094ZM433.3197 601.7686Q434.81125 603.26013 435.662 603.4038Q436.51273 603.5474 437.02097 603.0392Q437.54022 602.5199 437.38556 601.68024Q437.2419 600.82947 435.75037 599.33795Q434.24777 597.8353 433.40808 597.70276Q432.5684 597.54803 432.03806 598.07837Q431.52982 598.5866 431.65137 599.3269Q431.81708 600.266 433.3197 601.7686ZM443.70532 595.935L444.42346 596.65314L440.4018 600.6748Q440.13663 600.40967 439.97092 600.06714Q439.7168 599.50366 439.6505 598.7745Q439.59528 598.0342 439.7168 596.8741Q439.8936 595.06213 439.761 594.24457Q439.63947 593.4159 439.2196 592.9961Q438.77768 592.55414 438.15894 592.57623Q437.52917 592.5873 437.02097 593.0955Q436.47958 593.6369 436.47958 594.2777Q436.47958 594.9185 437.04306 595.5041L436.20337 596.1891Q435.4189 595.24994 435.4852 594.2998Q435.55148 593.3275 436.42432 592.4547Q437.29715 591.58185 438.29153 591.55975Q439.2859 591.53766 440.00406 592.2558Q440.36865 592.6204 440.56754 593.12866Q440.76642 593.6148 440.8106 594.3661Q440.8548 595.0953 440.73325 596.56476Q440.62277 597.8022 440.63382 598.211Q440.64487 598.59766 440.7222 598.9181L443.70532 595.935ZM442.45685 592.6315Q441.37408 591.5487 440.94318 590.67584Q440.50125 589.792 440.57858 589.00757Q440.66696 588.21204 441.3299 587.54913Q441.816 587.063 442.3795 586.8973Q442.954 586.7205 443.57272 586.8531Q444.18042 586.9746 444.84332 587.3724Q445.50623 587.7701 446.4122 588.6761Q447.48392 589.7478 447.91483 590.6206Q448.35675 591.4824 448.27942 592.28894Q448.2021 593.0734 447.5281 593.7474Q446.65527 594.6202 445.51727 594.49866Q444.16937 594.344 442.45685 592.6315ZM443.21918 591.86914Q444.71072 593.36066 445.56146 593.5043Q446.4122 593.64795 446.92044 593.1397Q447.43973 592.6204 447.28503 591.7807Q447.14142 590.93 445.64987 589.4384Q444.14725 587.93585 443.3076 587.8032Q442.4679 587.64856 441.93756 588.1789Q441.42932 588.68713 441.55084 589.42737Q441.71658 590.3665 443.21918 591.86914ZM448.48935 588.9412L447.73804 588.18994L450.03613 585.89185L450.78745 586.6431L448.48935 588.9412ZM450.23502 584.8533Q449.15225 583.7705 448.72134 582.8977Q448.27942 582.0138 448.35675 581.2294Q448.44513 580.4339 449.10806 579.77094Q449.5942 579.28485 450.15765 579.1191Q450.73218 578.9423 451.35092 579.0749Q451.9586 579.1964 452.6215 579.5942Q453.2844 579.99194 454.1904 580.8979Q455.2621 581.9696 455.693 582.84247Q456.13492 583.7042 456.0576 584.5108Q455.98026 585.2952 455.3063 585.9692Q454.43344 586.84204 453.29544 586.7205Q451.94754 586.5658 450.23502 584.8533ZM450.99734 584.09094Q452.48892 585.5825 453.33966 585.72614Q454.1904 585.86975 454.6986 585.3615Q455.2179 584.8422 455.06323 584.00256Q454.9196 583.1518 453.42804 581.6603Q451.92545 580.15765 451.08575 580.0251Q450.24606 579.8704 449.71573 580.4007Q449.2075 580.90894 449.32904 581.64923Q449.49475 582.5883 450.99734 584.09094ZM456.0355 578.4562Q455.39468 578.74347 454.8533 578.6661Q454.31192 578.56665 453.88104 578.1358Q453.2181 577.47284 453.2402 576.5448Q453.27335 575.60565 454.0578 574.8212Q454.8533 574.0257 455.80347 574.0036Q456.75366 573.9815 457.41656 574.6444Q457.8364 575.0643 457.9248 575.5946Q458.01318 576.12494 457.73697 576.7547Q458.47723 576.368 459.17328 576.48956Q459.86932 576.6111 460.4328 577.17456Q461.2062 577.94794 461.1841 579.0307Q461.17307 580.1024 460.2671 581.0084Q459.37216 581.9033 458.2894 581.9254Q457.20663 581.9475 456.41113 581.15204Q455.8145 580.5554 455.7151 579.8594Q455.6267 579.1522 456.0355 578.4562ZM454.61023 577.3403Q455.04114 577.7712 455.59357 577.7712Q456.157 577.76013 456.59897 577.3182Q457.02988 576.88727 457.04092 576.3459Q457.04092 575.79346 456.64316 575.39575Q456.23438 574.98694 455.6709 574.998Q455.09637 574.998 454.6765 575.41785Q454.24564 575.84875 454.2346 576.41223Q454.2346 576.9646 454.61023 577.3403ZM457.18454 580.3786Q457.50494 580.69904 457.9469 580.8537Q458.39987 580.9974 458.86392 580.86475Q459.32797 580.7322 459.67047 580.38965Q460.2008 579.8594 460.2008 579.1743Q460.21185 578.4783 459.68152 577.94794Q459.14014 577.40656 458.433 577.40656Q457.72592 577.40656 457.18454 577.94794Q456.6542 578.4783 456.66525 579.1743Q456.66525 579.8594 457.18454 580.3786ZM461.21725 576.2133L460.46597 575.46204L462.76407 573.16394L463.51535 573.9152L461.21725 576.2133ZM468.76343 572.3132L468.02316 573.05347L463.27228 568.30255Q463.25018 568.8329 463.07343 569.54Q462.89664 570.22504 462.67566 570.689L461.95752 569.9709Q462.27792 569.0539 462.33316 568.181Q462.3884 567.28613 462.18954 566.68945L462.6646 566.2144L468.76343 572.3132ZM469.61417 568.6561L470.26602 567.8717Q470.86264 568.2915 471.3488 568.2694Q471.8349 568.2252 472.23267 567.82745Q472.57516 567.485 472.6746 567.0762Q472.77405 566.64526 472.68564 566.22546Q472.5862 565.79456 472.25476 565.2421Q471.91226 564.67865 471.4482 564.2146Q471.39297 564.15936 471.29352 564.05994Q471.42612 564.63446 471.27142 565.2532Q471.1057 565.86084 470.6527 566.31384Q469.89038 567.0762 468.8297 567.0541Q467.758 567.02094 466.86307 566.12604Q465.935 565.19794 465.9129 564.0931Q465.90186 562.9772 466.71942 562.1596Q467.30502 561.57404 468.11154 561.40826Q468.92914 561.2315 469.77988 561.57404Q470.61957 561.90546 471.73547 563.02136Q472.89557 564.18146 473.33752 565.13165Q473.77945 566.0597 473.63583 566.93256Q473.4922 567.78326 472.82928 568.4462Q472.1111 569.16437 471.27142 569.23065Q470.4207 569.2859 469.61417 568.6561ZM469.97876 562.92194Q469.33795 562.2811 468.61978 562.248Q467.9127 562.2038 467.42654 562.6899Q466.92935 563.1871 466.9625 563.97156Q466.99564 564.7339 467.64752 565.38574Q468.22205 565.96027 468.9402 565.9713Q469.65836 565.98236 470.1666 565.4741Q470.68585 564.95483 470.6527 564.2588Q470.61957 563.56274 469.97876 562.92194Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M459.88077 605.8345L460.59894 606.5526L456.57727 610.5743Q456.3121 610.30914 456.14636 609.9666Q455.89224 609.40314 455.82596 608.67395Q455.77072 607.9337 455.89224 606.7736Q456.06903 604.9616 455.93643 604.14404Q455.8149 603.3154 455.39508 602.89557Q454.95312 602.4536 454.3344 602.4757Q453.70465 602.48676 453.1964 602.995Q452.65503 603.5364 452.65503 604.1772Q452.65503 604.818 453.2185 605.40356L452.3788 606.08856Q451.59436 605.1495 451.66064 604.1993Q451.72696 603.227 452.5998 602.3542Q453.47263 601.4813 454.46698 601.4592Q455.46136 601.43713 456.1795 602.15533Q456.54413 602.5199 456.74298 603.02814Q456.94186 603.5143 456.98605 604.26556Q457.03024 604.9948 456.90872 606.46423Q456.79822 607.70166 456.80927 608.1105Q456.82034 608.4972 456.89767 608.81757L459.88077 605.8345ZM458.6323 602.53094Q457.54953 601.4482 457.11865 600.5754Q456.6767 599.69147 456.75403 598.90704Q456.84244 598.1115 457.50534 597.4486Q457.9915 596.96246 458.55496 596.79675Q459.1295 596.62 459.7482 596.75256Q460.35587 596.8741 461.01877 597.27185Q461.6817 597.6696 462.58768 598.57556Q463.65936 599.6473 464.09027 600.52014Q464.53223 601.3819 464.45486 602.1885Q464.37753 602.9729 463.70358 603.64685Q462.83075 604.5197 461.69275 604.39813Q460.34482 604.24347 458.6323 602.53094ZM459.39465 601.7686Q460.8862 603.26013 461.73694 603.4038Q462.58768 603.5474 463.0959 603.0392Q463.61517 602.5199 463.4605 601.68024Q463.31686 600.82947 461.82532 599.33795Q460.32272 597.8353 459.48303 597.70276Q458.64334 597.54803 458.113 598.07837Q457.60477 598.5866 457.72632 599.3269Q457.89203 600.266 459.39465 601.7686ZM469.78027 595.935L470.4984 596.65314L466.47675 600.6748Q466.21158 600.40967 466.04587 600.06714Q465.79175 599.50366 465.72546 598.7745Q465.67023 598.0342 465.79175 596.8741Q465.96854 595.06213 465.83594 594.24457Q465.71442 593.4159 465.29456 592.9961Q464.85263 592.55414 464.2339 592.57623Q463.60413 592.5873 463.0959 593.0955Q462.55453 593.6369 462.55453 594.2777Q462.55453 594.9185 463.118 595.5041L462.27832 596.1891Q461.49387 595.24994 461.56015 594.2998Q461.62643 593.3275 462.49927 592.4547Q463.3721 591.58185 464.3665 591.55975Q465.36084 591.53766 466.079 592.2558Q466.4436 592.6204 466.6425 593.12866Q466.84137 593.6148 466.88556 594.3661Q466.92975 595.0953 466.8082 596.56476Q466.69772 597.8022 466.70877 598.211Q466.71982 598.59766 466.79715 598.9181L469.78027 595.935ZM468.5318 592.6315Q467.44904 591.5487 467.01813 590.67584Q466.5762 589.792 466.65353 589.00757Q466.7419 588.21204 467.40485 587.54913Q467.89096 587.063 468.45444 586.8973Q469.02896 586.7205 469.64767 586.8531Q470.25537 586.9746 470.91827 587.3724Q471.58118 587.7701 472.48715 588.6761Q473.55887 589.7478 473.98978 590.6206Q474.4317 591.4824 474.35437 592.28894Q474.27704 593.0734 473.60306 593.7474Q472.73022 594.6202 471.59222 594.49866Q470.24432 594.344 468.5318 592.6315ZM469.29413 591.86914Q470.78568 593.36066 471.6364 593.5043Q472.48715 593.64795 472.9954 593.1397Q473.51468 592.6204 473.36 591.7807Q473.21637 590.93 471.72482 589.4384Q470.2222 587.93585 469.38254 587.8032Q468.54285 587.64856 468.0125 588.1789Q467.50427 588.68713 467.6258 589.42737Q467.79153 590.3665 469.29413 591.86914ZM474.5643 588.9412L473.813 588.18994L476.11108 585.89185L476.8624 586.6431L474.5643 588.9412ZM476.30997 584.8533Q475.2272 583.7705 474.7963 582.8977Q474.35437 582.0138 474.4317 581.2294Q474.52008 580.4339 475.183 579.77094Q475.66916 579.28485 476.2326 579.1191Q476.80713 578.9423 477.42587 579.0749Q478.03354 579.1964 478.69644 579.5942Q479.35934 579.99194 480.26535 580.8979Q481.33704 581.9696 481.76794 582.84247Q482.20987 583.7042 482.13254 584.5108Q482.0552 585.2952 481.38126 585.9692Q480.5084 586.84204 479.3704 586.7205Q478.0225 586.5658 476.30997 584.8533ZM477.0723 584.09094Q478.56387 585.5825 479.4146 585.72614Q480.26535 585.86975 480.77356 585.3615Q481.29285 584.8422 481.13818 584.00256Q480.99454 583.1518 479.503 581.6603Q478.0004 580.15765 477.1607 580.0251Q476.321 579.8704 475.79068 580.4007Q475.28244 580.90894 475.404 581.64923Q475.5697 582.5883 477.0723 584.09094ZM482.11044 578.4562Q481.46964 578.74347 480.92825 578.6661Q480.38687 578.56665 479.956 578.1358Q479.29306 577.47284 479.31516 576.5448Q479.3483 575.60565 480.13275 574.8212Q480.92825 574.0257 481.87842 574.0036Q482.8286 573.9815 483.49152 574.6444Q483.91135 575.0643 483.99976 575.5946Q484.08813 576.12494 483.81192 576.7547Q484.5522 576.368 485.24823 576.48956Q485.94427 576.6111 486.50775 577.17456Q487.28116 577.94794 487.25906 579.0307Q487.24802 580.1024 486.34204 581.0084Q485.4471 581.9033 484.36435 581.9254Q483.2816 581.9475 482.48608 581.15204Q481.88947 580.5554 481.79004 579.8594Q481.70166 579.1522 482.11044 578.4562ZM480.68518 577.3403Q481.1161 577.7712 481.66852 577.7712Q482.23196 577.76013 482.67392 577.3182Q483.10483 576.88727 483.11588 576.3459Q483.11588 575.79346 482.7181 575.39575Q482.30933 574.98694 481.74585 574.998Q481.17133 574.998 480.75146 575.41785Q480.3206 575.84875 480.30954 576.41223Q480.30954 576.9646 480.68518 577.3403ZM483.2595 580.3786Q483.5799 580.69904 484.02185 580.8537Q484.47482 580.9974 484.93887 580.86475Q485.40292 580.7322 485.74542 580.38965Q486.27576 579.8594 486.27576 579.1743Q486.2868 578.4783 485.75647 577.94794Q485.2151 577.40656 484.50797 577.40656Q483.80087 577.40656 483.2595 577.94794Q482.72916 578.4783 482.7402 579.1743Q482.7402 579.8594 483.2595 580.3786ZM487.2922 576.2133L486.54092 575.46204L488.83902 573.16394L489.5903 573.9152L487.2922 576.2133ZM495.2361 570.4791L495.95428 571.19727L491.9326 575.21893Q491.66745 574.9538 491.5017 574.61127Q491.2476 574.0478 491.1813 573.3186Q491.12607 572.57837 491.2476 571.4183Q491.42438 569.6063 491.29178 568.7887Q491.17026 567.9601 490.7504 567.5402Q490.30847 567.09827 489.68976 567.12036Q489.05997 567.1314 488.55176 567.63965Q488.01038 568.181 488.01038 568.82184Q488.01038 569.46265 488.57385 570.0482L487.73416 570.7333Q486.9497 569.7941 487.016 568.84393Q487.08228 567.8717 487.95514 566.99884Q488.82797 566.12604 489.82233 566.1039Q490.8167 566.0818 491.53485 566.8Q491.89944 567.16455 492.09833 567.6728Q492.2972 568.15894 492.3414 568.9102Q492.3856 569.63947 492.26407 571.1089Q492.15356 572.3463 492.1646 572.7551Q492.17566 573.14185 492.25302 573.4622L495.2361 570.4791ZM491.74478 564.84436L491.0266 564.1262L494.9599 560.19293L495.54547 560.7785Q495.58966 561.97174 496.04266 563.5738Q496.49564 565.15375 497.26904 566.54584Q497.79938 567.5402 498.65012 568.50146L497.8767 569.27484Q497.16962 568.54565 496.4183 567.264Q495.67807 565.9713 495.2361 564.53503Q494.8052 563.08765 494.72787 561.86127L491.74478 564.84436Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M485.95572 605.8345L486.6739 606.5526L482.65222 610.5743Q482.38705 610.30914 482.2213 609.9666Q481.9672 609.40314 481.9009 608.67395Q481.84567 607.9337 481.9672 606.7736Q482.14398 604.9616 482.01138 604.14404Q481.88986 603.3154 481.47003 602.89557Q481.02808 602.4536 480.40936 602.4757Q479.7796 602.48676 479.27136 602.995Q478.72998 603.5364 478.72998 604.1772Q478.72998 604.818 479.29346 605.40356L478.45377 606.08856Q477.6693 605.1495 477.7356 604.1993Q477.8019 603.227 478.67474 602.3542Q479.54758 601.4813 480.54193 601.4592Q481.53632 601.43713 482.25446 602.15533Q482.61908 602.5199 482.81793 603.02814Q483.0168 603.5143 483.061 604.26556Q483.1052 604.9948 482.98367 606.46423Q482.87317 607.70166 482.88422 608.1105Q482.8953 608.4972 482.97263 608.81757L485.95572 605.8345ZM484.70724 602.53094Q483.62448 601.4482 483.1936 600.5754Q482.75165 599.69147 482.82898 598.90704Q482.9174 598.1115 483.5803 597.4486Q484.06644 596.96246 484.6299 596.79675Q485.20444 596.62 485.82315 596.75256Q486.43082 596.8741 487.09372 597.27185Q487.75665 597.6696 488.66263 598.57556Q489.7343 599.6473 490.16522 600.52014Q490.60718 601.3819 490.52982 602.1885Q490.45248 602.9729 489.77853 603.64685Q488.9057 604.5197 487.7677 604.39813Q486.41977 604.24347 484.70724 602.53094ZM485.4696 601.7686Q486.96115 603.26013 487.8119 603.4038Q488.66263 603.5474 489.17084 603.0392Q489.69012 602.5199 489.53546 601.68024Q489.3918 600.82947 487.90027 599.33795Q486.39767 597.8353 485.55798 597.70276Q484.7183 597.54803 484.18796 598.07837Q483.67972 598.5866 483.80127 599.3269Q483.96698 600.266 485.4696 601.7686ZM495.85522 595.935L496.57336 596.65314L492.5517 600.6748Q492.28653 600.4096 492.12082 600.06714Q491.8667 599.50366 491.8004 598.7745Q491.74518 598.0342 491.8667 596.8741Q492.0435 595.06213 491.9109 594.24457Q491.78937 593.4159 491.3695 592.9961Q490.92758 592.55414 490.30884 592.57623Q489.67908 592.5873 489.17084 593.0955Q488.6295 593.6369 488.6295 594.2777Q488.6295 594.9185 489.19296 595.5041L488.35327 596.1891Q487.56882 595.24994 487.6351 594.2998Q487.7014 593.3275 488.57422 592.4547Q489.44705 591.58185 490.44144 591.55975Q491.4358 591.53766 492.15396 592.2558Q492.51855 592.6204 492.71744 593.12866Q492.91632 593.6148 492.9605 594.3661Q493.0047 595.0953 492.88315 596.56476Q492.77267 597.8022 492.78372 598.211Q492.79477 598.59766 492.8721 598.9181L495.85522 595.935ZM494.60675 592.6315Q493.524 591.5487 493.09308 590.67584Q492.65115 589.792 492.7285 589.00757Q492.81686 588.21204 493.4798 587.54913Q493.9659 587.063 494.5294 586.8973Q495.1039 586.7205 495.72263 586.8531Q496.33032 586.9746 496.99323 587.3724Q497.65613 587.7701 498.5621 588.6761Q499.63382 589.7478 500.06473 590.6206Q500.50665 591.4824 500.42932 592.28894Q500.352 593.0734 499.678 593.7474Q498.80518 594.6202 497.66718 594.49866Q496.31927 594.344 494.60675 592.6315ZM495.36908 591.86914Q496.86063 593.36066 497.71136 593.5043Q498.5621 593.64795 499.07034 593.1397Q499.58963 592.6204 499.43494 591.7807Q499.29132 590.93 497.79977 589.4384Q496.29715 587.93585 495.45746 587.8032Q494.6178 587.64856 494.08746 588.1789Q493.57922 588.68713 493.70074 589.42737Q493.8665 590.3665 495.36908 591.86914ZM500.63925 588.9412L499.88794 588.18994L502.18604 585.89185L502.93735 586.6431L500.63925 588.9412ZM502.38492 584.8533Q501.30215 583.7705 500.87125 582.8977Q500.42932 582.0138 500.50665 581.2294Q500.59503 580.4339 501.25797 579.77094Q501.7441 579.28485 502.30756 579.1191Q502.88208 578.9423 503.50082 579.0749Q504.1085 579.1964 504.7714 579.5942Q505.4343 579.99194 506.3403 580.8979Q507.412 581.9696 507.8429 582.84247Q508.28482 583.7042 508.2075 584.5108Q508.13016 585.2952 507.45618 585.9692Q506.58334 586.84204 505.44534 586.7205Q504.09744 586.5658 502.38492 584.8533ZM503.14725 584.09094Q504.63882 585.5825 505.48956 585.72614Q506.3403 585.86975 506.8485 585.3615Q507.3678 584.8422 507.21313 584.00256Q507.0695 583.1518 505.57794 581.6603Q504.07535 580.15765 503.23566 580.0251Q502.39597 579.8704 501.86563 580.4007Q501.3574 580.90894 501.47894 581.64923Q501.64465 582.5883 503.14725 584.09094ZM509.03613 581.38403L509.688 580.5996Q510.2846 581.0195 510.77075 580.9974Q511.2569 580.9531 511.65463 580.5554Q511.99713 580.2129 512.09656 579.8041Q512.19604 579.3732 512.1076 578.95337Q512.0082 578.52246 511.67673 577.97003Q511.33423 577.40656 510.87018 576.9425Q510.81494 576.88727 510.7155 576.78784Q510.84808 577.36237 510.69342 577.9811Q510.52768 578.58875 510.0747 579.04175Q509.31235 579.8041 508.25168 579.782Q507.18 579.74884 506.28503 578.85394Q505.35696 577.92584 505.33487 576.821Q505.32382 575.7051 506.14142 574.8875Q506.727 574.30194 507.53354 574.1362Q508.35114 573.9594 509.20187 574.30194Q510.04156 574.63336 511.15744 575.74927Q512.31757 576.90936 512.7595 577.85956Q513.2014 578.78766 513.0578 579.66046Q512.9142 580.5112 512.2513 581.17413Q511.5331 581.8923 510.69342 581.95856Q509.84268 582.0138 509.03613 581.38403ZM509.40073 575.64984Q508.75992 575.00903 508.04178 574.9759Q507.33466 574.9317 506.8485 575.41785Q506.35135 575.91504 506.3845 576.69946Q506.41763 577.4618 507.0695 578.11365Q507.644 578.6882 508.36218 578.6992Q509.08032 578.7103 509.58856 578.2021Q510.10785 577.6828 510.0747 576.98676Q510.04156 576.29065 509.40073 575.64984ZM513.3672 576.2133L512.61584 575.46204L514.91394 573.16394L515.6653 573.9152L513.3672 576.2133ZM515.11285 572.12537Q514.0301 571.0426 513.5992 570.1698Q513.1572 569.2859 513.23456 568.50146Q513.323 567.70593 513.9859 567.043Q514.47205 566.5569 515.0355 566.3912Q515.61005 566.2144 516.22876 566.347Q516.8364 566.4685 517.4993 566.8663Q518.16223 567.264 519.06824 568.17Q520.1399 569.2417 520.5708 570.1145Q521.01276 570.9763 520.9354 571.78284Q520.8581 572.5673 520.18414 573.2413Q519.3113 574.1141 518.1733 573.99255Q516.8254 573.8379 515.11285 572.12537ZM515.8752 571.36304Q517.36676 572.85455 518.21747 572.9982Q519.06824 573.14185 519.5764 572.6336Q520.0957 572.1143 519.94104 571.27466Q519.7974 570.4239 518.30585 568.9323Q516.8033 567.42975 515.96356 567.2972Q515.1239 567.14246 514.59357 567.6728Q514.0853 568.181 514.20685 568.92126Q514.37256 569.8604 515.8752 571.36304ZM526.2608 565.52936L526.97894 566.24756L522.9573 570.2692Q522.69214 570.004 522.5264 569.66156Q522.2723 569.0981 522.206 568.36884Q522.15076 567.6286 522.2723 566.4685Q522.44904 564.65656 522.31647 563.8389Q522.19495 563.0103 521.7751 562.59045Q521.3332 562.14856 520.7144 562.17065Q520.08466 562.1817 519.5764 562.6899Q519.0351 563.23126 519.0351 563.87213Q519.0351 564.51294 519.5985 565.0985L518.75885 565.7835Q517.9744 564.84436 518.0407 563.8942Q518.107 562.92194 518.9798 562.0491Q519.85266 561.1763 520.84705 561.1542Q521.8414 561.1321 522.5596 561.8502Q522.92413 562.21484 523.12305 562.7231Q523.3219 563.20917 523.3661 563.9605Q523.4103 564.6897 523.28876 566.1592Q523.1783 567.3966 523.18933 567.80536Q523.2004 568.1921 523.2777 568.5125L526.2608 565.52936Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M512.0307 605.8345L512.74884 606.5526L508.72717 610.5743Q508.462 610.30914 508.29626 609.9666Q508.04214 609.40314 507.97586 608.67395Q507.92062 607.9337 508.04214 606.7736Q508.21893 604.9616 508.08633 604.14404Q507.9648 603.3154 507.54498 602.89557Q507.10303 602.4536 506.4843 602.4757Q505.85455 602.48676 505.3463 602.995Q504.80493 603.5364 504.80493 604.1772Q504.80493 604.818 505.3684 605.40356L504.52872 606.08856Q503.74426 605.1495 503.81055 604.1993Q503.87686 603.227 504.7497 602.3542Q505.62253 601.4813 506.61688 601.4592Q507.61127 601.43713 508.3294 602.15533Q508.69403 602.5199 508.89288 603.02814Q509.09177 603.5143 509.13596 604.26556Q509.18015 604.9948 509.05862 606.46423Q508.94812 607.70166 508.95917 608.1105Q508.97025 608.4972 509.04758 608.81757L512.0307 605.8345ZM510.7822 602.53094Q509.69943 601.4482 509.26855 600.5754Q508.8266 599.69147 508.90393 598.90704Q508.99234 598.1115 509.65524 597.4486Q510.1414 596.96246 510.70486 596.79675Q511.2794 596.62 511.8981 596.75256Q512.50574 596.8741 513.1687 597.27185Q513.8316 597.6696 514.73755 598.57556Q515.80927 599.6473 516.2402 600.52014Q516.6821 601.3819 516.6048 602.1885Q516.5274 602.9729 515.85345 603.64685Q514.98065 604.5197 513.84265 604.39813Q512.4947 604.24347 510.7822 602.53094ZM511.54456 601.7686Q513.0361 603.26013 513.88684 603.4038Q514.73755 603.5474 515.2458 603.0392Q515.7651 602.5199 515.6104 601.68024Q515.4668 600.82947 513.9752 599.33795Q512.4726 597.8353 511.63293 597.70276Q510.79324 597.54803 510.2629 598.07837Q509.75467 598.5866 509.87622 599.3269Q510.04193 600.266 511.54456 601.7686ZM521.9302 595.935L522.6483 596.65314L518.62665 600.6748Q518.3615 600.4096 518.19574 600.06714Q517.94165 599.50366 517.87537 598.7745Q517.8201 598.0342 517.94165 596.8741Q518.1184 595.06213 517.98584 594.24457Q517.8643 593.4159 517.44446 592.9961Q517.0025 592.55414 516.3838 592.57623Q515.754 592.5873 515.2458 593.0955Q514.7044 593.6369 514.7044 594.2777Q514.7044 594.9185 515.2679 595.5041L514.4282 596.1891Q513.64374 595.24994 513.7101 594.2998Q513.77637 593.3275 514.6492 592.4547Q515.52203 591.58185 516.51636 591.55975Q517.51074 591.53766 518.2289 592.2558Q518.5935 592.6204 518.79236 593.12866Q518.9913 593.6148 519.03546 594.3661Q519.07965 595.0953 518.9581 596.56476Q518.84766 597.8022 518.8587 598.211Q518.86975 598.59766 518.9471 598.9181L521.9302 595.935ZM520.6817 592.6315Q519.59894 591.5487 519.168 590.67584Q518.7261 589.792 518.8034 589.00757Q518.89185 588.21204 519.55475 587.54913Q520.0409 587.063 520.6044 586.8973Q521.1789 586.7205 521.7976 586.8531Q522.4053 586.9746 523.0682 587.3724Q523.7311 587.7701 524.6371 588.6761Q525.7088 589.7478 526.13965 590.6206Q526.5816 591.4824 526.5043 592.28894Q526.42694 593.0734 525.753 593.7474Q524.8801 594.6202 523.7421 594.49866Q522.3942 594.344 520.6817 592.6315ZM521.44403 591.86914Q522.9356 593.36066 523.7863 593.5043Q524.6371 593.64795 525.1453 593.1397Q525.66455 592.6204 525.5099 591.7807Q525.3663 590.93 523.8747 589.4384Q522.37213 587.93585 521.5324 587.8032Q520.69275 587.64856 520.1624 588.1789Q519.6542 588.68713 519.7757 589.42737Q519.9414 590.3665 521.44403 591.86914ZM526.7142 588.9412L525.9629 588.18994L528.261 585.89185L529.01227 586.6431L526.7142 588.9412ZM528.45984 584.8533Q527.3771 583.7705 526.9462 582.8977Q526.5043 582.0138 526.5816 581.2294Q526.67 580.4339 527.3329 579.77094Q527.81903 579.28485 528.3825 579.1191Q528.95703 578.9423 529.57574 579.0749Q530.1834 579.1964 530.8464 579.5942Q531.5093 579.99194 532.4152 580.8979Q533.48694 581.9696 533.91785 582.84247Q534.3598 583.7042 534.2825 584.5108Q534.2051 585.2952 533.5311 585.9692Q532.6583 586.84204 531.5203 586.7205Q530.17236 586.5658 528.45984 584.8533ZM529.2222 584.09094Q530.71375 585.5825 531.5645 585.72614Q532.4152 585.86975 532.92346 585.3615Q533.44275 584.8422 533.2881 584.00256Q533.1445 583.1518 531.6529 581.6603Q530.15027 580.15765 529.3106 580.0251Q528.4709 579.8704 527.94055 580.4007Q527.4324 580.90894 527.5539 581.64923Q527.7196 582.5883 529.2222 584.09094ZM535.1111 581.38403L535.76294 580.5996Q536.35956 581.0195 536.8457 580.9974Q537.33185 580.9531 537.7296 580.5554Q538.0721 580.2129 538.1715 579.8041Q538.271 579.3732 538.18256 578.95337Q538.0831 578.52246 537.7517 577.97003Q537.4092 577.40656 536.9451 576.9425Q536.8899 576.88727 536.79047 576.78784Q536.92303 577.36237 536.7684 577.9811Q536.60266 578.58875 536.14966 579.04175Q535.38727 579.8041 534.32666 579.782Q533.25494 579.74884 532.36 578.85394Q531.43195 577.92584 531.40985 576.821Q531.3988 575.7051 532.2164 574.8875Q532.80194 574.30194 533.60846 574.1362Q534.4261 573.9594 535.2768 574.30194Q536.1165 574.63336 537.2324 575.74927Q538.3925 576.90936 538.8345 577.85956Q539.27637 578.78766 539.13275 579.66046Q538.98914 580.5112 538.32623 581.17413Q537.60803 581.8923 536.7684 581.95856Q535.9176 582.0138 535.1111 581.38403ZM535.4757 575.64984Q534.8349 575.00903 534.1167 574.9759Q533.4096 574.9317 532.92346 575.41785Q532.4263 575.91504 532.4594 576.69946Q532.49255 577.4618 533.1445 578.11365Q533.719 578.6882 534.43713 578.6992Q535.1553 578.7103 535.6635 578.2021Q536.1828 577.6828 536.14966 576.9867Q536.1165 576.29065 535.4757 575.64984ZM539.44214 576.2133L538.6908 575.46204L540.9889 573.16394L541.74023 573.9152L539.44214 576.2133ZM546.9883 572.3132L546.24805 573.05347L541.49713 568.30255Q541.47504 568.8329 541.2983 569.54Q541.1215 570.22504 540.9005 570.689L540.1824 569.9709Q540.50275 569.0539 540.55804 568.181Q540.6133 567.28613 540.41437 566.68945L540.88947 566.2144L546.9883 572.3132ZM546.1375 567.1756Q545.05475 566.09283 544.6239 565.22003Q544.18195 564.3361 544.2593 563.5517Q544.34766 562.7562 545.01056 562.09326Q545.4967 561.6072 546.0602 561.4414Q546.6347 561.26465 547.2534 561.3972Q547.8611 561.51874 548.524 561.9165Q549.18695 562.3143 550.0929 563.2202Q551.1646 564.29193 551.5955 565.1648Q552.0375 566.02655 551.9601 566.8331Q551.88275 567.61755 551.2088 568.2915Q550.336 569.16437 549.198 569.04285Q547.85004 568.8881 546.1375 567.1756ZM546.8999 566.41327Q548.3914 567.90485 549.2422 568.04846Q550.0929 568.1921 550.60114 567.68384Q551.1204 567.16455 550.96576 566.3249Q550.82214 565.4741 549.33057 563.9826Q547.82794 562.48 546.9883 562.3474Q546.14856 562.19275 545.6182 562.7231Q545.11005 563.23126 545.23157 563.97156Q545.3973 564.91064 546.8999 566.41327Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M538.10565 605.8345L538.8238 606.5526L534.8021 610.5743Q534.5369 610.30914 534.3712 609.9666Q534.1171 609.40314 534.05084 608.67395Q533.99554 607.9337 534.1171 606.7736Q534.2939 604.9616 534.1613 604.14404Q534.0398 603.3154 533.61993 602.89557Q533.178 602.4536 532.55927 602.4757Q531.9295 602.48676 531.42126 602.995Q530.8799 603.5364 530.8799 604.1772Q530.8799 604.818 531.44336 605.40356L530.60364 606.08856Q529.8192 605.1495 529.8855 604.1993Q529.9518 603.227 530.82465 602.3542Q531.69745 601.4813 532.69183 601.4592Q533.6862 601.43713 534.40436 602.15533Q534.769 602.5199 534.96783 603.02814Q535.1667 603.5143 535.21094 604.26556Q535.2551 604.9948 535.13354 606.46423Q535.0231 607.70166 535.0341 608.1105Q535.04517 608.4972 535.1225 608.81757L538.10565 605.8345ZM536.8571 602.53094Q535.7744 601.4482 535.3435 600.5754Q534.90155 599.69147 534.9789 598.90704Q535.06726 598.1115 535.73016 597.4486Q536.2163 596.96246 536.7798 596.79675Q537.3543 596.62 537.973 596.75256Q538.5807 596.8741 539.24365 597.27185Q539.90656 597.6696 540.8125 598.57556Q541.8842 599.6473 542.3151 600.52014Q542.7571 601.3819 542.67975 602.1885Q542.60236 602.9729 541.9284 603.64685Q541.0556 604.5197 539.9176 604.39813Q538.56964 604.24347 536.8571 602.53094ZM537.6195 601.7686Q539.111 603.26013 539.9618 603.4038Q540.8125 603.5474 541.32074 603.0392Q541.84 602.5199 541.68536 601.68024Q541.54175 600.82947 540.0502 599.33795Q538.54755 597.8353 537.7079 597.70276Q536.86816 597.54803 536.3379 598.07837Q535.82965 598.5866 535.9512 599.3269Q536.1169 600.266 537.6195 601.7686ZM548.0051 595.935L548.72327 596.65314L544.7016 600.6748Q544.43646 600.4096 544.2707 600.06714Q544.0166 599.50366 543.9503 598.7745Q543.8951 598.0342 544.0166 596.8741Q544.19336 595.06213 544.0608 594.24457Q543.9393 593.4159 543.5194 592.9961Q543.07745 592.55414 542.45874 592.57623Q541.829 592.5873 541.32074 593.0955Q540.77936 593.6369 540.77936 594.2777Q540.77936 594.9185 541.34283 595.5041L540.5032 596.1891Q539.7187 595.24994 539.78503 594.2998Q539.8513 593.3275 540.7241 592.4547Q541.597 591.58185 542.5913 591.55975Q543.5857 591.53766 544.30383 592.2558Q544.66846 592.6204 544.8673 593.12866Q545.0662 593.6148 545.1104 594.3661Q545.1546 595.0953 545.0331 596.56476Q544.9226 597.8022 544.93365 598.211Q544.9447 598.59766 545.02203 598.9181L548.0051 595.935ZM546.75665 592.6315Q545.6739 591.5487 545.243 590.67584Q544.801 589.792 544.87836 589.00757Q544.9668 588.21204 545.6297 587.54913Q546.11584 587.063 546.6793 586.8973Q547.25385 586.7205 547.87256 586.8531Q548.4802 586.9746 549.1431 587.3724Q549.806 587.7701 550.71204 588.6761Q551.78375 589.7478 552.2146 590.6206Q552.65656 591.4824 552.5792 592.28894Q552.5019 593.0734 551.82794 593.7474Q550.9551 594.6202 549.8171 594.49866Q548.4692 594.344 546.75665 592.6315ZM547.519 591.86914Q549.01056 593.36066 549.86127 593.5043Q550.71204 593.64795 551.2203 593.1397Q551.7395 592.6204 551.58484 591.7807Q551.4412 590.93 549.94965 589.4384Q548.4471 587.93585 547.60736 587.8032Q546.7677 587.64856 546.23737 588.1789Q545.7291 588.68713 545.85065 589.42737Q546.01636 590.3665 547.519 591.86914ZM552.7891 588.9412L552.03784 588.18994L554.33594 585.89185L555.0872 586.6431L552.7891 588.9412ZM554.5348 584.8533Q553.452 583.7705 553.0212 582.8977Q552.5792 582.0138 552.65656 581.2294Q552.74493 580.4339 553.40784 579.77094Q553.894 579.28485 554.45746 579.1191Q555.032 578.9423 555.6507 579.0749Q556.25836 579.1964 556.9213 579.5942Q557.5842 579.99194 558.4902 580.8979Q559.5619 581.9696 559.9928 582.84247Q560.43475 583.7042 560.3574 584.5108Q560.28 585.2952 559.6061 585.9692Q558.7333 586.84204 557.5953 586.7205Q556.2473 586.5658 554.5348 584.8533ZM555.2972 584.09094Q556.7887 585.5825 557.63947 585.72614Q558.4902 585.86975 558.9984 585.3615Q559.5177 584.8422 559.36304 584.00256Q559.2194 583.1518 557.72784 581.6603Q556.2252 580.15765 555.38556 580.0251Q554.54584 579.8704 554.0155 580.4007Q553.5073 580.90894 553.62885 581.64923Q553.79456 582.5883 555.2972 584.09094ZM561.18604 581.38403L561.8379 580.5996Q562.4345 581.0195 562.92065 580.9974Q563.4068 580.9531 563.80457 580.5554Q564.14703 580.2129 564.24646 579.8041Q564.34595 579.3732 564.2575 578.95337Q564.1581 578.52246 563.82666 577.97003Q563.48413 577.40656 563.0201 576.9425Q562.96484 576.88727 562.8654 576.78784Q562.998 577.36237 562.8433 577.9811Q562.6776 578.58875 562.2246 579.04175Q561.4622 579.8041 560.4016 579.782Q559.3299 579.74884 558.43494 578.85394Q557.5069 577.92584 557.4848 576.821Q557.47375 575.7051 558.2913 574.8875Q558.8769 574.30194 559.6834 574.1362Q560.50104 573.9594 561.35175 574.30194Q562.19147 574.63336 563.3074 575.74927Q564.46747 576.90936 564.9094 577.85956Q565.3513 578.78766 565.2077 579.66046Q565.0641 580.5112 564.4012 581.17413Q563.683 581.8923 562.8433 581.95856Q561.99255 582.0138 561.18604 581.38403ZM561.55066 575.64984Q560.90985 575.00903 560.19165 574.9759Q559.48456 574.9317 558.9984 575.41785Q558.5012 575.91504 558.53436 576.69946Q558.5675 577.4618 559.2194 578.11365Q559.79395 578.6882 560.5121 578.6992Q561.2302 578.7103 561.73846 578.2021Q562.25775 577.6828 562.2246 576.9867Q562.19147 576.29065 561.55066 575.64984ZM565.5171 576.2133L564.76575 575.46204L567.06384 573.16394L567.8152 573.9152L565.5171 576.2133ZM573.06323 572.3132L572.32294 573.05347L567.5721 568.30255Q567.55 568.8329 567.3732 569.54Q567.1965 570.22504 566.97546 570.689L566.2573 569.9709Q566.5777 569.0539 566.633 568.181Q566.68823 567.28613 566.4893 566.68945L566.9644 566.2144L573.06323 572.3132ZM574.48846 561.71765L573.80347 562.5131Q573.2621 562.17065 572.8864 562.14856Q572.25665 562.1375 571.81476 562.5794Q571.4612 562.933 571.38385 563.4081Q571.3065 564.01575 571.59375 564.72284Q571.88104 565.40784 572.77594 566.3249Q572.6323 565.65094 572.8201 565.06537Q573.01904 564.46875 573.4499 564.03784Q574.1902 563.2976 575.2619 563.33075Q576.34467 563.35284 577.2064 564.2146Q577.78094 564.7891 578.024 565.5404Q578.2671 566.26965 578.1014 566.9657Q577.92456 567.6507 577.3832 568.1921Q576.4441 569.1312 575.17346 569.0318Q573.9029 568.9323 572.33405 567.36346Q570.5662 565.5957 570.4226 564.1483Q570.29004 562.8888 571.2513 561.92755Q571.9694 561.2094 572.8312 561.1652Q573.693 561.09894 574.48846 561.71765ZM574.06866 567.3745Q574.4553 567.76117 574.96356 567.9601Q575.4718 568.13684 575.9469 568.0374Q576.43304 567.92694 576.76447 567.59546Q577.2285 567.1314 577.1954 566.41327Q577.1512 565.6841 576.4993 565.0322Q575.86957 564.4024 575.1624 564.3803Q574.4664 564.34717 573.9581 564.8554Q573.4499 565.36365 573.46094 566.0818Q573.4831 566.78894 574.06866 567.3745Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M564.1806 605.8345L564.89874 606.5526L560.8771 610.5743Q560.6119 610.30914 560.44617 609.9666Q560.1921 609.40314 560.1258 608.67395Q560.0705 607.9337 560.1921 606.7736Q560.36884 604.9616 560.23627 604.14404Q560.1147 603.3154 559.6949 602.89557Q559.2529 602.4536 558.6342 602.4757Q558.00446 602.48676 557.4962 602.995Q556.95483 603.5364 556.95483 604.1772Q556.95483 604.818 557.5183 605.40356L556.6786 606.08856Q555.89417 605.1495 555.96045 604.1993Q556.02673 603.227 556.8996 602.3542Q557.7724 601.4813 558.7668 601.4592Q559.76117 601.43713 560.4793 602.15533Q560.84393 602.5199 561.0428 603.02814Q561.24164 603.5143 561.2859 604.26556Q561.3301 604.9948 561.2085 606.46423Q561.098 607.70166 561.1091 608.1105Q561.1201 608.4972 561.19745 608.81757L564.1806 605.8345ZM562.93207 602.53094Q561.84937 601.4482 561.41846 600.5754Q560.9765 599.69147 561.05383 598.90704Q561.1422 598.1115 561.8051 597.4486Q562.29126 596.96246 562.85474 596.79675Q563.42926 596.62 564.048 596.75256Q564.65564 596.8741 565.3186 597.27185Q565.9815 597.6696 566.88745 598.57556Q567.95917 599.6473 568.3901 600.52014Q568.83203 601.3819 568.7547 602.1885Q568.6773 602.9729 568.00336 603.64685Q567.13055 604.5197 565.99255 604.39813Q564.6446 604.24347 562.93207 602.53094ZM563.69446 601.7686Q565.186 603.26013 566.03674 603.4038Q566.88745 603.5474 567.3957 603.0392Q567.915 602.5199 567.7603 601.68024Q567.6167 600.82947 566.1251 599.33795Q564.6225 597.8353 563.78284 597.70276Q562.9431 597.54803 562.41284 598.07837Q561.9046 598.5866 562.0261 599.3269Q562.19183 600.266 563.69446 601.7686ZM574.0801 595.935L574.7982 596.65314L570.77655 600.6748Q570.5114 600.4096 570.34564 600.06714Q570.09155 599.50366 570.02527 598.7745Q569.97003 598.0342 570.09155 596.8741Q570.2683 595.06213 570.13574 594.24457Q570.0142 593.4159 569.59436 592.9961Q569.1524 592.55414 568.5337 592.57623Q567.90393 592.5873 567.3957 593.0955Q566.8543 593.6369 566.8543 594.2777Q566.8543 594.9185 567.4178 595.5041L566.5781 596.1891Q565.79364 595.24994 565.86 594.2998Q565.9263 593.3275 566.7991 592.4547Q567.67194 591.58185 568.66626 591.55975Q569.66064 591.53766 570.3788 592.2558Q570.7434 592.6204 570.94226 593.12866Q571.1412 593.6148 571.18536 594.3661Q571.22955 595.0953 571.10803 596.56476Q570.99756 597.8022 571.0086 598.211Q571.01965 598.59766 571.097 598.9181L574.0801 595.935ZM572.8316 592.6315Q571.74884 591.5487 571.31793 590.67584Q570.876 589.792 570.9533 589.00757Q571.04175 588.21204 571.70465 587.54913Q572.1908 587.063 572.7543 586.8973Q573.3288 586.7205 573.9475 586.8531Q574.5552 586.9746 575.2181 587.3724Q575.881 587.7701 576.787 588.6761Q577.8587 589.7478 578.28955 590.6206Q578.7315 591.4824 578.6542 592.28894Q578.57684 593.0734 577.9029 593.7474Q577.03 594.6202 575.892 594.49866Q574.5441 594.344 572.8316 592.6315ZM573.59393 591.86914Q575.0855 593.36066 575.9362 593.5043Q576.787 593.64795 577.2952 593.1397Q577.81445 592.6204 577.6598 591.7807Q577.5162 590.93 576.0246 589.4384Q574.52203 587.93585 573.6823 587.8032Q572.84265 587.64856 572.3123 588.1789Q571.8041 588.68713 571.9256 589.42737Q572.0913 590.3665 573.59393 591.86914ZM578.8641 588.9412L578.1128 588.18994L580.4109 585.89185L581.1622 586.6431L578.8641 588.9412ZM580.60974 584.8533Q579.527 583.7705 579.0961 582.8977Q578.6542 582.0138 578.7315 581.2294Q578.8199 580.4339 579.4828 579.77094Q579.96893 579.28485 580.5324 579.1191Q581.10693 578.9423 581.72565 579.0749Q582.3333 579.1964 582.9963 579.5942Q583.6592 579.99194 584.5651 580.8979Q585.63684 581.9696 586.06775 582.84247Q586.5097 583.7042 586.4324 584.5108Q586.355 585.2952 585.681 585.9692Q584.8082 586.84204 583.6702 586.7205Q582.32227 586.5658 580.60974 584.8533ZM581.37213 584.09094Q582.86365 585.5825 583.7144 585.72614Q584.5651 585.86975 585.07336 585.3615Q585.59265 584.8422 585.438 584.00256Q585.2944 583.1518 583.8028 581.6603Q582.3002 580.15765 581.4605 580.0251Q580.6208 579.8704 580.09045 580.4007Q579.5823 580.90894 579.7038 581.64923Q579.8695 582.5883 581.37213 584.09094ZM587.261 581.38403L587.91284 580.5996Q588.50946 581.0195 588.9956 580.9974Q589.48175 580.9531 589.8795 580.5554Q590.222 580.2129 590.3214 579.8041Q590.4209 579.3732 590.33246 578.95337Q590.23303 578.52246 589.9016 577.97003Q589.5591 577.40656 589.09503 576.9425Q589.0398 576.88727 588.94037 576.78784Q589.07294 577.36237 588.9183 577.9811Q588.75256 578.58875 588.29956 579.04175Q587.5372 579.8041 586.47656 579.782Q585.40485 579.74884 584.5099 578.85394Q583.58185 577.92584 583.55975 576.821Q583.5487 575.7051 584.3663 574.8875Q584.95184 574.30194 585.75836 574.13617Q586.576 573.9594 587.4267 574.30194Q588.2664 574.63336 589.3823 575.74927Q590.5424 576.90936 590.9844 577.85956Q591.4263 578.78766 591.28265 579.66046Q591.13904 580.5112 590.47614 581.17413Q589.75793 581.8923 588.9183 581.95856Q588.0675 582.0138 587.261 581.38403ZM587.6256 575.64984Q586.9848 575.00903 586.2666 574.9759Q585.5595 574.9317 585.07336 575.41785Q584.5762 575.91504 584.6093 576.69946Q584.64246 577.4618 585.2944 578.11365Q585.8689 578.6882 586.58704 578.6992Q587.3052 578.7103 587.8134 578.2021Q588.3327 577.6828 588.29956 576.9867Q588.2664 576.29065 587.6256 575.64984ZM591.59204 576.2133L590.8407 575.46204L593.1388 573.16394L593.89014 573.9152L591.59204 576.2133ZM599.5359 570.4791L600.2541 571.19727L596.2324 575.21893Q595.9672 574.9538 595.8015 574.61127Q595.5474 574.0478 595.4811 573.3186Q595.42584 572.57837 595.5474 571.4183Q595.7242 569.6063 595.5916 568.7887Q595.47003 567.9601 595.05023 567.5402Q594.6083 567.09827 593.98956 567.12036Q593.3598 567.1314 592.85156 567.63965Q592.3102 568.181 592.3102 568.82184Q592.3102 569.46265 592.87366 570.0482L592.03394 570.7333Q591.2495 569.7941 591.3158 568.84393Q591.3821 567.8717 592.25494 566.99884Q593.12775 566.126 594.12213 566.1039Q595.1165 566.0818 595.83466 566.8Q596.1993 567.16455 596.39813 567.6728Q596.597 568.15894 596.6412 568.9102Q596.6854 569.63947 596.56384 571.1089Q596.45337 572.3463 596.4644 572.7551Q596.47546 573.14185 596.5528 573.4622L599.5359 570.4791ZM603.6681 567.78326L602.20966 566.3249L599.58014 568.9544L598.8951 568.2694L597.735 561.5629L598.34265 560.95526L602.27594 564.88855L603.09357 564.071L603.77856 564.756L602.96094 565.5736L604.4194 567.032L603.6681 567.78326ZM601.52466 565.6399L598.79565 562.9109L599.6243 567.5402L601.52466 565.6399Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M590.25555 605.8345L590.9737 606.5526L586.952 610.5743Q586.6868 610.30914 586.5211 609.9666Q586.267 609.40314 586.20074 608.67395Q586.14545 607.9337 586.267 606.7736Q586.4438 604.9616 586.3112 604.14404Q586.18964 603.3154 585.76984 602.89557Q585.3279 602.4536 584.70917 602.4757Q584.0794 602.48676 583.57117 602.995Q583.0298 603.5364 583.0298 604.1772Q583.0298 604.818 583.59326 605.40356L582.75354 606.08856Q581.9691 605.1495 582.0354 604.1993Q582.1017 603.227 582.97455 602.3542Q583.84735 601.4813 584.84174 601.4592Q585.8361 601.43713 586.55426 602.15533Q586.9189 602.5199 587.11774 603.02814Q587.3166 603.5143 587.36084 604.26556Q587.405 604.99475 587.28345 606.46423Q587.173 607.70166 587.184 608.1105Q587.19507 608.4972 587.2724 608.81757L590.25555 605.8345ZM589.007 602.53094Q587.9243 601.4482 587.4934 600.5754Q587.05145 599.69147 587.1288 598.90704Q587.21716 598.1115 587.88007 597.4486Q588.3662 596.96246 588.9297 596.79675Q589.5042 596.62 590.1229 596.75256Q590.7306 596.8741 591.39355 597.27185Q592.05646 597.6696 592.9624 598.57556Q594.0341 599.6473 594.465 600.52014Q594.907 601.3819 594.82965 602.1885Q594.75226 602.9729 594.0783 603.64685Q593.2055 604.5197 592.0675 604.39813Q590.71954 604.24347 589.007 602.53094ZM589.7694 601.7686Q591.2609 603.26013 592.1117 603.4038Q592.9624 603.5474 593.47064 603.0392Q593.9899 602.5199 593.83527 601.68024Q593.69165 600.82947 592.2001 599.33795Q590.69745 597.8353 589.8578 597.70276Q589.01807 597.54803 588.4878 598.07837Q587.97955 598.5866 588.1011 599.3269Q588.2668 600.266 589.7694 601.7686ZM600.155 595.935L600.87317 596.65314L596.8515 600.6748Q596.58636 600.4096 596.4206 600.06714Q596.1665 599.50366 596.1002 598.7745Q596.045 598.0342 596.1665 596.8741Q596.34326 595.06213 596.2107 594.24457Q596.0892 593.4159 595.6693 592.99603Q595.22736 592.55414 594.60864 592.57623Q593.9789 592.5873 593.47064 593.0955Q592.92926 593.6369 592.92926 594.2777Q592.92926 594.9185 593.49274 595.5041L592.6531 596.1891Q591.8686 595.24994 591.93494 594.2998Q592.0012 593.3275 592.874 592.4547Q593.7469 591.58185 594.7412 591.55975Q595.7356 591.53766 596.45374 592.2558Q596.81836 592.6204 597.0172 593.12866Q597.2161 593.6148 597.2603 594.3661Q597.3045 595.0953 597.183 596.56476Q597.0725 597.8022 597.08356 598.211Q597.0946 598.59766 597.17194 598.9181L600.155 595.935ZM598.90656 592.6315Q597.8238 591.5487 597.3929 590.67584Q596.9509 589.792 597.02826 589.00757Q597.1167 588.21204 597.7796 587.54913Q598.26575 587.063 598.8292 586.8973Q599.40375 586.7205 600.02246 586.8531Q600.6301 586.9746 601.293 587.3724Q601.95593 587.7701 602.86194 588.6761Q603.93365 589.7478 604.3645 590.6206Q604.80646 591.4824 604.7291 592.28894Q604.6518 593.0734 603.97784 593.7474Q603.105 594.6202 601.967 594.49866Q600.6191 594.344 598.90656 592.6315ZM599.6689 591.86914Q601.16046 593.36066 602.01117 593.5043Q602.86194 593.64795 603.3702 593.1397Q603.8894 592.6204 603.73474 591.7807Q603.5911 590.93 602.09955 589.4384Q600.597 587.93585 599.75726 587.8032Q598.9176 587.64856 598.38727 588.1789Q597.879 588.68713 598.00055 589.42737Q598.16626 590.3665 599.6689 591.86914ZM604.939 588.9412L604.18774 588.18994L606.48584 585.89185L607.2371 586.6431L604.939 588.9412ZM606.6847 584.8533Q605.6019 583.7705 605.1711 582.8977Q604.7291 582.0138 604.80646 581.2294Q604.89484 580.4339 605.55774 579.77094Q606.0439 579.28485 606.60736 579.1191Q607.1819 578.9423 607.8006 579.0749Q608.40826 579.1964 609.0712 579.5942Q609.73413 579.99194 610.6401 580.8979Q611.7118 581.9696 612.1427 582.84247Q612.58466 583.7042 612.5073 584.5108Q612.42993 585.2952 611.756 585.9692Q610.8832 586.84204 609.7452 586.7205Q608.3972 586.5658 606.6847 584.8533ZM607.4471 584.09094Q608.9386 585.5825 609.78937 585.72614Q610.6401 585.86975 611.1483 585.3615Q611.6676 584.8422 611.51294 584.00256Q611.3693 583.1518 609.87775 581.6603Q608.3751 580.15765 607.53546 580.0251Q606.69574 579.8704 606.1654 580.4007Q605.6572 580.90894 605.77875 581.64923Q605.94446 582.5883 607.4471 584.09094ZM613.33594 581.38403L613.9878 580.5996Q614.5844 581.0195 615.07056 580.9973Q615.5567 580.9531 615.95447 580.5554Q616.29694 580.2129 616.39636 579.8041Q616.49585 579.3732 616.4074 578.95337Q616.308 578.52246 615.97656 577.97003Q615.63403 577.40656 615.17 576.9425Q615.11475 576.88727 615.0153 576.78784Q615.1479 577.36237 614.9932 577.9811Q614.8275 578.58875 614.3745 579.04175Q613.6121 579.8041 612.5515 579.782Q611.4798 579.74884 610.58484 578.85394Q609.6568 577.92584 609.6347 576.821Q609.62366 575.7051 610.4412 574.8875Q611.0268 574.30194 611.8333 574.13617Q612.65094 573.9594 613.50165 574.30194Q614.3414 574.63336 615.4573 575.74927Q616.6174 576.90936 617.0593 577.85956Q617.5012 578.78766 617.3576 579.66046Q617.214 580.5112 616.5511 581.17413Q615.8329 581.8923 614.9932 581.95856Q614.14246 582.0138 613.33594 581.38403ZM613.70056 575.64984Q613.05975 575.00903 612.34155 574.9759Q611.63446 574.9317 611.1483 575.41785Q610.6511 575.91504 610.68427 576.69946Q610.7174 577.4618 611.3693 578.11365Q611.94385 578.6882 612.662 578.6992Q613.3801 578.71027 613.88837 578.2021Q614.40765 577.6828 614.3745 576.9867Q614.3414 576.29065 613.70056 575.64984ZM617.667 576.2133L616.91565 575.46204L619.21375 573.16394L619.9651 573.9152L617.667 576.2133ZM620.80475 573.51746L621.4566 572.66675Q622.20795 573.175 622.80457 573.1529Q623.39014 573.11975 623.83203 572.6778Q624.36237 572.14746 624.36237 571.4183Q624.36237 570.689 623.821 570.1477Q623.31274 569.63947 622.6388 569.6505Q621.96484 569.63947 621.44556 570.15875Q621.23566 570.36865 621.0036 570.77747L620.4291 570.0261Q620.5175 569.95984 620.5617 569.91565Q621.03674 569.44055 621.1694 568.82184Q621.30194 568.181 620.78265 567.66174Q620.37384 567.2529 619.83246 567.264Q619.28 567.264 618.83813 567.70593Q618.4072 568.13684 618.38513 568.71136Q618.3741 569.27484 618.83813 569.89355L617.9542 570.51227Q617.34656 569.63947 617.4239 568.7445Q617.4902 567.8385 618.2084 567.12036Q618.7055 566.62317 619.3464 566.4243Q619.97614 566.2144 620.5617 566.35803Q621.1473 566.50165 621.5671 566.9215Q621.9538 567.3082 622.0753 567.84955Q622.1858 568.3799 621.96484 568.9765Q622.6167 568.56775 623.31274 568.6672Q623.9978 568.75555 624.5944 569.3522Q625.3899 570.1477 625.35675 571.2857Q625.33466 572.4126 624.45074 573.2965Q623.6553 574.092 622.64984 574.1473Q621.6334 574.19147 620.80475 573.51746ZM624.36237 567.1756Q623.2796 566.09283 622.84875 565.22003Q622.4068 564.3361 622.48413 563.5517Q622.5725 562.7562 623.2354 562.09326Q623.72156 561.6072 624.28503 561.4414Q624.85956 561.26465 625.4783 561.3972Q626.08594 561.51874 626.74884 561.9165Q627.4118 562.3143 628.31775 563.2202Q629.38947 564.29193 629.8204 565.1648Q630.2623 566.02655 630.18494 566.8331Q630.1076 567.61755 629.43365 568.2915Q628.56085 569.16437 627.42285 569.04285Q626.0749 568.8881 624.36237 567.1756ZM625.12476 566.41327Q626.6163 567.90485 627.46704 568.04846Q628.31775 568.1921 628.826 567.68384Q629.3453 567.16455 629.1906 566.3249Q629.047 565.4741 627.5554 563.9826Q626.0528 562.48 625.21313 562.3474Q624.3734 562.19275 623.8431 562.7231Q623.3349 563.23126 623.4564 563.97156Q623.62213 564.91064 625.12476 566.41327Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M616.3305 605.8345L617.04865 606.5526L613.027 610.5743Q612.7618 610.30914 612.59607 609.9666Q612.342 609.40314 612.2757 608.67395Q612.2204 607.9337 612.342 606.7736Q612.51874 604.9616 612.38617 604.14404Q612.2646 603.3154 611.8448 602.89557Q611.40283 602.4536 610.7841 602.4757Q610.15436 602.48676 609.6461 602.995Q609.10474 603.5364 609.10474 604.1772Q609.10474 604.818 609.6682 605.40356L608.8285 606.08856Q608.04407 605.1495 608.11035 604.1993Q608.17664 603.227 609.0495 602.3542Q609.9223 601.4813 610.9167 601.4592Q611.9111 601.43713 612.6292 602.15533Q612.99384 602.5199 613.1927 603.02814Q613.39154 603.5143 613.4358 604.26556Q613.48 604.99475 613.3584 606.46423Q613.2479 607.70166 613.259 608.1105Q613.27 608.4972 613.34735 608.81757L616.3305 605.8345ZM615.082 602.53094Q613.99927 601.4482 613.56836 600.5754Q613.1264 599.69147 613.20374 598.90704Q613.2921 598.1115 613.955 597.4486Q614.44116 596.96246 615.00464 596.79675Q615.57916 596.62 616.1979 596.75256Q616.80554 596.8741 617.4685 597.27185Q618.1314 597.6696 619.03735 598.57556Q620.1091 599.6473 620.54 600.52014Q620.98193 601.3819 620.9046 602.1885Q620.8272 602.9729 620.15326 603.64685Q619.28046 604.5197 618.14246 604.39813Q616.7945 604.24347 615.082 602.53094ZM615.84436 601.7686Q617.3359 603.26013 618.18665 603.4038Q619.03735 603.5474 619.5456 603.0392Q620.0649 602.5199 619.9102 601.68024Q619.7666 600.82947 618.275 599.33795Q616.7724 597.8353 615.93274 597.70276Q615.093 597.54803 614.56274 598.07837Q614.0545 598.5866 614.176 599.3269Q614.34174 600.266 615.84436 601.7686ZM626.23 595.935L626.9481 596.65314L622.92645 600.6748Q622.6613 600.4096 622.49554 600.06714Q622.24146 599.50366 622.1752 598.7745Q622.11993 598.0342 622.24146 596.8741Q622.4182 595.06213 622.28564 594.24457Q622.1641 593.4159 621.74426 592.99603Q621.3023 592.55414 620.6836 592.57623Q620.05383 592.5873 619.5456 593.0955Q619.0042 593.6369 619.0042 594.2777Q619.0042 594.9185 619.5677 595.5041L618.728 596.1891Q617.94354 595.24994 618.0099 594.2998Q618.0762 593.3275 618.949 592.4547Q619.82184 591.58185 620.81616 591.55975Q621.81055 591.53766 622.5287 592.2558Q622.8933 592.6204 623.09216 593.12866Q623.2911 593.6148 623.33527 594.3661Q623.37946 595.0953 623.25793 596.56476Q623.14746 597.8022 623.1585 598.211Q623.16956 598.59766 623.2469 598.9181L626.23 595.935ZM624.9815 592.6315Q623.89874 591.5487 623.46783 590.67584Q623.0259 589.792 623.1032 589.00757Q623.19165 588.21204 623.85455 587.54913Q624.3407 587.063 624.9042 586.8973Q625.4787 586.7205 626.0974 586.8531Q626.7051 586.9746 627.368 587.3724Q628.0309 587.7701 628.9369 588.6761Q630.0086 589.7478 630.43945 590.6206Q630.8814 591.4824 630.8041 592.28894Q630.72675 593.0734 630.0528 593.7474Q629.17993 594.6202 628.04193 594.49866Q626.69403 594.344 624.9815 592.6315ZM625.74384 591.86914Q627.2354 593.36066 628.0861 593.5043Q628.9369 593.64795 629.4451 593.1397Q629.96436 592.6204 629.8097 591.7807Q629.6661 590.93 628.1745 589.4384Q626.67194 587.93585 625.8322 587.8032Q624.99255 587.64856 624.4622 588.1789Q623.954 588.68713 624.0755 589.42737Q624.2412 590.3665 625.74384 591.86914ZM631.014 588.9412L630.2627 588.18994L632.5608 585.89185L633.3121 586.6431L631.014 588.9412ZM638.5602 585.04114L637.8199 585.7814L633.06903 581.0305Q633.04694 581.5608 632.8702 582.26794Q632.69336 582.95294 632.4724 583.417L631.7543 582.6988Q632.07465 581.7818 632.1299 580.90894Q632.1851 580.01404 631.98627 579.4174L632.46136 578.9423L638.5602 585.04114ZM637.7094 579.90356Q636.62665 578.8208 636.19574 577.94794Q635.75385 577.0641 635.8312 576.2796Q635.91956 575.48413 636.58246 574.8212Q637.0686 574.3351 637.6321 574.1694Q638.2066 573.99255 638.8253 574.1251Q639.433 574.2467 640.0959 574.6444Q640.7588 575.0422 641.6648 575.9482Q642.7365 577.0199 643.1674 577.8927Q643.6093 578.7545 643.532 579.56104Q643.45465 580.34546 642.7807 581.0195Q641.90784 581.8923 640.76984 581.77075Q639.42194 581.6161 637.7094 579.90356ZM638.47174 579.1412Q639.9633 580.63275 640.814 580.77637Q641.6648 580.92 642.17303 580.41174Q642.6923 579.8925 642.5376 579.0528Q642.394 578.2021 640.90247 576.7105Q639.39984 575.2079 638.5602 575.0753Q637.72046 574.92065 637.1901 575.451Q636.6819 575.9592 636.8034 576.69946Q636.9692 577.6386 638.47174 579.1412ZM643.74194 576.2133L642.9906 575.46204L645.2887 573.16394L646.04004 573.9152L643.74194 576.2133ZM645.4876 572.12537Q644.40485 571.0426 643.97394 570.1698Q643.532 569.2859 643.6093 568.50146Q643.69775 567.70593 644.36066 567.043Q644.8468 566.5569 645.4103 566.3912Q645.9848 566.2144 646.6035 566.347Q647.2112 566.4685 647.8741 566.8663Q648.537 567.264 649.443 568.17Q650.51465 569.2417 650.94556 570.1145Q651.3875 570.9763 651.3102 571.78284Q651.23285 572.5673 650.5589 573.2413Q649.68604 574.1141 648.54803 573.99255Q647.20013 573.8379 645.4876 572.12537ZM646.24994 571.36304Q647.7415 572.85455 648.5922 572.99817Q649.443 573.14185 649.9512 572.6336Q650.47046 572.1143 650.3158 571.2746Q650.1722 570.4239 648.6806 568.9323Q647.17804 567.42975 646.3383 567.2972Q645.49866 567.14246 644.9683 567.6728Q644.4601 568.181 644.5816 568.92126Q644.7473 569.8604 646.24994 571.36304ZM651.2881 565.7283Q650.6473 566.0155 650.1059 565.9382Q649.5645 565.83875 649.1336 565.40784Q648.4707 564.74493 648.4928 563.81683Q648.52594 562.87775 649.31036 562.09326Q650.1059 561.2978 651.056 561.2757Q652.0062 561.2536 652.6691 561.9165Q653.089 562.33636 653.17737 562.8667Q653.26575 563.39703 652.98956 564.0268Q653.7298 563.6401 654.42584 563.7616Q655.1219 563.8832 655.68536 564.44666Q656.4588 565.22003 656.4367 566.3028Q656.42566 567.3745 655.51965 568.28046Q654.62476 569.1754 653.542 569.1975Q652.4592 569.2196 651.6637 568.4241Q651.0671 567.82745 650.96765 567.1314Q650.8793 566.4243 651.2881 565.7283ZM649.8628 564.61237Q650.2937 565.0433 650.8461 565.0433Q651.4096 565.0322 651.85156 564.5903Q652.2825 564.15936 652.2935 563.618Q652.2935 563.06555 651.89575 562.6678Q651.48694 562.25903 650.92346 562.2701Q650.34894 562.2701 649.9291 562.6899Q649.4982 563.1208 649.4872 563.68427Q649.4872 564.2367 649.8628 564.61237ZM652.43713 567.6507Q652.7575 567.9711 653.19946 568.1258Q653.65247 568.2694 654.1165 568.13684Q654.58057 568.0043 654.92303 567.66174Q655.45337 567.1314 655.45337 566.4464Q655.4644 565.75037 654.9341 565.22003Q654.3927 564.67865 653.6856 564.67865Q652.9785 564.67865 652.43713 565.22003Q651.9068 565.75037 651.91785 566.4464Q651.91785 567.1314 652.43713 567.6507Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M642.40546 605.8345L643.1236 606.5526L639.1019 610.5743Q638.83673 610.30914 638.671 609.9666Q638.41693 609.40314 638.35065 608.67395Q638.29535 607.9337 638.41693 606.7736Q638.5937 604.9616 638.4611 604.14404Q638.33954 603.3154 637.91974 602.89557Q637.4778 602.4536 636.8591 602.4757Q636.2293 602.48676 635.72107 602.995Q635.1797 603.5364 635.1797 604.1772Q635.1797 604.818 635.74316 605.40356L634.90344 606.08856Q634.119 605.1495 634.1853 604.1993Q634.2516 603.227 635.12445 602.3542Q635.99725 601.4813 636.99164 601.4592Q637.986 601.43713 638.70416 602.15533Q639.0688 602.5199 639.26764 603.02814Q639.4665 603.5143 639.51074 604.26556Q639.55493 604.99475 639.43335 606.46423Q639.3229 607.70166 639.3339 608.1105Q639.345 608.4972 639.4223 608.81757L642.40546 605.8345ZM641.1569 602.53094Q640.0742 601.4482 639.6433 600.5754Q639.20135 599.69147 639.2787 598.90704Q639.36707 598.1115 640.02997 597.4486Q640.5161 596.96246 641.0796 596.79675Q641.6541 596.62 642.2728 596.75256Q642.8805 596.8741 643.54346 597.27185Q644.20636 597.6696 645.1123 598.57556Q646.184 599.6473 646.6149 600.52014Q647.0569 601.3819 646.97955 602.1885Q646.90216 602.9729 646.2282 603.64685Q645.3554 604.5197 644.2174 604.39813Q642.86945 604.24347 641.1569 602.53094ZM641.9193 601.7686Q643.4108 603.26013 644.2616 603.4038Q645.1123 603.5474 645.62054 603.0392Q646.13983 602.5199 645.98517 601.68024Q645.84155 600.82947 644.35 599.33795Q642.84735 597.8353 642.0077 597.70276Q641.16797 597.54803 640.6377 598.07837Q640.12946 598.5866 640.251 599.3269Q640.4167 600.266 641.9193 601.7686ZM652.30493 595.935L653.0231 596.65314L649.0014 600.6748Q648.73627 600.4096 648.5705 600.06714Q648.3164 599.50366 648.2501 598.7745Q648.1949 598.0342 648.3164 596.8741Q648.49316 595.06213 648.3606 594.24457Q648.2391 593.4159 647.8192 592.99603Q647.37726 592.55414 646.75854 592.57623Q646.1288 592.5873 645.62054 593.0955Q645.07916 593.6369 645.07916 594.2777Q645.07916 594.9185 645.64264 595.5041L644.803 596.1891Q644.0185 595.24994 644.08484 594.2998Q644.1511 593.3275 645.0239 592.4547Q645.8968 591.58185 646.8911 591.55975Q647.8855 591.53766 648.60364 592.2558Q648.96826 592.6204 649.1671 593.12866Q649.366 593.6148 649.4102 594.3661Q649.4544 595.0953 649.3329 596.56476Q649.2224 597.8022 649.23346 598.211Q649.2445 598.59766 649.32184 598.9181L652.30493 595.935ZM651.05646 592.6315Q649.9737 591.5487 649.5428 590.67584Q649.1008 589.792 649.17816 589.00757Q649.2666 588.21204 649.9295 587.54913Q650.41565 587.063 650.9791 586.8973Q651.55365 586.7205 652.17236 586.8531Q652.78 586.9746 653.44293 587.3724Q654.10583 587.7701 655.01184 588.6761Q656.08356 589.7478 656.5144 590.6206Q656.95636 591.4824 656.879 592.28894Q656.8017 593.0734 656.12775 593.7474Q655.2549 594.6202 654.1169 594.49866Q652.769 594.344 651.05646 592.6315ZM651.8188 591.86914Q653.31036 593.36066 654.1611 593.5043Q655.01184 593.64795 655.5201 593.1397Q656.0393 592.6204 655.88464 591.7807Q655.741 590.93 654.24945 589.4384Q652.7469 587.93585 651.90717 587.8032Q651.0675 587.64856 650.5372 588.1789Q650.02893 588.68713 650.15045 589.42737Q650.31616 590.3665 651.8188 591.86914ZM657.0889 588.9412L656.33765 588.18994L658.63574 585.89185L659.387 586.6431L657.0889 588.9412ZM664.63513 585.04114L663.89484 585.7814L659.144 581.0305Q659.1219 581.5608 658.9451 582.26794Q658.7683 582.95294 658.54736 583.417L657.8292 582.6988Q658.1496 581.7818 658.20483 580.90894Q658.2601 580.01404 658.0612 579.4174L658.5363 578.9423L664.63513 585.04114ZM663.78436 579.90356Q662.7016 578.8208 662.2707 577.94794Q661.8288 577.0641 661.9061 576.2796Q661.9945 575.48413 662.6574 574.8212Q663.14355 574.3351 663.70703 574.1694Q664.28156 573.99255 664.90027 574.1251Q665.50793 574.2467 666.17084 574.6444Q666.83374 575.0422 667.73975 575.9482Q668.81146 577.0199 669.2424 577.8927Q669.68427 578.7545 669.60693 579.56104Q669.5296 580.34546 668.85565 581.0195Q667.9828 581.8923 666.8448 581.77075Q665.4969 581.6161 663.78436 579.90356ZM664.5467 579.1412Q666.03827 580.63275 666.889 580.77637Q667.73975 580.92 668.248 580.41174Q668.7673 579.8925 668.61255 579.0528Q668.46893 578.2021 666.9774 576.7105Q665.4748 575.2079 664.63513 575.0753Q663.7954 574.92065 663.2651 575.451Q662.75684 575.9592 662.87836 576.69946Q663.0441 577.6386 664.5467 579.1412ZM669.8169 576.2133L669.06555 575.46204L671.36365 573.16394L672.115 573.9152L669.8169 576.2133ZM677.36304 572.3132L676.62274 573.05347L671.8719 568.30255Q671.8498 568.8329 671.67303 569.54Q671.4963 570.22504 671.27527 570.689L670.5571 569.9709Q670.8775 569.0539 670.9328 568.181Q670.98804 567.2861 670.7891 566.68945L671.2642 566.2144L677.36304 572.3132ZM681.89294 567.78326L680.4345 566.3249L677.805 568.9544L677.11993 568.2694L675.95984 561.5629L676.5675 560.95526L680.5008 564.88855L681.3184 564.071L682.0034 564.756L681.1858 565.57355L682.6442 567.032L681.89294 567.78326ZM679.7495 565.6399L677.0205 562.9109L677.8492 567.5402L679.7495 565.6399Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M668.4804 605.8345L669.19855 606.5526L665.1769 610.5743Q664.9117 610.30914 664.746 609.9666Q664.4919 609.40314 664.4256 608.67395Q664.3703 607.9337 664.4919 606.7736Q664.66864 604.9616 664.5361 604.14404Q664.4145 603.3154 663.9947 602.89557Q663.55273 602.4536 662.934 602.4757Q662.30426 602.48676 661.796 602.995Q661.25464 603.5364 661.25464 604.1772Q661.25464 604.818 661.8181 605.40356L660.9784 606.08856Q660.194 605.1495 660.26025 604.1993Q660.32654 603.227 661.1994 602.3542Q662.0722 601.4813 663.0666 601.4592Q664.061 601.43713 664.7791 602.15533Q665.14374 602.5199 665.3426 603.02814Q665.54144 603.5143 665.5857 604.26556Q665.6299 604.99475 665.5083 606.46423Q665.3978 607.70166 665.4089 608.1105Q665.4199 608.4972 665.49725 608.81757L668.4804 605.8345ZM667.2319 602.53094Q666.1492 601.4482 665.71826 600.5754Q665.2763 599.69147 665.35364 598.90704Q665.442 598.1115 666.1049 597.4486Q666.59106 596.96246 667.15454 596.79675Q667.72906 596.62 668.3478 596.75256Q668.95544 596.8741 669.6184 597.27185Q670.2813 597.6696 671.18726 598.57556Q672.259 599.6473 672.6899 600.52014Q673.13184 601.3819 673.0545 602.1885Q672.9771 602.9729 672.30316 603.64685Q671.43036 604.5197 670.29236 604.39813Q668.9444 604.24347 667.2319 602.53094ZM667.99426 601.7686Q669.4858 603.26013 670.33655 603.4038Q671.18726 603.5474 671.6955 603.0392Q672.2148 602.5199 672.0601 601.68024Q671.9165 600.82947 670.4249 599.33795Q668.9223 597.8353 668.08264 597.70276Q667.2429 597.54803 666.71265 598.07837Q666.2044 598.5866 666.3259 599.3269Q666.49164 600.266 667.99426 601.7686ZM678.3799 595.935L679.098 596.65314L675.07635 600.6748Q674.8112 600.4096 674.64545 600.06714Q674.39136 599.50366 674.3251 598.7745Q674.26984 598.0342 674.39136 596.8741Q674.5681 595.06213 674.43555 594.24457Q674.314 593.4159 673.89417 592.99603Q673.4522 592.55414 672.8335 592.57623Q672.20374 592.5873 671.6955 593.0955Q671.1541 593.6369 671.1541 594.2777Q671.1541 594.9185 671.7176 595.5041L670.8779 596.1891Q670.09344 595.24994 670.1598 594.2998Q670.2261 593.3275 671.0989 592.4547Q671.97174 591.58185 672.96606 591.55975Q673.96045 591.53766 674.6786 592.2558Q675.0432 592.6204 675.24207 593.12866Q675.441 593.6148 675.48517 594.3661Q675.52936 595.0953 675.40784 596.56476Q675.29736 597.8022 675.3084 598.211Q675.31946 598.59766 675.3968 598.9181L678.3799 595.935ZM677.1314 592.6315Q676.04865 591.5487 675.61774 590.67584Q675.1758 589.792 675.2531 589.00757Q675.34155 588.21204 676.00446 587.54913Q676.4906 587.063 677.0541 586.8973Q677.6286 586.72046 678.2473 586.8531Q678.855 586.9746 679.5179 587.3724Q680.1808 587.7701 681.0868 588.6761Q682.1585 589.7478 682.58936 590.6206Q683.0313 591.4824 682.954 592.28894Q682.87665 593.0734 682.2027 593.7474Q681.32983 594.6202 680.19183 594.49866Q678.84393 594.344 677.1314 592.6315ZM677.89374 591.86914Q679.3853 593.36066 680.236 593.5043Q681.0868 593.64795 681.59503 593.1397Q682.11426 592.6204 681.9596 591.7807Q681.816 590.93 680.3244 589.4384Q678.82184 587.93585 677.9821 587.8032Q677.14246 587.64856 676.6121 588.1789Q676.1039 588.68713 676.2254 589.42737Q676.3911 590.3665 677.89374 591.86914ZM683.1639 588.9412L682.4126 588.18994L684.7107 585.89185L685.462 586.6431L683.1639 588.9412ZM690.7101 585.04114L689.9698 585.7814L685.21893 581.0305Q685.19684 581.5608 685.0201 582.26794Q684.84326 582.95294 684.6223 583.417L683.9042 582.6988Q684.22455 581.7818 684.2798 580.90894Q684.335 580.01404 684.13617 579.4174L684.61127 578.9423L690.7101 585.04114ZM689.8593 579.90356Q688.77655 578.8208 688.34564 577.94794Q687.90375 577.0641 687.9811 576.2796Q688.06946 575.48413 688.73236 574.8212Q689.2185 574.3351 689.782 574.1694Q690.3565 573.99255 690.9752 574.1251Q691.5829 574.2467 692.2458 574.6444Q692.9087 575.0422 693.8147 575.9482Q694.8864 577.0199 695.3173 577.8927Q695.7592 578.7545 695.6819 579.56104Q695.60455 580.34546 694.9306 581.0195Q694.05774 581.8923 692.91974 581.77075Q691.57184 581.6161 689.8593 579.90356ZM690.62164 579.1412Q692.1132 580.63275 692.9639 580.77637Q693.8147 580.92 694.32294 580.41174Q694.8422 579.8925 694.6875 579.0528Q694.5439 578.2021 693.05237 576.7105Q691.54974 575.2079 690.7101 575.0753Q689.87036 574.92065 689.34 575.451Q688.8318 575.9592 688.9533 576.69946Q689.1191 577.6386 690.62164 579.1412ZM695.89185 576.2133L695.1405 575.46204L697.4386 573.16394L698.18994 573.9152L695.89185 576.2133ZM703.8357 570.4791L704.5539 571.19727L700.5322 575.21893Q700.267 574.9538 700.1013 574.61127Q699.84717 574.0478 699.7809 573.3186Q699.72565 572.57837 699.84717 571.4183Q700.024 569.6063 699.8914 568.7887Q699.76984 567.9601 699.35004 567.5402Q698.9081 567.09827 698.28937 567.12036Q697.6596 567.1314 697.15137 567.63965Q696.61 568.181 696.61 568.82184Q696.61 569.46265 697.17346 570.0482L696.33374 570.7333Q695.5493 569.7941 695.6156 568.84393Q695.6819 567.8717 696.55475 566.99884Q697.42755 566.126 698.42194 566.1039Q699.4163 566.0818 700.13446 566.8Q700.4991 567.16455 700.69794 567.6728Q700.8968 568.15894 700.941 568.9102Q700.98517 569.63947 700.86365 571.1089Q700.7532 572.3463 700.7642 572.7551Q700.77527 573.14185 700.8526 573.4622L703.8357 570.4791ZM708.78546 565.52936L709.5036 566.24756L705.48193 570.2692Q705.2168 570.004 705.0511 569.66156Q704.79694 569.0981 704.73065 568.36884Q704.6754 567.6286 704.79694 566.4685Q704.9737 564.65656 704.8411 563.8389Q704.7196 563.0103 704.29974 562.59045Q703.85785 562.1485 703.2391 562.17065Q702.6093 562.1817 702.1011 562.6899Q701.5597 563.23126 701.5597 563.87213Q701.5597 564.51294 702.12317 565.0985L701.2835 565.7835Q700.4991 564.84436 700.56537 563.8942Q700.63165 562.92194 701.50446 562.0491Q702.3773 561.1763 703.3717 561.1542Q704.366 561.1321 705.0842 561.8502Q705.4488 562.21484 705.6477 562.7231Q705.84656 563.20917 705.89075 563.9605Q705.93494 564.6897 705.8134 566.1592Q705.70294 567.3966 705.714 567.80536Q705.72504 568.1921 705.80237 568.5125L708.78546 565.52936Z" fill="#434343" fill-rule="nonzero"></path>
    <path d="M252.0 34.0C252.0 33.447716 252.44771 33.0 253.0 33.0L263.0 33.0C263.55228 33.0 264.0 33.447716 264.0 34.0L264.0 44.0C264.0 44.552284 263.55228 45.0 263.0 45.0L253.0 45.0C252.44771 45.0 252.0 44.552284 252.0 44.0Z" fill="#6fa8dc" fill-rule="nonzero"></path>
    <path d="M271.98438 43.0L275.28125 34.40625L276.5 34.40625L280.01562 43.0L278.73438 43.0L277.71875 40.390625L274.14062 40.390625L273.1875 43.0L271.98438 43.0ZM274.46875 39.46875L277.375 39.46875L276.48438 37.09375Q276.0625 36.015625 275.875 35.3125Q275.70312 36.140625 275.40625 36.953125L274.46875 39.46875ZM283.09375 42.0625L283.25 42.984375Q282.79688 43.078125 282.45312 43.078125Q281.875 43.078125 281.5625 42.90625Q281.25 42.71875 281.10938 42.421875Q280.98438 42.125 280.98438 41.171875L280.98438 37.59375L280.21875 37.59375L280.21875 36.78125L280.98438 36.78125L280.98438 35.234375L282.03125 34.609375L282.03125 36.78125L283.09375 36.78125L283.09375 37.59375L282.03125 37.59375L282.03125 41.234375Q282.03125 41.6875 282.07812 41.8125Q282.14062 41.9375 282.26562 42.015625Q282.39062 42.09375 282.625 42.09375Q282.8125 42.09375 283.09375 42.0625ZM286.09375 42.0625L286.25 42.984375Q285.79688 43.078125 285.45312 43.078125Q284.875 43.078125 284.5625 42.90625Q284.25 42.71875 284.10938 42.421875Q283.98438 42.125 283.98438 41.171875L283.98438 37.59375L283.21875 37.59375L283.21875 36.78125L283.98438 36.78125L283.98438 35.234375L285.03125 34.609375L285.03125 36.78125L286.09375 36.78125L286.09375 37.59375L285.03125 37.59375L285.03125 41.234375Q285.03125 41.6875 285.07812 41.8125Q285.14062 41.9375 285.26562 42.015625Q285.39062 42.09375 285.625 42.09375Q285.8125 42.09375 286.09375 42.0625ZM291.04688 41.0L292.14062 41.125Q291.89062 42.078125 291.1875 42.609375Q290.48438 43.140625 289.40625 43.140625Q288.04688 43.140625 287.23438 42.296875Q286.4375 41.453125 286.4375 39.9375Q286.4375 38.375 287.25 37.515625Q288.0625 36.640625 289.34375 36.640625Q290.59375 36.640625 291.375 37.484375Q292.17188 38.328125 292.17188 39.875Q292.17188 39.96875 292.17188 40.15625L287.53125 40.15625Q287.59375 41.1875 288.10938 41.734375Q288.625 42.265625 289.40625 42.265625Q289.98438 42.265625 290.39062 41.96875Q290.8125 41.65625 291.04688 41.0ZM287.59375 39.296875L291.0625 39.296875Q291.0 38.5 290.67188 38.109375Q290.15625 37.5 289.35938 37.5Q288.625 37.5 288.125 37.984375Q287.64062 38.46875 287.59375 39.296875ZM293.79688 43.0L293.79688 36.78125L294.73438 36.78125L294.73438 37.65625Q295.42188 36.640625 296.71875 36.640625Q297.28125 36.640625 297.75 36.84375Q298.23438 37.046875 298.46875 37.375Q298.70312 37.703125 298.79688 38.140625Q298.84375 38.4375 298.84375 39.171875L298.84375 43.0L297.79688 43.0L297.79688 39.21875Q297.79688 38.5625 297.67188 38.25Q297.54688 37.9375 297.23438 37.75Q296.92188 37.546875 296.5 37.546875Q295.82812 37.546875 295.32812 37.984375Q294.84375 38.40625 294.84375 39.59375L294.84375 43.0L293.79688 43.0ZM304.82812 43.0L304.82812 42.21875Q304.23438 43.140625 303.09375 43.140625Q302.34375 43.140625 301.71875 42.734375Q301.09375 42.3125 300.75 41.578125Q300.40625 40.84375 300.40625 39.890625Q300.40625 38.96875 300.71875 38.203125Q301.03125 37.4375 301.65625 37.046875Q302.28125 36.640625 303.04688 36.640625Q303.60938 36.640625 304.04688 36.875Q304.48438 37.109375 304.76562 37.484375L304.76562 34.40625L305.8125 34.40625L305.8125 43.0L304.82812 43.0ZM301.5 39.890625Q301.5 41.09375 302.0 41.6875Q302.5 42.265625 303.1875 42.265625Q303.875 42.265625 304.35938 41.703125Q304.84375 41.140625 304.84375 39.984375Q304.84375 38.703125 304.34375 38.109375Q303.85938 37.515625 303.14062 37.515625Q302.4375 37.515625 301.96875 38.09375Q301.5 38.65625 301.5 39.890625ZM311.85938 42.234375Q311.26562 42.734375 310.71875 42.9375Q310.1875 43.140625 309.5625 43.140625Q308.53125 43.140625 307.98438 42.640625Q307.4375 42.140625 307.4375 41.359375Q307.4375 40.90625 307.64062 40.53125Q307.84375 40.140625 308.1875 39.921875Q308.53125 39.6875 308.95312 39.578125Q309.25 39.484375 309.89062 39.40625Q311.15625 39.265625 311.76562 39.046875Q311.76562 38.828125 311.76562 38.78125Q311.76562 38.125 311.46875 37.859375Q311.0625 37.515625 310.26562 37.515625Q309.53125 37.515625 309.17188 37.78125Q308.8125 38.03125 308.64062 38.6875L307.60938 38.546875Q307.75 37.890625 308.07812 37.484375Q308.40625 37.078125 309.01562 36.859375Q309.625 36.640625 310.42188 36.640625Q311.21875 36.640625 311.71875 36.828125Q312.21875 37.015625 312.45312 37.296875Q312.6875 37.578125 312.78125 38.015625Q312.82812 38.28125 312.82812 38.984375L312.82812 40.390625Q312.82812 41.859375 312.89062 42.25Q312.96875 42.640625 313.17188 43.0L312.0625 43.0Q311.90625 42.671875 311.85938 42.234375ZM311.76562 39.875Q311.1875 40.109375 310.04688 40.28125Q309.39062 40.375 309.125 40.5Q308.85938 40.609375 308.70312 40.828125Q308.5625 41.046875 308.5625 41.328125Q308.5625 41.75 308.875 42.03125Q309.20312 42.3125 309.8125 42.3125Q310.42188 42.3125 310.89062 42.046875Q311.375 41.78125 311.59375 41.3125Q311.76562 40.953125 311.76562 40.265625L311.76562 39.875ZM314.79688 43.0L314.79688 36.78125L315.73438 36.78125L315.73438 37.65625Q316.42188 36.640625 317.71875 36.640625Q318.28125 36.640625 318.75 36.84375Q319.23438 37.046875 319.46875 37.375Q319.70312 37.703125 319.79688 38.140625Q319.84375 38.4375 319.84375 39.171875L319.84375 43.0L318.79688 43.0L318.79688 39.21875Q318.79688 38.5625 318.67188 38.25Q318.54688 37.9375 318.23438 37.75Q317.92188 37.546875 317.5 37.546875Q316.82812 37.546875 316.32812 37.984375Q315.84375 38.40625 315.84375 39.59375L315.84375 43.0L314.79688 43.0ZM325.85938 40.71875L326.89062 40.859375Q326.71875 41.921875 326.01562 42.53125Q325.3125 43.140625 324.29688 43.140625Q323.01562 43.140625 322.23438 42.3125Q321.46875 41.46875 321.46875 39.90625Q321.46875 38.90625 321.79688 38.15625Q322.14062 37.390625 322.8125 37.015625Q323.5 36.640625 324.3125 36.640625Q325.3125 36.640625 325.95312 37.15625Q326.60938 37.65625 326.79688 38.609375L325.76562 38.765625Q325.625 38.140625 325.25 37.828125Q324.875 37.5 324.34375 37.5Q323.54688 37.5 323.04688 38.078125Q322.54688 38.640625 322.54688 39.875Q322.54688 41.140625 323.03125 41.703125Q323.51562 42.265625 324.28125 42.265625Q324.90625 42.265625 325.3125 41.890625Q325.73438 41.515625 325.85938 40.71875ZM332.04688 41.0L333.14062 41.125Q332.89062 42.078125 332.1875 42.609375Q331.48438 43.140625 330.40625 43.140625Q329.04688 43.140625 328.23438 42.296875Q327.4375 41.453125 327.4375 39.9375Q327.4375 38.375 328.25 37.515625Q329.0625 36.640625 330.34375 36.640625Q331.59375 36.640625 332.375 37.484375Q333.17188 38.328125 333.17188 39.875Q333.17188 39.96875 333.17188 40.15625L328.53125 40.15625Q328.59375 41.1875 329.10938 41.734375Q329.625 42.265625 330.40625 42.265625Q330.98438 42.265625 331.39062 41.96875Q331.8125 41.65625 332.04688 41.0ZM328.59375 39.296875L332.0625 39.296875Q332.0 38.5 331.67188 38.109375Q331.15625 37.5 330.35938 37.5Q329.625 37.5 329.125 37.984375Q328.64062 38.46875 328.59375 39.296875Z" fill="#6d9eeb" fill-rule="nonzero"></path>
    <path d="M350.0 39.0L362.0 39.0" fill-rule="nonzero" stroke="#ff6d01" stroke-linecap="butt" stroke-opacity="0.4" stroke-width="4.0"></path>
    <path d="M370.5 40.734375L371.5625 40.59375Q371.73438 41.484375 372.17188 41.890625Q372.60938 42.28125 373.23438 42.28125Q373.98438 42.28125 374.5 41.765625Q375.01562 41.25 375.01562 40.484375Q375.01562 39.765625 374.53125 39.296875Q374.0625 38.8125 373.32812 38.8125Q373.03125 38.8125 372.57812 38.9375L372.70312 38.0Q372.8125 38.015625 372.875 38.015625Q373.54688 38.015625 374.07812 37.671875Q374.625 37.3125 374.625 36.578125Q374.625 36.0 374.23438 35.625Q373.84375 35.234375 373.21875 35.234375Q372.60938 35.234375 372.1875 35.625Q371.78125 36.015625 371.67188 36.78125L370.60938 36.59375Q370.79688 35.546875 371.48438 34.96875Q372.17188 34.375 373.1875 34.375Q373.89062 34.375 374.48438 34.6875Q375.07812 34.984375 375.39062 35.5Q375.70312 36.015625 375.70312 36.609375Q375.70312 37.15625 375.40625 37.625Q375.10938 38.078125 374.53125 38.34375Q375.28125 38.515625 375.70312 39.078125Q376.125 39.625 376.125 40.46875Q376.125 41.59375 375.29688 42.375Q374.48438 43.15625 373.23438 43.15625Q372.10938 43.15625 371.35938 42.484375Q370.60938 41.796875 370.5 40.734375ZM381.9375 43.0L380.03125 36.78125L381.125 36.78125L382.10938 40.375L382.48438 41.703125Q382.51562 41.609375 382.8125 40.421875L383.79688 36.78125L384.875 36.78125L385.8125 40.390625L386.125 41.578125L386.48438 40.375L387.54688 36.78125L388.57812 36.78125L386.625 43.0L385.53125 43.0L384.54688 39.265625L384.29688 38.21875L383.04688 43.0L381.9375 43.0ZM394.04688 41.0L395.14062 41.125Q394.89062 42.078125 394.1875 42.609375Q393.48438 43.140625 392.40625 43.140625Q391.04688 43.140625 390.23438 42.296875Q389.4375 41.453125 389.4375 39.9375Q389.4375 38.375 390.25 37.515625Q391.0625 36.640625 392.34375 36.640625Q393.59375 36.640625 394.375 37.484375Q395.17188 38.328125 395.17188 39.875Q395.17188 39.96875 395.17188 40.15625L390.53125 40.15625Q390.59375 41.1875 391.10938 41.734375Q391.625 42.265625 392.40625 42.265625Q392.98438 42.265625 393.39062 41.96875Q393.8125 41.65625 394.04688 41.0ZM390.59375 39.296875L394.0625 39.296875Q394.0 38.5 393.67188 38.109375Q393.15625 37.5 392.35938 37.5Q391.625 37.5 391.125 37.984375Q390.64062 38.46875 390.59375 39.296875ZM401.04688 41.0L402.14062 41.125Q401.89062 42.078125 401.1875 42.609375Q400.48438 43.140625 399.40625 43.140625Q398.04688 43.140625 397.23438 42.296875Q396.4375 41.453125 396.4375 39.9375Q396.4375 38.375 397.25 37.515625Q398.0625 36.640625 399.34375 36.640625Q400.59375 36.640625 401.375 37.484375Q402.17188 38.328125 402.17188 39.875Q402.17188 39.96875 402.17188 40.15625L397.53125 40.15625Q397.59375 41.1875 398.10938 41.734375Q398.625 42.265625 399.40625 42.265625Q399.98438 42.265625 400.39062 41.96875Q400.8125 41.65625 401.04688 41.0ZM397.59375 39.296875L401.0625 39.296875Q401.0 38.5 400.67188 38.109375Q400.15625 37.5 399.35938 37.5Q398.625 37.5 398.125 37.984375Q397.64062 38.46875 397.59375 39.296875ZM403.79688 43.0L403.79688 34.40625L404.85938 34.40625L404.85938 39.3125L407.34375 36.78125L408.71875 36.78125L406.32812 39.078125L408.95312 43.0L407.65625 43.0L405.59375 39.8125L404.85938 40.53125L404.85938 43.0L403.79688 43.0ZM412.79688 43.0L412.79688 36.78125L413.73438 36.78125L413.73438 37.65625Q414.03125 37.1875 414.51562 36.921875Q415.0 36.640625 415.625 36.640625Q416.3125 36.640625 416.75 36.921875Q417.20312 37.203125 417.375 37.71875Q418.125 36.640625 419.29688 36.640625Q420.23438 36.640625 420.71875 37.15625Q421.21875 37.65625 421.21875 38.734375L421.21875 43.0L420.17188 43.0L420.17188 39.078125Q420.17188 38.453125 420.0625 38.171875Q419.96875 37.890625 419.70312 37.71875Q419.4375 37.546875 419.0625 37.546875Q418.40625 37.546875 417.96875 37.984375Q417.54688 38.421875 417.54688 39.390625L417.54688 43.0L416.48438 43.0L416.48438 38.953125Q416.48438 38.25 416.21875 37.90625Q415.96875 37.546875 415.39062 37.546875Q414.9375 37.546875 414.5625 37.78125Q414.1875 38.015625 414.01562 38.46875Q413.84375 38.921875 413.84375 39.765625L413.84375 43.0L412.79688 43.0ZM422.40625 39.890625Q422.40625 38.15625 423.35938 37.328125Q424.15625 36.640625 425.3125 36.640625Q426.59375 36.640625 427.40625 37.484375Q428.23438 38.3125 428.23438 39.796875Q428.23438 41.0 427.875 41.6875Q427.51562 42.375 426.8125 42.765625Q426.125 43.140625 425.3125 43.140625Q424.01562 43.140625 423.20312 42.3125Q422.40625 41.46875 422.40625 39.890625ZM423.48438 39.890625Q423.48438 41.078125 424.0 41.671875Q424.53125 42.265625 425.3125 42.265625Q426.10938 42.265625 426.625 41.671875Q427.14062 41.078125 427.14062 39.859375Q427.14062 38.703125 426.60938 38.109375Q426.09375 37.515625 425.3125 37.515625Q424.53125 37.515625 424.0 38.109375Q423.48438 38.6875 423.48438 39.890625ZM431.51562 43.0L429.15625 36.78125L430.26562 36.78125L431.60938 40.5Q431.8125 41.109375 432.0 41.75Q432.14062 41.265625 432.39062 40.578125L433.78125 36.78125L434.85938 36.78125L432.5 43.0L431.51562 43.0ZM435.79688 35.625L435.79688 34.40625L436.85938 34.40625L436.85938 35.625L435.79688 35.625ZM435.79688 43.0L435.79688 36.78125L436.85938 36.78125L436.85938 43.0L435.79688 43.0ZM438.79688 43.0L438.79688 36.78125L439.73438 36.78125L439.73438 37.65625Q440.42188 36.640625 441.71875 36.640625Q442.28125 36.640625 442.75 36.84375Q443.23438 37.046875 443.46875 37.375Q443.70312 37.703125 443.79688 38.140625Q443.84375 38.4375 443.84375 39.171875L443.84375 43.0L442.79688 43.0L442.79688 39.21875Q442.79688 38.5625 442.67188 38.25Q442.54688 37.9375 442.23438 37.75Q441.92188 37.546875 441.5 37.546875Q440.82812 37.546875 440.32812 37.984375Q439.84375 38.40625 439.84375 39.59375L439.84375 43.0L438.79688 43.0ZM445.59375 43.515625L446.625 43.671875Q446.6875 44.140625 446.98438 44.359375Q447.375 44.65625 448.04688 44.65625Q448.78125 44.65625 449.17188 44.359375Q449.57812 44.0625 449.71875 43.546875Q449.8125 43.21875 449.79688 42.1875Q449.10938 43.0 448.07812 43.0Q446.79688 43.0 446.09375 42.078125Q445.39062 41.140625 445.39062 39.859375Q445.39062 38.96875 445.70312 38.21875Q446.03125 37.453125 446.64062 37.046875Q447.25 36.640625 448.07812 36.640625Q449.1875 36.640625 449.90625 37.53125L449.90625 36.78125L450.875 36.78125L450.875 42.15625Q450.875 43.609375 450.57812 44.21875Q450.28125 44.828125 449.64062 45.171875Q449.0 45.53125 448.0625 45.53125Q446.95312 45.53125 446.26562 45.03125Q445.57812 44.53125 445.59375 43.515625ZM446.46875 39.78125Q446.46875 41.0 446.95312 41.5625Q447.4375 42.125 448.17188 42.125Q448.90625 42.125 449.39062 41.5625Q449.89062 41.0 449.89062 39.8125Q449.89062 38.671875 449.375 38.09375Q448.875 37.515625 448.15625 37.515625Q447.45312 37.515625 446.95312 38.09375Q446.46875 38.65625 446.46875 39.78125ZM459.85938 42.234375Q459.26562 42.734375 458.71875 42.9375Q458.1875 43.140625 457.5625 43.140625Q456.53125 43.140625 455.98438 42.640625Q455.4375 42.140625 455.4375 41.359375Q455.4375 40.90625 455.64062 40.53125Q455.84375 40.140625 456.1875 39.921875Q456.53125 39.6875 456.95312 39.578125Q457.25 39.484375 457.89062 39.40625Q459.15625 39.265625 459.76562 39.046875Q459.76562 38.828125 459.76562 38.78125Q459.76562 38.125 459.46875 37.859375Q459.0625 37.515625 458.26562 37.515625Q457.53125 37.515625 457.17188 37.78125Q456.8125 38.03125 456.64062 38.6875L455.60938 38.546875Q455.75 37.890625 456.07812 37.484375Q456.40625 37.078125 457.01562 36.859375Q457.625 36.640625 458.42188 36.640625Q459.21875 36.640625 459.71875 36.828125Q460.21875 37.015625 460.45312 37.296875Q460.6875 37.578125 460.78125 38.015625Q460.82812 38.28125 460.82812 38.984375L460.82812 40.390625Q460.82812 41.859375 460.89062 42.25Q460.96875 42.640625 461.17188 43.0L460.0625 43.0Q459.90625 42.671875 459.85938 42.234375ZM459.76562 39.875Q459.1875 40.109375 458.04688 40.28125Q457.39062 40.375 457.125 40.5Q456.85938 40.609375 456.70312 40.828125Q456.5625 41.046875 456.5625 41.328125Q456.5625 41.75 456.875 42.03125Q457.20312 42.3125 457.8125 42.3125Q458.42188 42.3125 458.89062 42.046875Q459.375 41.78125 459.59375 41.3125Q459.76562 40.953125 459.76562 40.265625L459.76562 39.875ZM464.51562 43.0L462.15625 36.78125L463.26562 36.78125L464.60938 40.5Q464.8125 41.109375 465.0 41.75Q465.14062 41.265625 465.39062 40.578125L466.78125 36.78125L467.85938 36.78125L465.5 43.0L464.51562 43.0ZM473.04688 41.0L474.14062 41.125Q473.89062 42.078125 473.1875 42.609375Q472.48438 43.140625 471.40625 43.140625Q470.04688 43.140625 469.23438 42.296875Q468.4375 41.453125 468.4375 39.9375Q468.4375 38.375 469.25 37.515625Q470.0625 36.640625 471.34375 36.640625Q472.59375 36.640625 473.375 37.484375Q474.17188 38.328125 474.17188 39.875Q474.17188 39.96875 474.17188 40.15625L469.53125 40.15625Q469.59375 41.1875 470.10938 41.734375Q470.625 42.265625 471.40625 42.265625Q471.98438 42.265625 472.39062 41.96875Q472.8125 41.65625 473.04688 41.0ZM469.59375 39.296875L473.0625 39.296875Q473.0 38.5 472.67188 38.109375Q472.15625 37.5 471.35938 37.5Q470.625 37.5 470.125 37.984375Q469.64062 38.46875 469.59375 39.296875ZM475.78125 43.0L475.78125 36.78125L476.73438 36.78125L476.73438 37.71875Q477.09375 37.0625 477.39062 36.859375Q477.70312 36.640625 478.07812 36.640625Q478.60938 36.640625 479.15625 36.96875L478.79688 37.953125Q478.40625 37.71875 478.03125 37.71875Q477.67188 37.71875 477.39062 37.9375Q477.125 38.140625 477.01562 38.515625Q476.82812 39.078125 476.82812 39.734375L476.82812 43.0L475.78125 43.0ZM483.85938 42.234375Q483.26562 42.734375 482.71875 42.9375Q482.1875 43.140625 481.5625 43.140625Q480.53125 43.140625 479.98438 42.640625Q479.4375 42.140625 479.4375 41.359375Q479.4375 40.90625 479.64062 40.53125Q479.84375 40.140625 480.1875 39.921875Q480.53125 39.6875 480.95312 39.578125Q481.25 39.484375 481.89062 39.40625Q483.15625 39.265625 483.76562 39.046875Q483.76562 38.828125 483.76562 38.78125Q483.76562 38.125 483.46875 37.859375Q483.0625 37.515625 482.26562 37.515625Q481.53125 37.515625 481.17188 37.78125Q480.8125 38.03125 480.64062 38.6875L479.60938 38.546875Q479.75 37.890625 480.07812 37.484375Q480.40625 37.078125 481.01562 36.859375Q481.625 36.640625 482.42188 36.640625Q483.21875 36.640625 483.71875 36.828125Q484.21875 37.015625 484.45312 37.296875Q484.6875 37.578125 484.78125 38.015625Q484.82812 38.28125 484.82812 38.984375L484.82812 40.390625Q484.82812 41.859375 484.89062 42.25Q484.96875 42.640625 485.17188 43.0L484.0625 43.0Q483.90625 42.671875 483.85938 42.234375ZM483.76562 39.875Q483.1875 40.109375 482.04688 40.28125Q481.39062 40.375 481.125 40.5Q480.85938 40.609375 480.70312 40.828125Q480.5625 41.046875 480.5625 41.328125Q480.5625 41.75 480.875 42.03125Q481.20312 42.3125 481.8125 42.3125Q482.42188 42.3125 482.89062 42.046875Q483.375 41.78125 483.59375 41.3125Q483.76562 40.953125 483.76562 40.265625L483.76562 39.875ZM486.59375 43.515625L487.625 43.671875Q487.6875 44.140625 487.98438 44.359375Q488.375 44.65625 489.04688 44.65625Q489.78125 44.65625 490.17188 44.359375Q490.57812 44.0625 490.71875 43.546875Q490.8125 43.21875 490.79688 42.1875Q490.10938 43.0 489.07812 43.0Q487.79688 43.0 487.09375 42.078125Q486.39062 41.140625 486.39062 39.859375Q486.39062 38.96875 486.70312 38.21875Q487.03125 37.453125 487.64062 37.046875Q488.25 36.640625 489.07812 36.640625Q490.1875 36.640625 490.90625 37.53125L490.90625 36.78125L491.875 36.78125L491.875 42.15625Q491.875 43.609375 491.57812 44.21875Q491.28125 44.828125 490.64062 45.171875Q490.0 45.53125 489.0625 45.53125Q487.95312 45.53125 487.26562 45.03125Q486.57812 44.53125 486.59375 43.515625ZM487.46875 39.78125Q487.46875 41.0 487.95312 41.5625Q488.4375 42.125 489.17188 42.125Q489.90625 42.125 490.39062 41.5625Q490.89062 41.0 490.89062 39.8125Q490.89062 38.671875 490.375 38.09375Q489.875 37.515625 489.15625 37.515625Q488.45312 37.515625 487.95312 38.09375Q487.46875 38.65625 487.46875 39.78125ZM498.04688 41.0L499.14062 41.125Q498.89062 42.078125 498.1875 42.609375Q497.48438 43.140625 496.40625 43.140625Q495.04688 43.140625 494.23438 42.296875Q493.4375 41.453125 493.4375 39.9375Q493.4375 38.375 494.25 37.515625Q495.0625 36.640625 496.34375 36.640625Q497.59375 36.640625 498.375 37.484375Q499.17188 38.328125 499.17188 39.875Q499.17188 39.96875 499.17188 40.15625L494.53125 40.15625Q494.59375 41.1875 495.10938 41.734375Q495.625 42.265625 496.40625 42.265625Q496.98438 42.265625 497.39062 41.96875Q497.8125 41.65625 498.04688 41.0ZM494.59375 39.296875L498.0625 39.296875Q498.0 38.5 497.67188 38.109375Q497.15625 37.5 496.35938 37.5Q495.625 37.5 495.125 37.984375Q494.64062 38.46875 494.59375 39.296875Z" fill="#ff6d01" fill-rule="nonzero"></path>
   </svg>
  </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-p0592r4">[P0592R4]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p0592r4">To boldly suggest an overall plan for C++23</a>. 25 November 2019. URL: <a href="https://wg21.link/p0592r4">https://wg21.link/p0592r4</a>
   <dt id="biblio-p1000r4">[P1000R4]
   <dd>Herb Sutter. <a href="https://wg21.link/p1000r4">C++ IS schedule</a>. 14 February 2020. URL: <a href="https://wg21.link/p1000r4">https://wg21.link/p1000r4</a>
   <dt id="biblio-p1371r3">[P1371R3]
   <dd>Michael Park, Bruno Cardoso Lopes, Sergei Murzin, David Sankel, Dan Sarginson, Bjarne Stroustrup. <a href="https://wg21.link/p1371r3">Pattern Matching</a>. 15 September 2020. URL: <a href="https://wg21.link/p1371r3">https://wg21.link/p1371r3</a>
   <dt id="biblio-p1393r0">[P1393R0]
   <dd>D. S. Hollman, Chris Kohlhoff, Bryce Lelbach, Jared Hoberock, Gordon Brown, Michał Dominiak. <a href="https://wg21.link/p1393r0">A General Property Customization Mechanism</a>. 13 January 2019. URL: <a href="https://wg21.link/p1393r0">https://wg21.link/p1393r0</a>
   <dt id="biblio-p1401r3">[P1401R3]
   <dd>Andrzej Krzemieński. <a href="https://wg21.link/p1401r3">Narrowing contextual conversions to bool</a>. 27 May 2020. URL: <a href="https://wg21.link/p1401r3">https://wg21.link/p1401r3</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-p1701r1">[P1701R1]
   <dd>Nathan Sidwell. <a href="https://wg21.link/p1701r1">Inline Namespaces: Fragility Bites</a>. 13 September 2020. URL: <a href="https://wg21.link/p1701r1">https://wg21.link/p1701r1</a>
   <dt id="biblio-p1726r3">[P1726R3]
   <dd>Paul E. McKenney, Maged Michael, Jens Mauer, Peter Sewell, Martin Uecker, Hans Boehm, Hubert Tong, Niall Douglas, Will Deacon, Michael Wong, and David Goldblatt. <a href="https://wg21.link/p1726r3">Pointer lifetime-end zap</a>. 21 February 2020. URL: <a href="https://wg21.link/p1726r3">https://wg21.link/p1726r3</a>
   <dt id="biblio-p1847r3">[P1847R3]
   <dd>Pal Balog. <a href="https://wg21.link/p1847r3">Make declaration order layout mandated</a>. 1 March 2020. URL: <a href="https://wg21.link/p1847r3">https://wg21.link/p1847r3</a>
   <dt id="biblio-p1858r2">[P1858R2]
   <dd>Barry Revzin. <a href="https://wg21.link/p1858r2">Generalized pack declaration and usage</a>. 1 March 2020. URL: <a href="https://wg21.link/p1858r2">https://wg21.link/p1858r2</a>
   <dt id="biblio-p1875r0">[P1875R0]
   <dd>Michael Spear, Hans Boehm, Victor Luchangco, Michael Scott, Michael Wong. <a href="https://wg21.link/p1875r0">Transactional Memory Lite Support in C++</a>. 7 October 2019. URL: <a href="https://wg21.link/p1875r0">https://wg21.link/p1875r0</a>
   <dt id="biblio-p1938r1">[P1938R1]
   <dd>Barry Revzin, Daveed Vandevoorde, Richard Smith, Andrew Sutton. <a href="https://wg21.link/p1938r1">if consteval</a>. 2 March 2020. URL: <a href="https://wg21.link/p1938r1">https://wg21.link/p1938r1</a>
   <dt id="biblio-p1949r4">[P1949R4]
   <dd>Steve Downey, Zach Laine, Tom Honermann, Peter Bindels, Jens Maurer. <a href="https://wg21.link/p1949r4">C++ Identifier Syntax using Unicode Standard Annex 31</a>. 5 June 2020. URL: <a href="https://wg21.link/p1949r4">https://wg21.link/p1949r4</a>
   <dt id="biblio-p1949r6">[P1949R6]
   <dd>Steve Downey, Zach Laine, Tom Honermann, Peter Bindels, Jens Maurer. <a href="https://wg21.link/p1949r6">C++ Identifier Syntax using Unicode Standard Annex 31</a>. 15 September 2020. URL: <a href="https://wg21.link/p1949r6">https://wg21.link/p1949r6</a>
   <dt id="biblio-p1967r2">[P1967R2]
   <dd>JeanHeyd Meneide. <a href="https://wg21.link/p1967r2">#embed - a simple, scannable preprocessor-based resource acquisition method</a>. 2 March 2020. URL: <a href="https://wg21.link/p1967r2">https://wg21.link/p1967r2</a>
   <dt id="biblio-p1999r0">[P1999R0]
   <dd>Ville Voutilainen. <a href="https://wg21.link/p1999r0">Process proposal: double-check evolutionary material via a Tentatively Ready status</a>. 25 November 2019. URL: <a href="https://wg21.link/p1999r0">https://wg21.link/p1999r0</a>
   <dt id="biblio-p2011r1">[P2011R1]
   <dd>Barry Revzin, Colby Pike. <a href="https://wg21.link/p2011r1">A pipeline-rewrite operator</a>. 16 April 2020. URL: <a href="https://wg21.link/p2011r1">https://wg21.link/p2011r1</a>
   <dt id="biblio-p2013r2">[P2013R2]
   <dd>Ben Craig. <a href="https://wg21.link/p2013r2">Freestanding Language: Optional ::operator new</a>. 14 August 2020. URL: <a href="https://wg21.link/p2013r2">https://wg21.link/p2013r2</a>
   <dt id="biblio-p2013r3">[P2013R3]
   <dd>Ben Craig. <a href="https://wg21.link/p2013r3">Freestanding Language: Optional ::operator new</a>. 13 September 2020. URL: <a href="https://wg21.link/p2013r3">https://wg21.link/p2013r3</a>
   <dt id="biblio-p2025r1">[P2025R1]
   <dd>Anton Zhilin. <a href="https://wg21.link/p2025r1">Guaranteed copy elision for return variables</a>. 15 June 2020. URL: <a href="https://wg21.link/p2025r1">https://wg21.link/p2025r1</a>
   <dt id="biblio-p2044r0">[P2044R0]
   <dd>Robert Leahy. <a href="https://wg21.link/p2044r0">Member Templates for Local Classes</a>. 12 January 2020. URL: <a href="https://wg21.link/p2044r0">https://wg21.link/p2044r0</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-p2139r2">[P2139R2]
   <dd>Alisdair Meredith. <a href="https://wg21.link/p2139r2">Reviewing Deprecated Facilities of C++20 for C++23</a>. 15 July 2020. URL: <a href="https://wg21.link/p2139r2">https://wg21.link/p2139r2</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-p2156r0">[P2156R0]
   <dd>Erich Keane. <a href="https://wg21.link/p2156r0">Allow Duplicate Attributes</a>. 15 April 2020. URL: <a href="https://wg21.link/p2156r0">https://wg21.link/p2156r0</a>
   <dt id="biblio-p2156r1">[P2156R1]
   <dd>Erich Keane. <a href="https://wg21.link/p2156r1">Allow Duplicate Attributes</a>. 2 July 2020. URL: <a href="https://wg21.link/p2156r1">https://wg21.link/p2156r1</a>
   <dt id="biblio-p2173r0">[P2173R0]
   <dd>Daveed Vandevoorde, Inbal Levi, Ville Voutilainen. <a href="https://wg21.link/p2173r0">Attributes on Lambda-Expressions</a>. 15 May 2020. URL: <a href="https://wg21.link/p2173r0">https://wg21.link/p2173r0</a>
   <dt id="biblio-p2174r0">[P2174R0]
   <dd>Zhihao Yuan. <a href="https://wg21.link/p2174r0">Compound Literals</a>. 16 May 2020. URL: <a href="https://wg21.link/p2174r0">https://wg21.link/p2174r0</a>
   <dt id="biblio-p2186r0">[P2186R0]
   <dd>JF Bastien, Alisdair Meredith. <a href="https://wg21.link/p2186r0">Removing Garbage Collection Support</a>. 12 July 2020. URL: <a href="https://wg21.link/p2186r0">https://wg21.link/p2186r0</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-p2201r0">[P2201R0]
   <dd>Jens Maurer. <a href="https://wg21.link/p2201r0">Mixed string literal concatenation</a>. 14 July 2020. URL: <a href="https://wg21.link/p2201r0">https://wg21.link/p2201r0</a>
   <dt id="biblio-p2223r0">[P2223R0]
   <dd>Corentin Jabot. <a href="https://wg21.link/p2223r0">Trimming whitespaces before line splicing</a>. 14 September 2020. URL: <a href="https://wg21.link/p2223r0">https://wg21.link/p2223r0</a>
  </dl>