@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| Table of Contents
|--------------------------------------------------------------------------
| 
| # global 
| # elements
| # components
| # blocks
| # plugins (third party)
| # pages
| # overrides
|
| Based *roughly* on ITCSS 
| -- differences: combined settings/tools/generic into global, renamed base to elements,
| -- combined objects and components into components, renamed trumps to overrides, 
| -- added page/gutenberg block/plugin specific styles
| -- ref: https://csswizardry.net/talks/2014/11/itcss-dafed.pdf
*/
/*
|--------------------------------------------------------------------------
| Global Styles
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Variables
|--------------------------------------------------------------------------
|
| All sass variables used. Colors, fonts, icons, breakpoints etc
|
| # colors
| # typography
| # breakpoint
|
*/
/*
|--------------------------------------------------------------------------
| Colors
|--------------------------------------------------------------------------
|
| Color variables follow BEM methodology
|
| # alpha = Burnt Orange
| # beta = Dark Blue
|
*/
/*
|--------------------------------------------------------------------------
| Typography Variables
|--------------------------------------------------------------------------
|
|
|
*/
/*
|--------------------------------------------------------------------------
| Responsive Breakpoints
|--------------------------------------------------------------------------
|
| These variables are used in:
| mixins/_breakpoint.scss
|
*/
/*
|--------------------------------------------------------------------------
| Layout Variables
|--------------------------------------------------------------------------
|
|
|
*/
/*
|--------------------------------------------------------------------------
| Functions
|--------------------------------------------------------------------------
|
| # typography
|
*/
/*
|--------------------------------------------------------------------------
| Responsive Breakpoint Mixin
|--------------------------------------------------------------------------
|
| This mixin checks for min or max keywords. Custom dimensions also
| supported.
|
| Breakpoints variable dimensions can can be found in:
| /sass/abstracts/variables/_breakpoints.scss
|
| Usage example:
|
| @include breakpoint(mobile, tablet, portrait) {
|   styles...
| }
|
| using '0' in either of the 3 breakpoint variables will return null e.g.
|
| @include breakpoint(0, tablet, 0) {
|   styles...
| }
|
| The above would compile to:
|
| @media screen and (max-width: 1024px) {
|   styles...
| }
|
*/
/*
|--------------------------------------------------------------------------
| BEM utility mixins
|--------------------------------------------------------------------------
|
| Shortens the BEM syntax of your SCSS child elements into the directive
| @include e('elementName') {}making it a lot tidier than you would without
| these.
|
| You can also | use @include m('modifierName') {} for the modifier or
| @include m('modifierName', 'specificParentClass') {}
|
*/
/* ===============================================================
  Context mixin, used to add a class before root class
=============================================================== */
/*
|--------------------------------------------------------------------------
| Document
|--------------------------------------------------------------------------
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html {
  font-size: 100%;
  line-height: 1.15;
}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/
body {
  background: #F0E9DE;
  margin: 0;
  font-family: "artifex-cf", sans-serif;
}

main {
  display: block;
}

/*
|--------------------------------------------------------------------------
|  Grouping content
|--------------------------------------------------------------------------
*/
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/*
|--------------------------------------------------------------------------
|  Text-level semantics
|--------------------------------------------------------------------------
*/
a {
  display: inline-block;
  transition: -webkit-text-decoration 0.1s ease;
  transition: text-decoration 0.1s ease;
  transition: text-decoration 0.1s ease, -webkit-text-decoration 0.1s ease;
  background-color: transparent;
  color: #E4A746;
}
a:hover {
  text-decoration-color: transparent;
}

p {
  font-style: normal;
  font-weight: normal;
  margin: 0 0 1.875rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
|--------------------------------------------------------------------------
|  Embedded content
|--------------------------------------------------------------------------
*/
img {
  border-style: none;
  max-width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/*
|--------------------------------------------------------------------------
|  Forms
|--------------------------------------------------------------------------
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
}

input,
textarea,
select,
button {
  background: none;
  border: 1px solid #000;
  font-size: 1rem;
  padding: 0.84rem 0.9375rem 0.7rem;
}

input:not([type=checkbox], [type=radio]):focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
  border-color: #E4A746;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: 0;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*
|--------------------------------------------------------------------------
|  Interactive
|--------------------------------------------------------------------------
*/
details {
  display: block;
}

summary {
  display: list-item;
}

/*
|--------------------------------------------------------------------------
|  Misc
|--------------------------------------------------------------------------
*/
ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
}

th {
  text-align: left;
}

dt, dd {
  margin: 0;
  padding: 0;
}

blockquote,
figure {
  margin: 0;
}

/*
|--------------------------------------------------------------------------
| Elements
|--------------------------------------------------------------------------
|
| These are basic tags, such as a, h1
|
|
*/
.h-styleguide {
  font-family: "artifex-hand-cf", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 57, 83, 0.5);
}

p, .p, .hover-list-desc {
  font-family: "artifex-cf", sans-serif;
  font-size: 1rem;
  font-size: clamp(1rem, 0.96rem + 0.17vw, 1.13rem); /* 16.00px → 18.00px */
  line-height: 1.75;
  font-weight: 300;
  color: #003953;
}
@media screen and (min-width: 1560px) {
  p, .p, .hover-list-desc {
    font-size: 1.125rem;
  }
}

.p-lg, .hero-cta-desc, .p-lg p, .hero-cta-desc p {
  font-family: "artifex-cf", sans-serif;
  font-size: 1.125rem;
  font-size: clamp(1.13rem, 1.09rem + 0.17vw, 1.25rem); /* 18.00px → 20.00px */
  line-height: 1.75;
  font-weight: 300;
  color: #003953;
}
@media screen and (min-width: 1560px) {
  .p-lg, .hero-cta-desc, .p-lg p, .hero-cta-desc p {
    font-size: 1.25rem;
  }
}

.p-sm, .events-item-desc, .card-desc, .p-sm p, .events-item-desc p, .card-desc p {
  font-family: "artifex-cf", sans-serif;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.71rem + 0.17vw, 0.88rem); /* 12.00px → 14.00px */
  line-height: 1.75;
  font-weight: 300;
  color: #003953;
}
@media screen and (min-width: 1560px) {
  .p-sm, .events-item-desc, .card-desc, .p-sm p, .events-item-desc p, .card-desc p {
    font-size: 0.875rem;
  }
}

.h-banner-lg, .h-banner, h1, h2, h3, h4, h5, .h-1, .h-2, .hero-cta-title, .h-3, .gform_title, .h-4, .events-item-title, .card.-featured .card-title, .h-5, .card-title, .hover-list-title {
  color: #003953;
}

.h-banner-lg,
.h-banner-lg > * {
  font-family: "artifex-cf", sans-serif;
  font-size: 3.6875rem;
  font-size: clamp(3.69rem, 2.09rem + 7.08vw, 9rem); /* 59.00px → 144.00px */
  line-height: 0.9375;
  font-weight: 200;
}
@media screen and (min-width: 1560px) {
  .h-banner-lg,
  .h-banner-lg > * {
    font-size: 9rem;
  }
}

.h-banner,
.h-banner > * {
  font-family: "artifex-cf", sans-serif;
  font-size: 2.75rem;
  font-size: clamp(2.75rem, 1.93rem + 3.67vw, 5.5rem); /* 44.00px → 88.00px */
  line-height: 1.05;
  font-weight: 300;
}
@media screen and (min-width: 1560px) {
  .h-banner,
  .h-banner > * {
    font-size: 5.5rem;
  }
}

.h-1,
.h-1 > *,
h1 {
  font-family: "artifex-cf", sans-serif;
  font-size: 2.375rem;
  font-size: clamp(2.38rem, 1.89rem + 2.17vw, 4rem); /* 38.00px → 64.00px */
  line-height: 1.15;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .h-1,
  .h-1 > *,
  h1 {
    font-size: 4rem;
  }
}

.h-2, .hero-cta-title,
.h-2 > *,
.hero-cta-title > *,
h2 {
  font-family: "artifex-hand-cf", sans-serif;
  font-size: 1.8125rem;
  font-size: clamp(1.81rem, 1.46rem + 1.58vw, 3rem); /* 29.00px → 48.00px */
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .h-2, .hero-cta-title,
  .h-2 > *,
  .hero-cta-title > *,
  h2 {
    font-size: 3rem;
  }
}

.h-3, .gform_title,
.h-3 > *,
.gform_title > *,
h3 {
  font-family: "artifex-cf", sans-serif;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.2rem + 1.33vw, 2.5rem); /* 24.00px → 40.00px */
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .h-3, .gform_title,
  .h-3 > *,
  .gform_title > *,
  h3 {
    font-size: 2.5rem;
  }
}

.h-4, .events-item-title, .card.-featured .card-title,
.h-4 > *,
.events-item-title > *,
.card.-featured .card-title > *,
h4 {
  font-family: "artifex-hand-cf", sans-serif;
  font-size: 1.3125rem;
  font-size: clamp(1.31rem, 1.11rem + 0.92vw, 2rem); /* 21.00px → 32.00px */
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .h-4, .events-item-title, .card.-featured .card-title,
  .h-4 > *,
  .events-item-title > *,
  .card.-featured .card-title > *,
  h4 {
    font-size: 2rem;
  }
}

.h-5, .card-title, .hover-list-title,
.h-5 > *,
.card-title > *,
.hover-list-title > *,
h5 {
  font-family: "artifex-cf", sans-serif;
  font-size: 1.125rem;
  font-size: clamp(1.13rem, 1.01rem + 0.5vw, 1.5rem); /* 18.00px → 24.00px */
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 1560px) {
  .h-5, .card-title, .hover-list-title,
  .h-5 > *,
  .card-title > *,
  .hover-list-title > *,
  h5 {
    font-size: 1.5rem;
  }
}

.h-6,
.h-6 > *,
h6,
.h-eyebrow {
  font-family: "artifex-hand-cf", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-variant: small-caps;
  color: #990000;
}
.h-6.yellow,
.h-6 > *.yellow,
h6.yellow,
.h-eyebrow.yellow {
  color: var(--P-Goldenrod, #E4A746);
}

.h-meta, .events-item-meta, .card-subtitle {
  color: #990000;
  font-family: "cartograph-cf", monospace;
  font-size: 0.6875rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.h-meta-details, .card-details {
  font-family: "cartograph-cf", monospace;
  font-size: 0.8125rem;
  line-height: 1.75;
  font-weight: 300;
}

.h-line {
  border-bottom: 1px solid #D2CAC1;
  padding-bottom: 21px;
}

a, .a {
  font-weight: bold;
  color: #003953;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.p-lg a, .hero-cta-desc a {
  text-decoration-thickness: 0.1em;
  text-underline-offset: 6px;
}

.p-sm a, .events-item-desc a, .card-desc a {
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.a-subtle,
.a-subtle a,
.contact-body a {
  font-weight: 300;
  text-decoration-color: #003953;
}
.a-subtle:hover,
.a-subtle a:hover,
.contact-body a:hover {
  -webkit-text-decoration: transparent;
          text-decoration: transparent;
}

.more-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: #003953;
  border-radius: 3px;
  border: 1px solid #E4A746;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  width: 100%;
  min-height: 13.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-alpha {
  fill: #E4A746;
  color: #E4A746;
}

.color-beta {
  fill: #003953;
  color: #003953;
}

.color-gamma {
  fill: #990000;
  color: #990000;
}

.color-white {
  fill: #FCFBF8;
  color: #FCFBF8;
}

.color-beige {
  fill: #F0E9DE;
  color: #F0E9DE;
}

.btn, .wp-block-button__link, .btn-sm, .btn-3-sm, .btn-2-sm, .btn-lg, .gform_wrapper.gravity-theme .gform_footer input[type=submit], .btn-3-lg, .btn-2-lg, .btn-3, .wp-block-button.is-style-outline .wp-block-button__link, .btn-2,
button {
  display: inline-block;
  text-decoration: none;
  font-family: "artifex-cf", sans-serif;
  font-size: 0.75rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.1em;
  background-color: #e4a746;
  color: #003953;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 17px 25px 14px;
  text-underline-offset: 0 !important;
  transition: all 0.1s ease-in-out;
  background-image: none !important;
}
.btn:hover, .wp-block-button__link:hover, .btn-sm:hover, .btn-3-sm:hover, .btn-2-sm:hover, .btn-lg:hover, .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover, .btn-3-lg:hover, .btn-2-lg:hover, .btn-3:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover, .btn-2:hover,
button:hover {
  background-color: #003953;
  color: #e4a746;
}

.btn-2 {
  background-color: #003953;
  color: white;
}
.btn-2:hover {
  background-color: #e4a746;
  color: #fff;
}

.btn-3, .wp-block-button.is-style-outline .wp-block-button__link {
  border: 2px solid white;
  background-color: transparent;
  color: white;
}
.btn-3:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: white;
  border: 2px solid white;
  color: #003953;
}

.btn-lg, .gform_wrapper.gravity-theme .gform_footer input[type=submit], .btn-3-lg, .btn-2-lg {
  font-size: 0.875rem;
  padding: 18px 25px 15px;
}

.btn-2-lg {
  background-color: #003953;
  color: #fff;
}

.btn-3-lg {
  background-color: #fff;
  color: #003953;
}

.btn-sm, .btn-3-sm, .btn-2-sm {
  font-size: 0.625rem;
  padding: 16px 20px 13px;
}

.btn-2-sm {
  background-color: #003953;
  color: #fff;
}

.btn-3-sm {
  background-color: #fff;
  color: #003953;
}

input,
textarea,
select {
  font-family: "artifex-hand-cf", sans-serif;
}

input:not([type=checkbox], [type=radio], [type=submit]),
textarea,
select,
button {
  background: #FCFBF8;
  border: 1px solid #D2CAC1;
  border-radius: 3px;
  font-size: 1.25rem;
  color: #003953;
}
input:not([type=checkbox], [type=radio], [type=submit]):focus,
textarea:focus,
select:focus,
button:focus {
  border-color: #003953;
}

::-webkit-input-placeholder {
  color: #003953;
  opacity: 0.5;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  z-index: 1;
}
select::-ms-expand {
  display: none;
}
select {
  outline: none;
  grid-area: select;
}

.single-event .forminator-ui {
  max-width: 620px !important;
  margin: 0 auto;
  width: 100%;
}

.forminator-ui .forminator-row {
  width: 100%;
}
.forminator-ui .forminator-row .forminator-field-radio label {
  width: 100%;
  display: block;
}
.forminator-ui .forminator-row .forminator-field-radio label input {
  width: auto;
}
.forminator-ui .forminator-row .forminator-field-radio label .forminator-radio-label {
  margin-left: 10px;
}

.cb-slide.swiper-slide .wp-block-image {
  position: relative;
}
.cb-slide.swiper-slide .wp-block-image .wp-element-caption {
  bottom: 0;
  color: #fff;
  font-size: 0.9rem;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  margin: 0;
  width: 100%;
  padding: 0 20px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.cb-carousel-block .cb-button-prev.swiper-button-prev {
  left: 20px;
}
.cb-carousel-block .cb-button-next.swiper-button-next {
  right: 20px;
}
.cb-carousel-block .cb-button-prev.swiper-button-prev,
.cb-carousel-block .cb-button-next.swiper-button-next {
  background: #f0e9de;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cb-carousel-block .cb-button-prev.swiper-button-prev:after,
.cb-carousel-block .cb-button-next.swiper-button-next:after {
  font-size: 18px;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
|
| Main <header> related styles
|
*/
.header-top {
  display: none;
  background: #003953;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .header-top {
    display: block;
  }
}

.header-top > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-nav {
  display: flex;
}

.header-top-nav > li:not(:last-child) {
  margin-right: 40px;
}

.header-top-nav > li > a {
  transition: 0.125s ease color;
  display: block;
  padding-bottom: 3px;
}
.header-top-nav > li > a:hover {
  color: #E4A746;
}

.header-top-nav a {
  font-family: "artifex-hand-cf", sans-serif;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-variant: all-small-caps;
  color: #F0E9DE;
  text-decoration: none;
}
@media screen and (min-width: 1440px) {
  .header-top-nav a {
    font-size: 15px;
  }
}

.header-nav-wrap {
  border-bottom: 1px solid #D2CAC1;
}

.header-nav-wrap > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .header-nav-wrap > .container {
    padding-bottom: 0;
    justify-content: space-between;
  }
}

.header-nav-left {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-nav-left {
    display: block;
    flex: 1 1 40%;
  }
}

.header-nav-logo {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  flex: 0 2 26%;
  align-self: center;
  min-width: 260px;
  margin: 0 20px;
  height: 80px;
}
@media screen and (min-width: 1440px) {
  .header-nav-logo {
    align-self: flex-start;
    margin: 0 30px;
    height: 135px;
  }
}
@media screen and (min-width: 1560px) {
  .header-nav-logo {
    margin: 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .header-nav-logo::after {
    content: " ";
    width: 84px;
    height: 10px;
    border-radius: 2px 2px 0 0;
    background: #F0E9DE;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .header-nav-logo::after {
    width: 123px;
    height: 16px;
    top: -16px;
  }
}

.header-nav-logo > a {
  transition: 0.125s ease opacity;
  display: flex;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .header-nav-logo > a {
    display: block;
  }
}
.header-nav-logo > a:hover img {
  transform: scale(0.99);
}

.header-nav-logo img {
  transform: scale(1);
  transition: 0.1s all ease-in-out;
  width: 192px;
  display: block;
}
@media screen and (min-width: 1440px) {
  .header-nav-logo img {
    width: 301px;
  }
}

.header-nav-right {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-nav-right {
    display: block;
    flex: 1 1 40%;
  }
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-nav .has-submenu {
  position: relative;
}
.header-nav .has-submenu i {
  padding-left: 5px;
}
.header-nav .has-submenu:hover ul {
  display: flex;
}
.header-nav .has-submenu ul {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background: #F0E9DE;
  border: 1px solid #F0E9DE;
  box-shadow: 1px 0px 3px #645f58;
  height: auto;
  z-index: 1;
}
.header-nav .has-submenu ul li {
  width: 100%;
  border-bottom: 1px solid #D2CAC1;
}
.header-nav .has-submenu ul li a {
  display: inline-block;
  padding: 20px;
  text-decoration: none;
}

.header-nav > li:not(.header-nav-logo) {
  display: block;
  width: 100%;
  border-right: 1px solid #D2CAC1;
}

.header-nav > li:not(.header-nav-logo) > a {
  transition: 0.125s border ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 18px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  min-height: 80px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
@media screen and (min-width: 1440px) {
  .header-nav > li:not(.header-nav-logo) > a {
    padding: 20px 30px;
    min-height: 135px;
    font-size: 18px;
  }
}
.header-nav > li:not(.header-nav-logo) > a:hover {
  border-bottom: 6px solid #E4A746;
}

.header-nav-right .header-nav {
  border-left: 1px solid #D2CAC1;
}

.header-nav-right .header-nav > li:last-child {
  transition: 0.125s background-position ease-in;
  background-image: url(../images/nav-swoop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  border-right: none;
}
.header-nav-right .header-nav > li:last-child:hover {
  background-position: center 47%;
}

@media screen and (max-width: 1024px) {
  .header-nav-wrap {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-wrap {
    padding: 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-wrap .container {
    padding: 0 25px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-wrap .header-nav-logo {
    z-index: 999;
    position: relative;
    margin: 0;
    height: 39px;
    min-width: auto !important;
    flex: none;
    align-self: flex-start;
  }
  .header-nav-wrap .header-nav-logo img {
    width: auto !important;
  }
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-mobile {
    display: inline-flex;
    align-items: center;
  }
}
.header-mobile__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #F0E9DE;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: all 0.12s ease-in-out;
}
.header-mobile__nav.is-active {
  visibility: visible;
  opacity: 1;
}
.header-mobile__nav-inner {
  height: calc(100% - 60px);
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #D2CAC1;
}
.header-mobile__nav-inner nav {
  overflow: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-mobile__nav-inner nav ul li {
  margin-bottom: 15px;
}
.header-mobile__nav-items {
  width: 100%;
}
.header-mobile__nav-top, .header-mobile__nav-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-mobile__nav-top ul {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D2CAC1;
}
.hamburger {
  position: relative;
  display: inline-block;
  z-index: 999;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent !important;
  outline: 0;
  height: 20px;
}
.hamburger:focus {
  outline: 0;
  background-color: transparent;
}
.hamburger.is-active {
  background-color: transparent;
}
.hamburger.is-active .hamburger-inner {
  background-color: #E4A746;
}
.hamburger.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
  background-color: #E4A746;
}
.hamburger.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
  background-color: #E4A746;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
}
.hamburger-inner {
  position: absolute;
  width: 35px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #E4A746;
  border-radius: 2px;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner:before, .hamburger-inner:after {
  display: block;
  content: "";
  position: absolute;
  width: 35px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 2px;
  background-color: #E4A746;
}
.hamburger-inner:before {
  top: -8px;
}
.hamburger-inner:after {
  bottom: -8px;
}

@media screen and (min-width: 1025px) {
  .header-nav-logo .logo-desktop {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-logo .logo-desktop {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-logo .logo-mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-logo .logo-mobile {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .isi-alert-bar a {
    font-size: 11px;
    padding: 8px 10px 6px 10px !important;
  }
}

/* >grid */
.container {
  position: relative;
  max-width: 90rem;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1559px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 1560px) {
  .container {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

[class*=g-] {
  /* all elements with class starting with "g-" */
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}

@media screen and (min-width: 480px) {
  .g-1 {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 480px) {
  .g-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .g-5-1-6 {
    display: grid;
    grid-template-columns: 5fr 1fr 6fr;
  }
}

.g-3-3-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .g-3-3-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .g-3-3-3 {
    grid-template-columns: 3fr 3fr 3fr;
  }
}

.g-3-3-3-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .g-3-3-3-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .g-3-3-3-3 {
    grid-template-columns: 3fr 3fr 3fr 3fr;
  }
}

.footer-container {
  max-width: 90rem;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
|
| Main post_type hero related styles
|
*/
.hero {
  background-image: url("../images/textured-bg.jpg");
}
.hero > .container {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 480px) {
  .hero > .container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
    justify-content: center;
    min-height: 37.5rem;
    height: calc(100vh - 84px);
  }
}
@media screen and (min-width: 1024px) {
  .hero > .container {
    height: calc(100vh - 110px);
  }
}
@media screen and (min-width: 1440px) {
  .hero > .container {
    height: calc(100vh - 166px);
  }
}

.hero-content {
  z-index: 2;
  position: relative;
  align-self: center;
  padding-left: 1rem;
  background-color: #F0E9DE;
  background-image: url("../images/textured-bg.jpg");
}
@media screen and (min-width: 480px) {
  .hero-content {
    max-width: 51.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .hero-content {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .hero-content {
    background-image: none;
    background-color: transparent;
  }
}
@media screen and (min-width: 1440px) {
  .hero-content {
    padding-left: 3.75rem;
  }
}
@media screen and (min-width: 1560px) {
  .hero-content {
    padding-left: 1.875rem;
  }
}

.hero-desc {
  max-width: 34ch;
}
.hero-image {
  overflow: hidden;
}
.hero-image .slider {
  position: relative;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 479px) {
  .hero-image img {
    max-height: 40vh;
  }
}

.hero-image .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 45px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-image .swiper-button-prev,
.hero-image .swiper-button-next {
  transition: background-color 0.2s ease;
  position: static;
  display: block;
  margin-top: 0;
  width: 45px;
  height: 45px;
  color: #003953;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FCFBF8;
}
.hero-image .swiper-button-prev:hover,
.hero-image .swiper-button-next:hover {
  background-color: rgba(252, 251, 248, 0.95);
  color: #12719d;
}

.hero-image .swiper-button-prev {
  border-right: 1px solid #D2CAC1;
  padding-right: 2px;
}

.hero-image .swiper-button-next {
  padding-left: 5px;
}

.hero-content-aside {
  display: flex;
}
@media screen and (min-width: 1280px) {
  .hero-content-aside {
    max-width: 78%;
  }
}

.hero-line {
  margin-top: 14px;
  margin-right: 10px;
}

.hero.-large > .container {
  grid-template-columns: 6fr 6fr;
}
@media screen and (min-width: 1024px) {
  .hero.-large > .container {
    grid-template-columns: 6fr 6fr;
  }
}
.hero.-large .hero-content {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .hero.-large .hero-content {
    width: 100%;
    margin-left: 3.75rem;
  }
}
.hero.-large .hero-title {
  padding: 0 0.05em 0.33em 0;
  margin-bottom: 0;
  background-color: #F0E9DE;
  background-image: url("../images/textured-bg.jpg");
}
@media screen and (min-width: 768px) {
  .hero.-large .hero-image {
    width: calc(100% + 94px);
    margin-left: -94px;
  }
}

@keyframes mask-anim {
  0% {
    width: 0%;
  }
  25% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
.mask-anim {
  animation: mask-anim 3s ease-out 2s infinite alternate;
}

.masthead {
  position: relative;
  padding: 80px 0 80px;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .masthead {
    padding: 120px 0 120px;
  }
}
.masthead > .container {
  max-width: 83.75rem;
}
@media screen and (min-width: 768px) {
  .masthead > .container {
    width: 82%;
  }
}
.masthead.color-beta {
  background: #003953;
  color: #FCFBF8;
}
.masthead.color-beta .h-1, .masthead.color-beta .h-2, .masthead.color-beta .hero-cta-title, .masthead.color-beta .h-3, .masthead.color-beta .gform_title, .masthead.color-beta .h-4, .masthead.color-beta .events-item-title, .masthead.color-beta .h-5, .masthead.color-beta .card-title, .masthead.color-beta .hover-list-title {
  color: #FCFBF8;
}

.default-header {
  background-size: cover !important;
  background-position: center !important;
  box-shadow: inset 0 0 0 2000px rgba(0, 57, 83, 0.75);
  display: flex;
  align-items: center;
  height: 60vh;
}
.default-header h3, .default-header p {
  color: #F0E9DE;
}

@media screen and (max-width: 768px) {
  .event-template-default .masthead {
    padding-top: 40px;
  }
}

.section-centered {
  text-align: center;
}
.section-centered .title {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.section-centered .desc {
  max-width: 681px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  padding-bottom: 200px;
}
.timeline .gamma-color {
  background: #990000 !important;
}
.timeline .alpha-color {
  background: #E4A746 !important;
}
.timeline__track {
  display: grid;
  grid-template-columns: auto auto;
}
.timeline__desc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline__desc div {
  background: #003953;
  width: 487px;
  border-radius: 10px;
  padding: 24px;
  color: #F0E9DE;
  transition: 200ms ease-in-out;
}
.timeline__desc div:hover {
  transform: scale(1.25);
}
@media screen and (max-width: 1024px) {
  .timeline__desc div {
    width: 360px;
  }
}
@media screen and (max-width: 375px) {
  .timeline__desc div {
    width: 85%;
  }
}
.timeline__stream {
  width: 10px;
  height: 100%;
  background: #003953;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 0;
  z-index: -1;
}
.timeline__bubbles {
  text-align: center;
  position: relative;
  height: 700px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.timeline .multi-img .first-img {
  top: 80%;
}
.timeline .multi-img .second-img {
  top: 115%;
}
.timeline__bubbles-date span {
  background: #003953;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 106%;
  color: #F0E9DE;
  border: 10px solid #d1d1d1;
  width: 140px;
  height: 140px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 375px) {
  .timeline__bubbles-date span {
    width: 100px;
    height: 100px;
  }
}
.timeline__bubbles-date-img-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 100%;
  width: 230px;
  height: 185px;
  border-radius: 10px;
  border: 14px solid;
  background-origin: border-box;
  background-clip: content-box, border-box;
  transition: 200ms ease-in-out;
  background-image: linear-gradient(white, white), linear-gradient(to right, white, white);
  overflow: hidden;
}
.timeline__bubbles-date-img-container:hover {
  transform: translate(-50%, -50%) scale(1.25);
}
.timeline__bubbles-date-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0;
}
@media screen and (max-width: 600px) {
  .timeline__bubbles-date-img-container {
    width: 240px;
    left: 140px;
    height: 200px;
  }
}
.timeline__bubbles-date .vertical-img {
  min-width: 150px;
}
@media screen and (max-width: 600px) {
  .timeline__bubbles-date .vertical-img {
    width: 150px;
    left: 60px;
  }
}
.timeline__bubbles-date .blue-border {
  border: 14px solid #003953;
}
.timeline__bubbles-date .red-border {
  border: 14px solid #990000;
}
.timeline__bubbles-date .yellow-border {
  border: 14px solid #E4A746;
}
.timeline__bubbles-date .blue-yellow-border {
  -o-border-image: linear-gradient(to bottom, #003953 50%, #E4A746 50%) 1;
     border-image: linear-gradient(to bottom, #003953 50%, #E4A746 50%) 1;
}
.timeline__bubbles-date .yellow-red-border {
  -o-border-image: linear-gradient(to bottom, #E4A746 50%, #990000 50%) 1;
     border-image: linear-gradient(to bottom, #E4A746 50%, #990000 50%) 1;
}
.timeline__bubbles-date .blue-red-border {
  -o-border-image: linear-gradient(to bottom, #003953 50%, #990000 50%) 1;
     border-image: linear-gradient(to bottom, #003953 50%, #990000 50%) 1;
}
.timeline__bubbles-date .red-blue-border {
  -o-border-image: linear-gradient(to bottom, #990000 50%, #003953 50%) 1;
     border-image: linear-gradient(to bottom, #990000 50%, #003953 50%) 1;
}
.timeline__bubbles-date .yellow-blue-border {
  -o-border-image: linear-gradient(to bottom, #E4A746 50%, #003953 50%) 1;
     border-image: linear-gradient(to bottom, #E4A746 50%, #003953 50%) 1;
}
.timeline__border-line {
  position: absolute;
  right: -81px;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .timeline__border-line {
    display: none;
  }
}
.timeline__border-line div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cecece;
  z-index: -1;
  margin-right: 30px;
  opacity: 0;
}
.timeline__border-line .hover-fade {
  animation: loadingBubbles 175ms forwards;
}
@keyframes loadingBubbles {
  from {
    opacity: 1;
    margin-right: 30px;
  }
  to {
    opacity: 0;
    margin-right: -30px;
  }
}
.timeline__border-line .hover-remove {
  animation: reloadingBubbles 125ms forwards;
  animation-delay: 200ms !important;
}
@keyframes reloadingBubbles {
  from {
    opacity: 0;
    margin-right: -30px;
  }
  to {
    opacity: 1;
    margin-right: 30px;
  }
}
.timeline .timeline-hover {
  animation: hoverLarge 500ms forwards;
}
.timeline .timeline-hover-remove {
  animation: revertHoverLarge 300ms forwards;
}
@keyframes hoverLarge {
  30% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.25);
  }
}
@keyframes revertHoverLarge {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}
@keyframes hoverImg {
  40% {
    transform: scale(0.95) translate(-52%, -52%);
  }
  60% {
    transform: scale(0.95) translate(-52%, -52%);
  }
  100% {
    transform: scale(1.25) translate(-30%, -30%);
  }
}
@keyframes revertImgHoverLarge {
  from {
    transform: scale(1.25) translate(-30%, -30%);
  }
  to {
    transform: scale(1) translate(-50%, -50%);
  }
}

.hero-cta {
  background-color: #D2CAC1;
  position: relative;
  padding-bottom: 80vh;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .hero-cta {
    padding-bottom: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .hero-cta {
    padding-bottom: 55.32%;
  }
}
@media screen and (min-width: 1440px) {
  .hero-cta {
    padding-bottom: 797px;
  }
}

.hero-cta-content {
  position: absolute;
}
.hero-cta-content h1, .hero-cta-content h2, .hero-cta-content h3, .hero-cta-content h5, .hero-cta-content h6, .hero-cta-content p {
  color: #fff;
}

.hero-cta-title a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.hero-cta-title span {
  display: inline-block;
}
.hero-cta-title u {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.hero-cta-title u::after {
  content: "";
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background-image: url("../images/yellow-underline.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-cta-title u:hover::after {
  background-image: none;
}

.hero-cta-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-cta-desc {
  max-width: 42ch;
}

.hero-cta.-centered .hero-cta-content {
  text-align: center;
  width: 100%;
  max-width: 920px;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 60px;
}
@media screen and (min-width: 1024px) {
  .hero-cta.-centered .hero-cta-content {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-cta.-centered .hero-cta-content {
    padding-top: 120px;
    width: 66%;
  }
}
.hero-cta.-centered .hero-cta-desc {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta.-left-centered .hero-cta-content {
  width: 100%;
  max-width: 920px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .hero-cta.-left-centered .hero-cta-content {
    width: 75%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero-cta.-left-centered .hero-cta-content {
    width: 48%;
  }
}
@media screen and (min-width: 1440px) {
  .hero-cta.-left-centered .hero-cta-content {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.hero-cta.-left-bottom-centered .hero-cta-content {
  width: 100%;
  max-width: 920px;
  bottom: 11%;
  left: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .hero-cta.-left-bottom-centered .hero-cta-content {
    width: 75%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero-cta.-left-bottom-centered .hero-cta-content {
    width: 42%;
  }
}
@media screen and (min-width: 1440px) {
  .hero-cta.-left-bottom-centered .hero-cta-content {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.hover-list {
  min-height: 28.125rem;
}

.hover-list-item {
  display: block;
  text-decoration: none;
}
.hover-list-title {
  display: inline-block;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-right: 3.75rem;
  margin-bottom: 0;
}
.hover-list-title::after {
  content: " ";
  width: 50px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='12' viewBox='0 0 50 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.42019 6.77025C2.21121 6.35755 3.59837 6.66708 4.46964 6.70147C5.53579 6.73586 6.60195 6.74733 7.66811 6.74733C9.57115 6.75879 11.4627 6.78172 13.3658 6.79318C17.4011 6.82757 21.4365 6.77025 25.4718 6.73586C29.3811 6.70147 33.3018 6.67854 37.211 6.64415C40.0312 6.62122 43.0462 6.71293 45.9466 6.41487C44.5136 7.26321 43.0806 8.10009 41.6591 8.95989C40.2605 9.80823 41.5444 12.0208 42.9431 11.1495C45.041 9.85409 47.116 8.53572 49.1795 7.20589C49.9705 6.69001 49.8788 5.72702 49.1795 5.19968C47.9872 4.29401 46.8523 3.31957 45.7861 2.25341C45.0066 1.48532 44.3646 0.636977 43.2755 0.361839C42.9774 0.293055 42.645 0.510872 42.6565 0.831866C42.7252 2.13877 43.7455 3.42275 44.9263 4.56915C42.4501 4.46598 39.9395 4.55769 37.5664 4.56915C33.5311 4.60354 29.4957 4.63794 25.4718 4.66087C21.5626 4.69526 17.6419 4.69526 13.7326 4.78697C11.8296 4.83283 9.938 4.87868 8.03496 4.92454C6.9688 4.94747 5.90264 4.95893 4.83649 5.01625C3.89643 5.06211 2.29146 5.45189 1.43166 5.01625C-0.505771 4.04181 -0.448451 7.75616 1.43166 6.77025H1.42019Z' fill='%23990000'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right;
  transform: translateX(11px);
}
@media (hover: hover) and (min-width: 1024px) {
  .hover-list-title::after {
    transition: all 0.5s ease;
    transform: translateX(0%);
    opacity: 0;
  }
}

@media (hover: hover) and (min-width: 1024px) {
  .hover-list-desc {
    overflow: hidden;
    height: 0;
  }
}

.card {
  transition: box-shadow 0.5s ease, background-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F0E9DE;
  border: 1px solid #D2CAC1;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(23, 29, 26, 0);
  transform: translateY(0);
}
@media (hover: none) {
  .card:active {
    background-color: #FCFBF8;
    background-image: url("../images/textured-card-bg.jpg");
    box-shadow: 0px 5px 16px rgba(23, 29, 26, 0.15);
    transform: translateY(-1rem);
  }
}
@media (hover: hover) {
  .card:hover {
    background-color: #FCFBF8;
    background-image: url("../images/textured-card-bg.jpg");
    box-shadow: 0px 5px 16px rgba(23, 29, 26, 0.15);
    transform: translateY(-1rem);
  }
}

.card-image {
  background-color: #D2CAC1;
  width: 100%;
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-content {
  padding: 14px 18px 30px;
}
.card-content > * + * {
  margin-top: 0.4375rem;
}

.card-desc {
  margin-bottom: 0;
}

.card-cta-grid {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .card-cta-grid {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.card-cta-grid > div {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .card-cta-grid > div {
    width: calc(50% - 12px);
  }
}
@media screen and (min-width: 1024px) {
  .card-cta-grid > div {
    width: calc(33.3333333% - 15px);
    margin-bottom: 0;
  }
}

.card-cta {
  transition: box-shadow 0.5s ease-in-out, background-image 0.25s ease-in-out, transform 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F0E9DE;
  border: 1px solid #D2CAC1;
  border-radius: 3px;
  padding: 30px 20px 40px;
  text-decoration: none;
  height: 100%;
  box-shadow: 0 0 16px rgba(23, 29, 26, 0);
  transform: translateY(0);
}
@media screen and (min-width: 1280px) {
  .card-cta {
    padding: 60px 24px 70px;
  }
}
@media (hover: none) {
  .card-cta:active {
    background-color: #F0E9DE;
    background-image: url("../images/textured-card-bg.jpg");
    box-shadow: 0px 5px 16px rgba(23, 29, 26, 0.15);
    transform: translateY(-1rem);
  }
}
@media (hover: hover) {
  .card-cta:hover {
    background-color: #F0E9DE;
    background-image: url("../images/textured-bg.jpg");
    box-shadow: 0px 5px 16px rgba(23, 29, 26, 0.15);
    transform: translateY(-1rem);
  }
}
.card-cta span.a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-color: #E4A746;
}
.card-cta span.a:hover {
  text-decoration: none;
}

.card-cta-title {
  display: block;
  margin-bottom: 1.0625rem;
}

.card-cta-desc {
  display: block;
  margin-bottom: 1.6875rem;
}
@media screen and (min-width: 1024px) {
  .card-cta-desc {
    margin-bottom: 2.3125rem;
  }
}

.card-cta-btn {
  align-self: center;
}

.card.-featured {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .card.-featured .card-image {
    height: 342px;
  }
}
.card.-featured .card-content {
  padding: 26px 24px 30px;
  background-color: transparent;
  width: 100%;
}
.card-event__tag {
  font-family: "cartograph-cf", monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #900;
  margin-bottom: 15px;
}
.card-event__tag span {
  display: block;
}
.card-event__image {
  width: 100%;
}
.card-event__image-Box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background-color: #D2CAC1;
}
.card-event__image-Box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.card-event__image a {
  background: none !important;
  display: inline;
  position: initial;
}
.card-event a {
  display: block;
}
.card-event a:hover {
  background: none;
}
.card-event img {
  border-radius: 0;
}
.card-event--featured {
  background-color: white;
  position: relative;
  border-radius: 5px;
  border: 1px solid #D2CAC1;
  overflow: hidden;
}
.card-event--featured .card-event__content {
  background-color: white;
  padding: 25px;
}
.card-event--featured .card-event__title {
  margin-bottom: 10px;
}
.card-event--featured .card-event__title h2 {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  font-family: artifex-cf, sans-serif;
  font-size: clamp(28px, 19.5811088296px + 0.8213552361vw, 32px);
}
@media screen and (max-width: 1024px) {
  .card-event--featured .card-event__title h2 {
    font-size: clamp(26px, 19.968627451px + 0.7843137255vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  .card-event--featured .card-event__title h2 {
    font-size: clamp(24px, 24px + 0.2604166667vw, 26px);
  }
}
.card-event--featured .card-event__title h2 a {
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
  color: #003953;
  transition: color 0.1s ease-in-out;
}
.card-event--featured .card-event__title h2 a:hover {
  color: #e4a746;
}
.card-event--featured .card-event__excerpt p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
}
.card-event--small {
  text-align: center;
}
.card-event--small .card-event__inner {
  position: relative;
  border-radius: 5px;
  border: 1px solid #D2CAC1;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: none;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(23, 29, 26, 0);
  transform: translateY(0);
  transition: background 0.1s ease-in-out, box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
  will-change: background, box-shadow, transform;
}
.card-event--small .card-event__inner:hover {
  background-image: url("../images/event-card-pattern.jpg");
  box-shadow: 0 5px 16px rgba(23, 29, 26, 0.15);
  transform: translateY(-15px);
}
.card-event--small .card-event__content {
  padding: 15px 20px 25px 20px;
}
.card-event--small .card-event__meta {
  font-family: "cartograph-cf", monospace;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
}
.card-event--small .card-event__title {
  margin-bottom: 5px;
}
.card-event--small .card-event__title h2 {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  font-family: artifex-cf, sans-serif;
  font-size: clamp(24px, 24px + 0vw, 24px);
}
@media screen and (max-width: 1024px) {
  .card-event--small .card-event__title h2 {
    font-size: clamp(24px, 24px + 0vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .card-event--small .card-event__title h2 {
    font-size: clamp(22px, 22px + 0.2604166667vw, 24px);
  }
}

.card-post__date {
  font-family: "cartograph-cf", monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #900;
  margin-bottom: 15px;
}
.card-post__image {
  width: 100%;
}
.card-post__image-Box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background-color: #D2CAC1;
}
.card-post__image-Box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.card-post a {
  display: block;
}
.card-post a:hover {
  background: none;
}
.card-post img {
  border-radius: 0;
}
.card-post--small {
  text-align: center;
}
.card-post--small .card-post__inner {
  position: relative;
  border-radius: 5px;
  border: 1px solid #D2CAC1;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: none;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(23, 29, 26, 0);
  transform: translateY(0);
  transition: background 0.1s ease-in-out, box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
  will-change: background, box-shadow, transform;
  text-decoration: none !important;
}
.card-post--small .card-post__inner:hover {
  background-image: url("../images/event-card-pattern.jpg");
  box-shadow: 0 5px 16px rgba(23, 29, 26, 0.15);
  transform: translateY(-15px);
}
.card-post--small .card-post__image + .card-post__content {
  padding-top: 15px;
}
.card-post--small .card-post__content {
  padding: 25px 20px 25px 20px;
}
.card-post--small .card-post__permalink {
  font-family: "cartograph-cf", monospace;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
}
.card-post--small .card-post__title {
  margin-bottom: 5px;
}
.card-post--small .card-post__title h2 {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  font-family: artifex-cf, sans-serif;
  font-size: clamp(24px, 24px + 0vw, 24px);
}
@media screen and (max-width: 1024px) {
  .card-post--small .card-post__title h2 {
    font-size: clamp(24px, 24px + 0vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .card-post--small .card-post__title h2 {
    font-size: clamp(22px, 22px + 0.2604166667vw, 24px);
  }
}

.prefooter {
  min-height: 609px;
  padding: calc(1px + 100vw) 0 170px;
  background-color: #E4A746;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-position: right 40px;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .prefooter {
    padding: 80px 0 130px;
    background-size: 40%;
    background-position: right center;
  }
}
@media screen and (min-width: 1024px) {
  .prefooter {
    padding: 120px 0 170px;
    background-size: 33.33%;
  }
}
@media screen and (min-width: 1280px) {
  .prefooter {
    background-size: 36%;
    background-position: right 50px;
  }
}
@media screen and (min-width: 1440px) {
  .prefooter {
    background-size: 40%;
  }
}
@media screen and (min-width: 1560px) {
  .prefooter {
    background-size: auto;
  }
}
@media screen and (min-width: 1024px) {
  .prefooter > .container {
    display: grid;
    grid-template-columns: 8fr 4fr;
  }
}
@media screen and (min-width: 1560px) {
  .prefooter > .container {
    grid-template-columns: 7fr 5fr;
  }
}
.prefooter .h-eyebrow {
  color: #003953;
}
.prefooter .title-with-eyebrow {
  display: flex;
  gap: 15px;
  align-items: center !important;
  margin: 25px auto !important;
  display: flex;
}
.prefooter .title-with-eyebrow .eyebrow-image-container {
  position: relative;
  width: 100%;
  flex-basis: 5%;
}
.prefooter .title-with-eyebrow .eyebrow-header-container {
  width: 100%;
  flex-basis: 95%;
}
.prefooter .title-with-eyebrow div {
  margin: auto;
}
.prefooter .title-with-eyebrow img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 25px;
  min-height: 15px;
}
.prefooter .title-with-eyebrow h5 {
  font-weight: bold !important;
  margin: 0;
}
.prefooter form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 480px;
}
@media screen and (min-width: 1024px) {
  .prefooter form {
    flex-direction: row;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .prefooter form > *:not(:last-child) {
    margin-right: 15px;
  }
}
.prefooter input[type=submit] {
  padding: 17px 35px;
  line-height: normal;
  font-size: 12px;
  margin: 0;
  margin-top: 1px;
  font-weight: normal;
}
.prefooter .gform_submission_error,
.prefooter .gform_confirmation_message_2.gform_confirmation_message {
  font-size: 1.25rem;
  color: white;
  font-weight: 300;
}
.prefooter .gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
}
.prefooter .gfield {
  position: relative;
}
.prefooter .gfield_description.validation_message.gfield_validation_message {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background-color: #003953;
  color: white;
  border-radius: 3px;
  font-size: 12px;
  line-height: 12px;
  padding: 6px 8px 4px 8px;
  font-weight: 300;
  display: none !important;
}
.prefooter .gfield_description.validation_message.gfield_validation_message:after {
  bottom: 100%;
  left: 10px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #003953;
  border-width: 4px;
  margin-left: -4px;
}
.prefooter .gform_wrapper.gravity-theme .gfield.gfield--type-text {
  margin-right: 15px;
}
.prefooter .gform_wrapper.gravity-theme .gfield {
  align-items: flex-start;
}
.prefooter .gform_wrapper {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.prefooter .gform_wrapper form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.prefooter .gform_wrapper.gravity-theme .gform_fields {
  display: flex;
  flex-direction: row;
  row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .prefooter .gform_wrapper.gravity-theme .gform_fields {
    margin-bottom: 15px;
  }
}
.prefooter .gfield--type-honeypot {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
.prefooter .gform_wrapper.gravity-theme input[type=text],
.prefooter .gform_wrapper.gravity-theme input[type=email] {
  padding: 0.9em 0.75em 0.9em;
  border-width: 2px;
  border-color: #F0E9DE;
  background-color: #F0E9DE;
  width: 100%;
}
.prefooter .gform_wrapper.gravity-theme input[type=text][aria-invalid=true],
.prefooter .gform_wrapper.gravity-theme input[type=email][aria-invalid=true] {
  border-color: rgb(153, 0, 0);
}
.prefooter .gform_wrapper.gravity-theme input[type=text][aria-invalid=true]:focus,
.prefooter .gform_wrapper.gravity-theme input[type=email][aria-invalid=true]:focus {
  border-color: rgb(153, 0, 0);
}
.prefooter .gform_wrapper.gravity-theme input[type=text]:focus,
.prefooter .gform_wrapper.gravity-theme input[type=email]:focus {
  border-color: #003953;
}
.prefooter .gfield .gfield_label.gform-field-label {
  display: none;
}
.prefooter .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  background-color: #003953;
  color: #F0E9DE;
  padding: 17px 35px;
  line-height: normal;
  font-size: 12px;
  margin: 0;
  margin-top: 1px;
  font-weight: normal;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.prefooter .forminator-ui .forminator-row .forminator-field-name .forminator-row {
  margin-left: 0;
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prefooter .forminator-ui .forminator-row .forminator-field-name .forminator-row .forminator-col {
  padding: 0 !important;
  width: auto;
  max-width: none;
}
.prefooter .forminator-ui .forminator-row .forminator-field-name .forminator-row .forminator-col .forminator-field input {
  margin-bottom: 8px !important;
}

.prefooter.-centered {
  position: relative;
  text-align: center;
  padding: calc(1px + 100vw) 0 170px;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .prefooter.-centered {
    padding: 144px 0 170px;
  }
}
.prefooter.-centered > .container {
  grid-template-columns: 1fr;
}
.prefooter.-centered form {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.prefooter-image {
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: -20px;
  width: 75%;
}
@media screen and (min-width: 768px) {
  .prefooter-image {
    top: -70%;
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .prefooter-image {
    top: -80%;
    width: 35%;
  }
}
@media screen and (min-width: 1440px) {
  .prefooter-image {
    top: -94%;
    width: auto;
  }
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
|
| Main <footer> related styles
|
*/
.site-footer__main {
  position: relative;
  padding: 200px 0 100px;
  background-color: #003953;
}
@media screen and (max-width: 768px) {
  .site-footer__main {
    padding: 200px 0 60px;
  }
}
.site-footer__main .container {
  position: unset;
}
.site-footer__main .footer-emblem {
  display: inline-block;
  position: absolute;
}
.site-footer__main .footer-emblem:hover {
  text-decoration: none;
  background: none;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.site-footer__info {
  width: 40%;
  text-align: center;
  color: #F0E9DE;
  padding-right: 100px;
}
@media screen and (max-width: 1024px) {
  .site-footer__info {
    width: 100%;
    padding-right: 0;
  }
}
.site-footer__info > img {
  margin-top: 0;
}
.site-footer__info-Address {
  margin-bottom: 35px;
}
.site-footer__info-Contact {
  margin-bottom: 50px;
}
.site-footer__info .social-nav {
  justify-content: center;
  gap: 10px;
}
.site-footer__info .social-nav li a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #E4A746;
}
.site-footer__info .social-nav li a svg {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  height: auto;
}
@media screen and (max-width: 768px) {
  .site-footer__info .social-nav li a {
    width: 30px;
    height: 30px;
  }
}
.site-footer__info .footer-institute {
  margin-bottom: 35px;
}
.site-footer__info p,
.site-footer__info a {
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .site-footer__info p,
  .site-footer__info a {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer__info p,
  .site-footer__info a {
    font-size: 20px;
  }
}
.site-footer__info a {
  text-decoration: underline;
  display: inline-block;
}
.site-footer__contactForm {
  width: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 120px;
}
@media screen and (max-width: 1024px) {
  .site-footer__contactForm {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer__nav {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .site-footer__nav {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.site-footer__nav .footer-nav__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 60px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .site-footer__nav .footer-nav__menu {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    text-align: center;
  }
}
.site-footer__nav .footer-nav__menu > li > a {
  font-family: artifex-hand-cf, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-variant: all-small-caps;
  letter-spacing: 0.8px;
  color: #E4A746;
  margin-bottom: 25px;
  display: inline-block;
}
.site-footer__nav .footer-nav__menu-Item-link {
  color: inherit;
}
.site-footer__nav .footer-nav__submenu li {
  color: #F0E9DE;
  font-feature-settings: "dlig" on;
  font-family: artifex-cf, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 15px;
}
.site-footer__nav .footer-nav__submenu li a {
  font-weight: inherit;
  display: inline-block;
}
.site-footer__nav .footer-nav__submenu li a:hover {
  text-decoration: underline;
  background: none;
}
.site-footer__nav .footer-nav__submenu-Item-link {
  color: inherit;
}

.footer-bg {
  min-height: 100vh;
  background-image: url("../images/footer-bg.jpg");
  background-repeat: repeat;
  background-size: contain;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .footer-bg {
    background-repeat: repeat-x;
    background-size: cover;
    background-position: center;
    min-height: 581px;
  }
}
@media screen and (min-width: 1560px) {
  .footer-bg {
    background-size: contain;
  }
}

.footer-emblem {
  position: relative;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.footer-container {
  max-width: 918px;
  margin-top: 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-nav {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-nav li {
  margin-left: 14px;
  margin-right: 14px;
  margin-bottom: 18px;
  width: calc(100% - 28px);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer-nav li {
    width: calc(50% - 28px);
  }
}
@media screen and (min-width: 1024px) {
  .footer-nav li {
    margin-right: 21px;
    margin-left: 21px;
    margin-bottom: 0;
    width: auto;
    text-align: left;
  }
}

.footer-nav a {
  transition: 0.125s ease color;
  display: block;
  color: #F0E9DE;
  font-family: "artifex-cf", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 300;
  text-decoration: none;
  padding: 0.25rem;
}
.footer-nav a:hover {
  color: #E4A746;
}

.footer-top-nav {
  border-bottom: 1px solid rgba(240, 233, 222, 0.2);
  padding-bottom: 30px;
}

.footer-bottom-nav {
  margin-top: 30px;
}

.footer-bottom-nav .footer-nav a {
  font-family: "artifex-hand-cf", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-variant: all-small-caps;
}

.footer-institute {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .footer-institute {
    margin-top: 100px;
  }
}

.footer-social-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 13px;
}
.footer-social-nav .show-for-large {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-social-nav .show-for-large {
    display: inline;
  }
}

.social-nav p {
  color: rgba(240, 233, 222, 0.78);
  font-weight: 300;
  margin-bottom: 0;
}

.social-nav a {
  transition: 0.125s linear color, 0.125s linear text-decoration-color;
  color: rgba(240, 233, 222, 0.78);
  font-weight: 300;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}
.social-nav a:hover {
  color: #F0E9DE;
  text-decoration-color: #F0E9DE;
}

.social-nav {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.social-nav a {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  background: var(--P-Goldenrod, #E4A746);
}
.social-nav a svg {
  max-width: 100%;
  max-height: 100%;
}

.footer-social-items {
  margin-bottom: 15px;
}

.social-nav a > img {
  transition: 0.125s linear opacity;
  opacity: 0.78;
}

.social-nav a:hover > img {
  opacity: 1;
}

.footer-legal {
  background-color: #171D1A;
  padding: 30px 0 25px 0;
}
@media screen and (max-width: 768px) {
  .footer-legal {
    text-align: center;
  }
}
.footer-legal p, .footer-legal a, .footer-legal li {
  color: rgba(240, 233, 222, 0.5);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-legal-grid {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-legal-grid > p {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 1024px) {
  .footer-legal-grid > p {
    margin-bottom: 0;
  }
}

.footer-legal-nav > ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer-legal-nav > ul {
    justify-content: center;
  }
}

.footer-legal-nav li:not(:last-child)::after {
  content: "|";
  padding: 0 0.125rem;
}

.footer-legal-nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: inherit;
}
.footer-legal-nav a:hover {
  opacity: 0.5;
}

.footer-address {
  text-align: center;
  margin-bottom: 5px;
}
.footer-address p {
  margin: 0;
  color: var(--P-Alabaster, #F0E9DE);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
}
.footer-address p a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.site-footer__contactForm div.search-form {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}
.site-footer__contactForm div.search-form .search-form input[type=search] {
  height: 47px;
}
.site-footer__contactForm div.search-form .search-form input[type=submit] {
  margin-left: 10px;
}
.site-footer__contactForm div.search-form form.search-form {
  border-top: 0 !important;
}

.site-footer__contactForm-title {
  max-width: 420px;
  margin: 0 0 15px 0;
  text-align: center;
}
.site-footer__contactForm-title h5 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: var(--S-Pearl-White, #FCFBF8);
  text-align: center;
  margin: 0 !important;
}
.site-footer__contactForm .forminator-ui {
  max-width: 420px;
}
.site-footer__contactForm .forminator-ui .forminator-row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-label {
  display: none !important;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-input,
.site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea {
  font-family: artifex-hand-cf, sans-serif !important;
  background: none;
  border: 1px solid var(--P-Alabaster, #F0E9DE);
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  color: #fcfbf8;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-input::-webkit-input-placeholder, .site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea::-webkit-input-placeholder {
  color: rgba(252, 251, 248, 0.5);
}

.site-footer__contactForm .forminator-ui .forminator-row .forminator-input:-moz-placeholder, .site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea:-moz-placeholder {
  color: rgba(252, 251, 248, 0.5);
}

.site-footer__contactForm .forminator-ui .forminator-row .forminator-input::-moz-placeholder, .site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea::-moz-placeholder {
  color: rgba(252, 251, 248, 0.5);
}

.site-footer__contactForm .forminator-ui .forminator-row .forminator-input:-ms-input-placeholder, .site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea:-ms-input-placeholder {
  color: rgba(252, 251, 248, 0.5);
}

.site-footer__contactForm .forminator-ui .forminator-row .forminator-input {
  line-height: 16px;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-textarea {
  line-height: 175%;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-input {
  padding: 0 15px;
  height: 42px;
}
.site-footer__contactForm .forminator-ui .forminator-row .forminator-field .forminator-button {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white !important;
  color: var(--P-Indigo, #003953) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  box-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| Post_Type Password Protected
|--------------------------------------------------------------------------
|
| Password protect a post type.
|
*/
.about section {
  margin: 90px 0;
}
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-hero__title {
  width: 70%;
  border: 1px solid #D2CAC1;
  border-radius: 5px;
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .about-hero__title {
    width: 100%;
  }
}
.about-hero__title div {
  padding: 60px;
  text-align: center;
}
.about-hero__title div h2 {
  font-size: 33px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .about-hero__title div {
    padding: 40px;
  }
  .about-hero__title div h2 {
    font-size: 25px;
  }
}
.about-hero__community-links {
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 480px) {
  .about-hero__community-links {
    flex-direction: column;
  }
}
.about-hero__community-links a {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.about-hero__community-links a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: black;
  top: 0;
  left: 0;
  opacity: 0.4;
  transition: 200ms ease-in-out;
}
.about-hero__community-links a:hover:after {
  opacity: 0;
}
.about-hero__community-links a:hover img {
  transform: scale(1.1);
}
.about-hero__community-links a img {
  width: 100%;
  height: 455px;
  transition: 200ms ease-in-out;
}
.about-hero__community-links-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.about-hero__community-links-caption p {
  color: #D2CAC1;
  font-size: 40px;
  font-weight: bold;
  margin-left: 10px;
}
.about-img-block {
  margin-top: 100px;
}
.about-img-block__container {
  display: flex;
}
@media screen and (max-width: 480px) {
  .about-img-block__container {
    flex-direction: column;
    gap: 40px;
  }
}
.about-img-block__container-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-img-block__container-desc h2 {
  font-size: 35px;
}
@media screen and (max-width: 480px) {
  .about-img-block__container-desc h2 {
    font-size: 26px;
  }
}
.about-img-block__container-img {
  width: 100%;
}
.about-problems__container {
  display: flex;
  justify-content: center;
}

.is-style-small-caps {
  font-variant: small-caps;
}

.heading-decoration {
  padding-left: 70px;
  position: relative;
}
.heading-decoration:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='4' fill='none'%3E%3Cpath d='M4.692 2.248h.001-.001Zm-3.293.783h-.003.003Zm4.957-.13Zm9.09-.409-.016.001.016-.001Zm42.195.023h-.001Zm.077.009h.002-.003ZM28.143 1.368Zm29.548 1.153Zm-31.37-.688h.001Zm31.354.686h-.002.002ZM25.266 1.51h.006-.015.01ZM58.049 2.58ZM.996 2.402Zm33.14-1.196-.007.001h.007ZM15.52 2.292ZM49.947 1.13ZM2.383 2.87Zm41.072-1.863Zm-21.184.94Zm-16.01.93H6.26h.007-.007Zm28.487-1.329h.001Zm25.25 1.009v-.014.001c-.04-1.474-.659-1.226-1.067-1.324-.49-.105-.982-.2-1.473-.286-.32-.019-.233-.116-.427.061C56.046.7 55.087.571 54.007.491c-.044.025-.181-.103-.16.09-.346-.02-.685-.103-1.05-.203-2.049-.08-4.281-.227-6.45-.275-1.06.24-2.462-.07-3.583.048-.143-.07-.774.158-.789-.13a33.898 33.898 0 0 0-.42-.015L41.397 0l-.001.13-.68-.005c-.482-.031-.735.045-1.173.01-2.624.007-5.21.23-7.78.057-2.094.15-4.16.21-6.238.325-2.329.133-4.528.022-6.865.27-2.907.28-5.731.273-8.682.39-.968.073-1.985.034-2.944.073-1.25.008-2.745.177-4.036.136-.65.021-1.388.087-2.046-.096-.216-.082-.435-.238-.654.012-.24.262-.363.996-.263 1.627v-.001c.028.17.056.279.103.406.323.813 1.203.58 1.652.666 8.37-.384 16.907-.753 25.257-1.216.936-.19 1.82.024 2.76-.055.192.023.445-.035.643-.076.322.031.588.01.966.009 3.473-.067 6.899-.298 10.378-.201 5.212.087 10.49.21 15.74 1.023.543.073 1.066.158 1.53.296.18.033.347.233.534.12.24-.112.42-.735.4-1.344ZM.163 2.579a1.932 1.932 0 0 1 0 .002v-.002Zm.022.21-.008-.055c.004.03.008.06.014.088l-.006-.034Zm.019.096-.005-.02.006.026-.001-.006Zm.006.027-.002-.008.002.01v-.002Zm.012-.948Zm.002-.004Zm.001 1.01v.002-.001Zm.018.057a1.828 1.828 0 0 1 .001.003l-.001-.003Zm.011.03-.004-.01.01.024-.006-.014Zm.02-1.24-.004.011.005-.012v.001Zm1.853.657h.018-.018Zm.04 0h-.02.02Zm.035.57Zm.003-.572h-.006.017-.01Zm0 .02H2.19h.014Zm-.09.598h.017l-.111.002.094-.001Zm-.128.001h-.005.005Zm.078-.616h.003-.005.002Zm-.031 0h.01-.01Zm-.02.617h.009-.01Zm-.01 0h-.011.01Zm.11-.617h-.018.018Zm0-.131Zm-.14-.005h.003-.017.014Zm-.11-.001h-.017.018Zm-.077.788h-.009.009Zm-.107-.656h-.016.016Zm-.05-.133h-.001Zm-.324-.095Zm.102.633L1.35 2.87l.076.007H1.42h.004l-.017-.002Zm0 .157h-.012.012Zm-.086-.737.002.001h-.002Zm-.041.128h.002-.002Zm-.012.597h.002-.002Zm-.088-.727.072.011a2.158 2.158 0 0 1-.12-.02l.048.01Zm-.171.113-.086-.021H.922c.036.01.073.018.109.026l-.03-.007.008.002Zm-.16.542Zm.022-.725h.002-.002Zm.062.633.007.002a1.232 1.232 0 0 1-.007-.002Zm.03-.608.002.001H.962Zm.12-.045.017.004-.023-.005c.002 0 .004 0 .006.002Zm-.01.013-.005-.001h.005Zm-.137-.523a2.6 2.6 0 0 0-.013-.004l.013.004Zm-.02.468h.001-.003.002Zm-.019.168c.02.006.041.01.062.015L.896 2.33h.001Zm-.013-.161ZM.876 2.15l-.008-.003c.003 0 .005.002.008.003Zm-.015.219-.005-.002.005.002Zm-.017-.056a.319.319 0 0 1-.022-.01l.022.01Zm-.106-.194.039.019-.039-.02Zm.038.653Zm-.189-.728h.008a.29.29 0 0 0-.002 0H.587Zm.017.036a.328.328 0 0 1-.018-.002h.008-.007l.017.001Zm-.001-.034Zm.04.184Zm-.003.51-.002-.001.003.001Zm-.02-.008.011.005a.158.158 0 0 0-.01-.005Zm-.002-.508a.292.292 0 0 1 .017.004l-.017-.004Zm-.017 0H.599h.002Zm-.004 0Zm-.01-.104h.001-.002.001Zm-.005.15H.58a.144.144 0 0 1-.001 0h.003Zm.051.468H.631l.01.002-.008-.002Zm.035.062-.022-.007.022.007Zm-.022-.058Zm.027.214.008.002c-.002 0-.005 0-.008-.002Zm.025.006L.684 2.96l.024.005-.01-.002Zm.02.034-.023-.005.024.005ZM.67 2.29Zm-.014-.23c.007.002.014.003.02.006-.006-.003-.013-.004-.02-.006Zm.013.08-.001-.001h.001Zm.008.002Zm.044.017a.466.466 0 0 0-.008-.004l.009.004H.72Zm.002 0Zm.01.155a1.388 1.388 0 0 1-.008-.004l.007.004Zm.065.462H.8l-.024-.003.022.003Zm.001-.432.022.01-.022-.01Zm.017-.152ZM.57 1.573a.615.615 0 0 1-.006 0H.57Zm-.006.546-.006.001a.12.12 0 0 1 .006 0Zm-.016-.074-.016.002a.252.252 0 0 1 .016-.002Zm-.003.228H.541h.004Zm-.008-.188Zm-.066.74v-.001ZM.436 2.44l.004-.034a.317.317 0 0 0-.004.034Zm0 .065V2.5v.004ZM.42 2.399c.004-.03.01-.06.019-.081l-.002.005-.003.008.003-.008A.363.363 0 0 0 .42 2.4Zm-.024.255ZM.371 2.59l-.003-.018a.52.52 0 0 0 .003.018Zm0 .055v-.006a.1.1 0 0 0 0 .006Zm.013-.41.014-.037a.526.526 0 0 0-.014.038Zm0-.031.003-.007a.15.15 0 0 0-.002.007Zm0 .4.001.005a.6.6 0 0 1 0-.005Zm0-.278.002-.01-.002.01Zm-.002.359V2.68v.004Zm0-.004-.003-.006.002.006Zm-.01-.185.002.02a.579.579 0 0 1-.001-.02Zm0-.036.001-.032v.032Zm.012.265.001.002v-.002c0 .005.003.009.004.013a.36.36 0 0 1-.005-.013ZM.38 2.293l-.004.022a.516.516 0 0 1 .004-.023Zm0-.007Zm.016-.006a.275.275 0 0 1-.005.017l.005-.017Zm.01.494Zm.01-.301v.013l.001-.033v.02Zm.004.056Zm.001.274L.42 2.801a.02.02 0 0 0 .001.002Zm.005-.6a.07.07 0 0 1 .005-.01l-.005.01Zm.01-.049Zm.081-.102Zm-.06.727Zm.014-.516.004-.004a.141.141 0 0 0-.004.004Zm-.007-.14.005-.005-.005.004Zm.01.553-.01-.015.01.015ZM.46 2.592l-.007-.016.007.016Zm-.002-.487-.006.006a.14.14 0 0 1 .006-.006Zm-.004.026-.007.007.007-.007Zm-.006.502L.442 2.62l.006.013Zm.012.178.01.012-.01-.012ZM.458 2.81l.001.002-.001-.002Zm.017.02Zm.014.016ZM.451 1.602a.24.24 0 0 1-.003.001l.003-.001Zm-.016.506.02-.02a.186.186 0 0 0-.026.028l.006-.008Zm-.007.056.007-.01-.007.01Zm0 0v.002-.001Zm-.01.016.008-.011a.293.293 0 0 0-.007.011Zm-.01-.006.003-.005-.004.008.002-.003Zm-.01-.003Zm-.025-.509a.25.25 0 0 1-.006.008l.006-.008Zm-.006.704.003-.022-.003.03v-.008Zm.003.273-.004-.02a.323.323 0 0 0 .004.02Zm-.003.028Zm-.003-.14v.005-.008.003Zm-.002-.091.001-.016v.016Zm0 .033v-.02.055-.035Zm0 .04v-.013.012ZM.36 2.475v.004-.004Zm0 .005v-.002.018-.016Zm0 .109.003.016-.005-.035.003.019Zm-.008-.111v-.001.006-.018.013Zm.003.136.003.017a.807.807 0 0 1-.002-.017Zm-.002-.169v-.004.004Zm0-.005v-.008.008Zm0 .08ZM.35 1.69l.009-.011c-.005.004-.009.01-.012.015l.003-.005Zm-.001.853ZM.346 2.5v-.005.005Zm0-.012v.004-.004Zm0-.014v.009-.01Zm0 .013v-.004.004ZM.28 1.805l-.002.004a1.142 1.142 0 0 1 .002-.004ZM.413 3.32a.6.6 0 0 1 .008.008L.413 3.32Zm.013-.556L.42 2.755l.008.014a.074.074 0 0 1-.003-.005Zm.014.019a.59.59 0 0 1-.013-.021l.015.024-.002-.003Zm.006.009Zm.037.091a.333.333 0 0 1-.004-.003l.003.003Zm.087.036Zm.006.509.009.003-.009-.003Zm.03-.466a.435.435 0 0 0 0 0l.016.006-.016-.006Zm.048.018-.018-.006.018.006Zm.058.488a.764.764 0 0 1 .017.003l-.017-.003Zm.001-.503a.768.768 0 0 1 0 0Zm.066.514H.772c.004 0 .007 0 .011.002L.78 3.48Zm-.041-.662Zm.06.12v.005-.005Zm-.003.056.002-.034-.002.034ZM.8 2.977l.012.003a.144.144 0 0 1-.012-.003Zm.017.512-.012-.004a3.133 3.133 0 0 0 .012.003Zm.233-1.073h.002-.002Zm.134.486a3.829 3.829 0 0 1 0 0Zm.024.112-.044-.005.044.005Zm-.044-.005-.015-.002c.005 0 .01 0 .015.002Zm-.018.051.11.036-.11-.035Zm.09.03.035.01-.036-.01Zm.143.466c-.17-.015-.088-.007.033.002l-.033-.002Zm.033.002.028.002-.028-.002Zm-.094-1.784H1.31a4.275 4.275 0 0 0 .006 0Zm.285.694h-.01.01Zm-.076-.148H1.52a1.1 1.1 0 0 0 .005 0Zm.024.776-.012-.001h.012Zm-.012-.001h-.01.01Zm.016.008h.008-.008Zm.01.018H1.55h.012Zm-.088-.832h.005-.005Zm.006 0h.001-.003.005-.003Zm.01.803h-.004.012-.008Zm.053.012h.008l-.035.003c.008-.002.018-.002.027-.003Zm-.007.486Zm.25.01H1.75c.12 0 .233-.013.373-.025-.123.012-.233.02-.334.025Zm.385-.025H2.17l.028-.002-.025.002Zm-.006-.47c-.041-.002-.082.002-.123.006.135-.009.27-.02.406-.033l-.283.026Zm.205-.222c-.012.004-.026.003-.039.005.013-.002.027 0 .04-.005Zm.007-.008h.001Zm.005 0h-.003.003Zm.01-.002h.002l.005-.001-.01.001a.02.02 0 0 0 .004 0Zm.007-.001Zm-.01.001-.004.001h.004Zm-.015.003Zm.31.179a.83.83 0 0 1 .03-.002l-.03.002Zm.032-.002-.039.002h.004-.01.006l-.018.001.057-.003Zm.008.47v-.017.017Zm-.577-1.702h-.043c.254.045.573-.105.738.027-.157-.133-.446.016-.695-.028Zm.677 1.692v-.005.005Zm.007-1.193H2.82h.013Zm0 0 .034-.001h-.034Zm.03-.001h.03-.03Zm8.618-.799c.009.001.017.005.025.008-.008-.003-.017-.007-.026-.008h.001Zm-.023-.003.016.002-.034-.004.018.002Zm.175.626-.207.006.207-.006Zm-.127.37.036-.001c-.012 0-.028 0-.038.002h.002Zm.096.187-.066.003.066-.003Zm-.156-.541h-.003.01-.007Zm-.005 0-.011-.001h.01Zm.007.34.053.014c-.044-.016-.089-.013-.133-.01l.08-.003Zm-.037.002-.081.003c.027 0 .054-.002.08-.003Zm-.334.213h-.023.036-.036.023Zm-.029-.025.007-.001a.04.04 0 0 0-.007 0Zm-.012-.172.08-.004-.08.004Zm-.102.005.076-.004.064-.003-.14.006Zm.072.17H11h.005Zm-.163.02.123-.005-.123.004Zm-.027 0h.023-.023Zm-.074.004.02-.001h-.02Zm.073-.674-.057.002.057-.002Zm.048.6Zm.02.052h-.003.003Zm.025-.057h-.005.004Zm-.005 0h.001Zm-.006.056a.18.18 0 0 0 .013 0h-.018.005Zm.008-.17c-.024 0-.048.002-.071.003l.071-.003Zm-.048-.02Zm-.08.026.024-.001-.056.003.033-.002Zm-.052.003-.026.001.026-.001Zm-.102-.483Zm-.048.002c.014 0 .027 0 .04-.002l-.066.003h.026Zm.329.587-.312.011.311-.011Zm-.184.08Zm.06-.004Zm-.075.004h-.006.006Zm-.018.001h-.01.01Zm.361-.03h-.007.007Zm.098-.177.078-.003c-.025 0-.05.002-.074.003l.03-.001-.034.001Zm.088.199h.023-.066.043Zm-.008-.202h-.004.013-.01Zm.054-.003h.011-.006a78.936 78.936 0 0 0-.026.001h.021Zm.022-.03Zm-.135-.955.176-.012-.178.012h.002Zm-.284.491h-.01.01Zm-.08.004h.008-.008.02l-.075.003c.02 0 .038-.002.056-.003l-.292.015c.138-.007.219-.01.291-.015Zm-.344.017.05-.002-.124.006.074-.004Zm.035.021-.054.003.054-.003Zm-.29.471h.001-.005.004Zm-.16.19Zm-.03 0-.012.001h.013Zm-.097-.04c.024-.002.048-.003.073-.003l-.073.002Zm.045.044h-.018.018Zm-.023.001c-.007 0-.015 0-.023.002l.023-.002Zm.053-.003-.022.002c.008 0 .015 0 .022-.002Zm-.395-.171H9.6h-.003Zm-.042 0h-.003.044-.04Zm.091.14.031-.002-.03.001Zm.17.04h.017-.018Zm.033.008h-.005.005Zm-.015-.008.024-.002a.57.57 0 0 0-.024.002Zm.056-.003h.008-.008Zm.004-.048a43.64 43.64 0 0 0-.214.009l.235-.01-.02.001Zm.274-.497Zm-.606-.106h.014-.014Zm0 0h-.054.054Zm-.073.03-.01.001.01-.001Zm-.012.001-.011.001.01-.001Zm-.184.011h-.011.008-.007c.016 0 .03 0 .045-.002l-.035.002Zm.08-.04H9.36h.02-.006Zm.01 0h.03-.034.005Zm-.055.039.018-.001h-.018Zm-.176-.503a.352.352 0 0 0-.001 0Zm-.044.513h.002-.003.001Zm.689.095Zm-.263.49h-.007.007Zm-.566-.579-.047.003.047-.003Zm-.058.662-.016-.004.025.006-.01-.002Zm.027.007h.005c-.01-.001-.018-.004-.027-.006l.022.006Zm-.144-.702.084-.005a5.079 5.079 0 0 0-.127.008l.043-.003Zm-.637-.43.492-.032c-.24.015-.479.03-.718.047l.226-.015Zm.331.45-.095.006.079-.005h-.013l.03-.001Zm.045.523h-.001.001Zm-.002 0-.047.003.047-.003Zm-.053.003h.013-.013Zm.005-.488H8.5l-.067.003.049-.003Zm-.066.004L8.4 2.16l.06-.003a1.95 1.95 0 0 1-.043.002Zm.032-.027h.003a142.344 142.344 0 0 0-.003 0Zm.008.512-.121.006.12-.006Zm-.009.123h.004-.002.002-.004Zm.127-.617.066-.003-.066.003Zm-.395.012h-.003.003Zm-.345.009.377-.024-.377.024Zm.255.006a.03.03 0 0 0-.005.001h.005Zm-.01.001h.002-.001Zm-.031-.005h.006-.006Zm-.058 0a4.3 4.3 0 0 0-.067 0h.067Zm-.335-.475c.014-.128.242-.09.274-.017-.034-.075-.258-.108-.276.017h.002Zm-.321-.032h.01l-.084.006.074-.006Zm-.107.49-.024.002.024-.002Zm-.081-.503c.004.038-.01.027-.02.029.01-.002.024.01.02-.03Zm-.02 0v.03-.03Zm-.05.474h.025-.025Zm-.003.036h-.001Zm0 0 .01.002-.01-.002Zm-.036-.505.06-.003-.06.003Zm.027.47Zm-.058-.469v.037-.037Zm.039.54-.105-.002.104.001Zm-.09-.537.028-.002-.027.002Zm.003.47-.024.002.024-.001Zm-.056.004Zm-.153.092-.773.03.016-.002-.043.002.8-.03Zm-.047.005h-.013.013Zm-.514.507Zm.437.137-.008.002.008-.002Zm-.072-.08h.005-.012.007Zm.022 0h.008-.015.007Zm-.071 0-.024.002.024-.001Zm-.044.006-.012.001h.012Zm-.072.101h-.001.001Zm-.03.003H6.35h.012-.005Zm-.016-.095.036-.002a1.037 1.037 0 0 1-.036.002Zm.02.094.022-.001-.023.001Zm-.021.002a.03.03 0 0 0-.006 0h.006Zm-1.068-.173.118-.004-.118.004Zm.08.182h-.016.016Zm-.066-.003-.032.002.032-.002Zm-.45-.16c-.01 0-.022 0-.033.002l.033-.003Zm-.046-.465c.029 0 .063 0 .103-.002l-.103.002Zm0 .47Zm.218-.475-.067.002.067-.002Zm-.024 0h.001-.001Zm.797-.11.015-.001a111.025 111.025 0 0 0-.015 0Zm.13.042h.003-.009.009-.002Zm.123.664.026-.001-.026.001Zm-.025.001h.018a.59.59 0 0 0-.025 0h.007Zm-.026.002h.01-.024.014Zm-.093-.667h-.003.005-.002Zm-.369.693c.092-.004.183-.01.274-.016l-.274.016Zm.08.014h-.004.005Zm-.163-.01Zm.001 0h.006-.006Zm.008 0 .03-.001-.034.002h.004Zm.046-.696.028-.001-.029.001h.001Zm-.032.166h.004-.006.002Zm.201-.015h.005-.005Zm-.002 0-.016.004.017-.004Zm.104.482.017-.001-.017.001Zm.06.042-.012.001h.012Zm.022-.176Zm-.146.003h-.015a22.946 22.946 0 0 0 .015 0Zm.017-.494h.006-.006Zm.026-.002h.008-.008Zm-.398.168Zm.044.342-.116.004.116-.004Zm-.22-.497h.022-.023Zm-.043.002Zm-.118.048Zm.026-.047h.029-.029Zm-.031 0H5h.028-.024Zm-.088.05.049-.002-.078.002h.014H4.9h.012-.006.01Zm.274.094a9.313 9.313 0 0 1-.1.003l.1-.003Zm1.006.546Zm-.052-.055h.005-.005Zm.123.01h-.032.025l-.074.002.09-.002h-.009Zm-.008.031h-.007.007Zm-.029.002h-.01.01Zm-.031.001-.013.001H6.2Zm.094.007Zm-.008-.011h.003-.003Zm.016-.001a.08.08 0 0 0 .008-.001l-.015.001h.007Zm.01-.047.018-.002-.017.002Zm.011.045h.013-.018.005Zm-.369-.159h-.001a441.308 441.308 0 0 1 .001 0Zm.35-.07H6.3h.001Zm.255-1.007-.043.001h.043Zm-.703.026c.102-.006.197-.01.287-.014-.251.01-.36.017-.68.033l.393-.02Zm-.757.51-.057.003.057-.003Zm-.394.045.368-.022-.368.022Zm.043.506h-.002.002Zm-.005.002Zm-.05-.509h.001-.002Zm.011.512-.012.001h.012Zm-.01-.484a.05.05 0 0 1-.007.001l.007-.001Zm-.021.004-.004.001h.004Zm-.057-.05-.039.003.039-.002Zm-.126.046c.005.001.008-.003.012-.008-.004.005-.008.01-.012.008Zm-.011-.037Zm-.031.04h.002-.002Zm0 0h-.005.004Zm-.006.523-.168.006.168-.006Zm-.1.188h-.016.015Zm.005 0H4.34l.035-.002-.03.001Zm-.064-1.207-.05.001.05-.001Zm-.129 1.19.12-.005a6.517 6.517 0 0 0-.12.006Zm-.124.007-.016.001.016-.001Zm.131-.54h.006-.008.002Zm.055-.656v-.004.004Zm.003.457a6.183 6.183 0 0 0-.09.006l.036-.002a3.072 3.072 0 0 0-.042.003H4.12l.098-.007Zm-.193.197h.042-.057.015Zm-.002.337-.012.001h.012Zm-.103-.518c-.012 0-.021.002-.03.003l.03-.003Zm.137.702-.402.025.402-.025ZM4 2.992h-.014.014Zm-.025.001h-.001.001Zm-.24-.685-.031.001h.03Zm-.04.002h-.03.03Zm-.092-.037h-.001Zm-.002-.47v.003-.004Zm-.543.05c.127-.016.292-.072.452-.05-.164-.023-.328.04-.46.048l.008.002Zm.303.593.068-.007-.068.007Zm.003 0h-.002.002Zm.09-.164h.051-.05Zm-.413-.431h.005-.006Zm0 .471H3.04h.002Zm-.004 0h.002-.003.001Zm-.002 0Zm-.021.015Zm0 0h-.003.002Zm-.008 0h.006-.006Zm.528.132.13-.006c-.217.01-.436.016-.653.024l.523-.018Zm.007.384h-.004.004ZM3.505 3h.008-.008Zm.002 0h-.002.002Zm-.376-.106Zm.001 0Zm-.024.154h-.005.005Zm-.005-.152.024-.001h-.024Zm.023.15a.02.02 0 0 0-.005.001h.005Zm.071-.217.016-.001h-.016Zm.037.057-.025.002.025-.002Zm-.062.004-.007.001h.01-.003Zm-.005-.01-.021.001.02-.001Zm-.004.163H3.16h.002Zm.063-.005h-.008.008Zm.193-.014-.022.002.022-.002Zm-.168.013h-.01.01Zm-.106.008h-.004.004Zm-.054.005h-.005.005Zm-.06.01.936-.066c-.312.023-.624.044-.935.065Zm.855-.042h.001Zm.078 0h-.01l.053-.003-.026.002.02-.001-.037.001Zm.744.442c-.258-.013-.517.022-.725.028.208-.006.467-.04.725-.028Zm-.041-.659.6-.022-.6.022Zm.241.182-.05.002.05-.002Zm.298-.062-.026.001h.028-.002Zm.042-.002-.03.001.03-.001Zm1.673.446a126.867 126.867 0 0 1 .005 0h-.005ZM7.11 2.7l.022-.001-.022.001Zm-.017.002.007-.001h-.007ZM7.1 2.7h.01a.08.08 0 0 0-.01 0Zm.047-.003.013-.001h-.013Zm-.015.02h.002-.005.003Zm.016 0h.011-.01Zm-.014-.02h.01a.09.09 0 0 0-.01 0Zm.03-.001.025-.002c-.008 0-.017 0-.024.002Zm-.008-.04.01-.001h-.01Zm-.073.046h-.006.006Zm-.054.64Zm.251-.653h.003-.003Zm.09-.006-.041.003.049-.003H7.37Zm-.803-.013a5.925 5.925 0 0 0-.076.01c.627-.045 1.254-.053 1.882-.086l-1.806.077Zm1.163.096-.031.005c.074-.011.148-.008.222-.013l-.191.008Zm-.017.059ZM7.63 2.7l-.027.001.027-.001Zm-.035.002-.056.003c.02 0 .038-.002.056-.003Zm-.15-.002Zm.172.557-.097.014c.037.003.076-.029.11 0a.13.13 0 0 1-.013-.014Zm.045-.56Zm.048.6a.28.28 0 0 1-.021-.002c.034.003.057.003.106.004l-.085-.002Zm.087.002h-.002.003-.001Zm.05-.448Zm.016 0h-.015l.533-.026-.518.025Zm.895.435-.098.005.312-.017-.214.012Zm.155-.545Zm.277.062Zm.19-.01.028-.002a.755.755 0 0 1-.028.002Zm.174-.012-.031.002c.01 0 .02 0 .03-.002l.062-.004-.044.003.051-.003h-.007.007l-.068.004Zm.046-.004.21-.016-.21.016Zm.16.46c-.022 0-.044.003-.066.004l.095-.007-.028.002Zm.072.016h.01-.01Zm.042-.473-.035.002.036-.002Zm-.003-.024a.507.507 0 0 1 .023-.002l-.023.002Zm.007.024Zm.001 0Zm.072.468-.07.003c.032 0 .063.005.08-.031-.01-.004-.011.005-.01.027Zm-.024-.497c.007 0 .014 0 .021-.002l-.02.002Zm.053.468v.022-.022Zm-.002-.444h.007-.008Zm.021.47c-.05-.007.025.02.022-.015.002.027-.014.01-.022.015Zm-.006-.47Zm.005 0H10h-.004Zm.004 0h-.002l.01-.001H10Zm.03.47v-.001h.003-.002Zm.042-.474.024-.001-.025.001Zm-.165-.038Zm.26-.064-.06.003.112-.005-.052.002Zm.25-.01Zm.686.54-.519.022a267.293 267.293 0 0 0 .519-.022Zm8.12-1.581.037-.003-.037.003.181-.012-.193.013h.001-.005l.015-.001Zm.217-.014-.038.002.058-.003h-.02Zm.03.061-.01.002.01-.002Zm-.038.004-.009.001h.009Zm-.818.049h.002l-.03.003.025-.003a4.58 4.58 0 0 1 .003 0Zm.062.635h-.002.002Zm-.046-.619Zm-.028.532v-.001Zm-.093.02h.003l-.032.001.03-.001Zm-.02-.004Zm-.06-.59.176-.016-.176.015Zm.005.597h-.001.001Zm0 0h.001Zm.001 0h-.003.003Zm-.007-.598-.043.004.045-.004h-.002Zm.116.014-.004.001h.004Zm-.004.001Zm.04-.048-.017.002.017-.002Zm-.017-.472h.01-.011Zm-.071.482c-.008 0-.016.002-.023.003l.023-.003Zm-.118.041Zm-.168.695.047-.003a2.204 2.204 0 0 1-.047.003Zm-.057.003Zm-.634-.625.02-.002c-.007 0-.013 0-.02.002Zm0 0h-.008.008Zm.024-.002h.005-.005Zm.028-.003a.04.04 0 0 0 .007 0h-.007Zm.022.053h-.006.006Zm.004-.055h.009-.009Zm.073.535h.005l-.051.004.046-.004Zm.016-.544c.012 0 .022-.002.033-.003l-.033.003Zm.108.037-.052.007.052-.007Zm-.052-.027Zm-.089-.006h-.007.012-.005Zm-.098.009.012-.001h-.012Zm.082.655-.04.001.04-.001Zm.482-.732h.006-.006Zm.012.68.014-.001a.21.21 0 0 0-.014 0Zm.093-.068-.09.01.09-.01Zm-.017-1.093-.042.004.042-.004Zm-.07.48-.018.001.018-.002Zm-.018.001Zm-.008-.456a33.12 33.12 0 0 0-.864.076c.256-.028.552-.051.864-.076Zm-.678 1.08-.178.01.178-.01Zm-.284-.517h-.002.002Zm-.054-.492h.001-.002.001Zm-.03.475Zm.01.53Zm-.207.045.122-.014-.122.014Zm-.062-.027.073-.005-.073.005Zm.16-.544h-.015.015Zm-.028.001h.01-.018.009Zm-.216.549.055-.004-.056.004h.001Zm.017.104-.06.004.06-.004Zm-.025-1.108h.002c-.027.003-.053.005-.076.013a.36.36 0 0 1 .074-.012Zm-.042 1.112a3.008 3.008 0 0 0-.055.004l.055-.004Zm-.077.005a1.684 1.684 0 0 1-.041.003l.04-.003Zm-.028-1.088Zm-.014 1.091-.012.001h.012Zm-.064.005h-.002.002Zm-.113-.611-.058.003.058-.003Zm-.11.396h-.004.005Zm-.009 0-.733.05h.002l.74-.05h-.009Zm-.08.237h.012-.012Zm-.01 0h-.004.004Zm.046 0h-.006.006Zm.002 0 .017-.001h-.02.003Zm-.713.01-.027.001h.008-.013.004a2.16 2.16 0 0 1-.046.003h.006l-.029.001.106-.005h-.006.012-.024.01-.001Zm-.144.007-.014.001h.014Zm-.02-.075-.173.008.174-.008h-.001Zm-.018.077h-.005.005Zm-.03-.094-.002-.002.002.002Zm-.012-.007-.007-.002.007.002Zm-.29.04.092-.004h.002-.002l-.037.001.037-.001c-.031 0-.062.002-.092.004Zm.094-.004h.004-.004Zm-.001.074h-.014.014Zm-.01-.615h.018-.017Zm.067.613-.038.002.038-.002Zm-.162-.611.087-.002-.087.002Zm-.178.413.017-.002h-.001l.056-.003c-.028.002-.065.001-.091.009a.097.097 0 0 1 .02-.004Zm.046.025Zm.085-.032h.003-.004Zm-.1-.403.09-.002-.09.002Zm-.04.548-.083.004.083-.004Zm-.047.073.037-.001-.122.005.085-.004Zm.401-.013h.01-.01Zm.049-.001h.007-.007Zm.01 0h.008-.007Zm.056-.003h.004-.004Zm.037-.013Zm.035-.6h.001-.001Zm.067.607h-.023.023Zm.214-.091h.005-.005Zm-.015-.114Zm0 0-.044.002.045-.002Zm-.027.117h-.001Zm-.051.004h.002-.002Zm-.1.006h-.005.011-.006Zm.113.07a7.11 7.11 0 0 1-.014.002h.014v-.001Zm-.114-.009c.201-.005.403-.006.605-.014-.202.008-.403.009-.605.014Zm.015-.062h.005-.005Zm.434-.036.025-.003-.026.003h.001Zm.025-.003.031-.003-.03.003Zm-.022-.503Zm-.483-.458h.054c-.251.003-.445.005-.797.016.323-.01.527-.013.743-.016Zm-.797 1.102-.024.001.024-.001Zm-.113-.426h-.003.003Zm-.003 0-.016.002.016-.002Zm-1.558.404h.015-.015Zm-.014 0Zm.833-.55.028-.001-.048.001h.02Zm-.12.003-.049.002.05-.002Zm-.06.002-.03.001.03-.001Zm-.353.01h-.005.005Zm-.26.005h.033-.046.013Zm-.076.147.036-.001-.036.001Zm-.032.002.017-.001-.031.001h.014Zm-.031 0h.007l-.041.003.034-.002Zm-.182.011Zm-.034.002Zm-.003 0h-.007.007Zm-.39.01-.25.008.25-.008Zm-.381.454Zm-.01.042Zm.447.472c-.06 0-.12.003-.182.004l.218-.005h-.036Zm.096.035h-.002.003-.001Zm.463-.053c-.092.072-.193.03-.297.048.104-.018.205.023.298-.048Zm-.093-.544.572-.034-.572.034Zm.313-.006Zm-.083.072.018-.001-.018.001Zm-.01 0-.022.002.024-.001h-.001Zm.003 0h.005l-.006.001h.001Zm.034-.001Zm.035-.015H13h.003Zm-.002.011h-.005.005Zm.002-.01Zm.226-.035-.223.005.362-.009-.14.004Zm.15.005Zm0 0h.004-.003Zm.004 0h-.002.004-.002.024-.024Zm.435.042h-.003.007-.004Zm.28-.118Zm.083.046Zm.175-.026h.004-.004Zm2.835.396c-.747.045-1.291.072-1.894.1.6-.023 1.153-.064 1.894-.096v-.005Zm1.166-.048a44.364 44.364 0 0 1 .11-.007l-.11.007Zm.23-.488.037-.003a1.232 1.232 0 0 1-.037.003Zm-.392 0 .512-.025-.512.025Zm.542-.675.01-.001h-.01Zm.035.638h-.009.011-.002Zm.03-.682-.01.001.056-.005-.045.004Zm.043-.004.137-.012-.137.012Zm.149-.014-.015.002.06-.006-.045.004Zm.213.05Zm.105-.01Zm.227.592-.05.003c.018 0 .035-.003.053-.002h-.003Zm-.042-.61h.01-.01Zm.034-.004h.014-.014Zm.069-.007.033-.004-.033.004Zm-.034.004.015-.002-.015.002Zm-.348-.509h-.002l.633-.04-.631.04Zm1.934-.128Zm-.163.57Zm0 0h-.002.001Zm-.005.001Zm0 0h-.005.004Zm-.073-.007h-.005.005Zm-.072-.038Zm.001 0Zm0 0-.002.001h.001Zm-.002.001Zm0 0Zm-.001 0-.001.001Zm-.002.001h-.002.002Zm-.4-.032c.009 0 .016 0 .024-.002l-.043.003.02-.001Zm-.101.006Zm-.138-.405.063-.005c-.031 0-.059.012-.088-.008a.107.107 0 0 1 .025.013Zm-.067-.02h.006-.017.01Zm-.016 0h.004-.01.006Zm.183.5Zm.074-.008a.407.407 0 0 1 .02 0h-.02Zm.261-.031Zm.102.004.015-.002-.015.002Zm.021-.002h.006-.007.001Zm.111.641h.002-.002Zm.02.472h-.006.008-.002Zm-.084-1.068.118-.007-.118.007Zm.131-.073h-.002.004-.002Zm.054.059h-.002.002Zm0 0h.001Zm.169 1.07-.065.004a.182.182 0 0 1 .098.01.099.099 0 0 1-.033-.014Zm3.542-.73.022-.004-.025.004h.003Zm-.003 0h-.002.002Zm-.129-.492.032-.001-.049.002h.017Zm.07.394-.138.006.138-.006Zm-.363-.264.072-.005a5.339 5.339 0 0 0-.073.005h.001Zm.05.432h-.003L24.337 2l-.014.001Zm-.032-.152-.14.006.14-.006Zm-.037.157-.016.001h.019-.003Zm-.016.001h-.01.01Zm-.112.022Zm.023-.018Zm0 0h.022-.021Zm.03-.176-.107.002.108-.002Zm-.233-.843a6272.512 6272.512 0 0 1-.157.01l.157-.01Zm-.471 1.068h-.006c.187-.01.373-.025.56-.032-.185.007-.37.022-.554.032Zm-.006 0Zm-.086-.064Zm0 0Zm-.112-.099-.048.003.167-.008-.12.005Zm-.342-.027-.019.002c.155-.01.31-.018.464-.025-.112.004-.225.012-.337.017l.327-.017-.435.023Zm.08.219Zm.012-.018h-.01.01Zm-.043.02h-.004.004Zm-.083.002.034-.001-.034.001Zm.001.013h-.003a.01.01 0 0 1 .003 0Zm.25-.44Zm.23.18h.003-.003Zm.216.136c-.071.005-.14.01-.204.013l.204-.013Zm-.197-.135h.003-.003.002-.003.001Zm.462-.006.073-.001-.073.001Zm-.167-.218.13-.012-.412.039.282-.027Zm-.239-.116.033-.001-.033.001Zm.053-.002.037-.002-.037.002Zm.054-.003.052-.003-.052.003Zm.056-.003Zm-.25.154.161-.018-.164.018h.003Zm-.15-.622-.064.001.063-.001ZM23 1.08h.004a.2.2 0 0 0-.019.002L23 1.08Zm-.035-.048a.608.608 0 0 1-.027 0h.027Zm-.028-.001Zm-.019-.004.003.062-.003-.062Zm.062.491h.001l-.14.001h.139Zm-.098.588h-.002.005-.004.001Zm-.057.031-.05.003.05-.003Zm-.149-.617h.005-.017.012Zm-.125-.012h.005-.018.013Zm-.054.001-.044.001h.044Zm-.024.618.005-.001h-.005Zm.009-.001.005-.001h-.007.002Zm.005-.001Zm-.127-.614h.042-.06.018Zm.076.404.044-.005-.354.035.31-.03Zm-.166.042.028-.001c-.013 0-.027 0-.04.002h.013Zm.017-.01Zm.052.007h-.01.01Zm-.082.004-.025.002.028-.002h-.004Zm.011.208.166-.008-.166.008Zm.084-.213.049-.002-.05.002Zm.078.18Zm0 0h.003-.002Zm.003 0h.004-.004Zm-.248-.587Zm-.027 0h.026-.037.011Zm-.32-.004h-.062.062Zm-.065-.488h.005a1.217 1.217 0 0 1-.005 0Zm-.172.487h.173-.173Zm0 0H21.6h.001Zm-.163-.514c.026.003.036.002.062.01-.038-.011-.063-.01-.102-.013.015 0 .028.001.04.003Zm-.109.466h.014-.02.006Zm-.05.082Zm.005-.032h.115-.115Zm.044 1.136Zm.068-.467.324-.028-.324.028Zm.338-.225h-.01.026-.016Zm.035 0h-.008.02-.012Zm.021.192Zm-.004-.193h.01-.01Zm.008 0h.021-.02Zm.027.676-.025.001.027-.001h-.002Zm-.033-1.111h.072-.072Zm.095 1.108c-.106.022.026-.034.08-.034-.023.017-.079-.03-.08.034Zm.13-1.086.023.001h-.023Zm-.175-.03.2.002-.2-.003Zm.175-.025c-.034.003-.05.007-.07.01l.07-.01h-.001.063-.062Zm.098.052h-.005.004l-.047.001.049-.001Zm.087 1.04Zm0 .03Zm1.264-.57.657-.041-.657.042Zm.83-.067-.013.001.018-.001h-.005Zm.041.499.058-.004-.058.004Zm.448-.018h-.012.012Zm.107-1.074h.001Zm.007.606h-.003.005-.002Zm.153-1.08h.001-.003.002Zm.015.472h-.037.037Zm-.095 0h.037-.037Zm.053 0Zm12.324-.319h-.006.006Zm-.472.47h.035-.035Zm-.324-.448Zm-.032.457h.018c-.016 0-.032 0-.048.002l.03-.002Zm-.01-.014Zm.002 0Zm.002 0h.001Zm.004-.001h.005-.005Zm.01-.001h.007-.006Zm-.064-.44h.002-.004.007-.003.088-.082.082-.09Zm.021.458-.027.001h.027Zm.023-.473h.016-.016Zm.026 0h-.007.007Zm.018.014Zm.15-.044h.025-.024Zm.033 0 .107-.003-.109.003h.002Zm-.006-.472h.001c-.307.03-.618-.022-.82.065.202-.087.512-.035.82-.065h-.001Zm-.284.977h-.021.02Zm-.13.003h.031-.031Zm-.03 0h-.002.005-.002Zm.006-.49-.017.001.017-.001.044-.002-.044.002Zm.016.49h.009-.02.011Zm-.066.014H36.2h.038Zm-.115-.498-.017.001h.017Zm-.145.01-.064.006.064-.005Zm-.064.006h-.001Zm-.157.486h.008-.026.018Zm-.1-.917h-.008.007Zm-.195.884h.002-.022.02-.001.001Zm-.002 0-.043.002.043-.002Zm-.683-.01h.005-.005Zm-.004 0a.02.02 0 0 0-.004.001h.005Zm-.004.001h-.001Zm-.003 0-.005.001h.005Zm.048-.376h-.002.008-.006Zm-.026.374h.01-.008l.04-.003-.043.003Zm.013-.346h.003-.003Zm.209-.094h-.003.001l-.01.002.02-.003a.08.08 0 0 0-.008.002Zm.013-.001Zm-.028.003a.165.165 0 0 1-.013.002l.013-.002Zm-.027.52Zm.003-.47h-.003.003Zm-.003.47h.005-.005Zm.005-.517h-.001l.015-.002-.014.002Zm.002-.009-.062.007.074-.008-.013.001Zm-.013.056h-.004.004Zm-.012 0h-.004.004Zm-.004-.043a1.088 1.088 0 0 1-.035.004l.035-.004Zm-.001.422Zm-.088-.34h.013-.017.004Zm.027.343h.01l-.027.001h.017Zm.058-.382h-.002.002Zm.042.451.327.001h-.327Zm.091-.436c.01 0 .019-.002.027 0-.008-.002-.018 0-.027 0Zm-.027-.079Zm.125-.488Zm-.335.51-.02.001.026-.002h-.006Zm-.206.037Zm-.001 0Zm-.025.436h.014c-.014 0-.028.002-.042.004l.028-.004Zm-.027-.355h.004-.004Zm.004 0Zm.002-.001.005-.001h-.005Zm-.025.19-.011.001.027-.001h-.016Zm-.01-.014h.001Zm.018-.169Zm0 0Zm0 0 .002-.002-.001.001Zm.003-.002.002-.001h-.002Zm.002-.002h.004-.004Zm-.082.197-.087.01.087-.01Zm-.048-.197h-.014l.054-.003-.04.003Zm-.037.002-.043.003.043-.003Zm-.078 0h-.002.002Zm.011.21Zm-.635.26-.058.007.333-.04-.275.033Zm.154.027-.042.004.042-.004Zm-.464-.199c.19-.012.382-.034.577-.055-.195.021-.387.043-.577.055Zm-.122.233c-.015 0-.031 0-.047.002l.047-.002Zm.777-.515.01-.001-.164.017.154-.016Zm-.042.215-.114.012.114-.012Zm-.22-.218a2.883 2.883 0 0 0 .165-.018l-.164.019Zm-.12.253h-.001l.032-.003-.027.003.035-.004-.04.004h.005-.005Zm.25.169-.093.011.093-.011Zm.041-.005.05-.006-.05.006Zm.103-.4h.014-.014Zm.076-.054Zm.01-.068h-.012.011Zm-.22-.464a5.338 5.338 0 0 0-.052 0h.052Zm-.14.5h.002-.002Zm-.014.002-.015.001.015-.001Zm-.038.002h.012-.012ZM33.45.674c.007.016.026.002.038.007-.012-.005-.032.01-.038-.007Zm-.002.466h-.001Zm-.063-.002.06.002-.06-.002Zm-.179.046h-.003.003Zm-.008 0h-.005.005Zm-.316.362h.001-.001Zm0 0Zm.04-.417h.005-.016.011Zm.08 0h.02-.02Zm.164-.468L33.108.66l.058.001Zm-.272.467h.006-.017.01Zm-.052 0h.016-.02.004Zm-.021-.472h.005-.009.004Zm-.32.49h.006-.015.008Zm-.057.565h-.008.008Zm.02-.002Zm-.004 0Zm-.004 0-.003.001h.003Zm-.006.002h-.006.006Zm-.268.038-.035-.001h.035Zm-.08-.6h.076-.075Zm-.13 0h.002-.001Zm0 0h-.033.024-.018.026Zm-.019.564h.005-.005Zm0 0Zm.006 0h.001-.002Zm.002 0Zm0 0Zm.012.032h.075l-.103-.001h.028Zm.024-.596h.012-.012Zm.023 0Zm.046 0h.034-.034Zm.065-.06h.001-.001Zm-.268-.483a7.814 7.814 0 0 1-.007 0h.007Zm.038.628h-.009.012-.003Zm-.01.49Zm-.107-.602h.024l-.057.002.033-.001Zm-.023-.044Zm.067.157h.037-.038Zm-.401-.622c.146-.007.244-.006.378-.007a9.387 9.387 0 0 0-.745.027c.12-.008.242-.017.367-.02Zm.24 1.177Zm0 0h-.002.002Zm-.055-.711h.04-.04Zm.039 0h.002-.002Zm-.48.465h.003-.062.06Zm-.022 0h.006-.006Zm-.02 0h.055-.005.011-.061Zm-.064.262Zm-.013 0-.007.001h.007Zm.027 0h-.003.003Zm-.111-.07h.018-.026.008Zm-.017-.54L31 1.192l-.048.004Zm.055.614ZM30.63.73V.7c.001.025-.001.032-.011.029l.01-.001Zm-.077 1.073Zm-.012.002v.001Zm.005 0Zm-.026-.027h.002l-.015.002.013-.001Zm-.074-.53.067-.007c-.032.004-.064.008-.097.01l.03-.003Zm-.006.542h.002l-.014.002.012-.002ZM30.262.762Zm-.33-.036Zm-.002.475h-.006.006Zm-.011.001-.075.008.021-.002-.012.001c.025-.002.047-.004.065-.007Zm-.02.057-.005.001.006-.001Zm-.076-.034Zm-.017 0h-.003.006-.003Zm.034.066-.046.003.046-.003Zm-.074-.56.135-.004c-.167.003-.342.016-.504.022l.37-.018Zm0 .487h-.007.006Zm-.01 0h-.003.002Zm-.026.034h-.004.004Zm-.006.037h-.014.014Zm-.241-.037-.118.005.118-.005Zm.027.63a9.186 9.186 0 0 1-.097.003l.097-.003Zm-.247-.55h-.001Zm-.034-.003h-.001Zm-.001 0Zm0 0v-.001Zm-.097.516-.038-.001h.038Zm-.121-.005Zm-.172-.554.04-.004-.107.011.067-.007Zm-.183.015h-.016.016Zm-.025 0h-.03.03Zm-.049.023.014-.001h-.014Zm-.016-.005Zm-.083-.029h.018-.022.004Zm-.127-.51.078-.003-.367.01.289-.007Zm-.076.545Zm-.25.033Zm-.003-.065-.084.001.084-.001Zm-.003.063h-.004.004-.004.004Zm-.005 0Zm.001 0Zm0 0h-.001Zm-.002 0Zm0 0h-.002.002Zm-.12-.024h.016-.02.004Zm.007 0 .048-.001-.048.001Zm-.001-.037h.027-.027Zm.066.035h.005l-.034.001h.029V1.33Zm-.09-.035h-.018.019Zm-.04 0-.02.001h.02Zm-.043.002h-.02.02Zm-.04 0-.023.001h.022Zm-.34-.003.054-.002a9.442 9.442 0 0 0-.053.002Zm.302.004Zm-.425.01.294-.007-.295.008c.016 0 .032 0 .048-.002l-.047.002Zm.245.542h-.005.005Zm-.64.013h.001l.053-.003-.053.003Zm-.304-.041c.175-.01.35-.018.526-.027l-.526.027Zm.049-.39h.001a.105.105 0 0 0-.001 0Zm.472-.042c-.005 0-.009.002-.013.004.004-.002.008-.004.013-.004Zm.033-.019.055-.004-.055.004Zm.073.477.018-.001-.128.006.11-.005Zm-.008-.034h.024-.024Zm.093.003Zm-.037-.001Zm.007 0h.013-.013Zm.014 0h.014-.014Zm-.11-.514.145-.006-.145.006Zm-.248.128.08-.014-.082.014h.002Zm-.006 0c-.002 0-.002 0 0 0Zm-.089-.009-.023.001h.023Zm-.183.01h-.001l.02-.001h-.02Zm-.565-.535.322-.03a5225.466 5225.466 0 0 1-.322.03Zm.199.555c.012 0 .026-.002.04-.004a5.805 5.805 0 0 0-.075.008h.008-.004l.03-.004Zm.039-.074-.018.001h.018Zm0 .464h-.007.005-.001.003Zm.034.057-.573.032.573-.032Zm-.023-.057h.005-.005Zm-.462.032Zm0 0 .005.001h-.005Zm.215-.026h.016-.015Zm.212-.006h-.008.008Zm-.048 0h.019-.02Zm.064 0h.002-.002Zm-.49-.33c-.126.005-.251.01-.376.012a15.644 15.644 0 0 0 .375-.012Zm-.108.47h-.008.008Zm-.029-.03-.04.002.04-.002Zm-.327-.535h-.036c.05 0 .108-.003.154-.005l-.118.005Zm.116-.005c.027 0 .054-.002.08-.003l-.08.003Zm.342-.02h-.007.009-.002Zm.055-.006Zm-.04.004h.013-.002l.003-.001h-.012.002l-.012.002.01-.001h-.001Zm-.027.003h-.003.003Zm-.23-.456.031-.002c-.01 0-.02 0-.032.002Zm-.211.008.17-.006c-.047-.007-.115.021-.17-.002v.008Zm-.045.472h-.001.001Zm-.073.104.065-.002-.066.002Zm-.038.01h.005c-.044 0-.087.002-.13.003l.125-.003Zm1.163.898-.854.042.854-.042Zm-.004-.471Zm-.182-.486c.149-.015.294-.03.444-.04-.084.005-.17.014-.252.021l.184-.016c-.128.01-.25.022-.376.035Zm.409.944c-.03-.009-.075.017-.098-.01.096.03.212-.007.315-.003l-.217.013Zm.505-.044-.03.001a12.945 12.945 0 0 0 .03-.001Zm.188-.49h-.001Zm.03.474.01-.002-.01.002Zm.049-.533Zm-.002 0Zm.063.486c-.018-.002-.035.004-.052.023.02-.022.04-.029.062-.019l-.01-.004Zm.032-.934a.58.58 0 0 1 .06-.002l-.06.002Zm.032.464h.003-.003Zm.003 0h.007a.04.04 0 0 0 .006-.002l-.013.002Zm.011.482h.034-.034Zm.041 0h-.006.01-.004Zm.001-.488h.006-.006Zm.053.489h-.01.01Zm-.018-1.02.042-.001-.042.001Zm.122-.003h-.02.02Zm-.04.001h-.032.032Zm.002.532.02-.001h-.02Zm.032-.001h-.012.021-.009Zm.08-.003c.014 0 .024-.002.039-.003a.454.454 0 0 0-.013.001c-.009.002-.017.002-.025.002Zm.052-.004Zm.004 0 .015-.002-.015.001Zm.04-.004h-.011.012-.002Zm.026-.004-.008.001.01-.001h-.002Zm.218-.438-.444.008.443-.008h.001Zm.01 0h.01-.01Zm.016 0h-.005.004-.007a9.064 9.064 0 0 1 .008 0Zm.035 0h-.014l.023-.001h-.009Zm.022-.052h.015-.028.013Zm.01.05Zm.15-.036h.002-.002Zm.158-.013h-.006.006Zm.015-.001.047-.002-.047.002Zm.152-.024h.02-.02Zm-.025-.53h-.002l.066-.002-.064.002Zm.113 1.059h-.001.003-.002Zm.243.53h-.019.034-.015Zm.04-.471h-.186.196-.01Zm.078 0h-.005a11.964 11.964 0 0 0 .005 0Zm.221-.04h.019-.004.002-.015.006-.013.008-.003Zm.44.014H29.8l.026-.002-.026.002Zm.064-.036Zm.008-.54h.014-.014Zm.016-.028h-.001.003-.002Zm.022-.004a18.101 18.101 0 0 0 .19-.012l.179-.013c-.123.01-.246.018-.369.025Zm.067.606.01-.001-.01.001Zm.008.464h-.01.01Zm.012-.467h-.002.005-.003Zm.1-.058-.112.014.125-.016-.013.002Zm.21.02h.002-.003Zm-.067-.047h-.002l.095-.012-.093.012Zm.104-.203h.002-.002Zm.003 0h-.001Zm.282.694c-.1.032-.178-.03-.274.013.105-.04.197.017.305-.016a.777.777 0 0 0-.031.003Zm.005-1.123Zm.098.075a1.914 1.914 0 0 1 .059-.006l-.059.006Zm-.025-.082.027-.003-.027.003Zm.017.017Zm.093.623.044-.002-.044.002Zm.12-.622-.05.008.05-.007Zm-.022.658h-.003.003Zm.094.47h-.101.105-.004Zm.018-.002Zm.363-1.143h.012-.012Zm.017 0 .039-.003-.039.002Zm.01.644h.022-.021Zm.009-.646.063-.002-.063.002Zm-.16.007Zm.402 1.12-.019.001a.115.115 0 0 0 .018-.001Zm.006-1.135.065-.002-.065.002Zm.249.589h.006-.006Zm-.013.002Zm.006-.001h.002-.002Zm.253.533h-.063c.025.002.05-.008.075.007l-.012-.007Zm.023.013Zm0 0Zm.01.019v-.016.016Zm.013-.471h-.014.025-.01Zm.065-.11-.052-.002.058.001h-.006Zm-.013-.547h-.011.017-.006.027-.027Zm-.07-.476h-.016.127-.11Zm.128 1.023Zm.015 0h.017-.017Zm.106.08h-.078.078Zm.03-.621.054.002-.054-.002Zm.056.002h-.002.003-.001Zm.001 0 .03.001-.03-.001Zm.083-.494a.725.725 0 0 1-.058.006c.03-.002.043-.004.063-.007h-.005Zm.075.506h-.001.001Zm-.042-.005Zm.012.001h-.01.014-.004Zm.074.384Zm.279.226h.004-.01.006Zm-.06-.001h-.007.01-.004Zm.011 0h.007-.01.003Zm.044.472h-.043a13.853 13.853 0 0 0 .043 0Zm.275-.479h-.002.027-.025Zm.167-.05h-.001l.027-.001-.054.003.028-.001Zm.046.038.082-.005-.082.005Zm.01-.028h-.002c.033-.002.065-.005.098-.009l-.095.01Zm.097-.009.043-.005-.044.005Zm.226.49c-.061.006-.123.01-.186.015.166-.011.3-.026.478-.04-.107.008-.205.017-.292.025Zm.46-.528Zm.058-.056h-.006a1.264 1.264 0 0 0 .006 0Zm.058.065.122-.008-.122.008Zm.298-.563-.046.003c.016 0 .031-.002.047-.003h-.001Zm.003 0 .068-.005-.069.005h.002Zm.035.426-.015.001.015-.001Zm0 0h.002-.002Zm.002 0Zm0-.001h.002-.002Zm.002.003h-.001.002l.19-.017-.19.017Zm.407.092Zm.044.458a.09.09 0 0 1-.043.013c.019.001.036-.014.054-.014h-.011Zm-.086-.482.364-.011c-.042 0-.083.002-.124.003l.12-.003c-.12.002-.24.006-.36.01Zm.57.484-.188-.003.401.006c-.074 0-.143-.002-.213-.003Zm.18-.58h.089-.089Zm.126.044h-.013.016-.003Zm.028 0h-.007.008-.002Zm-.034-.473.058-.004-.058.004Zm.087-.006.037-.003-.045.003h.008Zm.01 1.019h-.005.08-.074Zm.086-.494c-.044-.004.063.007.084.01l-.084-.01Zm1.007.456c-.271.016-.561-.015-.824.023.272-.037.57-.01.85-.021l-.026-.002Zm-.203-.979.376-.008-.376.008Zm.472.535h.031-.03ZM41.553.544l-.217-.002c.075 0 .148 0 .217.002Zm-.423.943Zm0 0h-.001Zm-.002 0h-.001.002Zm-.05.004-.014.001h.015-.001Zm-.07-.48h.102-.143.04Zm-.29-.474.206.001c-.108 0-.287-.001-.377-.003l.17.002Zm-.152.486h-.008.008Zm-.02.536h.01-.062.052Zm-.063-.555h-.01.01Zm-.011 0-.005-.001h.005Zm-.007-.001-.005-.001h.005Zm.001 0ZM40.005.55c.139-.03.3-.015.463-.02-.162.005-.324-.01-.463.02Zm.454.452a.01.01 0 0 1-.003 0h.003Zm-.078 0h-.02.056-.036ZM40.456 1h-.04.04Zm-.3.004Zm-.523-.446.372-.001c-.132-.007-.265.016-.396-.008a.104.104 0 0 1 .023.01Zm-.043.458Zm-.006-.47h.002-.011.009Zm-.037 0h.007-.008Zm-.155.484c.287 0 .49-.002.774-.003h-.063l.403-.002.035-.002c-.432.007-.725.004-1.15.007Zm.59.547h-.008c.049-.003.205-.006.298-.01-.089.004-.235.007-.29.01Zm-.124-.089-.247.005.247-.005Zm.132.008Zm-.037.025c.017-.003.035-.003.065-.005-.03.002-.048.002-.065.005Zm.328.037h-.018.23-.212Zm.061.005-.005.002c.003 0 .005-.001.005-.002Zm-.007.002h-.002.002Zm-.005 0h-.007.007Zm-.008 0-.006.001h.005Zm-.029.002h-.008.008Zm-.01 0h-.01.01Zm-.365-.539h-.002.002Zm-.755.469Zm-.461-.933.45-.01-.528.012.078-.002Zm.458.934h-.01.01Zm-.456-.462a59.412 59.412 0 0 1 .174-.005l-.174.005Zm.134.505ZM37.545.584Zm.166.47a11.885 11.885 0 0 0-.018 0h-.01.028Zm.008 0h-.003l.143-.001-.14.001Zm.054.497h-.012.012Zm-.21.002h.088-.089Zm.145-.002h-.022.022Zm.156.074h-.007.02-.013Zm.141-.075h.04-.04Zm.603.514a21.865 21.865 0 0 1 .017 0h-.017Zm.057-.474-.041.002a7.66 7.66 0 0 1 .093-.005l-.052.003Zm.059-.003.021-.001h-.021Zm.054-.003.017-.001-.017.001Zm.017.47.188-.008c-.067.003-.13.005-.188.009Zm.308-.494-.359.004.237-.002-.284.002h.047-.019l.427-.004h-.049Zm.063.48.124-.004-.124.004Zm.28-.482h-.024.04-.015Zm.06-.007h.032-.033Zm.051-.046-.384.012.339-.011-.146.005c.192-.007.384-.01.575-.015l-.384.009Zm.381.046h.07-.111.041Zm-.004.48h-.019c.006-.004.019.01.019-.009v.01Zm.581.018-.551.002c.217 0 .56-.003.822 0l-.27-.002Zm.055-.49h-.01.266-.256Zm.255 0c.109.003.22-.003.328.003-.005-.004-.012 0-.018-.002h.003-.313Zm.307.5Zm.186-.466h.023-.023Zm.05.001h.021-.02Zm.024.472h-.006l.011-.001h-.005Zm.28-.482-.604-.004c.2.003.403.002.604.004ZM41.61.891h.011-.023.01-.001.003ZM41.572.89h-.004l.025.001h-.021Zm.1.695.092-.002-.091.002Zm.07 0v.001Zm-.016.472h-.053c.025 0 .047-.002.073.004a.16.16 0 0 1-.02-.004Zm.074.01-.019-.002.021.001H41.8Zm.001-.485h-.005.01-.005Zm.012-.684Zm.002-.35c.027-.201-.251-.173-.262-.066.01-.107.289-.135.262.066Zm6.312.03.168.006-.354-.014.186.007Zm-.149.585Zm.088.467.05.001h-.062.012Zm.13-.456.022.001-.021-.001Zm-.423-.018-.027-.001h.027Zm.135.004h-.022.022Zm-.066-.002-.027-.001.027.001ZM46.346.514c.137.099.495-.18.586.142.108-.319.49-.009.69-.099-.454-.019-.993-.031-1.276-.043Zm1.185.511-.033-.001.033.001Zm-1.424.66 1.25.05c-.486-.018-.972-.04-1.457-.056a42 42 0 0 0 .207.007Zm.278-.09h.016-.016Zm.055.002h.048-.048Zm.054.041-.075-.002.075.002Zm-.076-.003-.03-.001.03.001Zm.114-.013h-.002.008-.006Zm.398-.015h.03-.03Zm-.053 0-.045-.002h.002-.002l.065.002-.027-.001h.007Zm-.101-.003-.1-.002c.038 0 .074.002.11.003h-.01Zm-.049.038h-.051.051Zm-.06-.544h-.005.005Zm-.001 0c-.029 0-.057-.002-.086-.003l.086.003Zm-.03.544h-.028.028Zm.336.016.399.004-.4-.004Zm-.012-.05h.023-.023Zm.24-.594h.014-.013Zm-.982.577-.062-.001.062.001Zm-.184-.005-.06-.001.064.001h-.004Zm-.075-.002h-.009.01Zm-.025 0-.07-.002.078.002h-.008Zm-.08-.003-.084-.002.083.002Zm-.408-.013Zm-.696.03Zm-.001 0Zm0 0h-.002.002Zm-.068-.07Zm-.27.058h-.003.003Zm-.003 0h-.01.01Zm-.013 0h-.008.008Zm-.041 0h-.233.233Zm-.25-.08.068.002-.068-.003.191.006-.191-.006Zm.049-.464h.069-.07Zm.147.47h-.011.011Zm.016 0h.008-.016.008Zm-.858-.97Zm-.255.466h-.001.014-.013Zm.003.487a1.688 1.688 0 0 1-.004 0h.004Zm-.017-.487h.007-.012.005Zm-.014 0h-.012.012Zm-.02 0h-.019.019Zm-.04.492Zm0 0h-.008.008Zm-.084.002h-.026.026Zm-.118-.478Zm-.032-.018h-.006.006Zm-.008 0h.004-.005.001Zm-.03-.469Zm.058 1.034h-.018.034-.017Zm-.05-.029h-.026.026Zm-.08-.002h.017-.026.01Zm-.013 0h.003-.005.002Zm-.175-.003h.003-.01.007Zm-.134.026.092.002-.092-.002Zm-.448-.041h.015-.015Zm.143-.006h-.001.001Zm-.02-.49h.018-.018Zm.03 0 .024.001h-.024Zm.038.002h.011-.01Zm.268.577-.072-.003c.025 0 .049.002.072.003Zm.067-1.042h-.087.087Zm-.245.47-.02-.002.02.001Zm-.066-.004h.012-.012Zm.022.001h.01-.01Zm-.156-.006h-.032.032Zm.03.001a.4.4 0 0 1-.02 0h.02ZM41.86.548l.174.004-.203-.004h.029Zm.125 1.01Zm-.062-.538h-.037.038Zm-.07.56h.054-.054Zm.114-.001h-.003.003-.025l.048-.001h-.023Zm.116-.003h-.004.019-.015Zm.1.022h.002l-.06-.001h.059Zm.802.495c-.268-.005-.571-.022-.849-.025.278.003.581.02.85.025Zm.001-.471Zm.094-.015h-.004.001-.015H43.08Zm-.015-.057-.039-.001.064.002h-.025Zm-.218-.008.508.006-.508-.006Zm.447-.05h.011-.011Zm.045 0h-.033.033Zm.202.09h-.002.007-.005Zm.011 0Zm-.078-.033.135.001-.134-.001Zm-.007-.534-.256-.006.115.002h-.011l.142.004h-.001l.404.025-.393-.025Zm.325.537Zm.535.083-.046-.001h.046l-.249-.005h.031-.018l.328.008-.092-.002Zm.128-.132h-.03.07-.04Zm0 0Zm.196.027h-.01.01Zm.234.6c-.08 0-.079 0 0 0Zm.033-.482-.459-.01c.183.004.365.007.547.012l-.088-.002Zm.127-.027h.002-.002Zm.05.035h-.004.004Zm.003 0h-.003.003Zm.001 0Zm0 0Zm.082-.11.264.016c-.064-.005-.17-.01-.264-.015Zm.302.018h-.007.007Zm-.011 0-.01-.001h.01Zm-.094.578.06.001-.06-.001Zm.06.001.053.002-.053-.002Zm.034-.47h.02-.02Zm.03 0h.02-.02Zm.03-.101-.084-.003c.033 0 .065.002.097.003h-.013Zm.107.003-.037-.001.046.002h-.009Zm.017.572h.005-.005Zm.03-.471Zm0 0Zm-.013-.1h-.006l.083.003-.077-.002Zm1.678.632c-.551-.02-1.102-.05-1.653-.062.577.016 1.157.04 1.734.068l-.081-.006Zm.108-.464h-.002c.004 0 .01 0 .014.002l-.012-.001Zm.011.001Zm.01.001h-.003l.014.002-.011-.001Zm.036.473h-.001.003-.002Zm.032-.471h.002-.002Zm-.065-.602c.025 0 .05.002.073.003a141.38 141.38 0 0 0-.127-.004l.054.001-.119-.003.34.01a35.47 35.47 0 0 0-.22-.007Zm.156.475.04.001h-.04Zm.152.003h.012-.012Zm.012 0 .056.001h-.056Zm.076.002h-.003.01-.007Zm.02 0h.007-.013.006Zm.07.002h-.013.014-.002Zm.011 0 .058.001-.058-.001Zm.058.001h.008-.008Zm.209-.453.024.002-.024-.002Zm.092.007h.008-.008Zm.01 0h-.002l.043.004-.04-.004Zm.104-.123h.008-.008Zm.38-.335V.663v.062ZM59.84 2.573v.003-.008.005Zm-.186.025v-.001Zm0 .034V2.63v.031-.03Zm-.009.043-.001.026.001-.026Zm-.002.033v-.005.007-.001Zm-.001.096v-.002c0 .006-.002.012-.003.017l.003-.015Zm-.012-1.016Zm-.01.844v.015-.015Zm0-.046-.002-.033c.002.021.002.043.002.065v-.032Zm-.018-.263Zm.015.385-.003.034a.877.877 0 0 0 .003-.034Zm0 0v-.013.013Zm-.011.087Zm0 0Zm-.069.158.002-.002-.007.006a.121.121 0 0 1 .005-.004Zm-.03.071a.018.018 0 0 1-.003.002l.004-.002Zm-.023-.046h-.014.015Zm-.006.066h-.005.005Zm-.015-1.353Zm.002.473h.006l-.01-.001h.004Zm-.02-.004h-.01.01Zm-.01 0Zm-.016-.472h.003-.006.003Zm-.034.473a.478.478 0 0 1 .022-.001l-.026.001h.004Zm.022.04h-.016a.13.13 0 0 1 .011 0H59.4h.008Zm-.002.048h.001-.004.004Zm-.019-.05h.001Zm0 0Zm-.001 0Zm0 .001Zm0 0Zm-.061-.502.018-.003-.055.009.036-.006Zm.005.563Zm-.01.002-.004.001h.005Zm-.017-.048-.015.002.015-.002Zm-.035-.041-.018-.003a.36.36 0 0 0 .018.003Zm-.838-.646.49.102c-.163-.033-.327-.067-.49-.102Zm-.014.47.75.159c-.413-.09-.826-.176-1.24-.254l.49.095Zm-.05.74.035.006a1.303 1.303 0 0 0-.035-.007Zm.105.02Zm-.05-.01Zm.258.063Zm.119-.208h-.002c.006 0 .013.002.019.004l-.017-.004Zm.017.004h-.007.007Zm.112-.456-.036-.007.04.008-.006-.001h.002Zm.002.673h.001-.001Zm.019.015.107.03-.107-.03Zm-.002-.009.01.004a.134.134 0 0 0-.01-.004Zm.07.028.04.012a3.145 3.145 0 0 0-.04-.012Zm.012-.63a16.847 16.847 0 0 0-.099-.019l.123.024-.059-.011.035.006Zm.01-.052.031.006-.03-.006Zm-.989.411-.016-.002.017.002.065.011-.066-.01Zm.055.076h-.002l.01.001-.008-.001Zm.012-.064h.005-.001.001-.005Zm-.27-.583.107.018-.122-.02.014.002Zm-.04.636h-.001.001Zm-.302-.16ZM57.5 2.49Zm-.006-.001-.004-.001a.11.11 0 0 1 .004 0Zm-.007-.002-.004-.001.004.001Zm.103.03h.005-.005Zm.086.01h-.002.007-.004l.016.002-.01-.001.092.01a20.214 20.214 0 0 0-.142-.016l.01.001.033.004Zm-.063-.004.015.002a16.253 16.253 0 0 1-.015-.002Zm.084.1.044.006-.046-.007h.002Zm-.008-.09-.045-.006.046.006Zm.002.089-.041-.007.04.007Zm.015-.087.05.007-.05-.007Zm-.075-.013Zm0 0-.03-.004.03.004Zm0-.63.17.031-.255-.047.084.015Zm-.108.073h-.003.003Zm-.085-.013h.002c-.007 0-.014-.002-.02-.003a.368.368 0 0 0 .018.003Zm-.127.525-.009-.001.06.006-.051-.005Zm.012-.025Zm.03-.63-.09-.02.09.02Zm-.162-.04Zm-.008.68-.027-.005.027.004Zm-.035-.006-.028-.004.028.004Zm-.03-.004-.024-.004.023.004Zm-.028-.004h-.002.002Zm-.003 0a.46.46 0 0 1-.023-.005l.023.004Zm-.025-.005-.02-.005.02.005Zm-.025-.006a.257.257 0 0 1-.018-.004l.018.004Zm-.343-.035-.059-.006.06.006Zm-.057-.005a3.749 3.749 0 0 1-.059-.006l.059.006Zm-.126-.012-.027-.003a.731.731 0 0 0 .027.003Zm-.038-.022h-.002.002Zm-.006.017-.016-.002.016.002Zm-.017-.002-.018-.002.019.002Zm-.026-.002-.017-.002c.005 0 .011 0 .017.002Zm-.098-.011-.03-.004.032.004h-.002Zm.003 0 .01.001-.012-.001h.002Zm-.348-1.22c.475.06.368.046-.037-.004l.037.005Zm-.008.471c.13.008.26.033.391.058-.26-.054-.52-.07-.78-.111l.389.053Zm-.214.763-.01-.002.01.002Zm-.18-.819a.03.03 0 0 0 .004.002h-.001l-.026-.009a.49.49 0 0 1 .022.007Zm-.395.754-.015-.002.058.008-.039-.006.006.001-.01-.001Zm-.009-.71.031.005-.03-.004Zm.081.02.065.004-.065-.004Zm.12.006a1.256 1.256 0 0 0-.036-.005l.036.005Zm-.483-.649Zm.219.616h-.004.004Zm-.22-.606c0 .007 0 .004 0 0 0 .007 0 .004 0 0Zm-.101 1.265h-.006.006Zm-.008 0h.002l-.03-.005.028.004Zm-.898-.245h.001-.006.005Zm-.172-.004Zm-.093-.025a.03.03 0 0 1-.006 0h.008l-.054-.005.052.005Zm-.053-.005c-.016 0-.032-.003-.048-.004l.048.004Zm-.863-.075-.292-.02.292.02Zm-.3-.067.015.002c-.004 0-.01 0-.015-.002Zm.138-.48.035.002-.035-.002Zm.022.007Zm0 0h-.003.002Zm.051-.002h.01-.01Zm.337-.083v.001ZM52.95.804l-.017-.002.017.002Zm-.047.588-.008-.001c.004 0 .008 0 .012.002a.02.02 0 0 1-.004-.001Zm-.385-.518c-.016-.22.27-.036.37-.077-.225-.07-.352.05-.507.067l.137.01Zm-.002 1.132Zm-.435-.066h-.01.01Zm-.006-.02a.02.02 0 0 1 .005 0h-.005Zm.018.002h.004-.004Zm.01.002h.001-.002Zm.002 0v.001Zm0 0Zm.029.02h.002-.005.003Zm.075.004h.002-.002Zm-.002 0h-.006.006Zm-.033-.002-.034-.002.034.002Zm-.039-.003h.003-.003Zm.162-.09c-.028 0-.056-.002-.086-.004l.094.005h-.008Zm-.255.064h-.013.013Zm.027.022h.001a11.955 11.955 0 0 0-.001 0Zm-.217-.11h.026-.026Zm-.252.005h-.034.034Zm.005-.618c.007 0 .014.002.02.003a2.229 2.229 0 0 1-.02-.003Zm-.007 0-.01-.002c.003 0 .007 0 .01.002Zm-.022.62.075.004h-.002a35.277 35.277 0 0 0-.114-.004l.085.003-.044-.002Zm.195-.506h-.003.003Zm.09-.022h-.008.011-.004Zm.014-.068.023.001h-.023Zm-.036.066h-.008l.02.001h-.012Zm-.007 0h-.002.002Zm.08.026Zm.158.002Zm.074 0Zm0 0h-.003.002Zm-.006-.001-.01-.001.01.001Zm-.03-.003-.028-.003.027.003Zm-.138-.012-.08-.007.08.007Zm-.38-.594h.002-.01.008Zm-.018.49-.01-.002.01.001Zm-.105-.47a.13.13 0 0 1 .015-.008c-.02.014-.047.003-.064.003l.049.005Zm-.027.547h.003-.002.002-.003Zm-.06-.084h.01l-.043-.005.033.004Zm-.066.106h-.003.002Zm-.047-.117h.008-.008Zm-1.324-.055Zm.002 0h.001-.002.002Zm.934.134.066.003-.831-.03.765.027Zm-.44-.109h.001Zm.247.115-.034-.002.034.002Zm-.58.52.142.007-.142-.007Zm1.065-.607h-.016.016Zm-.016 0h-.053.017-.02.059-.003Zm.016 0h.013-.013Zm.007 0h.008-.008Zm.01 0h-.001.01-.01.003-.003Zm.013 0h.009-.007.002-.004Zm.042 0h-.006.006Zm-.014-.47h.012-.012Zm.015.47.015.001h-.015Zm.063.12v.001Zm.001 0Zm0 0h.001-.001Zm.007 0c.002 0 .01-.002.003 0h.003-.006Zm.004-.1h-.003.01-.007Zm-.143-.49h.053-.084.03ZM50.052.655a394.726 394.726 0 0 0-.004 0h.004Zm.013 1.144-.044-.002.044.002Zm-.096-.66h.03-.03.003-.003Zm-.001 0h-.005.005Zm-.026-.471h.02c-.046-.005-.089.022-.125.086.03-.053.066-.084.105-.086Zm-.147.596.023.001-.027-.001h.004Zm-.06-.569c-.009.087.029.048.051.057-.022-.01-.06.03-.05-.057Zm-.128 1.083h-.01l.144.006-.134-.006Zm.064-.52.04.002-.04-.002Zm.06.003.03.002-.03-.002Zm-.876-.655h-.01c.296.01.592.023.889.034l-.879-.034Zm.996 1.251h.001l-.449-.024.448.024Zm2.678.622c-.854-.05-1.737-.102-2.583-.147a317.77 317.77 0 0 1 2.583.147Zm.48-1.647c.194.192.44.066.602.124-.163-.058-.408.068-.602-.124Zm.585 1.242.037.004-.037-.004Zm.091.01-.013-.001a2.483 2.483 0 0 1 .013.001Zm.074.022Zm.002-.11h-.002.002l-.012-.002.01.001h-.01l.135.016-.123-.016Zm.194.078-.026-.004a.73.73 0 0 1 .026.004Zm.042-.7.068.008a4.871 4.871 0 0 1-.07-.008h.002Zm.132.744.004.001h-.004Zm.007.002h-.001.002Zm.002 0h.002-.003Zm.004.001h.002-.002Zm.01.009h.002-.001Zm.001 0h.002-.002Zm.002-.74c.08.01.155.017.227.025a33.987 33.987 0 0 0-.227-.024Zm.237.026.032.003c-.006 0-.013 0-.018-.002l.051.006-.013-.001c.009 0 .017.002.026.003l-.009-.001.05.006-.015-.002.021.003-.004-.001.05.006a14.572 14.572 0 0 0-.158-.019h-.013Zm.897 1.371c-.22.008-.466-.068-.697-.087.405.066.794.098 1.197.158l-.5-.07Zm.868-.367.014.003-.014-.003Zm.016.003Zm-.123-.09h-.002l.153.018h.002l-.153-.019Zm.19.022h-.007l.032.003c-.009 0-.017-.002-.026-.003Zm.026.003.033.004-.035-.004h.002Zm.368.617Zm.002 0 .054.007-.054-.007Zm.578-.51-.028-.003a6.173 6.173 0 0 0 .028.003Zm.02.003-.008-.001.035.004-.028-.004Zm.027.003.04.005-.04-.005Zm.03.017h-.001l.05.005-.05-.005Zm.058.005Zm.054.006.04.004-.04-.004Zm.059.577Zm.41.058a3.738 3.738 0 0 1 .003 0h-.003Zm-.034-.58.059.009-.059-.009Zm.057.009.008.001-.008-.001Zm.02.003.047.007-.047-.007Zm.068.01.048.009-.048-.008Zm.168.122-.018-.003.05.009-.032-.006Zm.083.015-.045-.008.045.008Zm.848.674Zm.145-.486c-.016-.008-.032-.012-.049-.017.017.005.033.01.05.017Zm-.054.512-.015-.004.022.006a.05.05 0 0 0-.008-.002Zm.021-.468-.09-.026.1.03-.01-.004Zm.016-.004-.009-.003a.167.167 0 0 1 .027.01l-.018-.007Zm.026-.006a.354.354 0 0 1 .028.012l-.028-.012Zm.037-.718a.801.801 0 0 1-.055-.007c.022.003.041.007.06.007h-.005Zm.006-.513h-.001.001Zm.016 1.772-.012-.007a.869.869 0 0 0 .012.007Zm.056-.484-.02-.01a.615.615 0 0 0 .023.012l-.003-.001Zm.035-.74h.001-.001Zm0-.051h.002-.001Zm.003 0Zm.005.833.015.007-.014-.006Zm.016-.832h-.004c.01 0 .018 0 .03.002l-.026-.001Zm.011.832.01.003-.01-.003Zm.02.006.017.004a.15.15 0 0 1-.018-.004Zm.036.028h.01-.01.009l-.026-.001h.017Zm.002.471h-.005.017-.012Zm.012-.509Zm.027.006a.1.1 0 0 1 0 0Zm.02-.028a.102.102 0 0 1-.014.01.118.118 0 0 0 .014-.01Zm.024.017.007-.009-.007.01Zm.01-.036.003-.006-.004.006Zm-.007-.736Zm.023.736a.304.304 0 0 0-.007.01l.007-.01Zm.106.386a.383.383 0 0 1-.11.13c.08-.055.153-.184.2-.363a.97.97 0 0 1-.09.233Zm.123-.399-.001.007.001-.01v.003Zm.004-.027-.003.018.005-.033-.002.015Zm.019-.442Zm.001.16a2.021 2.021 0 0 1 0-.008v.008ZM32.45 1.781h-.002.002Zm25.668.82ZM15.48 2.5l.01-.002a.09.09 0 0 0-.01.001Zm36.173-.66h-.001Zm-23.16-.55h.001-.002Zm6.308.257H34.8h.002Zm.207-.438h.002-.002ZM3.98 3.01h.001-.002.001Zm11.566-.524ZM5 2.234h.002H5Zm10.545.252-.017.001h.017Zm10.165-.979c.033 0 .066-.002.098-.003l-.098.003Zm-7.1.202h.004-.003Zm-14.487.538h.006-.006Zm36.946-.764h-.004.011-.007Zm-10.787-.262h-.002.002Zm-4.641.289h-.014.014Zm16.32.06Zm-27.165.737.005-.001h-.005ZM25.872 1.5c-.015 0-.03 0-.045.002l.045-.002Zm-.979.504Zm-9.817.427ZM56.2 2.341h-.002.002Zm-30.181-.847-.1.004.1-.004Zm-20.062.758h.02-.02Zm16.066-.689h-.01.01Zm32.382-.155Zm.052.006h.003-.003Zm-35.233.195Zm6.604-.106Zm28.684-.083h-.002.002ZM25.918 1.5c-.015 0-.03 0-.046.002l.046-.002Zm-14.91 1.015h.001-.002.002Zm48.39-.321Zm-48.455.51Zm7.092-.342Zm-15.64.507ZM39.72 1.483h-.017.033-.016Zm.016 0h.04-.04Zm-34.83.799h-.005.005Zm11.27.197h.001Zm30.692-.88ZM.933 2.966Zm13.868-.66Zm14.92-1.027Zm10.784-.261Zm14.696 1.29-.008-.002.015.002H55.2Zm-40.392-.002h.001-.002Zm.268.127ZM8.44 2.115l.017-.001-.036.002h.019v-.001Zm6.36.191Zm-.005 0Zm8.18-.224h-.002.002Z' fill='%23900'/%3E%3C/svg%3E");
  background-size: 60px 4px;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 60px;
}

.podcast-link {
  border-radius: 3px;
  border: 1px solid #D2CAC1;
  background: #FCFBF8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
}

.featured-event-card {
  list-style: none !important;
}
.featured-event-card .wp-block-post.event {
  background-color: #fff;
  border: 1px solid #d2cac1;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.featured-event-card .wp-block-post.event .wp-block-post-featured-image {
  width: 100%;
  background-color: #d2cac1;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-event-card .wp-block-post.event .wp-block-post-featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.featured-event-card .wp-block-post.event .event-card-content {
  background-color: #fff;
  padding: 25px !important;
}
.featured-event-card .wp-block-post.event .event-card-content a {
  text-decoration: none !important;
}

@media screen and (max-width: 1024px) {
  .discourse-podcasts-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 1024px) {
  .discourse-section-head {
    padding-left: 0 !important;
  }
}

.event-cards,
.article-cards {
  list-style: none !important;
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
}
@media screen and (max-width: 1024px) {
  .event-cards,
  .article-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .event-cards,
  .article-cards {
    -moz-column-gap: 0;
         column-gap: 0;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
.event-cards .wp-block-post,
.article-cards .wp-block-post {
  position: relative;
  border-radius: 5px;
  border: 1px solid #D2CAC1;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: none;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(23, 29, 26, 0);
  transform: translateY(0);
  transition: background 0.1s ease-in-out, box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
  will-change: background, box-shadow, transform;
  margin-top: 0 !important;
}
.event-cards .wp-block-post:hover,
.article-cards .wp-block-post:hover {
  background-image: url("../images/event-card-pattern.jpg");
  box-shadow: 0 5px 16px rgba(23, 29, 26, 0.15);
  transform: translateY(-15px);
}
.event-cards .wp-block-post .wp-block-post-featured-image,
.article-cards .wp-block-post .wp-block-post-featured-image {
  width: 100%;
  background-color: #d2cac1;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-cards .wp-block-post .wp-block-post-featured-image img,
.article-cards .wp-block-post .wp-block-post-featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.event-cards .wp-block-post .card-content,
.article-cards .wp-block-post .card-content {
  padding: 25px 25px 40px 25px !important;
  width: 100%;
  min-height: 200px;
}
.event-cards .wp-block-post .card-content a,
.article-cards .wp-block-post .card-content a {
  text-decoration: none !important;
}
.event-cards .wp-block-post .card-content a:hover,
.article-cards .wp-block-post .card-content a:hover {
  text-decoration: none !important;
  background: none !important;
}
.event-cards .wp-block-post .card-meta,
.article-cards .wp-block-post .card-meta {
  margin-bottom: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Gutenberg Blocks
|--------------------------------------------------------------------------
|
| Gutenberg Editor block styles
|
*/
/*
|--------------------------------------------------------------------------
| Common Blocks
|--------------------------------------------------------------------------
|
| # paragraph
| # image
| # heading
| # list
|
*/
.wp-block-button__link {
  display: inline-block;
}

hr, .wp-block-separator {
  border-radius: 0;
  background: none;
  outline: 0;
  border-top: 1px solid #D2CAC1;
  margin: 30px 0;
}

.wp-block-image {
  margin-bottom: 50px;
}
.wp-block-quote {
  margin: 50px 0;
}
.wp-block-quote blockquote {
  border-left: 1px solid #E4A746;
  padding-left: 15px;
  margin-left: 25px;
}
.post-content ul, .post-content ol {
  margin-bottom: 40px;
}
.post-content ul:not([class]) li, .post-content ol:not([class]) li {
  position: relative;
  font-size: 14px;
  line-height: 175%;
  color: #003953;
}
.post-content ul {
  list-style: inside;
}
.post-content ul:not([class]) {
  list-style: none;
}
.post-content ul:not([class]) li {
  position: relative;
  padding-left: 20px;
}
.post-content ul:not([class]) li + li {
  margin-top: 15px;
}
.post-content ul:not([class]) li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 16px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #003953;
}
.post-content ul ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 20px;
}
.post-content ol {
  list-style-type: decimal;
  list-style-position: inside;
}
p.has-small-font-size {
  font-size: 14px !important;
  line-height: 175%;
}

.wp-block-columns {
  display: grid;
  grid-gap: 60px;
  margin: 50px 0;
}

.wp-block-columns > * {
  grid-column: 1/-1;
  margin: 0 !important;
}

@media (min-width: 600px) {
  .wp-block-columns {
    grid-template-columns: repeat(12, 1fr);
  }
  .wp-block-column {
    grid-column-start: auto;
    grid-column-end: span 6;
  }
  .wp-block-column:only-child {
    grid-column-end: span 12;
  }
}
@media (min-width: 900px) {
  /* Three column layout */
  .wp-block-column:not([style*=flex-basis]):nth-last-child(3):first-child,
  .wp-block-column:not([style*=flex-basis]):nth-last-child(3):first-child ~ .wp-block-column {
    grid-column-end: span 4;
  }
  /* "25 / 50 / 25" layout */
  .wp-block-column[style*="25%"] {
    grid-column-end: span 3;
  }
  .wp-block-column[style*="50%"] {
    grid-column-end: span 6;
  }
  /* "30 / 70" and "70 / 30" layouts */
  .wp-block-column[style*="33.33%"] {
    grid-column-end: span 4;
  }
  .wp-block-column[style*="66.66%"] {
    grid-column-end: span 8;
  }
}
/*
|--------------------------------------------------------------------------
| Plugins
|--------------------------------------------------------------------------
|
| All third party plugins
|
*/
/**
 * Swiper 9.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 14, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide, swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:24px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Gravity Forms - Plugin
|--------------------------------------------------------------------------
|
| Gravity Forms styles.
|
| Basic Structure:
|
| <div class="gform_wrapper">
|
| </div>
|
*/
.gform_wrapper {
  max-width: 27.75rem;
  margin-left: auto;
  margin-right: auto;
}

.gform_wrapper.gravity-theme .gform_fields {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}

.ginput_container {
  width: 100%;
}

.gform_wrapper.gravity-theme .gfield {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.gform_title {
  margin-bottom: 1.6875rem;
}
@media screen and (min-width: 1024px) {
  .gform_title {
    margin-bottom: 2.875rem;
  }
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.93rem + 0.33vw, 1.25rem); /* 16.00px → 20.00px */
  font-family: "artifex-hand-cf", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  flex: 1 1 calc(25% - 8px);
  text-align: left;
  margin-right: 8px;
}

.gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme textarea, .gform_wrapper.gravity-theme select {
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.93rem + 0.33vw, 1.25rem); /* 16.00px → 20.00px */
  padding: 13px 15px 14px;
  padding: 0.65em 0.75em 0.7em;
}

.gform_wrapper.gravity-theme textarea {
  padding-top: 18px;
}

.gform_wrapper.gravity-theme .gfield textarea.large {
  height: 150px;
}

.ginput_container_select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  flex: 1 1 75%;
  cursor: pointer;
}
.ginput_container_select::after {
  grid-area: select;
  content: " ";
  justify-self: end;
  width: 12.8px;
  height: 8px;
  background-color: #003953;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  margin-right: 1.25rem;
}

.gform_wrapper.gravity-theme .gfield select {
  background: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 3.125rem;
  border-bottom: 1px solid #D2CAC1;
}
.gform_wrapper.gravity-theme .gfield select:focus {
  border-bottom: 1px solid #E4A746;
}

.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
  padding: 0;
  margin: 1rem 0 0;
}

.gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  border: none;
  width: 100%;
  min-height: 60px;
}

.gform_wrapper .gform_validation_errors {
  margin-bottom: 1.5rem;
}

/*
|--------------------------------------------------------------------------
| Pages
|--------------------------------------------------------------------------
|
*/
.page-front__stickyHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f0e9de;
  border-bottom: 1px solid #d2cac1;
  height: 60px;
  z-index: 999;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-front__stickyHeader {
    display: none;
  }
}
.page-front__stickyHeader.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.page-front__stickyHeader-Inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.page-front__stickyHeader-Brand, .page-front__stickyHeader-Nav, .page-front__stickyHeader-Cta {
  display: inline-flex;
  align-items: center;
}
.page-front__stickyHeader-Nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  gap: 0;
}
.page-front__stickyHeader-Nav a {
  color: #D2CAC1;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  transition: color 0.1s ease-in-out;
}
.page-front__stickyHeader-Nav a:hover, .page-front__stickyHeader-Nav a.is-active {
  color: #003953;
}
.page-front__stickyHeader-Nav-item {
  display: inline-flex;
  align-items: center;
}
.page-front__stickyHeader-Nav-item + .page-front__stickyHeader-Nav-item::before {
  content: "•";
  display: inline-block;
  margin: 0 12px;
  color: #D2CAC1;
}
.page-front__stickyHeader-Cta a {
  border-radius: 3px;
  background: var(--P-Goldenrod, #E4A746);
  display: inline-flex;
  padding: 2px 15px 0 15px;
  height: 34px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--P-Indigo, #003953);
}

.home__hero {
  position: relative;
  width: 100%;
  min-height: 750px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .home__hero {
    min-height: 500px;
    justify-content: flex-start;
  }
}
.home__hero-Image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home__hero-Image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 33.2%, rgba(0, 0, 0, 0.6) 100%);
  content: "";
}
.home__hero-Image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 0;
}
.home__hero-Content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .home__hero-Content {
    align-items: flex-start;
  }
}
.home__hero-Content-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home__hero-Content-inner {
    align-items: flex-start;
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .home__hero-Content-link {
    width: 100%;
  }
}
.home__hero-Content-text {
  max-width: 550px;
}
@media screen and (max-width: 806px) {
  .home__hero-Content-text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home__hero-Content-text {
    width: 100%;
    max-width: 350px;
  }
}
.home__hero-Content-text h2.hero-title {
  font-size: clamp(50px, 32.86px + 5.36vw, 110px);
  line-height: 110%;
  letter-spacing: -3.3px;
  color: var(--S-Pearl-White, #FCFBF8);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .home__hero-Content-text h2.hero-title {
    font-size: 50px;
    letter-spacing: -1.5px;
    max-width: 260px;
    margin-bottom: 10px;
  }
}
.home__hero-Content-text p.hero-desc {
  color: var(--S-Pearl-White, #FCFBF8);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .home__hero-Content-text p.hero-desc {
    font-size: 14px;
  }
}

html.page-loaded .home__mission:before {
  animation: missionLineDraw 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

@keyframes missionLineDraw {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }
  15% {
    opacity: 1;
    transform: translateX(-50%) scaleY(0.08);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}
.home__mission {
  position: relative;
  z-index: 10;
  background-image: url("../images/mission-shield-bg.png");
  background-repeat: no-repeat;
  background-position: center 100px;
  background-size: 443px 483px;
  padding: 160px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .home__mission {
    background-size: 248px 269px;
    padding: 60px 0 20px 0;
    background-position: center 50px;
  }
}
.home__mission:before {
  position: absolute;
  height: 108px;
  width: 4px;
  left: 50%;
  top: -54px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='108' viewBox='0 0 4 108' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.44337 107.997C1.44708 107.997 1.45313 107.997 1.45684 107.997L1.45583 107.997C2.93017 107.926 2.68214 106.81 2.78041 106.075C2.88507 105.193 2.98031 104.308 3.06612 103.425C3.08497 102.847 3.18189 103.006 3.00488 102.656C3.29968 100.882 3.42857 99.1562 3.50866 97.2123C3.48443 97.1334 3.61198 96.8862 3.41982 96.9239C3.439 96.3015 3.52246 95.691 3.62241 95.0343C3.70217 91.3469 3.84889 87.3286 3.89735 83.424C3.65741 81.5156 3.96702 78.9922 3.84856 76.976C3.9199 76.7183 3.6914 75.5827 3.97846 75.5553C3.98418 75.3315 3.99024 75.0259 3.99428 74.7992L4 74.5141L3.8701 74.5124C3.87144 74.112 3.87312 73.6917 3.87514 73.29C3.90644 72.4214 3.83005 71.9659 3.86438 71.1776L3.86438 71.1788C3.85798 66.4547 3.6352 61.8009 3.8075 57.1719C3.65842 53.4046 3.59818 49.6867 3.48309 45.9445C3.34982 41.7529 3.46088 37.7952 3.21252 33.5879C2.93353 28.3553 2.93959 23.272 2.82349 17.9596C2.75013 16.2176 2.78883 14.3869 2.75046 12.6606C2.74239 10.4127 2.57311 7.72073 2.61417 5.39586C2.59263 4.22807 2.52701 2.8989 2.71008 1.7137C2.79186 1.32443 2.94801 0.930164 2.6983 0.53637C2.43581 0.103721 1.70217 -0.116775 1.07084 0.0627208L1.07219 0.0627208C0.901565 0.112541 0.793202 0.163791 0.665657 0.247699C-0.147064 0.829332 0.0868245 2.41452 -3.79294e-07 3.22285L-3.79242e-07 3.22165C0.38398 18.289 0.753153 33.6551 1.21622 48.6841C1.40636 50.3697 1.19199 51.9594 1.27141 53.653C1.24785 53.9972 1.30607 54.4542 1.34679 54.8106C1.31549 55.3893 1.33636 55.869 1.33838 56.5483C1.40501 62.7994 1.63553 68.9669 1.53929 75.2292C1.45179 84.6099 1.32895 94.1118 0.516233 103.561C0.442869 104.538 0.358064 105.479 0.220423 106.314C0.18677 106.638 -0.0127931 106.94 0.099608 107.276C0.212346 107.708 0.834254 108.031 1.44337 107.997Z' fill='%23990000'/%3E%3C/svg%3E%0A");
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .home__mission:before {
    display: none;
  }
}
.home__mission-Head {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 70px;
}
.home__mission-Head h3 {
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.home__mission-Boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1080px) {
  .home__mission-Boxes {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.home__mission-Box {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .home__mission-Box {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home__mission-Box .card-cta .card-cta-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.home__mission-Box .card-cta .card-cta-btn {
  display: inline-block;
  background-image: linear-gradient(#e4a746 0 0);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.02em), 0 calc(100% - 0.02em);
  background-size: 120% 1.75px;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}
.home__mission-Box .card-cta:hover {
  background-image: url("../images/textured-card-bg.jpg");
}
.home__mission-History {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .home__mission-History {
    padding-top: 300px;
  }
}
@media screen and (max-width: 768px) {
  .home__mission-History {
    padding-bottom: 60px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .home__mission-History-content {
    text-align: left;
  }
}
.home__mission-History-inner {
  position: relative;
  z-index: 2;
}
.home__mission-History:before {
  position: absolute;
  width: 398px;
  height: 398px;
  left: -30px;
  top: 170px;
  background-image: url("../images/history-left-bg.jpg");
  display: block;
  content: "";
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .home__mission-History:before {
    top: 20px;
    left: 50%;
    margin-left: -220px;
  }
}
.home__mission-History:after {
  position: absolute;
  width: 417px;
  height: 417px;
  right: -60px;
  bottom: 0;
  background-image: url("../images/history-right-bg.jpg");
  display: block;
  content: "";
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .home__mission-History:after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .home__mission-History:after {
    display: none;
  }
}
.home__mission-History:before, .home__mission-History:after {
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
@media screen and (max-width: 1024px) {
  .home__mission-History.is-collapsed {
    padding-top: 100px;
  }
}
.home__mission-History.is-collapsed:before, .home__mission-History.is-collapsed:after {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}
.home__mission-History-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.home__mission-History-toggle svg {
  flex-shrink: 0;
  margin-left: 16px;
}
.home__mission-History-title {
  margin: 0;
}
.home__mission-History-icon-vertical {
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.home__mission-History-panel {
  overflow: hidden;
  position: relative;
  transition: height 0.35s ease;
}
.home__mission-History-panel:after {
  background: linear-gradient(to top, #F0E9DE 0%, rgba(240, 233, 222, 0) 100%);
  bottom: 0;
  content: "";
  display: none;
  height: 100px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.home__mission-History.is-collapsed .home__mission-History-panel:after {
  display: block;
}
.home__mission-History:not(.is-collapsed) .home__mission-History-icon-vertical {
  opacity: 0;
  transform: scaleY(0);
}
.home__mission-History h3 {
  margin-bottom: 0;
}
.home__mission-History-inner {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.home__eduMedia {
  position: relative;
  background-image: url("../images/edumedia-bg.jpg");
  background-repeat: repeat;
  background-size: 1512px 1165px;
  padding: 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home__eduMedia {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .home__eduMedia {
    padding: 60px 0;
  }
}
.home__eduMedia-Head {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 70px;
}
.home__eduMedia-Head h2 {
  color: var(--P-Goldenrod, #E4A746);
  margin-bottom: 30px;
}
.home__eduMedia-Head h3 {
  color: var(--S-Pearl-White, #FCFBF8);
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.home__eduMedia-Head p {
  color: var(--S-Pearl-White, #FCFBF8);
}
.home__eduMedia-Series {
  position: relative;
  overflow: hidden;
}
.home__eduMedia-Series-items {
  --rotator-gap: 30px;
  overflow: hidden;
}
.home__eduMedia-Series-track {
  height: 435px;
}
@media screen and (max-width: 768px) {
  .home__eduMedia-Series-track {
    height: 291px;
  }
}
.home__eduMedia-Series-track, .home__eduMedia-Series-sequence {
  display: flex;
  align-items: stretch;
  gap: var(--rotator-gap);
  width: -moz-max-content;
  width: max-content;
}
.home__eduMedia-Series-btn {
  padding-top: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home__eduMedia-Series-btn {
    padding-top: 50px;
  }
}
.home__eduMedia-Series-item {
  flex: 0 0 auto;
  box-shadow: 0 14px 34px 0 rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  aspect-ratio: 163/217;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home__eduMedia-Series-item {
    min-height: 287px;
  }
}
.home__eduMedia-Series-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home__students {
  padding: 150px 0 75px 0;
}
@media screen and (max-width: 1024px) {
  .home__students {
    padding: 100px 0 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .home__students {
    padding: 60px 0 30px 0;
  }
}
.home__students-Main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .home__students-Main {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .home__students-Main {
    padding-bottom: 60px;
  }
}
.home__students-Head {
  width: calc(50% - 100px);
  padding-right: 100px;
}
@media screen and (max-width: 1024px) {
  .home__students-Head {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
}
.home__students-Head h3 {
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 1024px) {
  .home__students-Head h3 {
    margin-bottom: 10px;
  }
}
.home__students-Map {
  width: calc(50% + 100px);
}
@media screen and (max-width: 1024px) {
  .home__students-Map {
    width: 100%;
  }
}
.home__students-Map-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  padding-top: 20px;
}
.home__students-Map-button {
  font-family: cartograph-cf, monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px 2px 15px;
}
.home__students-Map-button.active {
  color: var(--S-Pearl-White, #FCFBF8);
}
.home__students-Map-button:nth-child(1) {
  border-radius: 20px 0 0 20px;
  background: rgba(0, 57, 83, 0.1);
  color: var(--P-Indigo, #003953);
}
.home__students-Map-button:nth-child(1).active {
  background: var(--P-Indigo, #003953);
  color: var(--S-Pearl-White, #FCFBF8);
}
.home__students-Map-button:nth-child(2) {
  border-radius: 0 20px 20px 0;
  background: rgba(153, 0, 0, 0.1);
  color: var(--P-Liberty-Red, #900);
}
.home__students-Map-button:nth-child(2).active {
  background: var(--P-Liberty-Red, #900);
  color: var(--S-Pearl-White, #FCFBF8);
}
.home__students-Links {
  display: flex;
  gap: 10px;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .home__students-Links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.home__students-Links a {
  display: inline-block;
  white-space: nowrap;
}
.home__students-ContentBlocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 150px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .home__students-ContentBlocks {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .home__students-ContentBlocks {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .home__students-ContentBlock {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home__students-ContentBlock-image {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .home__students-ContentBlock-text {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .home__students-ContentBlock-text p {
    margin: 0;
  }
}
.home__students-ContentBlock-link a {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.02em), 0 calc(100% - 0.02em);
  font-size: 18px;
  line-height: 28px;
  font-style: normal;
  font-weight: 900;
  background-image: linear-gradient(#e4a746 0 0), linear-gradient(currentColor 0 0);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.02em), 0 calc(100% - 0.02em);
  background-size: 120% 1.75px, 0 1.75px;
  transition: background-size 0.28s ease;
}
.home__students-ContentBlock-link a:hover {
  background-size: 0 1.75px, 100% 1.75px;
}
.home__students-Testimonial {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 240px;
}
@media screen and (max-width: 1024px) {
  .home__students-Testimonial {
    padding-top: 100px;
  }
}
.home__students-Testimonial blockquote {
  color: var(--P-Liberty-Red, #900);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .home__students-Testimonial blockquote {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .home__students-Testimonial blockquote {
    font-size: 24px;
  }
}
.home__students-Testimonial figcaption {
  font-family: cartograph-cf, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--P-Indigo, #003953);
}

.home__alumni {
  position: relative;
  padding: 75px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .home__alumni {
    padding: 50px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .home__alumni {
    padding: 50px 0 0 0;
  }
}
.home__alumni-Inner {
  position: relative;
  z-index: 1;
  padding-bottom: 52vw;
  width: 100%;
  background-image: url("../images/alumni-bg.jpg");
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .home__alumni-Inner {
    padding-bottom: 120vw;
  }
}
.home__alumni-Inner:before {
  position: absolute;
  width: 100%;
  height: 310px;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: linear-gradient(to bottom, #F0E9DE 0%, rgba(240, 233, 222, 0) 100%);
}
.home__alumni-Inner:after {
  position: absolute;
  width: 100%;
  height: 310px;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  background: linear-gradient(to bottom, rgba(23, 29, 26, 0) 0%, #171D1A 100%);
}
.home__alumni-Head {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home__alumni-Head h2 {
  margin-bottom: 30px;
}
.home__alumni-Head h3 {
  font-size: clamp(36px, 2.37vw + 27.1px, 64px);
  line-height: 115%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home__alumni-Head a.btn, .home__alumni-Head a.btn-2, .home__alumni-Head a.btn-3, .home__alumni-Head a.btn-lg, .home__alumni-Head a.btn-2-lg, .home__alumni-Head a.btn-3-lg, .home__alumni-Head a.btn-sm, .home__alumni-Head a.btn-2-sm, .home__alumni-Head a.btn-3-sm, .home__alumni-Head a.wp-block-button__link, .home__alumni-Head .wp-block-button.is-style-outline a.wp-block-button__link, .wp-block-button.is-style-outline .home__alumni-Head a.wp-block-button__link {
    height: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    line-height: 1.4;
    max-width: 300px;
  }
}
.home__alumni-People {
  background-color: #171D1A;
  padding: 50px 0 70px 0;
}
.home__alumni-People-head {
  text-align: center;
  margin-bottom: 80px;
}
.home__alumni-People-head h3 {
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  color: var(--P-Goldenrod, #E4A746);
}
.home__alumni-Carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
  --rotator-gap: 30px;
}
.home__alumni-Carousel-track, .home__alumni-Carousel-sequence {
  display: flex;
  align-items: stretch;
  gap: var(--rotator-gap);
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.home__alumni-Carousel .alumni-card {
  flex: 0 0 220px;
  max-width: 220px;
}

.home__events {
  padding: 200px 0;
}
@media screen and (max-width: 1024px) {
  .home__events {
    padding: 150px 0;
  }
}
@media screen and (max-width: 768px) {
  .home__events {
    padding: 100px 0;
  }
}
.home__events-Inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.home__events-Head {
  width: 50%;
  padding-right: 5vw;
}
@media screen and (max-width: 768px) {
  .home__events-Head {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }
}
.home__events-Head h3 {
  max-width: 450px;
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
@media screen and (max-width: 768px) {
  .home__events-Head h3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
}
.home__events-Featured {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home__events-Featured {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home__events-Featured-card {
  border-radius: 3px;
  border: 1px solid var(--S-Worsted-Wool, #D2CAC1);
  background: var(--S-Pearl-White, #FCFBF8);
  overflow: hidden;
  display: block;
  box-shadow: 0 0 16px rgba(23, 29, 26, 0);
  transition: box-shadow 0.5s ease-in-out, background-image 0.25s ease-in-out, transform 0.25s ease-in-out;
  transform: translateY(0);
}
.home__events-Featured-card:hover {
  background-image: url("../images/textured-card-bg.jpg");
  box-shadow: 0px 5px 16px rgba(23, 29, 26, 0.15);
  transform: translateY(-0.4rem);
}
.home__events-Featured-card-image figure {
  aspect-ratio: 563/342;
  position: relative;
}
.home__events-Featured-card-image figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
  border-radius: 0;
}
.home__events-Featured-card-content {
  padding: 30px 25px;
}
.home__events-Featured-card-meta {
  font-family: cartograph-cf, monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--P-Liberty-Red, #900);
  margin-bottom: 10px;
}
.home__events-Featured-card-title {
  margin-bottom: 10px;
}
.home__events-Featured-card-title h3 {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: var(--P-Indigo, #003953);
  font-size: clamp(26px, 0.56vw + 23.9px, 32px);
}
.home__events-Featured-card-desc p {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
  margin: 0;
}

.home__discourse-Box {
  border-radius: 3px;
  overflow: hidden;
  padding: 110px 60px;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .home__discourse-Box {
    padding: 90px 50px;
  }
}
@media screen and (max-width: 768px) {
  .home__discourse-Box {
    padding: 40px 30px;
    background-position: 80%;
  }
}
.home__discourse-Box-content {
  max-width: 570px;
}
.home__discourse-Box-content h2, .home__discourse-Box-content h3, .home__discourse-Box-content p {
  color: var(--S-Pearl-White, #FCFBF8);
}

.alumni-card__image {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 15px;
}
.alumni-card__image-Box {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid var(--S-Worsted-Wool, #D2CAC1);
  background-color: var(--S-Worsted-Wool, #D2CAC1);
}
.alumni-card__name h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
  color: var(--P-Goldenrod, #E4A746);
  text-align: center;
  margin: 0;
}
.alumni-card__roles {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 145%;
  color: var(--S-Worsted-Wool, #D2CAC1);
  text-align: center;
}
.alumni-card__roles span {
  display: block;
}
.alumni-card__roles span:first-child {
  font-weight: 900;
}
.alumni-card__roles span + span {
  margin-top: 3px;
}

.home__review {
  padding: 200px 0 100px 0;
}
@media screen and (max-width: 1024px) {
  .home__review {
    padding: 120px 0 70px 0;
  }
}
@media screen and (max-width: 768px) {
  .home__review {
    padding: 100px 0 50px 0;
  }
}
.home__review-Inner {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
.home__review-Head {
  width: 50%;
  padding-right: 8vw;
}
@media screen and (max-width: 1024px) {
  .home__review-Head {
    width: 100%;
    padding-right: 0;
    max-width: 560px;
    margin-bottom: 50px;
  }
}
.home__review-Head h3 {
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.home__review-List {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .home__review-List {
    width: 100%;
  }
}
.home__review-List-item-date {
  font-family: cartograph-cf, monospace;
  color: var(--P-Liberty-Red, #900);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home__review-List-item-title {
  margin-bottom: 10px;
}
.home__review-List-item-title h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--P-Indigo, #003953);
  margin: 0;
}
.home__review-List-item-title h4 a {
  display: inline;
  background-image: linear-gradient(#e4a746 0 0);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.02em);
  background-size: 0 1.75px;
  transition: background-size 0.18s ease;
}
.home__review-List-item-title h4 a:hover {
  background-size: 100% 1.75px;
}
.home__review-List-item-excerpt p {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
}
.home__review-List-item + article {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--S-Worsted-Wool, #D2CAC1);
}

.home__opportunities {
  padding: 100px 0 200px 0;
}
@media screen and (max-width: 1024px) {
  .home__opportunities {
    padding: 70px 0 120px 0;
  }
}
@media screen and (max-width: 768px) {
  .home__opportunities {
    padding: 50px 0 100px 0;
  }
}
.home__opportunities-Head {
  margin-bottom: 60px;
}
.home__opportunities-Head h3 {
  font-size: clamp(32px, 1.5vw + 26.4px, 48px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.home__opportunities-List {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .home__opportunities-List {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .home__opportunities-List {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.home__opportunities-Item-title {
  margin-bottom: 10px;
}
.home__opportunities-Item-title h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--P-Indigo, #003953);
  margin: 0;
}
.home__opportunities-Item-title h3 a {
  color: inherit;
  display: inline;
  background-image: linear-gradient(#e4a746 0 0);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.01em);
  background-size: 0 1.75px;
  transition: background-size 0.18s ease;
}
.home__opportunities-Item-title h3 a:hover {
  background-size: 100% 1.75px;
}
.home__opportunities-Item-desc p {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
  margin: 0;
}

.btn.red, .red.btn-2, .red.btn-3, .red.btn-lg, .red.btn-2-lg, .red.btn-3-lg, .red.btn-sm, .red.btn-2-sm, .red.btn-3-sm, .red.wp-block-button__link, .wp-block-button.is-style-outline .red.wp-block-button__link, .gform_wrapper.gravity-theme .gform_footer input.red[type=submit] {
  background: var(--P-Liberty-Red, #900);
  color: var(--S-Pearl-White, #FCFBF8);
}
.btn.red:hover, .red.btn-2:hover, .red.btn-3:hover, .red.btn-lg:hover, .red.btn-2-lg:hover, .red.btn-3-lg:hover, .red.btn-sm:hover, .red.btn-2-sm:hover, .red.btn-3-sm:hover, .red.wp-block-button__link:hover, .gform_wrapper.gravity-theme .gform_footer input.red[type=submit]:hover {
  background: rgba(153, 0, 0, 0.8);
}
.btn.blue, .blue.btn-2, .blue.btn-3, .blue.btn-lg, .blue.btn-2-lg, .blue.btn-3-lg, .blue.btn-sm, .blue.btn-2-sm, .blue.btn-3-sm, .blue.wp-block-button__link, .wp-block-button.is-style-outline .blue.wp-block-button__link, .gform_wrapper.gravity-theme .gform_footer input.blue[type=submit] {
  background: var(--P-Indigo, #003953);
  color: var(--S-Pearl-White, #FCFBF8);
}
.btn.blue:hover, .blue.btn-2:hover, .blue.btn-3:hover, .blue.btn-lg:hover, .blue.btn-2-lg:hover, .blue.btn-3-lg:hover, .blue.btn-sm:hover, .blue.btn-2-sm:hover, .blue.btn-3-sm:hover, .blue.wp-block-button__link:hover, .gform_wrapper.gravity-theme .gform_footer input.blue[type=submit]:hover {
  background-color: #e4a746;
}
.btn.white, .white.btn-2, .white.btn-3, .white.btn-lg, .white.btn-2-lg, .white.btn-3-lg, .white.btn-sm, .white.btn-2-sm, .white.btn-3-sm, .white.wp-block-button__link, .wp-block-button.is-style-outline .white.wp-block-button__link, .gform_wrapper.gravity-theme .gform_footer input.white[type=submit] {
  background: var(--S-Pearl-White, #FCFBF8);
  color: var(--P-Indigo, #003953);
}
.btn.white:hover, .white.btn-2:hover, .white.btn-3:hover, .white.btn-lg:hover, .white.btn-2-lg:hover, .white.btn-3-lg:hover, .white.btn-sm:hover, .white.btn-2-sm:hover, .white.btn-3-sm:hover, .white.wp-block-button__link:hover, .gform_wrapper.gravity-theme .gform_footer input.white[type=submit]:hover {
  background: #e4a746;
}
.btn.big, .big.btn-2, .big.btn-3, .big.btn-lg, .big.btn-2-lg, .big.btn-3-lg, .big.btn-sm, .big.btn-2-sm, .big.btn-3-sm, .big.wp-block-button__link, .wp-block-button.is-style-outline .big.wp-block-button__link, .gform_wrapper.gravity-theme .gform_footer input.big[type=submit] {
  height: 50px;
  padding: 4px 30px 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .home-two-col-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .home-two-col-grid > div {
    margin-left: 6.32%;
  }
}
@media screen and (min-width: 1440px) {
  .home-two-col-grid > div {
    margin-left: 88px;
  }
}
.home-two-col-grid > div:nth-child(2) {
  max-width: 563px;
}

.home-event-listing {
  display: grid;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 480px) {
  .home-event-listing {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .home-event-listing {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home-event-listing {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .home-event-listing {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1560px) {
  .home-event-listing {
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
.home-two-col-grid.noEvents {
  margin-bottom: 10rem !important;
}
.home-two-col-grid.noFeatured {
  display: block;
}
.home-two-col-grid.noFeatured > div {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

#mission .card-cta-grid > div {
  margin-bottom: 25px;
}

.hero-cta-content {
  z-index: 2;
}

.community-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.community-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  content: "";
  z-index: 2;
}
.community-image img {
  position: relative;
  z-index: 1;
}

.event-detail {
  padding-bottom: 100px;
}
.event-detail-overview {
  padding-top: 50px;
}

.no-results {
  text-align: center;
  padding: 100px 0;
  font-size: 2rem;
}

[data-filter-cat] {
  cursor: pointer;
}

[data-ajax-filter-audience],
[data-ajax-filter-region] {
  max-width: 200px;
  cursor: pointer;
}
[data-ajax-filter-audience]:focus,
[data-ajax-filter-region]:focus {
  outline: 0;
}

.events-nav {
  border-bottom: 1px solid #003953;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .events-nav {
    flex-direction: row;
    align-items: center;
  }
}

.events-categories ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .events-categories li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .events-categories li:not(:last-child) {
    margin-right: 2rem;
  }
}

.events-categories a {
  transition: border 0.125s ease, opacity 0.125s ease;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.35;
  border-bottom: 5px solid transparent;
  padding: 6px 17px 6px 0;
}
@media screen and (min-width: 768px) {
  .events-categories a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .events-categories a {
    font-size: 1.125rem;
    padding: 11px 21px;
  }
}
@media screen and (min-width: 1280px) {
  .events-categories a {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1440px) {
  .events-categories a {
    font-size: 1.3125rem;
    padding: 16px 31px;
  }
}
.events-categories a:hover {
  opacity: 1;
}
@media (hover: hover) {
  .events-categories a:hover {
    border-bottom: 5px solid #E4A746;
  }
}

.events-filters ul {
  display: flex;
}

.events-filters li {
  margin-right: 20px;
}
@media screen and (min-width: 1024px) {
  .events-filters li {
    margin-right: 0;
    margin-left: 21px;
  }
}
@media screen and (min-width: 1095px) {
  .events-filters li {
    margin-left: 30px;
  }
}

.events-filters a,
.events-filters select,
.events-filters button {
  text-decoration: none;
  font-family: "artifex-hand-cf", sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-variant: small-caps;
}
@media screen and (min-width: 1280px) {
  .events-filters a,
  .events-filters select,
  .events-filters button {
    font-size: 1rem;
  }
}

.events-filters select {
  padding-right: 22px;
}
.events-filters select:focus {
  outline: 1px solid #E4A746;
}

.events-filters button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.events-filters button svg {
  margin-left: 10px;
}

.events-filters-filter {
  position: relative;
  display: flex;
  align-items: center;
}
.events-filters-filter:not(.sort)::after {
  content: " ";
  width: 13px;
  height: 8px;
  background-color: #E4A746;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  border-radius: 3px;
  position: absolute;
  right: 0;
  margin-top: 2px;
}

.events-filters-filter button {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: none;
}

.events-filters-arrow {
  position: relative;
  top: 1px;
  margin-left: 10px;
}
@media screen and (max-width: 1279px) {
  .events-filters-arrow {
    width: 10px;
  }
}

.events-item {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #D2CAC1;
}
@media screen and (min-width: 480px) {
  .events-item {
    flex-direction: row;
    align-items: center;
  }
}

.events-item-image {
  background-color: #D2CAC1;
}
@media screen and (min-width: 480px) {
  .events-item-image {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .events-item-image {
    width: 25%;
  }
}
.events-item-image a {
  display: block;
}
.events-item-image img {
  border-radius: 3px;
  height: 244px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 480px) and (max-width: 1023px) {
  .events-item-image img {
    height: 315px;
  }
}

.events-item-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 480px) {
  .events-item-content {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .events-item-content {
    width: 75%;
  }
}

.events-item-details {
  margin-right: 1.875rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 479px) {
  .events-item-details {
    margin-top: 1.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .events-item-details {
    width: 75%;
  }
}
.events-item-details > * + * {
  margin-top: 0.875rem;
}
@media screen and (min-width: 1560px) {
  .events-item-details > * + * {
    margin-top: 0.875rem;
  }
}
.events-item-details > * + * + * {
  margin-top: 0.375rem;
}
@media screen and (min-width: 1560px) {
  .events-item-details > * + * + * {
    margin-top: 0.375rem;
  }
}

.events-item-title a {
  text-decoration: none;
  font-weight: 500;
}

.events-item-desc {
  max-width: 60ch;
}

.events-item-cta {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .events-item-cta {
    margin-top: 1.0625rem;
  }
}

.event-details-wrap {
  width: calc(100% - 2rem);
  max-width: 72.25rem;
  margin-left: 1rem;
  margin-right: 1rem;
  left: calc(50% - 1rem);
  transform: translateX(-50%);
  position: absolute;
  bottom: -120px;
}
@media screen and (min-width: 768px) {
  .event-details-wrap {
    position: absolute;
    bottom: -44.5px;
  }
}
.event-details {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .event-details {
    flex-direction: row;
  }
}
.event-details > * {
  height: 91px;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.event-details p {
  margin-bottom: 0;
}
.event-details .btn, .event-details .btn-2, .event-details .btn-3, .event-details .btn-lg, .event-details .btn-2-lg, .event-details .btn-3-lg, .event-details .btn-sm, .event-details .btn-2-sm, .event-details .btn-3-sm, .event-details .wp-block-button__link, .event-details .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button.is-style-outline .event-details .wp-block-button__link, .event-details .gform_wrapper.gravity-theme .gform_footer input[type=submit], .gform_wrapper.gravity-theme .gform_footer .event-details input[type=submit] {
  border-radius: 0;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-details .event-details-date {
  position: relative;
  border-radius: 3px 0 0 3px;
  background: white;
  border: 1px solid #D2CAC1;
}
@media screen and (max-width: 767px) {
  .event-details .event-details-date {
    border-radius: 3px 3px 0 0;
    border-bottom: none;
  }
}
.event-details .event-details-date::before {
  content: " ";
  background-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='20' viewBox='0 0 22 20' width='22' xmlns='http://www.w3.org/2000/svg'%3E%3Crect fill='%23fcfbf8' height='18' rx='1' stroke='%23900' stroke-width='2' width='19.1765' x='1' y='1'/%3E%3Cg fill='%23900'%3E%3Cpath d='m0 2c0-1.104571.89543-2 2-2h17.1765c1.1045 0 2 .895431 2 2v3.58823h-21.1765z'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='2.94336' y='7.35303'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='2.94336' y='12.9412'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='8.5293' y='7.35303'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='8.5293' y='12.9412'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='14.1191' y='7.35303'/%3E%3Crect height='4.11765' rx='1' width='4.11765' x='14.1191' y='12.9412'/%3E%3C/g%3E%3C/svg%3E");
  width: 22px;
  height: 20px;
  margin-right: 14px;
}
.event-details .event-details-location {
  position: relative;
  background: white;
  border: 1px solid #D2CAC1;
  border-right: none;
  border-left: none;
}
@media screen and (max-width: 767px) {
  .event-details .event-details-location {
    border-left: 1px solid #D2CAC1;
    border-right: 1px solid #D2CAC1;
  }
}
.event-details .event-details-location::before {
  content: " ";
  background-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='24' viewBox='0 0 20 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4.34127 5.2844c2.9185-2.91849 7.65033-2.91849 10.56883 0 2.523 2.52307 2.9105 6.4778.9252 9.4426l-5.7119 8.5297c-.23722.3543-.75822.3543-.99549 0l-5.71183-8.5297c-1.98536-2.9648-1.59787-6.91953.92519-9.4426z' fill='%23900'/%3E%3Ccircle cx='9.65769' cy='10.4172' fill='%23fcfbf8' r='2.6909'/%3E%3C/svg%3E");
  width: 20px;
  height: 24px;
  margin-right: 14px;
}
.event-details .event-details-cta {
  border-radius: 0 3px 3px 0;
}
@media screen and (max-width: 767px) {
  .event-details .event-details-cta {
    border-radius: 0 0 3px 3px;
  }
}

.event-details-image {
  background-color: #D2CAC1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 595px;
}

.events-speaker-avatar {
  width: 5.5625rem;
  margin-left: 0;
  border-radius: 0.1875rem;
  margin-bottom: 0.9375rem;
}

.events-masthead-image {
  position: absolute;
  top: -30px;
  left: -159px;
}
@media screen and (min-width: 1280px) {
  .events-masthead-image {
    opacity: 1;
  }
}
.events-masthead-image img {
  transform: rotate(45deg);
  opacity: 0.15;
}

@media screen and (max-width: 1023px) {
  .contact-body {
    grid-template-columns: 1fr;
  }
}

.contact-body > div:first-child {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact-body > div:first-child::after {
    content: " ";
    width: 1px;
    background: #D2CAC1;
    height: 100%;
    position: absolute;
    top: 0;
    right: -0.9375rem;
  }
}

.contact-body .social-nav {
  justify-content: center;
}
.contact-body .social-nav a > img {
  opacity: 1;
}
.contact-body .social-nav a > img:hover {
  opacity: 0.5;
}

.contact-body > div:nth-child(2) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 1024px) {
  .contact-body > div:nth-child(2) {
    margin-top: 0;
    padding: 0 0 0 0.9375rem;
  }
}

.page-discourse__hero {
  padding: 150px 0 180px 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-discourse__hero {
    padding: 100px 0 120px 0;
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__hero {
    padding: 60px 0 60px 0;
  }
}
.page-discourse__hero-Title {
  margin-bottom: 10px;
}
.page-discourse__hero-Title h1 {
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  font-variant: small-caps;
  letter-spacing: 0.8px;
  color: #003953;
}
.page-discourse__hero-Subtitle h3 {
  font-size: clamp(54px, 32.9527720739px + 2.0533880903vw, 64px);
}
@media screen and (max-width: 1024px) {
  .page-discourse__hero-Subtitle h3 {
    font-size: clamp(38px, -10.2509803922px + 6.2745098039vw, 54px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__hero-Subtitle h3 {
    font-size: clamp(32px, 32px + 0.78125vw, 38px);
  }
}
.page-discourse__section-Head-title {
  position: relative;
  padding-left: 70px;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  font-variant: small-caps;
  letter-spacing: 0.8px;
  color: #003953;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-discourse__section-Head-title {
    margin-bottom: 25px;
  }
}
.page-discourse__section-Head-title:before {
  background-size: 60px 4px;
  width: 60px;
  height: 4px;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='4' viewBox='0 0 60 4' fill='none'%3E%3Cpath d='M4.69161 2.24769C4.69161 2.24769 4.69281 2.24769 4.69334 2.24769C4.69267 2.24769 4.69228 2.24769 4.69161 2.24769ZM1.39874 3.03113C1.39874 3.03113 1.39954 3.03113 1.39993 3.03113C1.39874 3.03113 1.39768 3.03113 1.39649 3.03113C1.39729 3.03113 1.39795 3.03113 1.39861 3.03113H1.39874ZM6.35613 2.9019C6.35613 2.9019 6.35639 2.9019 6.35652 2.9019C6.35652 2.9019 6.35626 2.9019 6.35613 2.9019ZM15.446 2.49201C15.4406 2.49201 15.4353 2.49268 15.43 2.49302C15.4353 2.49302 15.4407 2.49234 15.446 2.49201ZM57.6407 2.51456C57.6407 2.51456 57.641 2.51456 57.6411 2.51456C57.6407 2.51456 57.6403 2.51456 57.6399 2.51456C57.6402 2.51456 57.6404 2.51456 57.6406 2.51456H57.6407ZM57.7175 2.52364C57.7182 2.52364 57.719 2.52364 57.7196 2.52364C57.7189 2.52364 57.7179 2.52364 57.7171 2.52364C57.7173 2.52364 57.7174 2.52364 57.7175 2.52364ZM28.1439 1.368C28.1439 1.368 28.144 1.368 28.1442 1.368C28.1442 1.368 28.144 1.368 28.1439 1.368ZM57.6917 2.52061C57.6917 2.52061 57.6913 2.52061 57.6912 2.52061C57.6913 2.52061 57.6916 2.52061 57.6917 2.52061ZM26.3222 1.83308C26.3222 1.83308 26.3229 1.83308 26.3233 1.83308C26.3229 1.83308 26.3226 1.83308 26.3222 1.83308ZM57.6758 2.51859C57.6758 2.51859 57.6746 2.51859 57.6741 2.51859C57.6746 2.51859 57.6753 2.51859 57.6758 2.51859ZM25.2667 1.51136C25.2686 1.51136 25.2704 1.51136 25.2723 1.51136C25.2671 1.51136 25.262 1.51136 25.2567 1.51169C25.2601 1.51169 25.2633 1.51169 25.2667 1.51169V1.51136ZM58.0483 2.57917C58.0483 2.57917 58.0481 2.57917 58.0479 2.57917C58.0482 2.57917 58.0485 2.57917 58.0487 2.57917C58.0486 2.57917 58.0485 2.57917 58.0482 2.57917H58.0483ZM0.996022 2.40182C0.971787 2.39643 0.947553 2.39071 0.923451 2.38398C0.947685 2.39038 0.971787 2.39643 0.996022 2.40182ZM34.1358 1.20646C34.1336 1.20646 34.1313 1.2068 34.1291 1.20713C34.1313 1.20713 34.1336 1.2068 34.1358 1.20646ZM15.5215 2.29244C15.5215 2.29244 15.5208 2.29244 15.5206 2.29244C15.5208 2.29244 15.5212 2.29244 15.5215 2.29244ZM49.9455 1.12973C49.9455 1.12973 49.9453 1.12973 49.9452 1.12973C49.9452 1.12973 49.9453 1.12973 49.9455 1.12973ZM2.38323 2.87094C2.38323 2.87094 2.38323 2.87094 2.38309 2.87094H2.38323ZM43.4549 1.0069C43.458 1.0069 43.4612 1.00724 43.4642 1.00757C43.4612 1.00757 43.458 1.00724 43.4549 1.0069ZM22.2712 1.94716C22.2712 1.94716 22.2706 1.94716 22.2704 1.94716C22.2706 1.94716 22.2709 1.94716 22.2712 1.94716ZM6.26025 2.87733C6.26025 2.87733 6.25985 2.87733 6.25972 2.87733C6.2621 2.87733 6.26422 2.87733 6.26661 2.87733C6.26435 2.87733 6.26237 2.87733 6.26025 2.87733ZM34.7481 1.54838C34.7481 1.54838 34.7489 1.54838 34.7494 1.54838C34.7489 1.54838 34.7486 1.54838 34.7481 1.54838ZM59.9985 2.55662C59.9985 2.55292 59.9984 2.54686 59.9982 2.54316V2.54417C59.9589 1.06983 59.3391 1.31785 58.9306 1.21959C58.4403 1.11493 57.949 1.01969 57.4584 0.933872C57.1375 0.915026 57.2253 0.818105 57.0309 0.99512C56.0456 0.70032 55.0868 0.571429 54.0068 0.491334C53.963 0.515565 53.8257 0.38802 53.8466 0.580178C53.5008 0.560996 53.1617 0.477537 52.7968 0.377587C50.7483 0.297829 48.5159 0.151102 46.3467 0.102642C45.2865 0.342588 43.8845 0.03298 42.7645 0.151439C42.6213 0.0800942 41.9904 0.308598 41.9752 0.0215379C41.8508 0.0158169 41.681 0.00975938 41.5551 0.00572102L41.3967 0L41.3958 0.129901C41.1733 0.128555 40.9398 0.126872 40.7167 0.124853C40.2341 0.0935555 39.981 0.169948 39.5431 0.135622H39.5438C36.9193 0.142016 34.3338 0.364799 31.7622 0.192495C29.6692 0.341578 27.6037 0.401817 25.5247 0.516911C23.1961 0.650177 20.9973 0.539122 18.6599 0.787481C15.753 1.06646 12.9289 1.06041 9.97756 1.17651C9.00976 1.24987 7.9927 1.21117 7.03364 1.24954C5.78483 1.25761 4.28929 1.42689 2.9977 1.38583C2.34893 1.40737 1.6105 1.47299 0.952055 1.28992C0.735797 1.20814 0.516758 1.05199 0.297983 1.3017C0.057623 1.56419 -0.0648748 2.29783 0.034845 2.92916V2.92781C0.0625229 3.09844 0.0909953 3.2068 0.137611 3.33434C0.46074 4.14706 1.3414 3.91318 1.79047 4H1.78981C10.1606 3.61602 18.6973 3.24685 27.0467 2.78378C27.9831 2.59364 28.8663 2.80801 29.8072 2.72859C29.9985 2.75215 30.2523 2.69393 30.4503 2.65321C30.7719 2.6845 31.0383 2.66364 31.4157 2.66162C34.8886 2.59499 38.3149 2.36446 41.794 2.46071C47.0055 2.54821 52.2843 2.67104 57.534 3.48376C58.0769 3.55713 58.5995 3.64193 59.0633 3.77957C59.2431 3.81323 59.4109 4.01279 59.5979 3.90039C59.838 3.78765 60.0176 3.16507 59.9986 2.55595L59.9985 2.55662ZM0.161978 2.57883C0.158402 2.51018 0.158402 2.45802 0.160654 2.39576C0.158402 2.45835 0.158402 2.51186 0.16211 2.58085C0.16211 2.58018 0.16211 2.57951 0.16211 2.57883H0.161978ZM0.183829 2.78849C0.180915 2.77099 0.178796 2.75248 0.176413 2.73431C0.179988 2.76359 0.184358 2.79488 0.189656 2.82181C0.187802 2.81137 0.185815 2.80061 0.183829 2.78849ZM0.202501 2.88541C0.201045 2.87868 0.19972 2.87229 0.198131 2.86522C0.199985 2.87397 0.201707 2.88205 0.203693 2.8908C0.203296 2.88911 0.202899 2.88743 0.202501 2.88541ZM0.208726 2.912C0.208063 2.90931 0.207534 2.90661 0.206872 2.90392C0.207666 2.90729 0.208461 2.91065 0.209255 2.91402C0.209123 2.91334 0.20899 2.91267 0.208726 2.912ZM0.221306 1.96433C0.210977 2.00202 0.19641 2.05957 0.185021 2.13259C0.196674 2.05889 0.211109 2.00168 0.221571 1.96332C0.221571 1.96332 0.221439 1.96399 0.221306 1.96433ZM0.222631 1.95962C0.226471 1.94616 0.230312 1.93303 0.234549 1.92024C0.230444 1.93337 0.226471 1.94649 0.222631 1.95962ZM0.224352 2.97089C0.224352 2.97089 0.224088 2.97022 0.223955 2.96988C0.224088 2.97055 0.22422 2.97089 0.224485 2.97156C0.224485 2.97156 0.224485 2.97156 0.224352 2.97123V2.97089ZM0.241966 3.02675C0.236139 3.00925 0.230444 2.99108 0.225015 2.97291C0.230841 2.99243 0.236933 3.01161 0.243157 3.03012C0.24276 3.02911 0.242363 3.02776 0.241966 3.02675ZM0.25309 3.05738C0.251765 3.05368 0.250309 3.05031 0.248984 3.04695C0.252163 3.05502 0.255076 3.06243 0.258387 3.07118C0.256533 3.06646 0.254679 3.06175 0.25309 3.05738ZM0.273351 1.81726C0.271762 1.82097 0.270306 1.82467 0.268716 1.82837C0.270438 1.82433 0.272027 1.81996 0.273881 1.81592C0.273749 1.81625 0.273484 1.81659 0.273351 1.81726ZM2.12565 2.47417C2.13161 2.47417 2.13757 2.47417 2.14353 2.47383C2.13757 2.47383 2.13161 2.47383 2.12565 2.47417ZM2.16511 2.47316C2.15863 2.47316 2.15214 2.4735 2.14565 2.47383C2.15214 2.47383 2.15863 2.47383 2.16511 2.47316ZM2.2014 3.04425C2.22232 3.04425 2.24139 3.04425 2.25835 3.04493C2.24153 3.04459 2.22246 3.04425 2.2014 3.04425ZM2.20445 2.47182C2.20246 2.47182 2.20047 2.47182 2.19849 2.47182C2.20418 2.47182 2.20974 2.47148 2.21544 2.47114C2.21173 2.47114 2.20815 2.47114 2.20445 2.47148V2.47182ZM2.20378 2.49201C2.20378 2.49201 2.20392 2.49201 2.20405 2.49201C2.20405 2.49201 2.20405 2.49201 2.20392 2.49201C2.20392 2.49201 2.20312 2.49201 2.20286 2.49201C2.20325 2.49201 2.20352 2.49201 2.20392 2.49201C2.19928 2.49201 2.19451 2.49234 2.18988 2.49268C2.19451 2.49268 2.19915 2.49234 2.20392 2.49201H2.20378ZM2.11347 3.09036C2.11929 3.09036 2.12499 3.09036 2.13082 3.09002C2.09744 3.09137 2.05136 3.0917 2.01957 3.0917C2.04606 3.0917 2.08433 3.0917 2.1136 3.0907L2.11347 3.09036ZM1.98594 3.09137H1.98633C1.98461 3.09137 1.98302 3.09137 1.9813 3.09137C1.98289 3.09137 1.98422 3.09137 1.98594 3.09137ZM2.06407 2.47518C2.065 2.47518 2.06606 2.47518 2.06698 2.47518C2.06526 2.47518 2.06354 2.47518 2.06195 2.47518C2.06261 2.47518 2.06341 2.47518 2.0642 2.47518H2.06407ZM2.03268 2.47585C2.03613 2.47585 2.0397 2.47585 2.04328 2.47585C2.03984 2.47585 2.03626 2.47585 2.03268 2.47585ZM2.01282 3.0917C2.01573 3.0917 2.01865 3.0917 2.02169 3.0917C2.01878 3.0917 2.01573 3.0917 2.01282 3.0917ZM2.00249 3.0917C1.99865 3.0917 1.99521 3.0917 1.99176 3.0917C1.99521 3.0917 1.99878 3.0917 2.00249 3.0917ZM2.11267 2.47451C2.10671 2.47451 2.10075 2.47451 2.09493 2.47484C2.10089 2.47484 2.10671 2.47484 2.11267 2.47451ZM2.11241 2.3436C2.11241 2.3436 2.11267 2.3436 2.1128 2.3436C2.1128 2.3436 2.11254 2.3436 2.11241 2.3436ZM1.97256 2.33889C1.97362 2.33889 1.97455 2.33889 1.97561 2.33889C1.97018 2.33889 1.96488 2.33889 1.95919 2.33889C1.96382 2.33889 1.96819 2.33889 1.97256 2.33889ZM1.8637 2.33788C1.85774 2.33788 1.85179 2.33788 1.84583 2.33788C1.85192 2.33788 1.85788 2.33788 1.8637 2.33788ZM1.7857 3.12569C1.78279 3.12569 1.78001 3.12569 1.77696 3.12569C1.77988 3.12569 1.78266 3.12569 1.7857 3.12569ZM1.67949 2.47047C1.67406 2.47047 1.66863 2.4698 1.66334 2.46946C1.66877 2.46946 1.67406 2.47013 1.67949 2.47047ZM1.62851 2.33653C1.62851 2.33653 1.62811 2.33653 1.62798 2.33653C1.62811 2.33653 1.62838 2.33653 1.62851 2.33653ZM1.30525 2.24197C1.34921 2.24836 1.39305 2.25374 1.43662 2.25846C1.36378 2.25038 1.29015 2.24062 1.21705 2.22749C1.24645 2.23254 1.27598 2.23759 1.30525 2.24197ZM1.40682 2.87498C1.38815 2.8733 1.36947 2.87195 1.3508 2.87027C1.37636 2.87262 1.40192 2.87498 1.42735 2.87666C1.42483 2.87666 1.42245 2.87633 1.42006 2.87633C1.42152 2.87633 1.42284 2.87633 1.4243 2.87633C1.41847 2.87599 1.41265 2.87532 1.40682 2.87498ZM1.40709 3.03248C1.40285 3.03248 1.39874 3.0318 1.3945 3.03147C1.39874 3.0318 1.40285 3.03214 1.40709 3.03248ZM1.32074 2.29547C1.3214 2.29547 1.32246 2.29581 1.32326 2.29615C1.32233 2.29615 1.3214 2.29581 1.32074 2.29547ZM1.27995 2.42268C1.27995 2.42268 1.28101 2.42268 1.28154 2.42302C1.28101 2.42302 1.28022 2.42302 1.28008 2.42302L1.27995 2.42268ZM1.26803 3.02036C1.26803 3.02036 1.2675 3.02036 1.26737 3.02036C1.26817 3.02036 1.26909 3.02036 1.26989 3.02036C1.26923 3.02036 1.2687 3.02036 1.26803 3.02036ZM1.17983 2.29345C1.2042 2.29749 1.22804 2.30086 1.25161 2.30422C1.21228 2.29884 1.17229 2.29245 1.13243 2.2847C1.14845 2.28773 1.16421 2.29043 1.17983 2.29345ZM1.00874 2.40586C0.980263 2.39913 0.951791 2.39273 0.923318 2.38499C0.922788 2.38499 0.922259 2.38499 0.921729 2.38465C0.958147 2.39441 0.994565 2.40283 1.03098 2.41057C1.02092 2.40855 1.01085 2.40619 1.00066 2.40384C1.00331 2.40451 1.00609 2.40518 1.00874 2.40586ZM0.848363 2.94801C0.892329 2.95945 0.936296 2.9682 0.980263 2.97661C0.936296 2.9682 0.892329 2.95911 0.848363 2.94801ZM0.871273 2.22312C0.871273 2.22312 0.872465 2.22379 0.873127 2.22379C0.872465 2.22379 0.871935 2.22312 0.871273 2.22312ZM0.93325 2.85647C0.935634 2.85714 0.938018 2.85748 0.940402 2.85782C0.920405 2.85378 0.90054 2.8494 0.880676 2.84435C0.898156 2.84873 0.91577 2.85277 0.933383 2.85613L0.93325 2.85647ZM0.96212 2.24836C0.962915 2.24836 0.963842 2.2487 0.964636 2.24903C0.963842 2.24903 0.962915 2.2487 0.96212 2.24836ZM1.08316 2.20326C1.08872 2.20427 1.09442 2.20528 1.09998 2.20663C1.09217 2.20495 1.08449 2.20394 1.07667 2.20192C1.07879 2.20259 1.08104 2.20293 1.08316 2.2036V2.20326ZM1.0727 2.21572C1.0727 2.21572 1.07283 2.21572 1.07296 2.21572C1.07137 2.21538 1.06992 2.21504 1.06846 2.21471C1.06992 2.21504 1.07124 2.21538 1.0727 2.21572ZM0.935502 1.69275C0.975628 1.70419 1.01589 1.71429 1.05615 1.72371C1.01165 1.71361 0.967152 1.70183 0.922788 1.68938C0.927026 1.69039 0.931264 1.69174 0.935502 1.69275ZM0.915505 2.1612C0.916167 2.1612 0.916829 2.16153 0.917491 2.16187C0.916432 2.16187 0.915505 2.1612 0.914445 2.1612C0.914843 2.1612 0.915107 2.1612 0.915505 2.1612ZM0.897362 2.32946C0.917756 2.33451 0.938283 2.33922 0.958677 2.34427C0.937885 2.33922 0.917226 2.33417 0.896435 2.32913C0.8967 2.32913 0.896965 2.32913 0.897362 2.32913V2.32946ZM0.883589 2.16759C0.8869 2.1686 0.890343 2.16961 0.893786 2.17028C0.888489 2.16894 0.883192 2.16759 0.878027 2.16557C0.879881 2.16625 0.881735 2.16692 0.883722 2.16759H0.883589ZM0.875776 2.14976H0.87657C0.873789 2.14908 0.871141 2.14774 0.86836 2.14673C0.870876 2.14774 0.873392 2.14875 0.875776 2.14976ZM0.860811 2.3685C0.859354 2.36816 0.857898 2.36715 0.856309 2.36682C0.857765 2.36749 0.859222 2.36816 0.860811 2.3685ZM0.843728 2.31264C0.836576 2.30994 0.829558 2.30725 0.822274 2.30389C0.829425 2.30692 0.836576 2.30961 0.843728 2.31264ZM0.738313 2.1188C0.751159 2.12519 0.764137 2.13125 0.776983 2.13764C0.764137 2.13125 0.751291 2.12519 0.738446 2.1188H0.738313ZM0.776321 2.77166C0.776321 2.77166 0.775659 2.77166 0.775394 2.77166C0.775659 2.77166 0.776056 2.77166 0.776321 2.77166ZM0.587343 2.04375C0.589992 2.04375 0.59264 2.04442 0.595289 2.04476C0.585489 2.04375 0.575557 2.04308 0.56536 2.04308C0.57463 2.04308 0.584165 2.04375 0.593302 2.04442C0.591316 2.04442 0.589329 2.04375 0.587343 2.04375ZM0.603764 2.07976C0.618464 2.0811 0.633296 2.08447 0.647731 2.08783C0.627337 2.08279 0.606943 2.07908 0.586284 2.07808C0.5888 2.07808 0.591448 2.07808 0.593965 2.07808C0.591713 2.07808 0.589462 2.07808 0.587343 2.07808C0.592905 2.07808 0.598335 2.07908 0.603764 2.07942V2.07976ZM0.602837 2.04577C0.61224 2.04711 0.62151 2.0488 0.630515 2.05082C0.621378 2.0488 0.612108 2.04711 0.602837 2.04577ZM0.642964 2.23019C0.642964 2.23019 0.642964 2.23019 0.642831 2.23019C0.642831 2.23019 0.642831 2.23019 0.642964 2.23019ZM0.640448 2.73969C0.639521 2.73936 0.638461 2.73902 0.637534 2.73868C0.638726 2.73902 0.639918 2.73969 0.640977 2.74003C0.640845 2.74003 0.64058 2.74003 0.640448 2.74003V2.73969ZM0.620053 2.73195C0.623761 2.7333 0.627602 2.73532 0.63131 2.73667C0.627602 2.73498 0.623761 2.7333 0.620053 2.73195ZM0.61767 2.22447C0.623496 2.22548 0.629323 2.22682 0.635018 2.22817C0.629191 2.22682 0.623496 2.22548 0.61767 2.22447ZM0.600983 2.22413C0.600983 2.22413 0.599659 2.22413 0.598997 2.22413C0.599659 2.22413 0.600321 2.22413 0.600983 2.22413ZM0.597275 2.22413C0.597275 2.22413 0.597275 2.22413 0.597143 2.22413C0.597143 2.22413 0.597143 2.22413 0.597275 2.22413ZM0.586681 2.12014C0.586681 2.12014 0.587608 2.12014 0.588005 2.12014C0.587211 2.12014 0.586549 2.12014 0.585886 2.12014C0.586416 2.12014 0.586813 2.12014 0.587343 2.12014C0.587078 2.12014 0.586813 2.12014 0.586681 2.12014ZM0.582046 2.27057C0.582046 2.27057 0.580854 2.27057 0.580192 2.27057C0.588138 2.27057 0.596216 2.27158 0.604162 2.27293C0.595819 2.27158 0.587476 2.27091 0.579 2.27057C0.579927 2.27057 0.580986 2.27057 0.581913 2.27057H0.582046ZM0.633296 2.73767C0.633296 2.73767 0.632237 2.73767 0.631442 2.73767C0.634356 2.73767 0.637137 2.73936 0.64005 2.74037C0.637799 2.73969 0.635548 2.73868 0.633164 2.73801L0.633296 2.73767ZM0.667596 2.80027C0.660312 2.79791 0.653161 2.79556 0.645877 2.7932C0.653161 2.79556 0.660312 2.79825 0.667596 2.80027ZM0.646407 2.74239C0.646407 2.74239 0.646804 2.74239 0.646937 2.74239C0.646804 2.74239 0.646539 2.74239 0.646407 2.74239ZM0.67329 2.95642C0.675939 2.95709 0.67872 2.95777 0.681236 2.95844C0.678587 2.95777 0.675939 2.95709 0.67329 2.95642ZM0.698319 2.96214C0.693684 2.96113 0.688917 2.96046 0.684149 2.95911C0.69236 2.96079 0.700438 2.96248 0.708384 2.96416C0.705073 2.96349 0.70163 2.96281 0.698319 2.96214ZM0.718581 2.99647C0.710635 2.99478 0.70269 2.9931 0.694611 2.99108C0.702557 2.9931 0.710635 2.99478 0.718581 2.99647ZM0.670377 2.28908C0.661107 2.28605 0.651837 2.28336 0.642566 2.281C0.666139 2.28706 0.689711 2.29547 0.713152 2.30523C0.698982 2.29951 0.684679 2.29413 0.670377 2.28942V2.28908ZM0.656074 2.05856C0.662828 2.06058 0.669847 2.06226 0.676601 2.06461C0.669847 2.06226 0.662961 2.06058 0.656074 2.05856ZM0.669052 2.13831C0.669052 2.13831 0.668258 2.13831 0.667728 2.13798C0.668125 2.13798 0.668523 2.13798 0.669052 2.13831ZM0.677263 2.14134C0.687858 2.14504 0.698319 2.14875 0.708649 2.15279C0.698452 2.14875 0.687858 2.14504 0.677263 2.14134ZM0.7207 2.1575C0.718184 2.15649 0.715668 2.15548 0.713019 2.15447C0.715933 2.15548 0.718846 2.15682 0.721627 2.15783C0.72123 2.15783 0.720965 2.15783 0.720568 2.1575H0.7207ZM0.722554 2.15817C0.734076 2.16288 0.745332 2.16759 0.756456 2.17264C0.745067 2.16726 0.733413 2.16254 0.721627 2.15783C0.721892 2.15783 0.722289 2.15783 0.722554 2.15817ZM0.732354 2.31264C0.743346 2.31735 0.754337 2.32206 0.765329 2.32711C0.751689 2.32105 0.738048 2.31499 0.724541 2.30927C0.727189 2.31028 0.729838 2.31129 0.732354 2.31264ZM0.797907 2.77537C0.798701 2.77537 0.799761 2.77537 0.800423 2.7757C0.793404 2.77436 0.787048 2.77368 0.776453 2.77234C0.785591 2.77368 0.792874 2.77469 0.797907 2.77537ZM0.799496 2.34292C0.80678 2.34629 0.814063 2.34966 0.821347 2.35268C0.814063 2.34932 0.80678 2.34595 0.799496 2.34292ZM0.816315 2.19149C0.816315 2.19149 0.815785 2.19149 0.81552 2.19115C0.815785 2.19115 0.81605 2.19115 0.816315 2.19149ZM0.56973 1.57294C0.651704 1.57294 0.741227 1.60996 0.815652 1.6453C0.739638 1.60929 0.647864 1.5716 0.5643 1.57294C0.566022 1.57294 0.567876 1.57294 0.56973 1.57294ZM0.563903 2.11913C0.561519 2.11913 0.559268 2.11981 0.557546 2.12014C0.559268 2.11981 0.561387 2.11947 0.563903 2.11913ZM0.547879 2.0451C0.542714 2.04577 0.537549 2.04644 0.53212 2.04745C0.537417 2.04644 0.542582 2.04577 0.547879 2.0451ZM0.544966 2.27259C0.543509 2.27259 0.542052 2.27259 0.540595 2.27326C0.542052 2.27293 0.543509 2.27259 0.544966 2.27259ZM0.536887 2.08481C0.536887 2.08481 0.53649 2.08481 0.536358 2.08481C0.53649 2.08481 0.536755 2.08481 0.536887 2.08481ZM0.471334 2.8245C0.471334 2.8245 0.470937 2.82383 0.470672 2.82383C0.470937 2.82383 0.47107 2.8245 0.471334 2.8245ZM0.436373 2.43985C0.4373 2.42874 0.437962 2.41696 0.439684 2.40619C0.438889 2.41158 0.438227 2.4173 0.437697 2.42302C0.439021 2.40787 0.441405 2.39374 0.444584 2.38062C0.440081 2.39812 0.43783 2.41864 0.436373 2.43951V2.43985ZM0.436903 2.5048C0.436903 2.5048 0.436903 2.50244 0.436638 2.50109C0.436638 2.50244 0.436638 2.50345 0.436903 2.5048ZM0.420084 2.39913C0.42366 2.36917 0.430016 2.3399 0.438889 2.31768C0.438227 2.31937 0.437432 2.32105 0.43677 2.32307C0.43677 2.32307 0.437035 2.3224 0.437167 2.32206C0.436108 2.32475 0.435181 2.32845 0.434254 2.33148C0.435181 2.32879 0.435976 2.32576 0.436903 2.32307C0.429222 2.34461 0.423527 2.37153 0.420216 2.39913H0.420084ZM0.396114 2.65388C0.39969 2.66599 0.403265 2.67676 0.406973 2.68686C0.403265 2.67676 0.399557 2.66599 0.396114 2.65388ZM0.370688 2.5896C0.369893 2.58388 0.369231 2.57782 0.368436 2.5721C0.370555 2.59128 0.373866 2.60979 0.377574 2.62662C0.375058 2.61484 0.372806 2.60239 0.370688 2.5896ZM0.371747 2.64479C0.37135 2.64277 0.37082 2.64075 0.37029 2.63873C0.370688 2.64075 0.371217 2.64277 0.371747 2.64479ZM0.383931 2.23523C0.388168 2.22211 0.392936 2.21 0.397571 2.19754C0.386447 2.22514 0.376912 2.25644 0.369893 2.29177C0.373733 2.27192 0.378766 2.25341 0.383931 2.23557V2.23523ZM0.384593 2.20394C0.385387 2.20158 0.386182 2.19956 0.386976 2.19721C0.386182 2.19923 0.385387 2.20158 0.384593 2.20394ZM0.384195 2.60475C0.384195 2.60475 0.384858 2.60777 0.385122 2.60912C0.380223 2.58657 0.377044 2.561 0.374793 2.53475C0.376912 2.55931 0.379958 2.58321 0.384195 2.60441V2.60475ZM0.384328 2.32643C0.38499 2.32307 0.38552 2.3197 0.386182 2.316C0.38552 2.31937 0.38499 2.32273 0.384328 2.32643ZM0.382209 2.68484C0.382209 2.68484 0.381547 2.68248 0.38115 2.68147C0.381547 2.68282 0.381812 2.68383 0.382209 2.68484ZM0.38115 2.68114C0.380487 2.67912 0.379958 2.67676 0.379428 2.67474C0.379958 2.67676 0.38062 2.67912 0.38115 2.68114ZM0.372542 2.49571C0.372806 2.50278 0.373204 2.50984 0.373601 2.51691C0.372939 2.50715 0.372409 2.49638 0.372277 2.48662C0.372277 2.48965 0.372277 2.49234 0.372542 2.49571ZM0.372409 2.4597C0.372409 2.44893 0.372806 2.4385 0.373071 2.42773C0.372806 2.4385 0.372542 2.44893 0.372409 2.4597ZM0.384328 2.72522C0.384328 2.72522 0.384725 2.72623 0.38499 2.72691C0.384858 2.72623 0.384593 2.7259 0.384328 2.72522C0.385917 2.7296 0.387639 2.73364 0.38936 2.73801C0.384725 2.72691 0.380885 2.71479 0.377177 2.70234C0.37956 2.71008 0.381944 2.71782 0.384328 2.72522ZM0.379295 2.29278C0.377706 2.30019 0.376382 2.30793 0.375058 2.31533C0.378633 2.29244 0.384328 2.27158 0.390022 2.25172C0.386182 2.26485 0.382606 2.27831 0.379295 2.29244V2.29278ZM0.379693 2.28639C0.384725 2.26451 0.390022 2.24432 0.396909 2.22649C0.390155 2.24432 0.384725 2.26451 0.379693 2.28639ZM0.394525 2.28033C0.397836 2.26687 0.401941 2.25543 0.406311 2.24432C0.399955 2.26014 0.39479 2.27797 0.390287 2.29749C0.391744 2.29177 0.393068 2.28605 0.394525 2.28033ZM0.404722 2.77436C0.407371 2.77974 0.409887 2.78479 0.412535 2.7895C0.409887 2.78479 0.407238 2.77974 0.40459 2.77436H0.404722ZM0.415714 2.47283C0.415581 2.47686 0.415714 2.48158 0.415846 2.48629C0.415316 2.47484 0.415846 2.46441 0.415979 2.45331C0.415979 2.4597 0.415714 2.46609 0.415714 2.47283ZM0.419157 2.52936C0.420216 2.53879 0.421673 2.54754 0.423262 2.55595C0.421673 2.54754 0.420216 2.53845 0.419157 2.52936ZM0.420216 2.8033C0.420216 2.8033 0.419157 2.80128 0.418627 2.80061C0.419157 2.80162 0.419687 2.80262 0.420216 2.8033ZM0.424851 2.20259C0.426441 2.19923 0.428162 2.19586 0.430016 2.19317C0.428162 2.19586 0.426573 2.19923 0.424851 2.20259ZM0.434784 2.15447C0.434784 2.15447 0.435313 2.15379 0.435578 2.15346C0.435313 2.15379 0.435049 2.15413 0.434784 2.15447ZM0.516096 2.05183C0.506428 2.05485 0.495966 2.05889 0.485902 2.06461C0.495834 2.05889 0.506428 2.05485 0.516096 2.05183ZM0.456502 2.77907C0.462594 2.78714 0.468553 2.79421 0.474513 2.80061C0.464978 2.78984 0.45531 2.77806 0.44604 2.76392C0.449616 2.76931 0.453191 2.77436 0.456635 2.77873L0.456502 2.77907ZM0.470142 2.26317C0.471467 2.26182 0.472659 2.26047 0.473983 2.25913C0.466832 2.2662 0.46021 2.27528 0.453456 2.28639C0.458886 2.2773 0.464448 2.26956 0.470142 2.26317ZM0.462726 2.12216C0.464713 2.12048 0.466434 2.11947 0.468288 2.11779C0.466434 2.11947 0.46458 2.12048 0.462726 2.12216ZM0.473188 2.67575C0.469878 2.67138 0.466699 2.66633 0.463389 2.66128C0.466567 2.66633 0.469878 2.67138 0.473188 2.67575ZM0.45968 2.59162C0.457297 2.58657 0.454781 2.58152 0.452662 2.5758C0.454913 2.58152 0.457297 2.58624 0.45968 2.59162ZM0.458489 2.105C0.45637 2.10702 0.454251 2.10836 0.452 2.11072C0.459151 2.10332 0.466037 2.09759 0.472791 2.09288C0.468156 2.09658 0.463389 2.10062 0.458489 2.105ZM0.454251 2.13125C0.452 2.1336 0.449748 2.13596 0.447497 2.13831C0.449748 2.13562 0.452 2.1336 0.454251 2.13125ZM0.447762 2.63268C0.445908 2.62864 0.444054 2.62494 0.4422 2.62023C0.444054 2.62426 0.445908 2.62864 0.447762 2.63268ZM0.45968 2.81137C0.462991 2.81541 0.46617 2.81945 0.469348 2.82315C0.46617 2.81945 0.462991 2.81575 0.45968 2.81137ZM0.457826 2.80902C0.457826 2.80902 0.458621 2.81003 0.459151 2.8107C0.458753 2.81003 0.458224 2.80969 0.457826 2.80902ZM0.475175 2.82988C0.475175 2.82988 0.474513 2.82887 0.474115 2.82854C0.474513 2.82887 0.47491 2.82955 0.475175 2.82988ZM0.489345 2.84469C0.488153 2.84335 0.486829 2.842 0.485637 2.84099C0.486829 2.84234 0.488153 2.84368 0.489345 2.84469ZM0.450675 1.60188C0.483783 1.58405 0.516361 1.57698 0.54139 1.57463C0.515963 1.57698 0.481134 1.58472 0.447894 1.60323C0.448821 1.60289 0.449748 1.60222 0.450675 1.60155V1.60188ZM0.435313 2.10769C0.441802 2.10062 0.448556 2.09255 0.455045 2.08716C0.446438 2.09524 0.437565 2.10432 0.429486 2.11577C0.431341 2.11307 0.433327 2.11038 0.435181 2.10769H0.435313ZM0.42803 2.16423C0.430149 2.16086 0.4324 2.15783 0.434519 2.1548C0.432268 2.15783 0.430149 2.1612 0.427897 2.16456L0.42803 2.16423ZM0.427765 2.16456C0.427765 2.16456 0.427368 2.16524 0.427235 2.16557C0.4275 2.16524 0.427632 2.1649 0.427897 2.16456H0.427765ZM0.41876 2.18038C0.421011 2.17567 0.423262 2.1723 0.425514 2.1686C0.418098 2.18038 0.411211 2.19485 0.40459 2.21067C0.409225 2.1999 0.41386 2.18947 0.41876 2.18038ZM0.408695 2.17365C0.409357 2.1723 0.410019 2.17062 0.410814 2.16927C0.40949 2.17163 0.408298 2.17466 0.407106 2.17735C0.407636 2.17634 0.408165 2.175 0.408827 2.17399L0.408695 2.17365ZM0.397703 2.17096C0.393995 2.17937 0.390287 2.18846 0.386712 2.19822C0.392803 2.18173 0.398895 2.16726 0.406046 2.15413C0.403265 2.15952 0.400484 2.16524 0.397703 2.17096ZM0.373469 1.66246C0.384328 1.65035 0.393863 1.64193 0.402074 1.6352C0.392406 1.64294 0.378633 1.6564 0.367112 1.66953C0.369231 1.66717 0.37135 1.66482 0.373469 1.66246ZM0.367244 2.36581C0.368171 2.3584 0.369363 2.351 0.370423 2.3436C0.368966 2.35403 0.367377 2.36379 0.366582 2.37456C0.366847 2.37153 0.367112 2.36884 0.367377 2.36581H0.367244ZM0.370158 2.63907C0.368834 2.63268 0.367509 2.62628 0.366185 2.61989C0.367377 2.62662 0.368701 2.63301 0.370158 2.63907ZM0.366847 2.66667C0.365126 2.6596 0.363536 2.6522 0.361947 2.64446C0.363536 2.65186 0.365126 2.65926 0.366847 2.66667ZM0.363801 2.52701C0.363801 2.52701 0.363934 2.53004 0.364066 2.53172C0.363934 2.52936 0.363801 2.52667 0.363669 2.52431C0.363669 2.52532 0.363669 2.52633 0.363801 2.52701ZM0.362477 2.43581C0.362477 2.43076 0.362742 2.42537 0.363007 2.41965C0.362742 2.42537 0.362477 2.4311 0.362344 2.43614C0.362344 2.43614 0.362344 2.43614 0.362344 2.43581H0.362477ZM0.361947 2.46946C0.361947 2.46273 0.362212 2.456 0.362212 2.44927C0.361947 2.46744 0.36155 2.48561 0.362477 2.50379C0.361947 2.49234 0.361682 2.4809 0.361815 2.46946H0.361947ZM0.361815 2.50816C0.361682 2.50412 0.361417 2.50008 0.361285 2.49571C0.361417 2.49975 0.361682 2.50379 0.361815 2.50816ZM0.360888 2.47619C0.360888 2.47619 0.360888 2.47821 0.360888 2.47956C0.360888 2.47855 0.360888 2.47754 0.360888 2.47619ZM0.360888 2.4809C0.360888 2.4809 0.360888 2.47956 0.360888 2.47855C0.360755 2.4846 0.360888 2.49066 0.361285 2.49672C0.36102 2.49133 0.360623 2.48595 0.360755 2.48057L0.360888 2.4809ZM0.361417 2.5896C0.362212 2.59566 0.363139 2.60071 0.364066 2.60643C0.36208 2.59532 0.360623 2.58287 0.359166 2.57109C0.359961 2.57715 0.360755 2.58354 0.36155 2.5896H0.361417ZM0.353472 2.47888C0.353472 2.47888 0.353472 2.47821 0.353472 2.47787C0.353472 2.47922 0.353472 2.48158 0.353472 2.48359C0.353472 2.47754 0.353472 2.47182 0.353472 2.46576C0.353472 2.47013 0.353472 2.47451 0.353472 2.47888ZM0.356385 2.61518C0.357312 2.6209 0.358372 2.62628 0.359431 2.63167C0.354266 2.60407 0.350293 2.57446 0.348042 2.54451C0.349631 2.56874 0.353074 2.59229 0.356518 2.61518H0.356385ZM0.353736 2.44624C0.353736 2.44624 0.353736 2.44287 0.353736 2.44153C0.353736 2.44321 0.353736 2.44489 0.353736 2.44624ZM0.353736 2.44119C0.353736 2.4385 0.353737 2.43581 0.354001 2.43311C0.354001 2.43581 0.354001 2.4385 0.353736 2.44119ZM0.354796 2.52061C0.355193 2.53205 0.35612 2.54282 0.35718 2.55393C0.355988 2.54316 0.355326 2.53172 0.354796 2.52061ZM0.349101 1.69073C0.352015 1.68703 0.354796 1.68265 0.357709 1.67962C0.353472 1.684 0.349499 1.69006 0.345526 1.69544C0.346718 1.69376 0.34791 1.69208 0.349101 1.69039V1.69073ZM0.347777 2.54383C0.347115 2.5334 0.346585 2.5233 0.346056 2.51254C0.346585 2.52297 0.347115 2.5334 0.347777 2.54383ZM0.345658 2.50109C0.345658 2.50109 0.345658 2.49773 0.345526 2.49605C0.345526 2.49773 0.345526 2.49941 0.345658 2.50109ZM0.345261 2.48932C0.345261 2.48932 0.345261 2.49167 0.345261 2.49268C0.345261 2.49133 0.345261 2.48999 0.345261 2.48864C0.345261 2.48864 0.345261 2.48898 0.345261 2.48932ZM0.345261 2.47484C0.345261 2.47787 0.345261 2.48057 0.345261 2.48393C0.345261 2.48057 0.345261 2.47754 0.345261 2.47484ZM0.345261 2.48831C0.345261 2.48831 0.345261 2.48528 0.345261 2.48393C0.345261 2.48528 0.345261 2.48696 0.345261 2.48831ZM0.280635 1.80515C0.280635 1.80515 0.279443 1.8075 0.278914 1.80885C0.286065 1.79404 0.293348 1.77957 0.301294 1.76477C0.294011 1.77823 0.287124 1.79169 0.280768 1.80515H0.280635ZM0.412933 3.32021C0.379825 3.28689 0.343804 3.24584 0.302751 3.16944C0.347777 3.25189 0.382739 3.29127 0.421143 3.32761C0.418362 3.32492 0.415714 3.3229 0.412933 3.32021ZM0.425911 2.76392C0.424322 2.76123 0.422865 2.75787 0.421276 2.75517C0.423924 2.76022 0.426441 2.76527 0.429354 2.76931C0.428162 2.76763 0.427103 2.76594 0.425911 2.76392ZM0.439684 2.78277C0.435446 2.77604 0.431076 2.76897 0.426838 2.76157C0.432003 2.77032 0.436903 2.77873 0.442067 2.78614C0.441273 2.78513 0.440478 2.78378 0.439684 2.78277ZM0.44604 2.79186C0.44604 2.79186 0.445775 2.79152 0.445643 2.79118C0.445643 2.79118 0.445908 2.79152 0.44604 2.79186ZM0.482591 2.88306C0.473321 2.87464 0.464448 2.86455 0.454913 2.85344C0.46511 2.86556 0.474513 2.87599 0.484577 2.88507C0.482723 2.88339 0.480869 2.88171 0.478883 2.88003C0.480075 2.88104 0.481267 2.88205 0.482459 2.88339L0.482591 2.88306ZM0.569862 2.9194C0.560327 2.91469 0.55066 2.90931 0.540595 2.90291C0.55066 2.90931 0.56046 2.91469 0.569995 2.9194C0.569995 2.9194 0.569995 2.9194 0.569862 2.9194ZM0.576484 3.42756C0.576484 3.42756 0.575954 3.42756 0.575689 3.42723C0.578735 3.42857 0.581781 3.42958 0.584827 3.43093C0.582046 3.42992 0.579132 3.42891 0.576351 3.42756H0.576484ZM0.606148 2.96248C0.606148 2.96248 0.606545 2.96248 0.60681 2.96248C0.605486 2.9618 0.604162 2.96113 0.602837 2.96079C0.619391 2.9682 0.635945 2.97392 0.652234 2.97897C0.637269 2.97426 0.622172 2.96887 0.60681 2.96248C0.61171 2.9645 0.61661 2.96618 0.62151 2.9682C0.616345 2.96618 0.611313 2.9645 0.606148 2.96214V2.96248ZM0.654353 2.97998C0.648393 2.97796 0.642434 2.97627 0.636342 2.97426C0.642301 2.97627 0.648261 2.97829 0.654353 2.97998ZM0.711562 3.46795C0.696598 3.46492 0.682295 3.46155 0.668258 3.45785C0.687858 3.4629 0.708914 3.46761 0.729176 3.47097C0.723349 3.46996 0.717522 3.46896 0.711695 3.46795H0.711562ZM0.713152 2.96517C0.736724 2.96954 0.75937 2.97224 0.780691 2.97459C0.780559 2.97459 0.780294 2.97459 0.780161 2.97459C0.780294 2.97459 0.780426 2.97459 0.780691 2.97459C0.75937 2.97257 0.736724 2.96954 0.713152 2.96517ZM0.779102 3.47939C0.776718 3.47905 0.774334 3.47871 0.771951 3.47838C0.775659 3.47905 0.779499 3.47939 0.783207 3.48073C0.781883 3.4804 0.780426 3.48006 0.779102 3.47972V3.47939ZM0.737519 2.8171C0.77685 2.82248 0.81605 2.82921 0.855117 2.84032C0.81605 2.82921 0.77685 2.82282 0.737519 2.8171ZM0.797377 2.93724C0.797377 2.93724 0.797245 2.94027 0.797112 2.94195C0.797112 2.94027 0.797245 2.93892 0.797377 2.93724ZM0.795391 2.99276C0.795523 2.98772 0.796053 2.97459 0.796715 2.95945C0.796053 2.97459 0.795656 2.98637 0.795391 2.99276ZM0.798966 2.97695C0.791947 2.97527 0.807574 2.97897 0.81062 2.97964C0.80678 2.97897 0.802807 2.97796 0.798966 2.97695ZM0.81605 3.48881C0.811944 3.4878 0.807707 3.48679 0.803601 3.48545C0.87763 3.50496 0.952188 3.52179 1.02794 3.53592C0.956426 3.52246 0.885576 3.50665 0.81605 3.48847V3.48881ZM1.04939 2.41629C1.04939 2.41629 1.05045 2.41629 1.05098 2.41662C1.05045 2.41662 1.04992 2.41662 1.04939 2.41629ZM1.18328 2.90157C1.18765 2.90224 1.19215 2.90291 1.19652 2.90358C1.16116 2.89887 1.12594 2.89349 1.09058 2.88777C1.12143 2.89282 1.15242 2.89753 1.18328 2.90157ZM1.20659 3.0143C1.19215 3.01228 1.17785 3.01094 1.16341 3.00892C1.17798 3.01094 1.19215 3.01262 1.20659 3.0143ZM1.16328 3.00892C1.15825 3.00824 1.15308 3.00757 1.14805 3.00656C1.15308 3.00724 1.15825 3.00791 1.16328 3.00892ZM1.14487 3.06041C1.14487 3.06041 1.14474 3.06041 1.14461 3.06041C1.18169 3.07286 1.21877 3.08464 1.25585 3.09642C1.21877 3.0843 1.18182 3.07286 1.14474 3.06074L1.14487 3.06041ZM1.2344 3.08935C1.24631 3.09305 1.25837 3.09709 1.27028 3.10079C1.25823 3.09709 1.24631 3.09305 1.2344 3.08935ZM1.37795 3.55578C1.20804 3.54097 1.28962 3.54905 1.41053 3.55814C1.4002 3.55746 1.38934 3.55679 1.37795 3.55578ZM1.41119 3.55814C1.42099 3.55881 1.43026 3.55948 1.439 3.55982C1.43026 3.55915 1.42099 3.55881 1.41119 3.55814ZM1.31664 1.77419C1.31491 1.77419 1.31319 1.77352 1.31147 1.77352C1.40338 1.78698 1.49926 1.79741 1.59871 1.80515C1.50138 1.79775 1.40642 1.78731 1.31664 1.77452V1.77419ZM1.60242 2.46845C1.59871 2.46845 1.59514 2.46778 1.59143 2.46778C1.59514 2.46811 1.59871 2.46845 1.60242 2.46845ZM1.52587 2.3197C1.52429 2.3197 1.5227 2.3197 1.52097 2.31937C1.5321 2.32038 1.54322 2.32105 1.55435 2.32172C1.54481 2.32105 1.53528 2.32038 1.52574 2.3197H1.52587ZM1.54998 3.09574C1.54614 3.09574 1.54243 3.09507 1.53806 3.09473C1.54243 3.09473 1.54614 3.09541 1.54998 3.09574ZM1.53766 3.09473C1.53435 3.09473 1.53117 3.0944 1.5276 3.09406C1.53117 3.09406 1.53448 3.0944 1.53766 3.09473ZM1.55435 3.10315C1.557 3.10315 1.55951 3.10247 1.5619 3.10247C1.55938 3.10247 1.557 3.10315 1.55435 3.10315ZM1.56348 3.12132C1.55911 3.12098 1.55448 3.12065 1.55051 3.12031C1.55461 3.12065 1.55898 3.12098 1.56348 3.12132ZM1.47608 2.28874C1.47754 2.28874 1.47913 2.28874 1.48058 2.28908C1.47913 2.28908 1.47754 2.28908 1.47608 2.28874ZM1.48244 2.28942C1.48244 2.28942 1.48297 2.28942 1.48323 2.28942C1.48217 2.28942 1.48125 2.28942 1.48019 2.28942C1.48191 2.28942 1.48363 2.28942 1.48535 2.28975C1.48442 2.28975 1.48336 2.28975 1.48244 2.28975V2.28942ZM1.4925 3.09204C1.49118 3.09204 1.48985 3.09204 1.4884 3.09204C1.4925 3.09204 1.49634 3.09238 1.50005 3.09271C1.49753 3.09271 1.49502 3.09271 1.4925 3.09238V3.09204ZM1.54468 3.10416C1.54759 3.10416 1.55037 3.10348 1.55316 3.10315C1.54177 3.10416 1.52892 3.1055 1.51793 3.10651C1.52627 3.1055 1.53581 3.10483 1.54468 3.10382V3.10416ZM1.53779 3.59044C1.57355 3.59381 1.60467 3.59515 1.64758 3.59684C1.60467 3.59515 1.57355 3.59347 1.53779 3.59044ZM1.78822 3.59987C1.77511 3.59987 1.76187 3.59987 1.74928 3.59953C1.86927 3.59953 1.98183 3.58708 2.12168 3.5753C1.99852 3.58674 1.8894 3.59482 1.78809 3.59987H1.78822ZM2.17333 3.57496C2.17213 3.57496 2.17107 3.57496 2.16988 3.5753C2.17942 3.57429 2.18882 3.57362 2.19835 3.57261C2.19001 3.57328 2.18154 3.57429 2.17319 3.57496H2.17333ZM2.16657 3.10416C2.12565 3.10281 2.08486 3.10685 2.04394 3.11055C2.17915 3.10247 2.31436 3.0917 2.44971 3.07791C2.35528 3.08666 2.26099 3.09541 2.16657 3.10416ZM2.37224 2.88339C2.36032 2.88743 2.34615 2.88575 2.3333 2.88777C2.34615 2.88575 2.36045 2.88709 2.37224 2.88339ZM2.37912 2.87532C2.37912 2.87532 2.37992 2.87532 2.38031 2.87532C2.37992 2.87532 2.37952 2.87532 2.37912 2.87532ZM2.38429 2.87431C2.38309 2.87431 2.38177 2.87464 2.38058 2.87498C2.38164 2.87498 2.3827 2.87464 2.38376 2.87431H2.38349C2.38376 2.87431 2.38402 2.87431 2.38429 2.87431ZM2.39488 2.87262C2.39488 2.87262 2.39594 2.87262 2.39647 2.87262C2.39621 2.87262 2.39607 2.87262 2.39581 2.87262C2.3974 2.87262 2.39912 2.87229 2.40084 2.87195C2.39713 2.87229 2.39395 2.87296 2.39051 2.8733C2.39183 2.8733 2.39342 2.87296 2.39488 2.87262ZM2.40071 2.87195C2.40071 2.87195 2.40111 2.87195 2.40124 2.87195C2.40111 2.87195 2.40097 2.87195 2.40071 2.87195ZM2.39117 2.8733C2.38972 2.8733 2.38839 2.87363 2.38707 2.87397C2.38839 2.87397 2.38972 2.87363 2.39117 2.8733ZM2.37647 2.87599C2.37621 2.87599 2.37581 2.87599 2.37555 2.87599C2.37581 2.87599 2.37621 2.87599 2.37661 2.87599H2.37647ZM2.68596 3.05469C2.69589 3.05401 2.70609 3.05334 2.71682 3.053C2.70609 3.05368 2.69589 3.05435 2.68596 3.05469ZM2.71841 3.05267C2.70463 3.05334 2.69205 3.05435 2.67921 3.05502C2.68027 3.05502 2.68146 3.05502 2.68252 3.05502C2.67934 3.05502 2.67629 3.05536 2.67325 3.0557C2.67524 3.0557 2.67709 3.0557 2.67921 3.05536C2.67325 3.0557 2.66729 3.05603 2.66133 3.05637C2.67894 3.05536 2.69788 3.05401 2.71841 3.053C2.71841 3.053 2.71841 3.053 2.71854 3.053C2.71854 3.053 2.71841 3.053 2.71827 3.053L2.71841 3.05267ZM2.72556 3.52347C2.72556 3.51742 2.72543 3.51169 2.72529 3.50564C2.72529 3.51169 2.72543 3.51742 2.72556 3.52347ZM2.14883 1.82063C2.13519 1.82063 2.12062 1.82063 2.10565 1.82063C2.35992 1.86606 2.67934 1.71563 2.84422 1.84755C2.68742 1.7153 2.39766 1.86438 2.14883 1.82029V1.82063ZM2.82621 3.51338C2.82621 3.51338 2.82621 3.51001 2.82621 3.50833C2.82621 3.51001 2.82621 3.51169 2.82621 3.51338ZM2.83269 2.3197C2.82832 2.3197 2.82435 2.3197 2.82011 2.3197C2.82435 2.3197 2.82859 2.3197 2.83296 2.3197H2.83269ZM2.83336 2.3197C2.84488 2.3197 2.85587 2.31937 2.8666 2.31903C2.856 2.31903 2.84488 2.31937 2.83336 2.3197ZM2.86289 2.31903C2.87335 2.31903 2.88394 2.31869 2.89388 2.31836C2.88394 2.31836 2.87362 2.31869 2.86289 2.31903ZM11.481 1.52011C11.4896 1.52112 11.4979 1.52549 11.5059 1.52751C11.4975 1.52516 11.489 1.52078 11.48 1.51977C11.4802 1.51977 11.4806 1.51977 11.481 1.51977V1.52011ZM11.4579 1.51708C11.464 1.51775 11.4693 1.51843 11.4738 1.51876C11.4634 1.51742 11.4516 1.51641 11.44 1.5154C11.4465 1.51573 11.4526 1.51641 11.4579 1.51708ZM11.6329 2.14336C11.5568 2.14538 11.4886 2.1474 11.4261 2.14908C11.4886 2.1474 11.5569 2.14538 11.6329 2.14336ZM11.5057 2.51321C11.5177 2.51254 11.5298 2.51186 11.542 2.51153C11.5299 2.5122 11.5135 2.51287 11.5042 2.51355C11.5039 2.51355 11.5037 2.51355 11.5034 2.51355C11.5042 2.51355 11.5049 2.51355 11.5057 2.51355V2.51321ZM11.6023 2.70032C11.5802 2.70133 11.5577 2.70234 11.536 2.70335C11.5576 2.70234 11.5797 2.70133 11.6023 2.70032ZM11.4458 2.15851C11.4448 2.15851 11.4438 2.15851 11.4429 2.15851C11.4459 2.15851 11.4491 2.15851 11.4524 2.15884C11.4506 2.15884 11.4485 2.15884 11.4466 2.15884C11.4469 2.15884 11.447 2.15884 11.4473 2.15884C11.4467 2.15884 11.4462 2.15884 11.4458 2.15884V2.15851ZM11.4405 2.15851C11.4369 2.15851 11.4331 2.15783 11.4297 2.15783C11.433 2.15783 11.4365 2.15851 11.4405 2.15851ZM11.4482 2.49975C11.4658 2.50412 11.4836 2.50883 11.5012 2.51321C11.4569 2.49706 11.4122 2.50008 11.3679 2.50278C11.3947 2.50177 11.4214 2.50076 11.4483 2.49975H11.4482ZM11.4109 2.50109C11.3838 2.5021 11.357 2.50311 11.3299 2.50412C11.3567 2.50311 11.3838 2.5021 11.4109 2.50109ZM11.0773 2.71412C11.069 2.71412 11.0612 2.71412 11.0541 2.71412C11.0648 2.71412 11.0777 2.71412 11.0897 2.71378C11.0767 2.71378 11.0649 2.71412 11.0541 2.71412C11.0612 2.71412 11.0692 2.71412 11.0773 2.71412ZM11.0483 2.68854C11.0504 2.68854 11.0526 2.6882 11.0547 2.68787C11.0526 2.68787 11.0504 2.6882 11.0483 2.68854ZM11.0359 2.51691C11.0628 2.51556 11.0898 2.51455 11.1169 2.51321C11.0897 2.51455 11.0628 2.51556 11.0359 2.51691ZM10.9337 2.52162C10.9591 2.52028 10.9847 2.51927 11.0101 2.51792C11.0099 2.51792 11.0096 2.51792 11.0092 2.51792C11.0306 2.51691 11.0522 2.5159 11.0739 2.51489C11.0272 2.51691 10.9803 2.51927 10.9336 2.52129L10.9337 2.52162ZM11.0056 2.69258C11.0043 2.69258 11.0028 2.69258 11.0015 2.69292C11.0028 2.69292 11.0043 2.69292 11.0056 2.69258ZM10.8427 2.71143C10.8805 2.70974 10.9217 2.7084 10.9665 2.70671C10.9243 2.7084 10.8802 2.70974 10.8427 2.71143ZM10.816 2.71243C10.8237 2.71243 10.8315 2.71176 10.8394 2.71143C10.8315 2.71143 10.8237 2.7121 10.816 2.71243ZM10.7425 2.7158C10.749 2.7158 10.7556 2.71513 10.7622 2.71479C10.7556 2.71479 10.749 2.71546 10.7425 2.7158ZM10.8149 2.0424C10.7957 2.04308 10.7768 2.04375 10.7578 2.04409C10.7768 2.04341 10.7958 2.04274 10.8149 2.0424ZM10.8631 2.64176C10.8704 2.64109 10.8776 2.64042 10.8843 2.63974C10.8774 2.64042 10.8704 2.64109 10.8631 2.64176ZM10.8835 2.69393C10.8825 2.69393 10.8814 2.69393 10.8802 2.69393C10.8813 2.69393 10.8823 2.69393 10.8835 2.69393ZM10.9076 2.63739C10.9062 2.63739 10.9048 2.63739 10.9034 2.63739C10.9047 2.63739 10.906 2.63739 10.9074 2.63739H10.9076ZM10.9035 2.63773C10.9035 2.63773 10.9039 2.63773 10.904 2.63773C10.9039 2.63773 10.9036 2.63773 10.9035 2.63773ZM10.8969 2.69325C10.9014 2.69325 10.9059 2.69292 10.9104 2.69258C10.904 2.69258 10.8977 2.69292 10.8915 2.69325C10.8933 2.69325 10.8952 2.69325 10.897 2.69325H10.8969ZM10.9051 2.52263C10.8811 2.52364 10.8574 2.52499 10.8336 2.526C10.8573 2.52499 10.8813 2.52364 10.9051 2.52263ZM10.8572 2.50345C10.8572 2.50345 10.8572 2.50345 10.8573 2.50345C10.857 2.50345 10.8568 2.50345 10.8566 2.50345C10.8568 2.50345 10.857 2.50345 10.8572 2.50345ZM10.7776 2.52903C10.7855 2.52869 10.7933 2.52835 10.8014 2.52802C10.7823 2.52903 10.7635 2.53004 10.7446 2.53071C10.7556 2.53004 10.7666 2.5297 10.7776 2.52903ZM10.7254 2.53172C10.7168 2.53205 10.708 2.53273 10.6993 2.53306C10.7079 2.53273 10.7167 2.53205 10.7254 2.53172ZM10.6232 2.04913C10.6232 2.04913 10.6236 2.04913 10.6237 2.04913C10.6236 2.04913 10.6233 2.04913 10.6232 2.04913ZM10.5748 2.05115C10.5885 2.05048 10.6021 2.05014 10.6159 2.04947C10.5935 2.05048 10.5712 2.05115 10.5493 2.05216C10.5577 2.05183 10.5663 2.05149 10.575 2.05115H10.5748ZM10.9035 2.63773C10.7994 2.64143 10.6956 2.64547 10.5916 2.64917C10.6955 2.64547 10.7993 2.64143 10.9035 2.63773ZM10.7205 2.71715C10.7253 2.71715 10.7302 2.71681 10.7351 2.71647C10.7302 2.71647 10.7253 2.71681 10.7205 2.71715ZM10.7807 2.71445C10.7758 2.71445 10.7708 2.71479 10.766 2.71513C10.7708 2.71513 10.7758 2.71479 10.7807 2.71445ZM10.705 2.71816C10.7031 2.71816 10.7012 2.71816 10.6992 2.71816C10.701 2.71816 10.703 2.71816 10.705 2.71816ZM10.6871 2.71917C10.6841 2.71917 10.6809 2.71917 10.6778 2.7195C10.6809 2.7195 10.6839 2.7195 10.6871 2.71917ZM11.0483 2.68888C11.0457 2.68888 11.0434 2.68921 11.0408 2.68955C11.0434 2.68955 11.0457 2.68921 11.0483 2.68888ZM11.1465 2.5122C11.1723 2.51119 11.1984 2.50984 11.2243 2.50883C11.1992 2.50984 11.1746 2.51085 11.1498 2.5122C11.1602 2.51186 11.1704 2.51119 11.1807 2.51085C11.1692 2.51119 11.1578 2.51186 11.1464 2.5122H11.1465ZM11.2342 2.71075C11.2416 2.71075 11.249 2.71042 11.2568 2.71008C11.2334 2.71075 11.2115 2.71143 11.1913 2.71176C11.2048 2.71143 11.2194 2.71109 11.2342 2.71075ZM11.2256 2.50883C11.2244 2.50883 11.2232 2.50883 11.2219 2.50883C11.2261 2.50883 11.2306 2.5085 11.2349 2.50816C11.2317 2.50816 11.2286 2.50816 11.2254 2.5085L11.2256 2.50883ZM11.2801 2.50648C11.2838 2.50648 11.2877 2.50648 11.2914 2.50614C11.2894 2.50614 11.2874 2.50614 11.2854 2.50614C11.3016 2.50547 11.3178 2.5048 11.334 2.50412C11.309 2.50513 11.2842 2.50614 11.2595 2.50715C11.2664 2.50715 11.2733 2.50648 11.2801 2.50614V2.50648ZM11.302 2.47653C11.302 2.47653 11.3023 2.47653 11.3025 2.47653C11.3024 2.47653 11.3023 2.47653 11.302 2.47653ZM11.167 1.52145C11.2257 1.51742 11.2845 1.51304 11.3432 1.509C11.2838 1.51304 11.2245 1.51742 11.1652 1.52145C11.1659 1.52145 11.1664 1.52145 11.167 1.52145ZM10.8826 2.01212C10.8793 2.01212 10.876 2.01245 10.8727 2.01279C10.876 2.01279 10.8793 2.01245 10.8826 2.01212ZM10.8035 2.01649C10.806 2.01649 10.8086 2.01649 10.8109 2.01615C10.8084 2.01615 10.806 2.01615 10.8035 2.01649C10.8099 2.01649 10.8162 2.01582 10.8226 2.01548C10.7977 2.01683 10.7744 2.01784 10.7483 2.01918C10.7676 2.01817 10.7858 2.0175 10.8035 2.01649C10.7306 2.01986 10.6502 2.02389 10.5118 2.03062C10.6502 2.02389 10.7306 2.02019 10.8035 2.01649ZM10.4587 2.03298C10.4766 2.03197 10.4936 2.0313 10.5099 2.03062C10.4727 2.03231 10.4314 2.03433 10.3848 2.03668C10.411 2.03534 10.4355 2.03433 10.4587 2.03332V2.03298ZM10.4942 2.05418C10.4762 2.05485 10.458 2.05586 10.44 2.05654C10.4579 2.05586 10.4762 2.05485 10.4942 2.05418ZM10.2041 2.52499C10.2041 2.52499 10.2048 2.52499 10.2051 2.52499C10.2036 2.52499 10.2019 2.52499 10.2002 2.52499C10.2008 2.52499 10.2018 2.52499 10.2023 2.52499C10.2022 2.52499 10.2019 2.52499 10.2018 2.52499C10.2026 2.52499 10.2034 2.52499 10.2041 2.52499ZM10.0439 2.71412C10.0366 2.71445 10.0293 2.71479 10.0222 2.71546C10.0295 2.71513 10.0368 2.71479 10.0439 2.71412ZM10.0148 2.7158C10.0104 2.7158 10.0059 2.71614 10.0015 2.71647C10.0059 2.71647 10.0104 2.71614 10.0148 2.7158ZM9.91664 2.67441C9.94101 2.6734 9.96524 2.67239 9.98961 2.67171C9.96524 2.67272 9.94101 2.67373 9.91664 2.67441ZM9.9622 2.71883C9.95611 2.71883 9.95015 2.7195 9.94406 2.71984C9.95015 2.71984 9.95624 2.71917 9.9622 2.71883ZM9.93929 2.72018C9.93161 2.72051 9.92393 2.72085 9.91624 2.72152C9.92393 2.72118 9.93161 2.72085 9.93929 2.72018ZM9.99226 2.71748C9.98498 2.71782 9.97756 2.71816 9.97028 2.71883C9.97769 2.71849 9.98498 2.71816 9.99226 2.71748ZM9.59656 2.54552C9.59775 2.54552 9.59894 2.54552 9.60013 2.54552C9.59894 2.54552 9.59788 2.54552 9.59656 2.54552ZM9.55537 2.54686C9.55431 2.54686 9.55325 2.54686 9.55219 2.54686C9.56703 2.54653 9.58186 2.54585 9.59643 2.54552C9.58292 2.54552 9.56915 2.54619 9.55537 2.54686ZM9.64609 2.68518C9.65642 2.68484 9.66688 2.6845 9.67721 2.68383C9.66688 2.68417 9.65642 2.6845 9.64609 2.68518ZM9.81533 2.72657C9.82116 2.72657 9.82699 2.7259 9.83281 2.72556C9.82699 2.72556 9.82116 2.72623 9.81533 2.72657ZM9.84884 2.73431C9.84712 2.73431 9.8454 2.73431 9.84354 2.73465C9.84526 2.73465 9.84698 2.73465 9.84884 2.73431ZM9.83401 2.72556C9.84195 2.72522 9.8499 2.72489 9.85771 2.72421C9.84976 2.72455 9.84195 2.72489 9.83401 2.72556ZM9.89002 2.72253C9.89281 2.72253 9.89545 2.72253 9.89823 2.72219C9.89545 2.72219 9.89281 2.72219 9.89002 2.72253ZM9.89439 2.67542C9.82288 2.67811 9.75163 2.6808 9.68039 2.68383C9.75839 2.6808 9.83639 2.67777 9.91466 2.67474C9.9079 2.67474 9.90115 2.67542 9.89439 2.67542ZM10.1683 2.17836C10.1643 2.1787 10.1582 2.17937 10.1499 2.18038C10.1582 2.17971 10.1644 2.17903 10.1684 2.17836H10.1683ZM9.56199 2.07168C9.5665 2.07168 9.571 2.07168 9.5755 2.07168C9.57087 2.07168 9.5665 2.07168 9.56199 2.07168ZM9.56213 2.07168C9.54412 2.07168 9.52611 2.07202 9.50849 2.07235C9.52624 2.07235 9.54425 2.07202 9.56213 2.07168ZM9.48863 2.10197C9.48585 2.10197 9.4824 2.10264 9.47909 2.10298C9.48254 2.10298 9.48571 2.10231 9.48863 2.10197ZM9.47658 2.10298C9.473 2.10332 9.46956 2.10365 9.46572 2.10399C9.46956 2.10399 9.47313 2.10332 9.47658 2.10298ZM9.2925 2.11408C9.28906 2.11408 9.28548 2.11442 9.28191 2.11476C9.28469 2.11476 9.28747 2.11476 9.29012 2.11442C9.28773 2.11442 9.28535 2.11442 9.28296 2.11476C9.29859 2.11408 9.31356 2.11307 9.32786 2.1124C9.31647 2.11307 9.30468 2.11375 9.2925 2.11408ZM9.37341 2.07437C9.36865 2.07437 9.36388 2.07437 9.35911 2.07471C9.36587 2.07471 9.37275 2.07471 9.37964 2.07437C9.37752 2.07437 9.37553 2.07437 9.37341 2.07437ZM9.38374 2.07437C9.39328 2.07437 9.40281 2.07404 9.41235 2.0737C9.40109 2.0737 9.38997 2.07404 9.37898 2.07437C9.38056 2.07437 9.38216 2.07437 9.38374 2.07437ZM9.32799 2.11274C9.33408 2.11274 9.33991 2.11206 9.3456 2.11173C9.33978 2.11173 9.33395 2.1124 9.32799 2.11274ZM9.15186 1.60996C9.15822 1.60996 9.16444 1.60963 9.1708 1.60929C9.16418 1.60929 9.15742 1.60962 9.1508 1.60996C9.1512 1.60996 9.15159 1.60996 9.15186 1.60996ZM9.10829 2.12317C9.10829 2.12317 9.10922 2.12317 9.10961 2.12317C9.10869 2.12317 9.10789 2.12317 9.10697 2.12317C9.10736 2.12317 9.10789 2.12317 9.10829 2.12317ZM9.79693 2.21807C9.52319 2.22649 9.24972 2.23557 8.97612 2.24567C9.24946 2.23523 9.52319 2.22649 9.79693 2.21807ZM9.53445 2.70772L9.52703 2.7084C9.52955 2.7084 9.53193 2.70806 9.53445 2.70772ZM8.96844 2.12923C8.95282 2.1299 8.93693 2.13057 8.92103 2.13158C8.93679 2.13091 8.95268 2.1299 8.96844 2.12923ZM8.90965 2.79085C8.90448 2.7895 8.89945 2.78849 8.89428 2.78714C8.90263 2.78916 8.91084 2.79118 8.91918 2.7932C8.916 2.79253 8.91282 2.79152 8.90965 2.79085ZM8.93706 2.79758C8.93865 2.79791 8.9401 2.79825 8.94169 2.79859C8.93295 2.79657 8.92421 2.79421 8.91547 2.79219C8.92262 2.79388 8.9299 2.79556 8.93706 2.79758ZM8.79297 2.09591C8.82039 2.09423 8.8482 2.09288 8.87654 2.0912C8.83376 2.09322 8.79258 2.09557 8.75046 2.0986C8.7645 2.09759 8.77854 2.09692 8.79284 2.09591H8.79297ZM8.15585 1.66549C8.31993 1.65472 8.48415 1.64462 8.64823 1.63419C8.40879 1.64934 8.16896 1.66448 7.92966 1.68097C8.00515 1.67626 8.0801 1.67087 8.15585 1.66583V1.66549ZM8.48746 2.11577C8.45541 2.11779 8.42376 2.11981 8.39184 2.12182C8.4178 2.12014 8.44415 2.11846 8.47077 2.11678C8.46667 2.11678 8.46256 2.11745 8.45846 2.11745C8.46812 2.11678 8.47779 2.1161 8.48746 2.11577ZM8.53248 2.63907C8.53248 2.63907 8.53142 2.63907 8.53089 2.63907C8.53142 2.63907 8.53195 2.63907 8.53248 2.63907ZM8.5297 2.63907C8.51514 2.64008 8.50043 2.64109 8.48348 2.64176C8.5003 2.64075 8.51514 2.64008 8.52957 2.63907H8.5297ZM8.47739 2.6421C8.48176 2.6421 8.48574 2.64176 8.48971 2.64143C8.48574 2.64143 8.48163 2.64176 8.47739 2.6421ZM8.48216 2.15447C8.48825 2.15413 8.49434 2.15379 8.50044 2.15346C8.47753 2.1548 8.45514 2.15615 8.43303 2.15716C8.44918 2.15615 8.46547 2.15514 8.48203 2.15447H8.48216ZM8.41634 2.15817C8.41078 2.15817 8.40495 2.15884 8.39939 2.15918C8.41912 2.15817 8.43939 2.15682 8.45991 2.15581C8.44521 2.15682 8.43078 2.1575 8.41634 2.15817ZM8.44786 2.13125C8.44892 2.13125 8.44998 2.13125 8.45091 2.13125C8.42919 2.13259 8.40747 2.13394 8.38575 2.13529C8.40641 2.13394 8.42707 2.13259 8.44773 2.13125H8.44786ZM8.45567 2.64311C8.42177 2.64479 8.37489 2.64681 8.33477 2.64883C8.38006 2.64681 8.42164 2.64479 8.45567 2.64311ZM8.44746 2.76561C8.44746 2.76561 8.44839 2.76561 8.44866 2.76561C8.44852 2.76561 8.44839 2.76561 8.44826 2.76561C8.44919 2.76561 8.45011 2.76561 8.45091 2.76561C8.45024 2.76561 8.44945 2.76561 8.44866 2.76561C8.44945 2.76561 8.45011 2.76561 8.45091 2.76561C8.44985 2.76561 8.44879 2.76561 8.44746 2.76561ZM8.57446 2.14908C8.59618 2.14807 8.61817 2.14673 8.64015 2.14572C8.61817 2.14673 8.59631 2.14807 8.57446 2.14908ZM8.17943 2.16086C8.17837 2.16086 8.17731 2.16086 8.17598 2.16086C8.17717 2.16086 8.17837 2.16086 8.17943 2.16086ZM7.83365 2.16961C7.96701 2.1612 8.09109 2.15346 8.21134 2.14605C8.09096 2.15346 7.96701 2.16153 7.83365 2.16961ZM8.08897 2.17634C8.08739 2.17634 8.0854 2.17668 8.08368 2.17702C8.08553 2.17702 8.08739 2.17668 8.08897 2.17634ZM8.07944 2.17735C8.07984 2.17735 8.0801 2.17735 8.0805 2.17735C8.08023 2.17735 8.07984 2.17735 8.07957 2.17735H8.07944ZM8.04766 2.17163C8.04964 2.17163 8.05176 2.17163 8.05375 2.17163C8.05176 2.17163 8.04978 2.17163 8.04766 2.17163ZM7.99018 2.17197C7.9678 2.17197 7.94529 2.1723 7.92344 2.17264C7.94476 2.17264 7.9678 2.1723 7.99018 2.17197ZM7.65513 1.69712C7.66864 1.56857 7.89748 1.60727 7.9286 1.6803C7.89457 1.60458 7.67076 1.57193 7.65302 1.69712C7.65368 1.69712 7.65447 1.69712 7.65513 1.69712ZM7.33373 1.66482C7.33744 1.66482 7.34114 1.66414 7.34485 1.66414C7.31611 1.66616 7.28671 1.66852 7.25957 1.67054C7.2834 1.66885 7.3083 1.66684 7.33373 1.66515V1.66482ZM7.22686 2.15548C7.21918 2.15581 7.2111 2.15649 7.20315 2.15682C7.21123 2.15649 7.21918 2.15581 7.22686 2.15548ZM7.14554 1.65169C7.14965 1.69006 7.13561 1.67861 7.12581 1.68097C7.13574 1.67861 7.14965 1.69006 7.14554 1.65169ZM7.12528 1.6527C7.12528 1.66212 7.12541 1.67155 7.12541 1.68131C7.12541 1.67188 7.12528 1.66246 7.12528 1.6527ZM7.07615 2.1262C7.08436 2.12586 7.09257 2.12553 7.10091 2.12519C7.09244 2.12553 7.08436 2.12586 7.07615 2.1262ZM7.07257 2.16221C7.07257 2.16221 7.07205 2.16221 7.07191 2.16221C7.07205 2.16221 7.07231 2.16221 7.07257 2.16221ZM7.07284 2.16221C7.07496 2.16254 7.0784 2.16322 7.0837 2.16355C7.0784 2.16322 7.07496 2.16288 7.07284 2.16221ZM7.03722 1.65674C7.05735 1.65573 7.07747 1.65472 7.09747 1.65405C7.07734 1.65506 7.05721 1.65607 7.03722 1.65674ZM7.0641 2.12687C7.05615 2.12721 7.04821 2.12755 7.04066 2.12788C7.04847 2.12755 7.05629 2.12721 7.0641 2.12687ZM7.00557 1.65842C7.00557 1.67054 7.0057 1.68265 7.00583 1.69477C7.00583 1.68265 7.0057 1.67054 7.00557 1.65842ZM7.04463 2.19721C7.0098 2.19687 6.97511 2.1962 6.94028 2.19586C6.97497 2.1962 7.00967 2.19687 7.0445 2.19721H7.04463ZM6.95577 1.66078C6.96464 1.66044 6.97365 1.65977 6.98252 1.65943C6.97365 1.65977 6.96464 1.6601 6.95577 1.66078ZM6.95802 2.13192C6.94994 2.13226 6.942 2.13259 6.93432 2.13327C6.942 2.13293 6.94981 2.13259 6.95789 2.13192H6.95802ZM6.9024 2.13495C6.9024 2.13495 6.90174 2.13495 6.90134 2.13495C6.90161 2.13495 6.90201 2.13495 6.90227 2.13495H6.9024ZM6.74944 2.22749C6.49147 2.23725 6.23363 2.24668 5.97566 2.2561C5.98095 2.2561 5.98625 2.25576 5.99168 2.25543C5.97764 2.25576 5.96347 2.25644 5.94944 2.25711C6.21615 2.24769 6.48286 2.23793 6.74944 2.22783V2.22749ZM6.70203 2.23221C6.6978 2.23221 6.69356 2.23221 6.68945 2.23221C6.69369 2.23221 6.6978 2.23221 6.70203 2.23221ZM6.18847 2.73936C6.34659 2.73263 6.50577 2.72556 6.66535 2.71782C6.50591 2.72556 6.34659 2.73263 6.18847 2.73936ZM6.6247 2.87633C6.62218 2.87666 6.61966 2.87733 6.61688 2.87767C6.61966 2.87733 6.62231 2.87666 6.6247 2.87633ZM6.55252 2.79556C6.55424 2.79556 6.55596 2.79556 6.55769 2.79556C6.55385 2.79556 6.54987 2.79556 6.54603 2.79556C6.54815 2.79556 6.5504 2.79556 6.55252 2.79556ZM6.57503 2.79522C6.57755 2.79522 6.5802 2.79522 6.58258 2.79522C6.57782 2.79522 6.57278 2.79522 6.56775 2.79522C6.57013 2.79522 6.57252 2.79522 6.5749 2.79522H6.57503ZM6.50365 2.7969C6.49597 2.7969 6.48829 2.79758 6.48035 2.79758C6.48816 2.79758 6.49597 2.7969 6.50365 2.7969ZM6.46035 2.80229C6.45624 2.80263 6.45201 2.80296 6.44777 2.8033C6.45201 2.80296 6.45638 2.80263 6.46035 2.80229ZM6.38844 2.90325C6.38844 2.90325 6.38738 2.90325 6.38685 2.90325C6.38738 2.90325 6.38791 2.90325 6.38844 2.90325ZM6.35719 2.9056C6.35494 2.9056 6.35268 2.9056 6.3503 2.90594C6.35401 2.90594 6.35785 2.90527 6.36156 2.90527C6.35997 2.90527 6.35838 2.90527 6.35679 2.9056C6.35679 2.9056 6.35705 2.9056 6.35719 2.9056ZM6.34209 2.81104C6.3548 2.81037 6.36699 2.80936 6.37838 2.80868C6.36699 2.80969 6.3548 2.81037 6.34209 2.81104ZM6.36182 2.90527C6.36964 2.90459 6.37718 2.90426 6.38447 2.90358C6.37679 2.90426 6.36884 2.90459 6.36076 2.90527C6.36116 2.90527 6.36143 2.90527 6.36182 2.90527ZM6.34103 2.90661C6.33918 2.90661 6.33732 2.90661 6.33547 2.90695C6.33732 2.90695 6.33918 2.90695 6.34103 2.90661ZM5.27259 2.73397C5.31231 2.73263 5.35178 2.73128 5.39058 2.73027C5.35191 2.73162 5.31231 2.73263 5.27259 2.73397ZM5.35284 2.9157C5.34767 2.9157 5.34251 2.91604 5.33721 2.91637C5.34251 2.91637 5.34767 2.91604 5.35284 2.9157ZM5.28702 2.91334C5.27656 2.91402 5.2661 2.91469 5.2555 2.91503C5.26596 2.91435 5.27643 2.91402 5.28702 2.91334ZM4.83742 2.75248C4.82616 2.75316 4.81504 2.75383 4.80418 2.7545C4.81517 2.75383 4.8263 2.75316 4.83742 2.75248ZM4.79147 2.28807C4.81967 2.28773 4.85371 2.28706 4.89436 2.28605C4.85411 2.28706 4.82537 2.2874 4.79147 2.28807ZM4.7916 2.75719C4.78485 2.75787 4.7773 2.75854 4.76909 2.75921C4.7773 2.75854 4.78471 2.75787 4.7916 2.75719ZM5.00945 2.28336C4.98548 2.28403 4.9631 2.28437 4.94217 2.28504C4.9631 2.2847 4.98548 2.28403 5.00945 2.28336ZM4.98481 2.28269C4.98481 2.28269 4.98574 2.28269 4.98627 2.28269C4.98587 2.28269 4.98534 2.28269 4.98481 2.28269ZM5.78204 2.1723C5.78721 2.1723 5.79237 2.17197 5.79727 2.17163C5.66047 2.17802 5.40766 2.19115 5.14519 2.20528C5.39826 2.19182 5.64233 2.17903 5.78204 2.1723ZM5.91275 2.21504C5.91341 2.21504 5.91421 2.21504 5.91487 2.21504C5.91235 2.21504 5.90931 2.21504 5.9064 2.21504C5.90918 2.21504 5.91196 2.21504 5.91461 2.21504C5.91394 2.21504 5.91328 2.21504 5.91262 2.21504H5.91275ZM6.03459 2.87902C6.04333 2.87868 6.05194 2.87834 6.06081 2.87767C6.05194 2.87801 6.0432 2.87834 6.03459 2.87902ZM6.00956 2.88036C6.01565 2.88036 6.02174 2.87969 6.02797 2.87935C6.01962 2.87969 6.01141 2.88003 6.00333 2.8807C6.00545 2.8807 6.00744 2.8807 6.00956 2.8807V2.88036ZM5.98426 2.88171C5.98718 2.88171 5.99022 2.88171 5.99314 2.88137C5.98546 2.88171 5.97791 2.88205 5.97036 2.88238C5.97499 2.88238 5.97963 2.88205 5.98413 2.88171H5.98426ZM5.8913 2.21538C5.89037 2.21538 5.88931 2.21538 5.88839 2.21538C5.88997 2.21538 5.8917 2.21538 5.89328 2.21538C5.89262 2.21538 5.89209 2.21538 5.89143 2.21538H5.8913ZM5.52222 2.9083C5.61439 2.90358 5.7051 2.89786 5.79568 2.89248C5.70484 2.89786 5.61889 2.90325 5.52222 2.9083ZM5.60287 2.92176C5.60128 2.92176 5.59942 2.92176 5.5977 2.92176C5.59942 2.92176 5.60114 2.92176 5.60287 2.92176ZM5.43931 2.91267C5.43931 2.91267 5.43971 2.91267 5.43984 2.91267C5.43945 2.91267 5.43905 2.91267 5.43852 2.91267C5.43879 2.91267 5.43905 2.91267 5.43918 2.91267H5.43931ZM5.44011 2.91267C5.44011 2.91267 5.43984 2.91267 5.43971 2.91267C5.44196 2.91267 5.44421 2.91267 5.44647 2.91267C5.44435 2.91267 5.44223 2.91267 5.43998 2.91267H5.44011ZM5.44806 2.91233C5.45825 2.912 5.46818 2.91132 5.47812 2.91099C5.46686 2.91166 5.45547 2.912 5.44395 2.91267C5.44541 2.91267 5.44673 2.91267 5.44819 2.91267L5.44806 2.91233ZM5.49414 2.21639C5.50328 2.21572 5.51228 2.21538 5.52182 2.21471C5.51215 2.21504 5.50275 2.21572 5.49348 2.21639C5.49374 2.21639 5.49401 2.21639 5.49427 2.21639H5.49414ZM5.46156 2.38163C5.46302 2.38163 5.46434 2.38163 5.4658 2.38163C5.46395 2.38163 5.46209 2.38163 5.46024 2.38196C5.46064 2.38196 5.46117 2.38196 5.46156 2.38196V2.38163ZM5.66339 2.36749C5.66484 2.36749 5.66617 2.36715 5.66762 2.36682C5.66617 2.36682 5.66484 2.36715 5.66339 2.36749ZM5.66127 2.36783C5.65597 2.36884 5.65054 2.36951 5.64524 2.37052C5.65094 2.36951 5.65676 2.3685 5.66246 2.36749C5.66206 2.36749 5.66166 2.36749 5.66127 2.36749V2.36783ZM5.76456 2.84907C5.7696 2.84873 5.77529 2.84806 5.78151 2.84772C5.77529 2.84839 5.76973 2.84873 5.76456 2.84907ZM5.82455 2.89147C5.82071 2.89147 5.81687 2.89181 5.8129 2.89214C5.81674 2.89214 5.82058 2.89181 5.82455 2.89147ZM5.8472 2.71479C5.8472 2.71479 5.84733 2.71479 5.84746 2.71479H5.8472ZM5.70139 2.71816C5.6961 2.71816 5.69106 2.71816 5.6863 2.71816C5.72457 2.71748 5.77661 2.71647 5.84508 2.71479C5.78522 2.71647 5.73794 2.71748 5.70139 2.71782V2.71816ZM5.71834 2.22447C5.71993 2.22447 5.72192 2.22379 5.7243 2.22379C5.72205 2.22379 5.72007 2.22447 5.71834 2.22447ZM5.74377 2.22211C5.74655 2.22211 5.74933 2.22177 5.75238 2.22144C5.74947 2.22144 5.74655 2.22177 5.74377 2.22211ZM5.34569 2.39004C5.34317 2.39004 5.34052 2.39038 5.33814 2.39071C5.34065 2.39071 5.34317 2.39038 5.34569 2.39004ZM5.38979 2.73195C5.35165 2.73296 5.31284 2.73431 5.27364 2.73566C5.31271 2.73431 5.35165 2.73296 5.38979 2.73195ZM5.16969 2.23523C5.17724 2.23523 5.18465 2.23456 5.19207 2.23423C5.18465 2.23423 5.17697 2.2349 5.16916 2.23523C5.16929 2.23523 5.16955 2.23523 5.16969 2.23523ZM5.12704 2.23658C5.10824 2.23725 5.08838 2.23759 5.06745 2.23793C5.08851 2.23759 5.10824 2.23725 5.12704 2.23658ZM5.00931 2.2847C5.00931 2.2847 5.00918 2.2847 5.00905 2.2847C5.00905 2.2847 5.00918 2.2847 5.00931 2.2847ZM5.0354 2.23826C5.04507 2.23826 5.05447 2.23826 5.06361 2.23793C5.05447 2.23793 5.04507 2.23793 5.0354 2.23826ZM5.00402 2.2386C5.00256 2.2386 5.00124 2.2386 4.99978 2.2386C5.00945 2.2386 5.01872 2.2386 5.02785 2.2386C5.02004 2.2386 5.01223 2.2386 5.00402 2.2386ZM4.91608 2.28706C4.93237 2.28672 4.94773 2.28639 4.96495 2.28605C4.93648 2.28672 4.91065 2.2874 4.88708 2.28773C4.89172 2.28773 4.89648 2.28773 4.90112 2.28773C4.90072 2.28773 4.90019 2.28773 4.89979 2.28773C4.90364 2.28773 4.90774 2.28773 4.91171 2.28773C4.90986 2.28773 4.90787 2.28773 4.90602 2.28773C4.90933 2.28773 4.91264 2.28773 4.91595 2.28773L4.91608 2.28706ZM5.18955 2.38196C5.15684 2.38297 5.12373 2.38398 5.09063 2.38465C5.12387 2.38364 5.15684 2.38297 5.18955 2.38196ZM6.19615 2.92849C5.93964 2.9406 5.67703 2.95272 5.42846 2.96281C5.67703 2.95272 5.93977 2.94094 6.19615 2.92849ZM6.14397 2.87262C6.1457 2.87262 6.14742 2.87262 6.14914 2.87262C6.14742 2.87262 6.14583 2.87262 6.14397 2.87262ZM6.267 2.88306C6.25628 2.88306 6.24568 2.88339 6.23522 2.88373C6.2433 2.88373 6.25151 2.88339 6.25972 2.88306C6.23389 2.88373 6.209 2.88407 6.18596 2.88474C6.2135 2.88407 6.24555 2.88339 6.27548 2.88272C6.2727 2.88272 6.26978 2.88272 6.267 2.88272V2.88306ZM6.25932 2.91402C6.25707 2.91402 6.25469 2.91402 6.25244 2.91435C6.25469 2.91435 6.25707 2.91435 6.25932 2.91402ZM6.23005 2.9157C6.22648 2.9157 6.22277 2.91604 6.21906 2.91637C6.22277 2.91637 6.22635 2.91604 6.23005 2.9157ZM6.19867 2.91738C6.19456 2.91738 6.19059 2.91772 6.18648 2.91806C6.19059 2.91806 6.1947 2.91772 6.19867 2.91738ZM6.29269 2.92411C6.29269 2.92411 6.29336 2.92411 6.29362 2.92411C6.0077 2.93791 5.71066 2.95171 5.43137 2.96281C5.7104 2.95137 6.00704 2.93791 6.29269 2.92411ZM6.28528 2.91267C6.28634 2.91267 6.2874 2.91267 6.28832 2.91267C6.28726 2.91267 6.2862 2.91267 6.28528 2.91267ZM6.30051 2.91166C6.30342 2.91166 6.30647 2.91132 6.30938 2.91099C6.30448 2.91099 6.29945 2.91166 6.29442 2.912C6.2964 2.912 6.29852 2.912 6.30051 2.91166ZM6.3119 2.86455C6.31772 2.86421 6.32368 2.86354 6.32938 2.8632C6.32355 2.86354 6.31772 2.86421 6.3119 2.86455ZM6.32223 2.91031C6.32633 2.91031 6.33044 2.90964 6.33454 2.90964C6.32898 2.90998 6.32315 2.91031 6.31746 2.91065C6.31905 2.91065 6.32064 2.91065 6.32223 2.91065V2.91031ZM5.95301 2.75147C5.95301 2.75147 5.95222 2.75147 5.95182 2.75147C6.02519 2.74844 6.09908 2.74541 6.17311 2.74239C6.09948 2.74541 6.02598 2.74844 5.95301 2.75147ZM6.30223 2.6808C6.30223 2.6808 6.3017 2.68114 6.3013 2.68147C6.3017 2.68147 6.3021 2.68114 6.30223 2.6808ZM6.55769 1.67424C6.55769 1.67424 6.55835 1.67424 6.55861 1.67424C6.54405 1.67458 6.52948 1.67491 6.51491 1.67525C6.52908 1.67491 6.54338 1.67458 6.55769 1.67424ZM5.85514 1.69982C5.95738 1.69409 6.05167 1.68972 6.14172 1.68602C5.8909 1.69645 5.78284 1.70318 5.46289 1.719C5.6418 1.70991 5.78827 1.70251 5.85514 1.69948V1.69982ZM5.09818 2.20966C5.0791 2.21067 5.06017 2.21168 5.0411 2.21269C5.06004 2.21168 5.0791 2.21067 5.09818 2.20966ZM4.70433 2.25543C4.82683 2.24802 4.94932 2.24028 5.07182 2.23254C4.94932 2.24028 4.82683 2.24769 4.70433 2.25543C4.70433 2.25543 4.70393 2.25543 4.7038 2.25543C4.70393 2.25543 4.7042 2.25543 4.70433 2.25543ZM4.74671 2.76056C4.74671 2.76056 4.74551 2.76056 4.74498 2.76056C4.74565 2.76056 4.74618 2.76056 4.74671 2.76056ZM4.74207 2.76325C4.74207 2.76325 4.74167 2.76325 4.74141 2.76325C4.74167 2.76325 4.74181 2.76325 4.74207 2.76325ZM4.69175 2.25408C4.69175 2.25408 4.69267 2.25408 4.6932 2.25408C4.69241 2.25408 4.69161 2.25408 4.69069 2.25408C4.69095 2.25408 4.69135 2.25408 4.69161 2.25408H4.69175ZM4.7034 2.76628C4.69943 2.76628 4.69546 2.76695 4.69148 2.76695C4.69559 2.76695 4.69956 2.76628 4.7034 2.76628ZM4.69281 2.28201C4.69042 2.28269 4.68817 2.28302 4.68566 2.28336C4.68817 2.28302 4.69056 2.28235 4.69281 2.28201ZM4.67175 2.28639C4.67029 2.28639 4.66897 2.28706 4.66764 2.2874C4.66884 2.2874 4.67029 2.28672 4.67175 2.28639ZM4.61494 2.23658C4.60196 2.23725 4.58925 2.23793 4.5764 2.23894C4.58898 2.23826 4.60183 2.23759 4.61494 2.23658ZM4.489 2.28201C4.4935 2.28336 4.49747 2.27865 4.50145 2.27394C4.49747 2.27898 4.4935 2.28336 4.489 2.28201ZM4.47787 2.24466C4.47787 2.24466 4.47814 2.24466 4.47827 2.24466C4.47814 2.24466 4.478 2.24466 4.47774 2.24466H4.47787ZM4.44702 2.2847C4.44768 2.2847 4.44834 2.2847 4.44914 2.2847C4.44834 2.2847 4.44768 2.2847 4.44688 2.2847H4.44702ZM4.44622 2.2847C4.44622 2.2847 4.44649 2.2847 4.44662 2.2847C4.44503 2.2847 4.44331 2.2847 4.44172 2.2847C4.44318 2.2847 4.44463 2.2847 4.44622 2.2847ZM4.44066 2.80801C4.38438 2.81003 4.32915 2.81205 4.2734 2.81373C4.32915 2.81171 4.38438 2.81003 4.44066 2.80801ZM4.34015 2.99579C4.33498 2.99579 4.32995 2.99613 4.32478 2.99647C4.32955 2.99647 4.33432 2.99613 4.33909 2.99579C4.33948 2.99579 4.33988 2.99579 4.34015 2.99579ZM4.34571 2.99579C4.34399 2.99579 4.34213 2.99579 4.34028 2.99579C4.35193 2.99512 4.36359 2.99478 4.37537 2.99411C4.36544 2.99445 4.35551 2.99512 4.34558 2.99546L4.34571 2.99579ZM4.28227 1.78866C4.28227 1.78866 4.28267 1.78866 4.2828 1.78866C4.26598 1.789 4.2489 1.78933 4.23195 1.79001C4.24877 1.78967 4.26572 1.78933 4.28227 1.78866ZM4.15329 2.97964C4.19606 2.97762 4.23619 2.9756 4.27247 2.97426C4.23605 2.9756 4.19619 2.97728 4.15329 2.97964ZM4.0288 2.98603C4.02337 2.98603 4.01794 2.98671 4.01251 2.98704C4.01794 2.98704 4.02337 2.98637 4.0288 2.98603ZM4.16044 2.44523C4.16216 2.44523 4.16415 2.44523 4.16573 2.44523C4.16335 2.44523 4.1607 2.44523 4.15805 2.44523C4.15885 2.44523 4.15964 2.44523 4.16044 2.44523ZM4.21513 1.79034C4.21513 1.79034 4.21513 1.78731 4.21513 1.78563C4.21513 1.78731 4.21513 1.78866 4.21513 1.79034ZM4.21778 2.24701C4.18242 2.24937 4.15315 2.25139 4.12852 2.25341C4.13938 2.25273 4.1509 2.25172 4.16388 2.25072C4.14839 2.25172 4.13501 2.25273 4.12203 2.25374C4.1223 2.25374 4.12256 2.25374 4.12283 2.25374C4.1219 2.25374 4.12084 2.25374 4.12005 2.25374C4.14825 2.25172 4.17805 2.24937 4.21778 2.24701ZM4.02536 2.44355C4.04019 2.44355 4.05423 2.44355 4.06734 2.44388C4.04959 2.44388 4.0292 2.44287 4.01026 2.44456C4.01516 2.44456 4.02046 2.44388 4.02523 2.44355H4.02536ZM4.02284 2.78142C4.01874 2.78142 4.01477 2.78142 4.01066 2.7821C4.01477 2.7821 4.01874 2.78176 4.02284 2.78142ZM3.91981 2.26283C3.90829 2.26384 3.89876 2.26451 3.89068 2.26552C3.89889 2.26451 3.90842 2.26384 3.91981 2.26283ZM4.05675 2.96517C3.92299 2.97257 3.78924 2.98166 3.65548 2.99041C3.78924 2.98166 3.92299 2.97291 4.05675 2.96517ZM4.00126 2.99243C3.99662 2.99243 3.99225 2.99243 3.98722 2.99276C3.99238 2.99276 3.99715 2.99276 4.00126 2.99243ZM3.97609 2.9931C3.97609 2.9931 3.9753 2.9931 3.9749 2.9931C3.9753 2.9931 3.9757 2.9931 3.97609 2.9931ZM3.7352 2.30826C3.7254 2.30826 3.71521 2.30893 3.70488 2.30927C3.71508 2.30893 3.72527 2.3086 3.7352 2.30826ZM3.6964 2.30961C3.68634 2.30994 3.67601 2.31028 3.66541 2.31062C3.67601 2.31028 3.68607 2.30994 3.6964 2.30961ZM3.6037 2.27326C3.6037 2.27326 3.6037 2.27326 3.60383 2.27326C3.60357 2.27326 3.60317 2.27326 3.60291 2.27326C3.60317 2.27326 3.60344 2.27326 3.6037 2.27326ZM3.60238 1.80212C3.60238 1.80212 3.60238 1.80448 3.60238 1.80582C3.60238 1.80448 3.60238 1.80347 3.60238 1.80212ZM3.05915 1.8526C3.18602 1.83712 3.35089 1.78126 3.51113 1.8038C3.34666 1.77957 3.1835 1.8425 3.05134 1.85125C3.05412 1.85159 3.05663 1.85226 3.05915 1.8526ZM3.36241 2.44557C3.38493 2.44355 3.40744 2.44119 3.42982 2.43917C3.40731 2.44119 3.3848 2.44355 3.36241 2.44557ZM3.3652 2.44557C3.36427 2.44557 3.36334 2.44557 3.36255 2.44557C3.36347 2.44557 3.3644 2.44557 3.3652 2.44557ZM3.45578 2.28168C3.4726 2.28168 3.48928 2.28168 3.5061 2.28168C3.48928 2.28235 3.4726 2.28168 3.45578 2.28168ZM3.04154 1.85058C3.04366 1.85058 3.04538 1.85092 3.04723 1.85125C3.04524 1.85125 3.04326 1.85092 3.04101 1.85058C3.04114 1.85058 3.0414 1.85058 3.04154 1.85058ZM3.04154 2.32206C3.04154 2.32206 3.0422 2.32206 3.04233 2.32206C3.04167 2.32206 3.04074 2.32206 3.03968 2.32172C3.04048 2.32172 3.04101 2.32172 3.04154 2.32172V2.32206ZM3.03796 2.32172C3.03796 2.32172 3.03902 2.32172 3.03955 2.32172C3.03889 2.32172 3.03796 2.32172 3.03717 2.32172C3.03743 2.32172 3.03783 2.32172 3.03809 2.32172H3.03796ZM3.03611 2.32172C3.03611 2.32172 3.03571 2.32172 3.03544 2.32172C3.03558 2.32172 3.03584 2.32172 3.03611 2.32172ZM3.01465 2.3372C3.01465 2.3372 3.01492 2.3372 3.01518 2.3372C3.01505 2.3372 3.01492 2.3372 3.01465 2.3372ZM3.01412 2.3372C3.01412 2.3372 3.01306 2.3372 3.0124 2.33687C3.01306 2.33687 3.01359 2.33687 3.01412 2.3372ZM3.00737 2.33619C3.00962 2.33619 3.01134 2.33687 3.01267 2.33687C3.01121 2.33687 3.00962 2.33619 3.00737 2.33619ZM3.5351 2.46912C3.57881 2.4671 3.62237 2.46542 3.66528 2.4634C3.44783 2.47316 3.22945 2.47922 3.01161 2.48662C3.18628 2.4809 3.36069 2.47518 3.5351 2.46912ZM3.54172 2.85277C3.54053 2.85277 3.53947 2.85277 3.53815 2.85277C3.53934 2.85277 3.5404 2.85277 3.54172 2.85277ZM3.50531 3.00084C3.50769 3.00084 3.51047 3.00017 3.51312 3.00017C3.5106 3.00017 3.50782 3.00084 3.50531 3.00084ZM3.50676 3.00084C3.50676 3.00084 3.50584 3.00084 3.50544 3.00084C3.50584 3.00084 3.50637 3.00084 3.50676 3.00084ZM3.13119 2.89517C3.13119 2.89517 3.13146 2.89517 3.13172 2.89517C3.13159 2.89517 3.13146 2.89517 3.13119 2.89517ZM3.13238 2.89517C3.13238 2.89517 3.13278 2.89517 3.13291 2.89517C3.13278 2.89517 3.13252 2.89517 3.13238 2.89517ZM3.10788 3.04897C3.10629 3.04897 3.10471 3.04897 3.10312 3.0493C3.10471 3.0493 3.10629 3.0493 3.10788 3.04897ZM3.10285 2.89685C3.1104 2.89685 3.11848 2.89618 3.12695 2.89584C3.11888 2.89618 3.1108 2.89685 3.10285 2.89685ZM3.12589 3.04762C3.12444 3.04762 3.12285 3.04762 3.12139 3.04796C3.12285 3.04796 3.12431 3.04796 3.12589 3.04762ZM3.19727 2.82955C3.20244 2.82955 3.2076 2.82887 3.21277 2.82854C3.2076 2.82854 3.20244 2.82921 3.19727 2.82955ZM3.23356 2.88676C3.22522 2.88743 3.21687 2.8881 3.2088 2.88878C3.21674 2.8881 3.22482 2.88743 3.23356 2.88676ZM3.17185 2.89147C3.16946 2.89147 3.16708 2.89181 3.16483 2.89214C3.16814 2.89214 3.17158 2.89147 3.17529 2.89113C3.1741 2.89113 3.17304 2.89113 3.17185 2.89113V2.89147ZM3.16682 2.88104C3.15966 2.88137 3.15278 2.88205 3.14589 2.88238C3.15278 2.88205 3.15966 2.88171 3.16682 2.88104ZM3.16271 3.04425C3.16271 3.04425 3.16152 3.04425 3.16086 3.04425C3.16152 3.04425 3.16205 3.04425 3.16271 3.04425ZM3.22601 3.03921C3.22323 3.03921 3.22058 3.03954 3.2178 3.03988C3.22058 3.03988 3.22323 3.03954 3.22601 3.03921ZM3.41883 3.02541C3.41141 3.02574 3.404 3.02642 3.39685 3.02675C3.40413 3.02642 3.41155 3.02574 3.41883 3.02541ZM3.25131 3.03752C3.2476 3.03752 3.24389 3.0382 3.24031 3.0382C3.24402 3.0382 3.2476 3.03752 3.25131 3.03752ZM3.14536 3.04594C3.1439 3.04594 3.14232 3.04594 3.14086 3.04627C3.14232 3.04627 3.1439 3.04627 3.14536 3.04594ZM3.09093 3.05065C3.08934 3.05065 3.08775 3.05065 3.08617 3.05098C3.08775 3.05098 3.08934 3.05098 3.09093 3.05065ZM3.0316 3.06041C3.34348 3.03921 3.65535 3.01733 3.96709 2.99546C3.65522 3.01767 3.34334 3.03921 3.0316 3.06041ZM3.88644 3.01868C3.8867 3.01868 3.8871 3.01868 3.88737 3.01868C3.8871 3.01868 3.88684 3.01868 3.88657 3.01868H3.88644ZM3.96431 3.01868C3.96073 3.01868 3.95729 3.01868 3.95398 3.01868C3.97067 3.01868 3.99 3.01733 4.00748 3.01632C3.99874 3.01699 3.99 3.01733 3.98139 3.018C3.98762 3.01767 3.99384 3.01733 4.00006 3.01666C3.98828 3.01733 3.97596 3.01834 3.96444 3.01834L3.96431 3.01868ZM4.70777 3.46088C4.4498 3.44843 4.19063 3.48275 3.98285 3.48948C4.1905 3.48309 4.44993 3.44876 4.70777 3.46088ZM4.66659 2.80195C4.86682 2.79488 5.06123 2.78748 5.26755 2.77974C5.06123 2.78748 4.86682 2.79455 4.66659 2.80195ZM4.9084 2.98401C4.89132 2.98469 4.8745 2.98502 4.85781 2.9857C4.8745 2.98536 4.89132 2.98469 4.9084 2.98401ZM5.20611 2.92209C5.1975 2.92243 5.18889 2.9231 5.18041 2.92344C5.18968 2.9231 5.19909 2.92243 5.20849 2.92209C5.20769 2.92209 5.2069 2.92209 5.20611 2.92209ZM5.24822 2.91974C5.23815 2.92041 5.22822 2.92075 5.21829 2.92142C5.22822 2.92075 5.23829 2.92041 5.24822 2.91974ZM6.92134 3.36564C6.44049 3.39088 5.77701 3.42319 5.21842 3.44439C5.77953 3.42319 6.443 3.39088 6.9265 3.3653C6.92478 3.3653 6.92306 3.3653 6.92121 3.3653L6.92134 3.36564ZM7.10939 2.70032C7.11588 2.69998 7.12303 2.69931 7.13084 2.69864C7.12303 2.69931 7.11588 2.69965 7.10939 2.70032ZM7.09164 2.70167C7.09403 2.70167 7.09654 2.70133 7.09919 2.70099C7.09654 2.70099 7.09403 2.70133 7.09164 2.70167ZM7.09999 2.70099C7.1029 2.70099 7.10595 2.70066 7.10926 2.70032C7.10595 2.70032 7.1029 2.70066 7.09999 2.70099ZM7.1466 2.69763C7.15097 2.69763 7.15548 2.69695 7.16024 2.69662C7.15548 2.69662 7.15097 2.69729 7.1466 2.69763ZM7.13243 2.71849C7.13243 2.71849 7.13323 2.71849 7.13362 2.71849C7.13204 2.71849 7.13058 2.71849 7.12899 2.71849C7.13018 2.71849 7.13124 2.71849 7.13243 2.71849ZM7.14832 2.71849C7.14832 2.71849 7.14766 2.71849 7.1474 2.71849C7.15137 2.71849 7.15548 2.71849 7.15945 2.71849C7.15587 2.71849 7.15216 2.71849 7.14846 2.71849H7.14859C7.14859 2.71849 7.14832 2.71849 7.14819 2.71849H7.14832ZM7.13442 2.69864C7.13747 2.69864 7.14078 2.6983 7.14409 2.69796C7.14078 2.69796 7.1376 2.6983 7.13442 2.69864ZM7.16461 2.69662C7.17243 2.69594 7.18051 2.69561 7.18925 2.69494C7.18051 2.69561 7.17229 2.69594 7.16461 2.69662ZM7.15587 2.65623C7.15945 2.65623 7.16289 2.65623 7.16647 2.6559C7.16289 2.6559 7.15945 2.6559 7.15587 2.65623ZM7.0833 2.70268C7.08105 2.70268 7.07893 2.70301 7.07708 2.70335C7.07893 2.70335 7.08105 2.70301 7.0833 2.70268ZM7.02861 3.34377C7.11138 3.32862 7.2197 3.31314 7.33439 3.29732C7.2197 3.31314 7.11138 3.32829 7.02861 3.34377ZM7.28049 2.68955C7.28128 2.68955 7.28208 2.68955 7.28301 2.68955C7.28221 2.68955 7.28142 2.68955 7.28049 2.68955ZM7.37068 2.68417C7.35677 2.68484 7.34273 2.68585 7.32883 2.68652C7.34512 2.68551 7.36127 2.6845 7.37756 2.68383C7.37531 2.68383 7.37306 2.68383 7.37068 2.68417ZM6.56749 2.67138C6.54193 2.67474 6.51637 2.67811 6.49081 2.68181C7.1176 2.63604 7.74519 2.62763 8.37277 2.59532C7.77075 2.62056 7.16898 2.64614 6.56749 2.67171V2.67138ZM7.72969 2.76729C7.7195 2.76897 7.7093 2.77065 7.69897 2.77234C7.773 2.7609 7.84689 2.76426 7.92132 2.75921C7.85722 2.7619 7.79326 2.7646 7.72956 2.76729H7.72969ZM7.7134 2.82551C7.7134 2.82551 7.71287 2.82551 7.71261 2.82551C7.71287 2.82551 7.71314 2.82551 7.7134 2.82551ZM7.62891 2.69965C7.62017 2.70032 7.61117 2.70066 7.60216 2.70133C7.61117 2.70066 7.62004 2.70032 7.62891 2.69965ZM7.59355 2.702C7.57581 2.70301 7.5574 2.70402 7.53807 2.70537C7.55727 2.70436 7.57568 2.70335 7.59355 2.702ZM7.44417 2.69965C7.44417 2.69965 7.44417 2.69965 7.44431 2.69965C7.44431 2.69965 7.4447 2.69965 7.44484 2.69965C7.4447 2.69965 7.44444 2.69965 7.44417 2.69965ZM7.6158 3.25728C7.58375 3.26199 7.55157 3.2667 7.51926 3.27141C7.55594 3.27377 7.59475 3.24247 7.62971 3.27007C7.62494 3.26636 7.62031 3.26199 7.6158 3.25728ZM7.66149 2.69763C7.70109 2.69494 7.74108 2.69157 7.78055 2.6882C7.74201 2.69157 7.70321 2.6946 7.66149 2.69763ZM7.70903 3.29665C7.70069 3.29632 7.69394 3.29564 7.68798 3.29497C7.72214 3.29833 7.74519 3.29833 7.79366 3.29867C7.75658 3.29867 7.7289 3.298 7.70903 3.29665ZM7.79551 3.29867C7.79551 3.29867 7.79419 3.29867 7.79366 3.29867C7.79458 3.29867 7.79551 3.29867 7.79657 3.29867C7.7963 3.29867 7.79591 3.29867 7.79564 3.29867H7.79551ZM7.84663 2.85075C7.84663 2.85075 7.84663 2.85075 7.84676 2.85075C7.84676 2.85075 7.84676 2.85075 7.84663 2.85075ZM7.86186 2.85008C7.85696 2.85008 7.85206 2.85041 7.84729 2.85075C8.02501 2.84234 8.20273 2.83359 8.38045 2.82484C8.20763 2.83325 8.03468 2.84166 7.86186 2.85008ZM8.75682 3.28555C8.72371 3.28723 8.69113 3.28925 8.65909 3.29093C8.76251 3.28521 8.86766 3.27949 8.97149 3.27377C8.90011 3.27747 8.8282 3.28151 8.75695 3.28555H8.75682ZM8.91229 2.74138C9.04724 2.7333 9.21397 2.72455 9.43142 2.71614C9.21278 2.72489 9.04764 2.7333 8.91229 2.74138ZM9.18881 2.80296C9.18881 2.80296 9.18881 2.80296 9.18867 2.80296H9.18894C9.18894 2.80296 9.18894 2.80296 9.18881 2.80296ZM9.37924 2.79287C9.38864 2.79219 9.39778 2.79152 9.40692 2.79118C9.39765 2.79186 9.38851 2.79253 9.37924 2.79287ZM9.55259 2.78109C9.54253 2.78176 9.53233 2.78243 9.522 2.78344C9.53207 2.78277 9.54213 2.7821 9.55206 2.78109C9.57259 2.77974 9.59312 2.77873 9.61364 2.77739C9.59908 2.77806 9.58464 2.77907 9.57007 2.78008C9.58716 2.77907 9.60424 2.77806 9.62132 2.77705C9.61881 2.77705 9.61616 2.77705 9.61364 2.77739C9.61629 2.77739 9.61881 2.77739 9.62146 2.77705C9.59855 2.77839 9.5755 2.77974 9.55259 2.78109ZM9.59881 2.77739C9.66887 2.772 9.73866 2.76628 9.80924 2.7609C9.73601 2.76662 9.66794 2.77234 9.59881 2.77739ZM9.75958 3.23608C9.73707 3.23776 9.71482 3.23978 9.6927 3.24146C9.72396 3.2391 9.75601 3.23641 9.78779 3.23372C9.77825 3.23439 9.76885 3.2354 9.75958 3.23608ZM9.83149 3.25324C9.83467 3.25324 9.83798 3.25324 9.84116 3.2529C9.83798 3.2529 9.83467 3.2529 9.83149 3.25324ZM9.87321 2.78008C9.86168 2.78075 9.85003 2.78109 9.83811 2.78176C9.8503 2.78109 9.86208 2.78075 9.87387 2.78008C9.87374 2.78008 9.87347 2.78008 9.87334 2.78008H9.87321ZM9.86989 2.75585C9.87744 2.75517 9.88499 2.7545 9.89254 2.75416C9.88486 2.75484 9.87731 2.75551 9.86989 2.75585ZM9.87718 2.77974C9.87718 2.77974 9.87757 2.77974 9.87784 2.77974C9.87757 2.77974 9.87744 2.77974 9.87718 2.77974ZM9.87797 2.77974C9.87797 2.77974 9.87824 2.77974 9.87837 2.77974H9.87811H9.87797ZM9.95028 3.24752C9.9271 3.24853 9.9038 3.24954 9.88062 3.25055C9.91187 3.25055 9.94273 3.25627 9.95968 3.21992C9.95028 3.21622 9.94895 3.22531 9.95028 3.24718V3.24752ZM9.92644 2.75114C9.93333 2.75046 9.94021 2.75013 9.9471 2.74945C9.94008 2.75013 9.93333 2.75046 9.92644 2.75114ZM9.97888 3.21858C9.97888 3.22598 9.97888 3.23338 9.97902 3.24079C9.97902 3.23338 9.97902 3.22598 9.97888 3.21858ZM9.9765 2.77503C9.97915 2.77503 9.9818 2.77503 9.98431 2.77469C9.98167 2.77469 9.97915 2.77469 9.9765 2.77503ZM9.99822 3.24516C9.94723 3.23776 10.0234 3.26468 10.0201 3.23002C10.0222 3.25694 10.0055 3.24011 9.99822 3.24516ZM9.99239 2.77436C9.99239 2.77436 9.99266 2.77436 9.99279 2.77436C9.99279 2.77436 9.99252 2.77436 9.99239 2.77436ZM9.99663 2.77436C9.99663 2.77436 9.99663 2.77436 9.9965 2.77436C9.99756 2.77436 9.99848 2.77436 9.99954 2.77436C9.99848 2.77436 9.99743 2.77436 9.99637 2.77436C9.99637 2.77436 9.99636 2.77436 9.9965 2.77436C9.9965 2.77436 9.99637 2.77436 9.99623 2.77436C9.99623 2.77436 9.9965 2.77436 9.99663 2.77436ZM10.0007 2.77436C10.0002 2.77436 9.99967 2.77436 9.99915 2.77436C10.0022 2.77436 10.0051 2.77436 10.0082 2.77402C10.0056 2.77402 10.0031 2.77402 10.0007 2.77436ZM10.0317 3.24449C10.0317 3.24449 10.0317 3.24415 10.0317 3.24382C10.032 3.24516 10.0332 3.24382 10.0337 3.24415C10.033 3.24415 10.0324 3.24415 10.0317 3.24415V3.24449ZM10.0728 2.77133C10.0728 2.77133 10.0724 2.77133 10.0722 2.77133C10.0809 2.77099 10.0892 2.77032 10.0973 2.76998C10.0892 2.77032 10.0809 2.77099 10.0724 2.77133C10.0724 2.77133 10.0726 2.77133 10.0728 2.77133ZM9.90843 2.7333C9.99835 2.72556 10.0884 2.71782 10.1812 2.71042C10.0901 2.71748 9.99835 2.72522 9.90843 2.7333ZM10.168 2.66936C10.1481 2.67003 10.1283 2.67104 10.1083 2.67171C10.1453 2.67037 10.1824 2.66902 10.2196 2.66734C10.2024 2.66801 10.1852 2.66869 10.168 2.66936ZM10.4188 2.65994C10.4649 2.65825 10.5109 2.65657 10.5571 2.65489C10.511 2.65657 10.4649 2.65825 10.4188 2.65994ZM11.104 3.19872C10.9311 3.20646 10.7582 3.21353 10.5853 3.22093C10.9716 3.20478 11.358 3.18795 11.7443 3.17012C11.5308 3.17988 11.3175 3.1893 11.104 3.19872ZM19.2232 1.6177C19.2355 1.61703 19.2483 1.61602 19.2613 1.61535C19.2486 1.61602 19.236 1.61703 19.2238 1.6177C19.2794 1.61434 19.3412 1.6103 19.4054 1.60626C19.3361 1.61097 19.273 1.614 19.2119 1.61905C19.2123 1.61905 19.2126 1.61905 19.213 1.61905C19.2112 1.61905 19.2095 1.61938 19.2078 1.61972C19.213 1.61905 19.2181 1.61871 19.2232 1.61804V1.6177ZM19.4411 1.6039C19.4284 1.60458 19.4157 1.60559 19.4031 1.60626C19.4223 1.60491 19.4417 1.6039 19.4613 1.60256C19.4545 1.60289 19.4479 1.60357 19.4411 1.6039ZM19.4707 1.66549C19.4675 1.66549 19.4643 1.66616 19.4613 1.6665C19.4645 1.6665 19.4676 1.66583 19.4707 1.66549ZM19.4329 1.66919C19.43 1.66919 19.4271 1.66986 19.4242 1.6702C19.4271 1.6702 19.43 1.66953 19.4329 1.66919ZM18.615 1.71765C18.6158 1.71765 18.6165 1.71765 18.6173 1.71765C18.6074 1.71866 18.5976 1.72001 18.5875 1.72102C18.5957 1.72001 18.6035 1.71933 18.6116 1.71832C18.5851 1.72135 18.5581 1.72438 18.5302 1.72707C18.5839 1.72135 18.6397 1.7153 18.6924 1.7089C18.6676 1.71193 18.6415 1.71496 18.615 1.71799V1.71765ZM18.6768 2.35302C18.6768 2.35302 18.6757 2.35302 18.6753 2.35302C18.6758 2.35302 18.6762 2.35302 18.6768 2.35302ZM18.6312 1.73448C18.6402 1.7338 18.6491 1.73313 18.658 1.7328C18.6491 1.73347 18.6402 1.73414 18.6312 1.73448ZM18.6026 2.26586C18.6026 2.26586 18.6026 2.26519 18.6026 2.26485C18.6026 2.26485 18.6027 2.26552 18.6026 2.26552V2.26586ZM18.5104 2.28605C18.5112 2.28605 18.5119 2.28605 18.5127 2.28571C18.5021 2.28672 18.4914 2.28639 18.4813 2.28706C18.4896 2.28706 18.4992 2.28639 18.5104 2.28605ZM18.4898 2.28168C18.4898 2.28168 18.4898 2.28168 18.4899 2.28168C18.4899 2.28168 18.4899 2.28168 18.4898 2.28168ZM18.43 1.69107C18.4883 1.68635 18.5472 1.68131 18.6059 1.67626C18.547 1.68131 18.4884 1.68602 18.43 1.69107ZM18.4349 2.28874C18.4349 2.28874 18.4343 2.28874 18.434 2.28874C18.4344 2.28874 18.4349 2.28874 18.4353 2.28874C18.4352 2.28874 18.4351 2.28874 18.4349 2.28874ZM18.4356 2.28874C18.4356 2.28874 18.436 2.28874 18.4361 2.28874C18.4359 2.28874 18.4355 2.28874 18.4352 2.28874C18.4352 2.28874 18.4355 2.28874 18.4356 2.28874ZM18.4363 2.28874C18.4352 2.28874 18.434 2.28874 18.433 2.28908C18.434 2.28908 18.4352 2.28908 18.4363 2.28874ZM18.4292 1.69107C18.4147 1.69241 18.4002 1.69342 18.3858 1.69477C18.4009 1.69342 18.416 1.69241 18.4311 1.69107C18.4304 1.69107 18.4299 1.69107 18.4292 1.69107ZM18.5449 1.7052C18.5438 1.7052 18.5423 1.70587 18.541 1.70621C18.5425 1.70621 18.5438 1.70554 18.5449 1.7052ZM18.541 1.70621C18.541 1.70621 18.541 1.70621 18.5409 1.70621C18.5409 1.70621 18.5409 1.70621 18.541 1.70621ZM18.5811 1.65809C18.5756 1.65876 18.57 1.65943 18.5645 1.6601C18.57 1.65943 18.5754 1.65876 18.5811 1.65809ZM18.5639 1.18593C18.5675 1.18593 18.5705 1.18593 18.5737 1.18593C18.5703 1.18593 18.5668 1.18593 18.563 1.18593C18.5633 1.18593 18.5637 1.18593 18.5639 1.18593ZM18.4928 1.66818C18.4851 1.66885 18.4774 1.66986 18.4698 1.67054C18.4773 1.66986 18.4851 1.66885 18.4928 1.66818ZM18.3751 1.70924C18.3751 1.70924 18.3744 1.70924 18.3743 1.70924C18.3746 1.70924 18.3748 1.70924 18.3751 1.70924ZM18.2073 2.40384C18.2232 2.40283 18.2389 2.40182 18.2543 2.40114C18.2388 2.40215 18.2229 2.40316 18.2073 2.40384ZM18.1503 2.4072C18.1503 2.4072 18.1501 2.4072 18.15 2.4072C18.1501 2.4072 18.1502 2.4072 18.1503 2.4072ZM17.5159 1.78159C17.5225 1.78092 17.5291 1.78058 17.5356 1.77991C17.5291 1.78058 17.5226 1.78092 17.5159 1.78159ZM17.5159 1.78159C17.5131 1.78159 17.5104 1.78193 17.5077 1.78227C17.5104 1.78227 17.5131 1.78193 17.5159 1.78159ZM17.5397 1.77957C17.5416 1.77957 17.5433 1.77957 17.5451 1.77924C17.5433 1.77924 17.5416 1.77924 17.5397 1.77957ZM17.5684 1.77722C17.5706 1.77722 17.5727 1.77688 17.5748 1.77654C17.5727 1.77654 17.5706 1.77688 17.5684 1.77722ZM17.5902 1.82972C17.5882 1.82972 17.5861 1.83039 17.5841 1.83073C17.5861 1.83073 17.5882 1.83005 17.5902 1.82972ZM17.5944 1.77486C17.5972 1.77486 17.6 1.77452 17.6026 1.77419C17.5998 1.77419 17.5972 1.77486 17.5944 1.77486ZM17.6666 2.31028C17.6683 2.31028 17.67 2.31028 17.6717 2.30994C17.656 2.31095 17.6388 2.3123 17.6206 2.31365C17.6369 2.31264 17.6521 2.31129 17.6666 2.31028ZM17.6835 1.76645C17.6947 1.76544 17.7054 1.76409 17.7157 1.76308C17.7052 1.76409 17.6943 1.76544 17.6835 1.76645ZM17.7905 1.80347C17.7732 1.80549 17.7558 1.8075 17.7386 1.80986C17.7558 1.80784 17.7732 1.80549 17.7905 1.80347ZM17.7394 1.77553C17.7394 1.77553 17.7396 1.77553 17.7397 1.77553C17.7397 1.77553 17.7395 1.77553 17.7394 1.77553ZM17.6502 1.76981C17.6479 1.76981 17.6457 1.77015 17.6434 1.77049C17.6474 1.77015 17.6512 1.76981 17.6551 1.76948C17.6533 1.76948 17.6519 1.76948 17.6502 1.76981ZM17.5523 1.7789C17.5561 1.7789 17.56 1.77823 17.5638 1.77789C17.5601 1.77789 17.5561 1.77856 17.5523 1.7789ZM17.6336 2.43379C17.6205 2.43446 17.6073 2.43513 17.5939 2.43547C17.6073 2.4348 17.6205 2.43412 17.6336 2.43379ZM18.1162 1.70217C18.1182 1.70217 18.1203 1.70183 18.1224 1.7015C18.1204 1.7015 18.1183 1.70183 18.1163 1.70217H18.1162ZM18.1277 2.38129C18.1325 2.38129 18.1372 2.38095 18.1421 2.38062C18.1374 2.38062 18.1326 2.38095 18.1277 2.38129ZM18.2208 2.31365C18.1921 2.31668 18.1621 2.3197 18.1311 2.32307C18.1621 2.32004 18.1921 2.31701 18.2208 2.31365ZM18.2044 1.2206C18.1899 1.22228 18.1756 1.22396 18.1621 1.22531C18.1756 1.22362 18.1899 1.22228 18.2044 1.2206ZM18.1339 1.70015C18.128 1.70082 18.1221 1.7015 18.1162 1.70217C18.1219 1.7015 18.1278 1.70082 18.1339 1.70015ZM18.1162 1.70217C18.1162 1.70217 18.1162 1.70217 18.116 1.70217C18.116 1.70217 18.1162 1.70217 18.1163 1.70217H18.1162ZM18.1084 1.24584C17.8267 1.26805 17.4922 1.29463 17.2436 1.32155C17.5005 1.29396 17.7962 1.27074 18.1084 1.24584ZM17.4302 2.32643C17.3726 2.3298 17.3122 2.3335 17.2518 2.33653C17.3122 2.33317 17.3726 2.3298 17.4302 2.32643ZM17.1464 1.80885C17.1455 1.80885 17.1447 1.80919 17.1441 1.80919C17.1448 1.80919 17.1455 1.80885 17.1464 1.80885ZM17.092 1.31651C17.092 1.31651 17.0929 1.31651 17.0934 1.31651C17.0928 1.31651 17.092 1.31651 17.0912 1.31651C17.0914 1.31651 17.0917 1.31651 17.092 1.31651ZM17.0622 1.79236C17.0622 1.79236 17.0619 1.79236 17.0618 1.79236C17.0618 1.79236 17.062 1.79236 17.0622 1.79236ZM17.0724 2.32273C17.0626 2.32341 17.0526 2.32408 17.0427 2.32442C17.0526 2.32374 17.0626 2.32307 17.0724 2.32273ZM16.8651 2.36749C16.9059 2.36278 16.9467 2.35807 16.9873 2.35336C16.9466 2.35807 16.9058 2.36278 16.8651 2.36749ZM16.8029 2.3399C16.8275 2.33821 16.8519 2.33653 16.8757 2.33518C16.8517 2.33687 16.8275 2.33821 16.8029 2.3399ZM16.9631 1.79573C16.9581 1.79573 16.9532 1.7964 16.9483 1.79674C16.9532 1.79674 16.9581 1.79606 16.9631 1.79573ZM16.9354 1.79741C16.9386 1.79741 16.9418 1.79707 16.9451 1.79674C16.939 1.79707 16.9325 1.79741 16.9267 1.79775C16.9296 1.79775 16.9325 1.79741 16.9356 1.79707L16.9354 1.79741ZM16.7192 2.34562C16.7375 2.34427 16.7557 2.34326 16.7737 2.34191C16.7553 2.34326 16.7371 2.34427 16.7184 2.34562C16.7186 2.34562 16.7189 2.34562 16.7192 2.34562ZM16.7361 2.45028C16.716 2.45162 16.6956 2.45263 16.6753 2.45398C16.6957 2.45263 16.716 2.45162 16.7361 2.45028ZM16.7112 1.34242C16.7112 1.34242 16.7126 1.34242 16.7131 1.34242C16.6857 1.34511 16.6598 1.34747 16.6365 1.35487C16.6595 1.3478 16.6841 1.34511 16.7112 1.34276V1.34242ZM16.6691 2.45432C16.6507 2.45533 16.6323 2.45667 16.6139 2.45802C16.6324 2.45667 16.6508 2.45566 16.6691 2.45432ZM16.5916 2.45936C16.578 2.46037 16.5642 2.46138 16.5505 2.46206C16.5644 2.46105 16.578 2.46004 16.5916 2.45936ZM16.5637 1.37069C16.5637 1.37069 16.5644 1.37069 16.5648 1.37069C16.0407 1.40939 15.7462 1.4178 15.4917 1.42319C15.7465 1.4178 16.0393 1.40939 16.5638 1.37069H16.5637ZM16.5505 2.46206C16.5462 2.46206 16.542 2.46273 16.5377 2.46307C16.542 2.46307 16.5462 2.46239 16.5505 2.46206ZM16.486 2.46677H16.4845C16.4845 2.46677 16.4854 2.46677 16.486 2.46677ZM16.3733 1.85563C16.3535 1.85697 16.3345 1.85832 16.3151 1.85933C16.3342 1.85798 16.3535 1.85697 16.3733 1.85563ZM16.2637 2.25172C16.262 2.25172 16.2603 2.25172 16.2586 2.25206C16.2603 2.25206 16.262 2.25206 16.2637 2.25172C16.2637 2.25172 16.2639 2.25172 16.264 2.25172C16.264 2.25172 16.2639 2.25172 16.2637 2.25172ZM16.2541 2.2524C16.0097 2.26922 15.7655 2.28571 15.5212 2.30187C15.5213 2.30187 15.5215 2.30187 15.5217 2.30187C15.5216 2.30187 15.5213 2.30187 15.5212 2.30187C15.5217 2.30187 15.5224 2.30187 15.5229 2.30187C15.5229 2.30187 15.5228 2.30187 15.5227 2.30187C15.7697 2.28538 16.0166 2.26855 16.2637 2.25172C16.2606 2.25172 16.2574 2.25206 16.2542 2.2524H16.2541ZM16.1737 2.48864C16.1777 2.48864 16.1814 2.48864 16.1856 2.48864C16.1827 2.48864 16.1799 2.48864 16.1773 2.48864C16.1774 2.48864 16.1777 2.48864 16.1778 2.48864C16.1763 2.48864 16.1752 2.48864 16.1738 2.48864H16.1737ZM16.1638 2.48864H16.164C16.1626 2.48864 16.161 2.48864 16.1597 2.48864C16.1609 2.48864 16.1624 2.48864 16.1638 2.48864ZM16.2099 2.48831C16.2077 2.48831 16.206 2.48831 16.204 2.48831C16.206 2.48831 16.2079 2.48831 16.2099 2.48831ZM16.2117 2.48831C16.2174 2.48831 16.2226 2.48831 16.2285 2.48797C16.2219 2.48797 16.2157 2.48831 16.2099 2.48831C16.2104 2.48831 16.211 2.48831 16.2116 2.48831H16.2117ZM15.4988 2.49907C15.49 2.49941 15.4811 2.50008 15.4723 2.50042C15.4749 2.50042 15.4774 2.50042 15.4799 2.50008C15.4757 2.50008 15.4716 2.50042 15.4673 2.50076C15.4686 2.50076 15.47 2.50076 15.4713 2.50076C15.4557 2.50177 15.4403 2.50244 15.4248 2.50311C15.4268 2.50311 15.4289 2.50311 15.431 2.50311C15.4214 2.50379 15.4117 2.50412 15.4024 2.50446C15.4374 2.50278 15.4725 2.50076 15.5077 2.49874C15.506 2.49874 15.504 2.49874 15.5023 2.49874C15.5062 2.49874 15.5102 2.4984 15.5142 2.49806C15.506 2.4984 15.4978 2.49907 15.4897 2.49941C15.4929 2.49941 15.4959 2.49907 15.4991 2.49874L15.4988 2.49907ZM15.3554 2.50648C15.3508 2.50648 15.346 2.50681 15.3414 2.50715C15.346 2.50715 15.3506 2.50681 15.3554 2.50648ZM15.3346 2.4311C15.2786 2.43379 15.2198 2.43614 15.1621 2.43884C15.2194 2.43614 15.2823 2.43345 15.3361 2.4311C15.3355 2.4311 15.3351 2.4311 15.3346 2.4311ZM15.317 2.50816C15.3153 2.50816 15.3137 2.50816 15.312 2.50816C15.3136 2.50816 15.3153 2.50816 15.317 2.50816ZM15.2872 2.41427C15.2872 2.41427 15.2859 2.41292 15.2851 2.41225C15.286 2.41292 15.2868 2.4136 15.2872 2.41427ZM15.2748 2.4072C15.2728 2.40653 15.2704 2.40586 15.2683 2.40518C15.2707 2.40586 15.2729 2.40653 15.2748 2.4072ZM14.9853 2.44658C15.0155 2.44523 15.0461 2.44388 15.077 2.44254C15.0769 2.44254 15.0768 2.44254 15.0766 2.44254H15.0772C15.0777 2.44254 15.0782 2.44254 15.0786 2.44254H15.0784C15.0784 2.44254 15.0786 2.44254 15.0788 2.44254C15.0782 2.44254 15.0777 2.44254 15.0772 2.44254C15.0773 2.44254 15.0776 2.44254 15.0777 2.44254C15.0649 2.44321 15.0523 2.44355 15.0396 2.44422C15.052 2.44355 15.0642 2.44321 15.0766 2.44254C15.0458 2.44388 15.0153 2.44523 14.9853 2.44658ZM15.079 2.44254C15.079 2.44254 15.0796 2.44254 15.0798 2.44254C15.0797 2.44254 15.0794 2.44254 15.0793 2.44254C15.0805 2.44254 15.0817 2.44254 15.0829 2.44254C15.0815 2.44254 15.0804 2.44254 15.079 2.44254ZM15.0778 2.51725C15.0731 2.51725 15.0683 2.51725 15.0637 2.51758C15.0684 2.51758 15.0731 2.51758 15.0778 2.51725ZM15.0687 1.90173C15.0745 1.90173 15.0802 1.90173 15.0859 1.90173C15.0801 1.90173 15.0745 1.90173 15.0687 1.90173ZM15.1349 2.51523C15.1221 2.51556 15.1094 2.51624 15.0965 2.51657C15.1092 2.51624 15.1219 2.5159 15.1349 2.51523ZM14.973 1.90375C15.0026 1.90308 15.0316 1.90241 15.0597 1.90207C15.0316 1.90274 15.0028 1.90308 14.973 1.90375ZM14.7951 2.31701C14.8008 2.31634 14.8064 2.31567 14.8124 2.31499C14.8119 2.31499 14.8115 2.31499 14.8109 2.31499C14.8295 2.31365 14.8483 2.31331 14.867 2.3123C14.8387 2.31432 14.8024 2.31297 14.7756 2.32071C14.7795 2.31937 14.7865 2.31768 14.7967 2.31668C14.7963 2.31668 14.7958 2.31668 14.7952 2.31668L14.7951 2.31701ZM14.8411 2.34158C14.8411 2.34158 14.8408 2.34158 14.8407 2.34158C14.8408 2.34158 14.8409 2.34158 14.8411 2.34158ZM14.9255 2.30961C14.9267 2.30961 14.9281 2.30961 14.9293 2.30961C14.9279 2.30961 14.9266 2.30961 14.9253 2.30961C14.9253 2.30961 14.9254 2.30961 14.9255 2.30961ZM14.8262 1.90745C14.8575 1.90644 14.8874 1.90577 14.9167 1.9051C14.8875 1.90577 14.8575 1.90644 14.8262 1.90745ZM14.7862 2.45533C14.758 2.45634 14.7299 2.45768 14.7025 2.45869C14.7301 2.45768 14.758 2.45634 14.7862 2.45533ZM14.7387 2.52802C14.7511 2.52768 14.7634 2.52701 14.7758 2.52667C14.7374 2.52802 14.6972 2.5297 14.6541 2.53172C14.6835 2.53037 14.7117 2.52903 14.7387 2.52802ZM15.1402 2.51523C15.1437 2.51523 15.1471 2.51523 15.1507 2.51489C15.1472 2.51489 15.1438 2.51489 15.1402 2.51523ZM15.1887 2.51388C15.1911 2.51388 15.1934 2.51388 15.196 2.51388C15.1936 2.51388 15.1911 2.51388 15.1887 2.51388ZM15.1997 2.51355C15.2019 2.51355 15.2043 2.51355 15.2067 2.51355C15.2043 2.51355 15.2021 2.51355 15.1997 2.51355ZM15.2549 2.51119C15.2562 2.51119 15.2577 2.51119 15.2591 2.51119C15.2577 2.51119 15.2564 2.51119 15.2549 2.51119ZM15.2922 2.49773C15.2922 2.49773 15.2926 2.49773 15.2929 2.49773C15.2928 2.49773 15.2925 2.49773 15.2922 2.49773ZM15.3268 1.8977C15.3268 1.8977 15.3279 1.8977 15.3284 1.8977C15.3279 1.8977 15.3273 1.8977 15.3268 1.8977ZM15.3941 2.5048C15.3861 2.50513 15.3785 2.50547 15.3706 2.50581C15.3783 2.50547 15.3861 2.50513 15.3941 2.5048ZM15.6085 2.41393C15.6099 2.41393 15.6113 2.41393 15.6127 2.4136C15.6113 2.4136 15.6099 2.4136 15.6085 2.41393ZM15.5933 2.29985C15.5933 2.29985 15.5934 2.29985 15.5935 2.29985C15.5935 2.29985 15.5934 2.29985 15.5933 2.29985ZM15.5938 2.29985C15.5787 2.30052 15.564 2.30119 15.549 2.30187C15.5641 2.30119 15.5788 2.30052 15.5941 2.29985C15.5941 2.29985 15.5939 2.29985 15.5938 2.29985ZM15.5658 2.4173C15.5658 2.4173 15.5652 2.4173 15.5649 2.4173C15.5652 2.4173 15.5656 2.4173 15.5658 2.4173ZM15.5146 2.421C15.5146 2.421 15.5159 2.421 15.5166 2.421C15.5159 2.421 15.5153 2.421 15.5146 2.421ZM15.4147 2.42739C15.4132 2.42739 15.4114 2.42739 15.4098 2.42739C15.4137 2.42739 15.4175 2.42706 15.4214 2.42672C15.4191 2.42672 15.417 2.42672 15.4147 2.42706V2.42739ZM15.5278 2.49773C15.5278 2.49773 15.5282 2.49773 15.5284 2.49773C15.5282 2.49773 15.528 2.49773 15.5278 2.49773C15.5339 2.49739 15.54 2.49706 15.5464 2.49672C15.5354 2.49739 15.5247 2.49806 15.5141 2.49874C15.5186 2.49874 15.5233 2.49806 15.5278 2.49806V2.49773ZM15.4142 2.48797C15.4142 2.48797 15.4137 2.48797 15.4134 2.48797C15.6151 2.48258 15.8171 2.48191 16.0188 2.47383C15.8173 2.48191 15.6156 2.48292 15.4141 2.48797H15.4142ZM15.429 2.42638C15.4308 2.42638 15.4325 2.42638 15.4341 2.42638C15.4324 2.42638 15.4306 2.42638 15.429 2.42638ZM15.8634 2.3897C15.8634 2.3897 15.8637 2.3897 15.8638 2.3897H15.8635C15.8716 2.38903 15.8797 2.38802 15.8879 2.38735C15.879 2.38836 15.8703 2.38903 15.8617 2.39004C15.8622 2.39004 15.8629 2.39004 15.8634 2.39004V2.3897ZM15.8883 2.38701C15.8984 2.386 15.909 2.38499 15.9193 2.38398C15.9087 2.38499 15.8985 2.386 15.8883 2.38701ZM15.8663 1.88423C15.9365 1.8812 16.0124 1.87784 16.096 1.87346C16.0124 1.87784 15.9365 1.88154 15.8663 1.88423ZM15.3834 1.42588C15.4012 1.42588 15.419 1.42521 15.4369 1.42521C15.1858 1.42891 14.9916 1.43093 14.6398 1.44237C14.9633 1.43194 15.1674 1.42924 15.3834 1.42622V1.42588ZM14.586 2.52768C14.578 2.52802 14.5701 2.52869 14.5624 2.52903C14.5702 2.52869 14.5779 2.52802 14.586 2.52768ZM14.4734 2.10231C14.4724 2.10231 14.4713 2.10231 14.4704 2.10231C14.4714 2.10231 14.4725 2.10231 14.4734 2.10231ZM14.4702 2.10231C14.4651 2.10264 14.4598 2.10298 14.4545 2.10365C14.4598 2.10332 14.4651 2.10298 14.4702 2.10231ZM12.9121 2.50614C12.917 2.50614 12.9219 2.50547 12.9268 2.50547C12.9217 2.50547 12.9168 2.50614 12.9121 2.50614ZM12.898 2.50681C12.898 2.50681 12.8976 2.50681 12.8974 2.50681C12.8976 2.50681 12.8978 2.50681 12.898 2.50681ZM13.7312 1.95558C13.7404 1.95558 13.75 1.95491 13.7592 1.95457C13.7433 1.95524 13.7272 1.95558 13.711 1.95625C13.7178 1.95625 13.7244 1.95591 13.7312 1.95558ZM13.6118 1.95928C13.5953 1.95995 13.5787 1.96029 13.5622 1.96063C13.5789 1.96029 13.5953 1.95962 13.6118 1.95928ZM13.5508 1.96096C13.5407 1.96096 13.5307 1.96164 13.5205 1.96197C13.5305 1.96197 13.5407 1.9613 13.5508 1.96096ZM13.1976 1.97039C13.1976 1.97039 13.1979 1.97039 13.198 1.97039C13.1964 1.97039 13.1947 1.97039 13.1931 1.97039C13.1945 1.97039 13.1961 1.97039 13.1977 1.97039H13.1976ZM12.9383 1.97611C12.9493 1.97611 12.9603 1.97577 12.9713 1.97543C12.9559 1.97577 12.9407 1.97611 12.9253 1.97644C12.9297 1.97644 12.9341 1.97644 12.9383 1.97644V1.97611ZM12.8624 2.12317C12.8743 2.1225 12.8863 2.12216 12.8983 2.12182C12.8863 2.12216 12.8742 2.12283 12.8624 2.12317ZM12.83 2.12452C12.8357 2.12452 12.8415 2.12384 12.8473 2.12384C12.8367 2.12418 12.8263 2.12485 12.8159 2.12519C12.8206 2.12519 12.8252 2.12485 12.83 2.12452ZM12.7987 2.12586C12.8011 2.12586 12.8036 2.12586 12.806 2.12586C12.792 2.12654 12.7781 2.12721 12.7646 2.12788C12.7757 2.12721 12.7872 2.12687 12.7987 2.1262V2.12586ZM12.6169 2.13596C12.6169 2.13596 12.6164 2.13596 12.6161 2.13596C12.6164 2.13596 12.6166 2.13596 12.6169 2.13596ZM12.5829 2.13831C12.5829 2.13831 12.5829 2.13831 12.5827 2.13831H12.5829ZM12.5797 2.13831C12.5774 2.13831 12.5753 2.13865 12.5732 2.13865C12.5752 2.13865 12.5774 2.13865 12.5797 2.13831ZM12.1895 2.14774C12.1061 2.15043 12.0178 2.15312 11.9392 2.15581C12.0178 2.15346 12.1019 2.15077 12.1895 2.14774ZM11.8089 2.60172C11.8089 2.60172 11.8089 2.60239 11.8085 2.60273C11.8088 2.60239 11.8089 2.60205 11.8089 2.60172ZM11.7997 2.64378C11.8477 2.64008 11.8962 2.63672 11.9435 2.63402C11.8963 2.63672 11.8479 2.64008 11.7998 2.64378H11.7997ZM12.2462 3.1156C12.1864 3.11694 12.1252 3.11863 12.0636 3.11997C12.1374 3.11795 12.2093 3.11627 12.2816 3.11459C12.2698 3.11459 12.258 3.11526 12.2462 3.1156ZM12.3416 3.15093C12.3416 3.15093 12.3408 3.15093 12.3402 3.15093H12.343C12.343 3.15093 12.3421 3.15093 12.3416 3.15093ZM12.8052 3.09844C12.713 3.17012 12.6121 3.12738 12.5083 3.14589C12.6123 3.12771 12.7132 3.16944 12.8057 3.09844C12.8056 3.09844 12.8053 3.09844 12.8052 3.09844ZM12.7121 2.55427C12.9027 2.54282 13.0931 2.53138 13.2837 2.5196C13.0932 2.53138 12.9027 2.54282 12.7121 2.55427ZM13.0252 2.54753C13.0682 2.54282 13.1114 2.53811 13.1544 2.53374C13.1114 2.53845 13.0682 2.54316 13.0252 2.54753ZM12.9417 2.62023C12.948 2.61989 12.9541 2.61955 12.9601 2.61888C12.9541 2.61922 12.948 2.61955 12.9417 2.62023ZM12.9329 2.6209C12.9252 2.62124 12.9175 2.62191 12.9096 2.62224C12.9098 2.62224 12.9101 2.62224 12.9104 2.62224C12.9186 2.62191 12.9265 2.62124 12.9345 2.6209C12.9339 2.6209 12.9334 2.6209 12.9329 2.6209ZM12.9351 2.6209C12.9366 2.6209 12.9382 2.6209 12.9396 2.6209C12.9376 2.6209 12.9355 2.6209 12.9335 2.62124C12.9341 2.62124 12.9346 2.62124 12.9351 2.62124V2.6209ZM12.9685 2.61854C12.9742 2.61821 12.9797 2.61787 12.9853 2.6172C12.9797 2.61753 12.9742 2.61787 12.9685 2.61854ZM13.0035 2.60441C13.0035 2.60441 13.0035 2.60441 13.0036 2.60441C13.0027 2.60441 13.0017 2.60441 13.0009 2.60441C13.0017 2.60441 13.0027 2.60441 13.0035 2.60441ZM13.0019 2.61518C13.0004 2.61518 12.9987 2.61585 12.9972 2.61585C12.9988 2.61585 13.0004 2.61518 13.0019 2.61518ZM13.0039 2.60441C13.0039 2.60441 13.0042 2.60441 13.0045 2.60441C13.0044 2.60441 13.0041 2.60441 13.0039 2.60441ZM13.2296 2.57008C13.1555 2.57177 13.0813 2.57378 13.0072 2.57547C13.1278 2.57244 13.2486 2.56941 13.3692 2.56638C13.3227 2.56773 13.2761 2.56874 13.2296 2.56975V2.57008ZM13.3792 2.57547C13.3792 2.57547 13.3794 2.57547 13.3797 2.57547C13.3796 2.57547 13.3794 2.57547 13.3792 2.57547ZM13.3807 2.57547C13.3818 2.57547 13.3829 2.57547 13.3838 2.57547C13.3827 2.57547 13.3817 2.57547 13.3807 2.57547ZM13.3843 2.57547C13.3835 2.57547 13.3826 2.57547 13.3818 2.57547C13.3834 2.57547 13.385 2.57547 13.3864 2.57547C13.3856 2.57547 13.385 2.57547 13.3842 2.57547C13.3921 2.57547 13.3999 2.57547 13.4079 2.57547C13.3999 2.57547 13.392 2.57547 13.3842 2.57547H13.3843ZM13.8186 2.61686H13.8159C13.8184 2.61686 13.8208 2.61686 13.8233 2.61686C13.8217 2.61686 13.8201 2.61686 13.8187 2.61686H13.8186ZM14.099 2.49941C14.099 2.49941 14.0992 2.49941 14.0993 2.49941C14.0993 2.49941 14.0992 2.49941 14.099 2.49941ZM14.1816 2.54484C14.1816 2.54484 14.1816 2.54484 14.1814 2.54484H14.1816ZM14.3568 2.51927C14.3579 2.51927 14.3591 2.51893 14.3605 2.51859C14.3591 2.51859 14.3579 2.51893 14.3568 2.51927ZM17.1919 2.91469C16.4449 2.96046 15.9006 2.98704 15.2982 3.01565C15.8988 2.99209 16.4505 2.9507 17.1921 2.9194C17.1921 2.91772 17.1921 2.91604 17.1921 2.91435L17.1919 2.91469ZM18.3581 2.86657C18.068 2.88541 17.6997 2.90459 17.1921 2.92411C17.7682 2.90157 18.0922 2.88474 18.4679 2.8595C18.4326 2.86185 18.396 2.86455 18.3581 2.8669V2.86657ZM18.5884 2.37893C18.6009 2.37792 18.6132 2.37691 18.6252 2.37624C18.6131 2.37725 18.6009 2.37826 18.5884 2.37893ZM18.1962 2.3786C18.3669 2.37052 18.5376 2.36211 18.7081 2.35369C18.5374 2.36211 18.3667 2.37018 18.1962 2.3786ZM18.7383 1.70385C18.7415 1.70352 18.7448 1.70318 18.748 1.70251C18.7448 1.70284 18.7415 1.70318 18.7383 1.70385ZM18.7732 2.34158C18.7703 2.34158 18.7672 2.34192 18.7644 2.34225C18.7679 2.34225 18.7716 2.34158 18.7752 2.34124C18.7745 2.34124 18.7738 2.34124 18.7732 2.34124V2.34158ZM18.8039 1.6601C18.8002 1.66044 18.7963 1.66078 18.7926 1.66111C18.8113 1.65943 18.8301 1.65775 18.8489 1.65607C18.834 1.65741 18.8189 1.65876 18.8039 1.6601ZM18.846 1.6564C18.8917 1.65203 18.9372 1.64765 18.9829 1.64361C18.9372 1.64799 18.8917 1.65236 18.846 1.6564ZM18.9947 1.64227C18.9898 1.64261 18.9849 1.64328 18.98 1.64361C18.9998 1.6416 19.0195 1.63991 19.0392 1.63789C19.0244 1.63958 19.0096 1.64092 18.9947 1.64227ZM19.2083 1.69174C19.2319 1.68972 19.2547 1.6877 19.2768 1.68568C19.2547 1.6877 19.232 1.68972 19.2083 1.69174ZM19.3132 1.68232C19.3277 1.68097 19.3416 1.67962 19.3553 1.67828C19.3416 1.67962 19.3275 1.68097 19.3132 1.68232ZM19.5397 2.27427C19.523 2.27528 19.507 2.27595 19.4909 2.27696C19.5079 2.27663 19.5254 2.27394 19.5428 2.27461C19.5419 2.27461 19.541 2.27461 19.5398 2.27427H19.5397ZM19.4978 1.66414C19.5011 1.66381 19.5043 1.66347 19.5075 1.66313C19.5043 1.66347 19.501 1.66381 19.4978 1.66414ZM19.532 1.66044C19.5365 1.6601 19.541 1.65943 19.5455 1.6591C19.541 1.65943 19.5366 1.6601 19.532 1.66044ZM19.6009 1.65304C19.612 1.65169 19.6231 1.65068 19.6341 1.64934C19.6231 1.65068 19.6121 1.65169 19.6009 1.65304ZM19.5668 1.65674C19.5717 1.65607 19.5768 1.65573 19.5817 1.65506C19.5768 1.65573 19.5719 1.65607 19.5668 1.65674ZM19.2189 1.14824C19.2189 1.14824 19.2179 1.14824 19.2173 1.14824C19.4282 1.13478 19.6391 1.12132 19.85 1.10752C19.6397 1.12132 19.4292 1.13478 19.2189 1.14791V1.14824ZM21.1529 1.02036H21.1536C21.1536 1.02036 21.1532 1.02036 21.1529 1.02036ZM20.9896 1.58977C20.9896 1.58977 20.9899 1.58943 20.9896 1.5891C20.9899 1.5891 20.9898 1.58943 20.9896 1.58977ZM20.9893 1.58977C20.9893 1.58977 20.9887 1.58977 20.9882 1.59011C20.9886 1.59011 20.989 1.59011 20.9893 1.58977ZM20.9846 1.59112C20.9846 1.59112 20.9851 1.59112 20.9854 1.59112C20.985 1.59112 20.9846 1.59112 20.9842 1.59112C20.9844 1.59112 20.9845 1.59112 20.9846 1.59112ZM20.9841 1.59112C20.9826 1.59112 20.9813 1.59145 20.9796 1.59179C20.9814 1.59179 20.9829 1.59145 20.9841 1.59112ZM20.9119 1.58439C20.9094 1.58439 20.9078 1.58405 20.9071 1.58371C20.9077 1.58371 20.9099 1.58439 20.9119 1.58439ZM20.8404 1.54602C20.8404 1.54602 20.8403 1.54602 20.8401 1.54602C20.8401 1.54602 20.8401 1.54602 20.8403 1.54602H20.8404ZM20.8412 1.54535C20.8412 1.54535 20.8407 1.54568 20.8404 1.54602C20.8407 1.54602 20.8409 1.54568 20.8412 1.54535ZM20.8403 1.54636C20.8403 1.54636 20.8399 1.54669 20.8395 1.54703C20.8397 1.54703 20.84 1.54669 20.8403 1.54636ZM20.8395 1.54703C20.8395 1.54703 20.8395 1.54703 20.8393 1.54703C20.8393 1.54703 20.8393 1.54703 20.8395 1.54703ZM20.8392 1.54703C20.8392 1.54703 20.8387 1.54703 20.8383 1.54737C20.8385 1.54737 20.8389 1.54737 20.8392 1.54703ZM20.8379 1.5477C20.8379 1.5477 20.8371 1.5477 20.8367 1.54804C20.8371 1.54804 20.8375 1.54804 20.8379 1.5477ZM20.836 1.54838C20.836 1.54838 20.835 1.54871 20.8344 1.54871C20.835 1.54871 20.8355 1.54871 20.836 1.54838ZM20.4369 1.51573C20.4447 1.5154 20.4524 1.51506 20.4602 1.51439C20.446 1.51506 20.4319 1.51607 20.4175 1.51674C20.424 1.51641 20.4305 1.51607 20.4369 1.51573ZM20.3348 1.52179C20.3531 1.52078 20.3712 1.51977 20.3893 1.51843C20.3712 1.51943 20.3531 1.52044 20.3345 1.52179C20.3345 1.52179 20.3347 1.52179 20.3348 1.52179ZM20.1968 1.11694C20.2171 1.11526 20.238 1.11324 20.2596 1.11156C20.2288 1.11291 20.2012 1.12368 20.172 1.10382C20.1806 1.10719 20.189 1.11122 20.1968 1.11694ZM20.1299 1.09675C20.1322 1.09675 20.1344 1.09675 20.1364 1.09675C20.1308 1.09675 20.1254 1.09675 20.1193 1.09642C20.123 1.09642 20.1266 1.09642 20.1298 1.09642L20.1299 1.09675ZM20.1138 1.09675C20.1151 1.09675 20.1164 1.09675 20.1176 1.09675C20.1147 1.09675 20.1116 1.09675 20.1085 1.09675C20.1102 1.09675 20.112 1.09675 20.1136 1.09675H20.1138ZM20.2966 1.59684C20.2966 1.59684 20.2969 1.59684 20.297 1.59684C20.2969 1.59684 20.2968 1.59684 20.2966 1.59684ZM20.3711 1.58943C20.378 1.58876 20.3844 1.58842 20.3912 1.58809C20.3844 1.58842 20.378 1.5891 20.3711 1.58943ZM20.6321 1.5578C20.3358 1.57496 20.1363 1.59347 19.9721 1.61131C20.1363 1.59347 20.3358 1.57463 20.6321 1.5578C20.6321 1.5578 20.6322 1.5578 20.6324 1.5578C20.6324 1.5578 20.6323 1.5578 20.6322 1.5578H20.6321ZM20.7339 1.56184C20.7392 1.5615 20.7441 1.56083 20.749 1.56049C20.7443 1.56083 20.7392 1.5615 20.7339 1.56184ZM20.7555 1.55982C20.7574 1.55982 20.7592 1.55948 20.7609 1.55915C20.7587 1.55915 20.7567 1.55948 20.7543 1.55982C20.7547 1.55982 20.755 1.55982 20.7554 1.55982H20.7555ZM20.8661 2.20125C20.8661 2.20125 20.866 2.20125 20.8658 2.20125C20.8665 2.20125 20.8671 2.20125 20.8679 2.20125C20.8674 2.20125 20.8668 2.20125 20.8661 2.20125ZM20.8857 2.67272C20.8837 2.67272 20.8817 2.67272 20.8799 2.67272C20.8824 2.67272 20.8849 2.67272 20.8875 2.67272C20.887 2.67272 20.8864 2.67272 20.8858 2.67272H20.8857ZM20.8021 1.60525C20.8494 1.60222 20.8871 1.59987 20.9197 1.59751C20.8915 1.59953 20.8531 1.60188 20.8021 1.60525ZM20.9331 1.53155C20.9323 1.53155 20.9316 1.53155 20.931 1.53155C20.9323 1.53155 20.9338 1.53155 20.9351 1.53155C20.9344 1.53155 20.9338 1.53155 20.9331 1.53155ZM20.9871 1.59078C20.9871 1.59078 20.9859 1.59078 20.9854 1.59112C20.9862 1.59112 20.9869 1.59112 20.9874 1.59078C20.9874 1.59078 20.9873 1.59078 20.9871 1.59078ZM20.9877 1.59078C20.9877 1.59078 20.9881 1.59078 20.9882 1.59078C20.9879 1.59078 20.9878 1.59078 20.9875 1.59078C20.9875 1.59078 20.9875 1.59078 20.9877 1.59078ZM21.1556 2.66095C21.1335 2.66229 21.1117 2.66364 21.0906 2.66465C21.1233 2.66128 21.1561 2.65893 21.1894 2.67407C21.1776 2.67171 21.1663 2.66768 21.1556 2.66095ZM24.6978 1.93034C24.7052 1.92899 24.7125 1.92765 24.7199 1.92664C24.7116 1.92798 24.7033 1.92967 24.6949 1.93101C24.696 1.93101 24.6969 1.93067 24.698 1.93034H24.6978ZM24.6948 1.93101C24.6948 1.93101 24.6936 1.93101 24.6929 1.93101C24.6936 1.93101 24.6941 1.93101 24.6948 1.93101ZM24.5661 1.43934C24.5766 1.439 24.5872 1.43833 24.5982 1.43799C24.5815 1.43867 24.5654 1.43934 24.5491 1.44001C24.5547 1.44001 24.5602 1.43968 24.5661 1.43934ZM24.636 1.83274C24.5902 1.83476 24.5443 1.83712 24.4984 1.83914C24.5442 1.83712 24.5903 1.83476 24.636 1.83274ZM24.2733 1.5689C24.2971 1.56689 24.3211 1.56554 24.345 1.56386C24.3205 1.56554 24.296 1.56722 24.2715 1.56924C24.2721 1.56924 24.2726 1.56924 24.2733 1.56924V1.5689ZM24.323 2.00135C24.322 2.00135 24.3208 2.00135 24.3197 2.00135C24.3257 2.00101 24.3315 2.00034 24.3373 2C24.3326 2.00034 24.3278 2.00067 24.323 2.00101V2.00135ZM24.2909 1.84856C24.244 1.85092 24.1972 1.85294 24.1502 1.85529C24.1971 1.85294 24.244 1.85092 24.2909 1.84856ZM24.254 2.00606C24.2486 2.00606 24.2431 2.00673 24.2376 2.00707C24.2441 2.00673 24.2505 2.00639 24.2567 2.00606C24.2558 2.00606 24.255 2.00606 24.254 2.00606ZM24.2376 2.00707C24.2343 2.00707 24.231 2.0074 24.2277 2.00774C24.231 2.00774 24.2343 2.0074 24.2376 2.00707ZM24.1261 2.02861C24.1015 2.03029 24.0767 2.03197 24.0514 2.03365C24.0767 2.03197 24.1016 2.03029 24.1261 2.02861ZM24.149 2.01144C24.149 2.01144 24.1494 2.01144 24.1497 2.01144C24.1494 2.01144 24.1493 2.01144 24.149 2.01144ZM24.1497 2.01144C24.1568 2.01144 24.164 2.01077 24.171 2.01043C24.164 2.01043 24.1568 2.01111 24.1497 2.01144ZM24.1799 1.8351C24.1431 1.83577 24.1068 1.83678 24.0717 1.83746C24.1074 1.83678 24.1429 1.83577 24.1799 1.8351ZM23.9459 0.991755C23.9914 0.988053 24.0369 0.984351 24.0824 0.98065C23.9844 0.989063 23.8866 0.995793 23.7886 1.00219C23.841 0.998486 23.8934 0.99512 23.9459 0.991419V0.991755ZM23.4747 2.05957C23.4728 2.05957 23.4709 2.05957 23.469 2.0599C23.6557 2.04981 23.8423 2.03534 24.029 2.0276C23.8443 2.03534 23.6594 2.04981 23.4747 2.05957ZM23.4693 2.05957C23.4693 2.05957 23.4693 2.05957 23.4691 2.05957C23.4691 2.05957 23.4691 2.05957 23.4693 2.05957ZM23.3832 1.99563H23.3833C23.3833 1.99563 23.3835 1.99563 23.3832 1.99563ZM23.3832 1.9963C23.3832 1.9963 23.3833 1.9963 23.3835 1.9963C23.3835 1.9963 23.3833 1.9963 23.3832 1.9963ZM23.2709 1.89736C23.255 1.89803 23.2391 1.89904 23.2232 1.89971C23.2788 1.89702 23.3345 1.89433 23.3901 1.89164C23.3503 1.89366 23.3106 1.89568 23.2709 1.89736ZM22.9287 1.8701C22.9226 1.87077 22.9164 1.87111 22.9103 1.87178C23.065 1.86202 23.2196 1.85361 23.3743 1.84654C23.2619 1.85092 23.1493 1.85866 23.0369 1.86438C23.1457 1.85832 23.2546 1.8526 23.3636 1.84654C23.2186 1.85428 23.0737 1.86236 22.9288 1.8701H22.9287ZM23.0081 2.08884C23.0081 2.08884 23.0084 2.08884 23.0085 2.08884C23.0084 2.08884 23.0083 2.08884 23.0081 2.08884ZM23.0207 2.07134C23.0178 2.07134 23.015 2.07134 23.0119 2.07134C23.0153 2.07134 23.0179 2.07134 23.0207 2.07134ZM22.9777 2.09187C22.9765 2.09187 22.9753 2.09187 22.9742 2.09187C22.975 2.09187 22.976 2.09187 22.9769 2.09187C22.9769 2.09187 22.9773 2.09187 22.9774 2.09187C22.9774 2.09187 22.9773 2.09187 22.9772 2.09187C22.9774 2.09187 22.9777 2.09187 22.978 2.09187C22.9777 2.09187 22.9776 2.09187 22.9774 2.09187C22.9774 2.09187 22.9776 2.09187 22.9777 2.09187ZM22.8949 2.09322C22.9066 2.09255 22.918 2.09221 22.9288 2.09154C22.918 2.09187 22.9066 2.09255 22.8949 2.09322ZM22.8961 2.10634C22.8953 2.10634 22.894 2.10601 22.8927 2.10601C22.8941 2.10601 22.8953 2.10601 22.8961 2.10634ZM23.1457 1.66549C23.1457 1.66549 23.1459 1.66549 23.146 1.66549C23.1459 1.66549 23.1457 1.66549 23.1455 1.66549C23.1455 1.66549 23.1456 1.66549 23.1457 1.66549ZM23.3759 1.84654H23.3756H23.3758H23.3755C23.3767 1.84654 23.378 1.84654 23.3792 1.84654C23.3782 1.84654 23.377 1.84654 23.3759 1.84654C23.3759 1.84654 23.3759 1.84654 23.376 1.84654H23.3759ZM23.5919 1.9825C23.5209 1.98688 23.4526 1.99125 23.388 1.99529C23.4524 1.99125 23.5209 1.98688 23.5919 1.9825ZM23.3951 1.84688C23.3962 1.84688 23.3972 1.84688 23.3983 1.84688C23.3972 1.84688 23.3963 1.84688 23.3952 1.84688C23.3958 1.84688 23.3963 1.84688 23.3968 1.84688C23.3959 1.84688 23.3951 1.84688 23.3943 1.84688C23.3946 1.84688 23.3948 1.84688 23.3951 1.84688C23.3951 1.84688 23.3951 1.84688 23.395 1.84688H23.3951ZM23.8565 1.84149C23.8803 1.84116 23.905 1.84048 23.9301 1.83981C23.905 1.84048 23.8809 1.84082 23.8565 1.84149ZM23.6904 1.62342C23.7337 1.61938 23.7768 1.61535 23.8201 1.61131C23.6825 1.62443 23.5452 1.63722 23.4081 1.65001C23.502 1.64126 23.5961 1.63217 23.6903 1.62342H23.6904ZM23.451 1.50732C23.462 1.50698 23.4731 1.50631 23.4842 1.50597C23.4731 1.50665 23.462 1.50698 23.451 1.50732ZM23.5041 1.50496C23.5161 1.50429 23.5285 1.50362 23.5408 1.50294C23.5286 1.50362 23.5163 1.50429 23.5041 1.50496ZM23.5581 1.50227C23.5752 1.50126 23.5926 1.50025 23.6102 1.49924C23.5928 1.50025 23.5753 1.50126 23.5581 1.50227ZM23.6137 1.49924C23.6137 1.49924 23.6135 1.49924 23.6133 1.49924C23.6135 1.49924 23.6136 1.49924 23.6137 1.49924ZM23.3637 1.65337C23.4176 1.64732 23.4714 1.64126 23.5253 1.6352C23.4705 1.64126 23.4155 1.64765 23.3607 1.65337C23.3617 1.65337 23.3627 1.65337 23.3637 1.65337ZM23.2131 1.03079C23.1912 1.03147 23.1702 1.0318 23.1504 1.03214C23.1702 1.0318 23.1913 1.03113 23.2131 1.03079ZM23.0003 1.07959C23.0015 1.07959 23.0027 1.07959 23.0039 1.07925C22.9974 1.07993 22.9897 1.08127 22.985 1.08228C22.9889 1.08127 22.9941 1.0806 23.0003 1.07959ZM22.9648 1.03248C22.9487 1.0318 22.941 1.03147 22.9382 1.03113C22.9411 1.03113 22.9487 1.03214 22.9648 1.03248ZM22.9366 1.03079C22.9422 1.03147 22.9479 1.03315 22.9536 1.03584C22.9479 1.03348 22.9422 1.0318 22.9366 1.03079ZM22.9184 1.02709C22.9192 1.04762 22.9201 1.06815 22.9209 1.08901C22.9201 1.06848 22.9192 1.04796 22.9184 1.02709ZM22.9799 1.51809C22.9799 1.51809 22.9806 1.51809 22.981 1.51809C22.9341 1.51843 22.8895 1.51876 22.8409 1.51943C22.8898 1.5191 22.9358 1.51843 22.9799 1.51809ZM22.8825 2.10567C22.8817 2.10567 22.8809 2.10567 22.88 2.10567C22.8817 2.10567 22.8834 2.10567 22.885 2.10567C22.8835 2.10567 22.8821 2.10567 22.8806 2.10567C22.8813 2.10567 22.8818 2.10567 22.8823 2.10567H22.8825ZM22.8254 2.13697C22.8088 2.13798 22.7918 2.13865 22.7749 2.13966C22.7919 2.13865 22.8088 2.13798 22.8254 2.13697ZM22.6763 1.52044C22.6779 1.52044 22.6795 1.52044 22.6809 1.52044C22.6752 1.52044 22.6697 1.52044 22.664 1.52044C22.6681 1.52044 22.6722 1.52044 22.6763 1.52044ZM22.5506 1.50799C22.5525 1.50799 22.5544 1.50799 22.5563 1.50799C22.5502 1.50799 22.5442 1.50799 22.5379 1.50833C22.5423 1.50833 22.5464 1.50833 22.5506 1.50799ZM22.4974 1.50934C22.4833 1.50934 22.4686 1.51001 22.4527 1.51035C22.4685 1.51035 22.4833 1.50968 22.4974 1.50934ZM22.4726 2.12654C22.4743 2.12654 22.4762 2.1262 22.4779 2.12586C22.4762 2.12586 22.4743 2.1262 22.4726 2.12654ZM22.4817 2.12553C22.4817 2.12553 22.4824 2.12553 22.4827 2.12553C22.4823 2.12553 22.482 2.12553 22.4817 2.12553C22.4835 2.12553 22.4852 2.12519 22.4869 2.12485C22.4845 2.12485 22.4823 2.12553 22.48 2.12553C22.4805 2.12553 22.4811 2.12553 22.4815 2.12553H22.4817ZM22.4868 2.12485C22.4868 2.12485 22.4869 2.12485 22.487 2.12485C22.487 2.12485 22.4869 2.12485 22.4868 2.12485ZM22.36 1.51102C22.3746 1.51102 22.3886 1.51102 22.4017 1.51102C22.3835 1.51102 22.3637 1.51136 22.3424 1.51136C22.3485 1.51136 22.3542 1.51136 22.36 1.51136V1.51102ZM22.4364 1.91486C22.451 1.91351 22.4657 1.91217 22.4804 1.91048C22.3537 1.92293 22.2326 1.93438 22.1258 1.94481C22.2202 1.93572 22.3257 1.92563 22.4364 1.91486ZM22.2702 1.95726C22.2794 1.95659 22.2889 1.95625 22.2982 1.95558C22.2847 1.95625 22.271 1.95692 22.2577 1.95793C22.2622 1.95793 22.2667 1.95726 22.2712 1.95726C22.2709 1.95726 22.2705 1.95726 22.2702 1.95726ZM22.2868 1.94716C22.2868 1.94716 22.2868 1.94716 22.2871 1.94716C22.2871 1.94716 22.2869 1.94716 22.2868 1.94716ZM22.3392 1.95356C22.3357 1.95356 22.332 1.9539 22.3284 1.95423C22.332 1.95423 22.3357 1.9539 22.3392 1.95356ZM22.2566 1.95827C22.2485 1.95861 22.2404 1.95928 22.2324 1.95962C22.2416 1.95894 22.2509 1.95861 22.2602 1.95793C22.259 1.95793 22.2578 1.95793 22.2565 1.95793L22.2566 1.95827ZM22.2683 2.16625C22.3251 2.16355 22.3802 2.16052 22.4337 2.15783C22.3784 2.16052 22.3247 2.16322 22.2683 2.16625ZM22.3516 1.95322C22.3678 1.95255 22.384 1.95154 22.4007 1.95087C22.384 1.95154 22.3677 1.95255 22.3516 1.95322ZM22.4301 2.13394C22.4301 2.13394 22.4302 2.13394 22.4304 2.13394C22.4304 2.13394 22.4302 2.13394 22.4301 2.13394ZM22.4308 2.13394C22.4308 2.13394 22.4319 2.1336 22.4327 2.13327C22.4321 2.13327 22.4314 2.1336 22.4308 2.13394ZM22.4334 2.13327C22.4345 2.13327 22.4358 2.13259 22.4371 2.13226C22.4359 2.13226 22.4346 2.13293 22.4334 2.13327ZM22.1847 1.54636C22.1847 1.54636 22.1846 1.54636 22.1844 1.54636C22.1844 1.54636 22.1846 1.54636 22.1847 1.54636ZM22.1581 1.54636C22.1667 1.54636 22.1754 1.54636 22.1843 1.54636C22.1843 1.54636 22.1843 1.54636 22.1844 1.54636C22.1844 1.54636 22.1844 1.54636 22.1843 1.54636C22.1717 1.54636 22.1595 1.54636 22.1475 1.54669C22.1509 1.54669 22.1545 1.54669 22.1579 1.54669L22.1581 1.54636ZM21.8376 1.54232C21.8171 1.54232 21.7965 1.54232 21.776 1.54198C21.7965 1.54198 21.8171 1.54198 21.8376 1.54232ZM21.7731 1.05401C21.7747 1.05401 21.7761 1.05368 21.7776 1.05334C21.7522 1.05704 21.7252 1.05839 21.6548 1.06108C21.7207 1.05872 21.7536 1.05637 21.7731 1.05368V1.05401ZM21.6012 1.54097C21.6589 1.54097 21.7167 1.54097 21.7744 1.54165C21.7167 1.54097 21.6589 1.54064 21.6012 1.54097ZM21.6012 1.54097C21.6012 1.54097 21.6004 1.54097 21.6 1.54097C21.6004 1.54097 21.6008 1.54097 21.6012 1.54097ZM21.4382 1.02675C21.4637 1.02978 21.4735 1.02911 21.5 1.03786C21.4618 1.02574 21.4369 1.02709 21.3977 1.02373C21.4129 1.02474 21.4264 1.02541 21.4382 1.02675ZM21.3292 1.49285C21.3292 1.49285 21.3287 1.49285 21.3284 1.49285C21.3333 1.49285 21.3382 1.49285 21.343 1.49319C21.3369 1.49319 21.3305 1.49319 21.3239 1.49285C21.3256 1.49285 21.3273 1.49285 21.3292 1.49285ZM21.2793 1.5753C21.2793 1.5753 21.2794 1.5753 21.2795 1.5753C21.2795 1.5753 21.2794 1.5753 21.2793 1.5753ZM21.2842 1.54299C21.3223 1.54299 21.3606 1.54299 21.3987 1.54299C21.3605 1.54299 21.3222 1.54299 21.2838 1.54299C21.2838 1.54299 21.2839 1.54299 21.284 1.54299H21.2842ZM21.3275 2.67945H21.3287C21.3287 2.67945 21.3279 2.67945 21.3275 2.67945ZM21.3959 2.21201C21.5041 2.20293 21.6122 2.19384 21.7203 2.18442C21.6122 2.19351 21.504 2.20293 21.3959 2.21201ZM21.7339 1.98654C21.7309 1.98654 21.7278 1.98654 21.7249 1.98654C21.733 1.98654 21.7413 1.98654 21.7498 1.98654C21.7444 1.98654 21.7392 1.98654 21.7339 1.98654ZM21.7689 1.98654C21.7663 1.98654 21.7638 1.98654 21.7613 1.98654C21.7679 1.98654 21.7744 1.98654 21.7813 1.98654C21.7771 1.98654 21.773 1.98654 21.7689 1.98654ZM21.7903 2.1787C21.7903 2.1787 21.7906 2.1787 21.7908 2.1787C21.7907 2.1787 21.7906 2.1787 21.7903 2.1787ZM21.7859 1.9862C21.7893 1.9862 21.7924 1.9862 21.7956 1.9862C21.7923 1.9862 21.7891 1.9862 21.7859 1.9862ZM21.7943 1.9862C21.8012 1.9862 21.8082 1.98587 21.8152 1.98553C21.8081 1.98553 21.8012 1.98587 21.7943 1.9862ZM21.8208 2.66196C21.8127 2.66229 21.8045 2.66263 21.7964 2.6633C21.8054 2.66297 21.8144 2.66229 21.8234 2.66196C21.8225 2.66196 21.8217 2.66196 21.8208 2.66196ZM21.7879 1.55073C21.7877 1.55073 21.7874 1.55073 21.7873 1.55073C21.7875 1.55073 21.7878 1.55073 21.7881 1.55073C21.8119 1.55073 21.8359 1.55073 21.8597 1.5504C21.8357 1.5504 21.8119 1.5504 21.7879 1.55073ZM21.8829 2.65859C21.7773 2.6808 21.9086 2.62494 21.9637 2.6246C21.9397 2.64176 21.8842 2.59499 21.8829 2.65859ZM22.0128 1.57328C22.0205 1.57328 22.028 1.57395 22.0356 1.57429C22.028 1.57395 22.0206 1.57362 22.0128 1.57328ZM21.8379 1.54232C21.9046 1.54299 21.9715 1.544 22.0381 1.54467C21.9714 1.544 21.9046 1.54299 21.8379 1.54232ZM22.0131 1.51775C21.979 1.52145 21.9621 1.52482 21.9437 1.52785C21.9621 1.52516 21.9792 1.52179 22.0131 1.51775C22.0127 1.51775 22.0123 1.51775 22.0119 1.51775C22.0331 1.51775 22.0539 1.51843 22.0745 1.51843C22.0544 1.51843 22.034 1.51775 22.0131 1.51775ZM22.1115 1.56991C22.1097 1.56991 22.1082 1.56991 22.1064 1.56991C22.1075 1.56991 22.1085 1.56991 22.1096 1.56991C22.0941 1.57025 22.0786 1.57092 22.0633 1.57126C22.0793 1.57059 22.0954 1.57025 22.1115 1.56958V1.56991ZM22.1978 2.60979C22.153 2.61215 22.1091 2.61484 22.0655 2.61753C22.1091 2.61484 22.1529 2.61215 22.1978 2.60979ZM22.1981 2.64075C23.0634 2.59768 23.5179 2.57076 23.9436 2.52633C23.518 2.57076 23.0634 2.59768 22.1981 2.64075ZM23.4615 2.07067C23.6961 2.0562 23.9205 2.04207 24.119 2.02861C23.9205 2.04207 23.6961 2.05586 23.4615 2.07067ZM24.2919 2.00337C24.2876 2.00337 24.2832 2.00404 24.2787 2.00437C24.2849 2.00404 24.2911 2.00337 24.2972 2.00303C24.2954 2.00303 24.2936 2.00303 24.2918 2.00337H24.2919ZM24.3334 2.50177C24.3534 2.50042 24.3726 2.49941 24.391 2.4984C24.3726 2.49941 24.3535 2.50042 24.3334 2.50177ZM24.7811 2.48427C24.7771 2.48427 24.7729 2.48427 24.7687 2.48427C24.773 2.48427 24.7773 2.48427 24.7814 2.48427C24.7814 2.48427 24.7813 2.48427 24.7811 2.48427ZM24.8881 1.4104C24.8881 1.4104 24.8888 1.4104 24.889 1.4104C24.8888 1.4104 24.8884 1.4104 24.8881 1.4104ZM24.8949 2.01582C24.8941 2.01582 24.8933 2.01582 24.8924 2.01582C24.8938 2.01582 24.8954 2.01582 24.8969 2.01582C24.8962 2.01582 24.8955 2.01582 24.8949 2.01582ZM25.0484 0.936564H25.0493C25.0481 0.936564 25.0468 0.936564 25.0456 0.936564C25.0465 0.936564 25.0474 0.936564 25.0482 0.936564H25.0484ZM25.0632 1.40771C25.0514 1.40771 25.0387 1.40804 25.0256 1.40838C25.0387 1.40838 25.0514 1.40804 25.0632 1.40771ZM24.9684 1.40872C24.9814 1.40872 24.9933 1.40804 25.0053 1.40804C24.9937 1.40804 24.9814 1.40838 24.9684 1.40872ZM25.0211 1.40838C25.0358 1.40838 25.0502 1.40804 25.0633 1.40771C25.0501 1.40771 25.0358 1.40804 25.0211 1.40838ZM37.3454 1.08901C37.3434 1.08901 37.3413 1.08901 37.3393 1.08901C37.3413 1.08901 37.3433 1.08901 37.3454 1.08901ZM36.8734 1.55881C36.9107 1.55881 36.9461 1.55881 36.8877 1.55881C36.8946 1.55881 36.9015 1.55881 36.9083 1.55881C36.8967 1.55881 36.8851 1.55881 36.8733 1.55881H36.8734ZM36.549 1.11089C36.6817 1.10584 36.8144 1.1018 36.9471 1.0981C36.8144 1.10146 36.6817 1.1055 36.549 1.11089ZM36.5173 1.56823C36.5232 1.56823 36.529 1.5679 36.5349 1.56756C36.5189 1.56823 36.5029 1.5689 36.4867 1.56958C36.4971 1.56924 36.5073 1.5689 36.5175 1.56823H36.5173ZM36.5074 1.55376C36.5074 1.55376 36.5077 1.55376 36.5078 1.55376H36.5074ZM36.5087 1.55342C36.5087 1.55342 36.509 1.55342 36.5091 1.55342C36.509 1.55342 36.5089 1.55342 36.5087 1.55342ZM36.5111 1.55309C36.5111 1.55309 36.5118 1.55309 36.5122 1.55309C36.5118 1.55309 36.5114 1.55309 36.5111 1.55309ZM36.5148 1.55275C36.5163 1.55275 36.518 1.55275 36.52 1.55241C36.518 1.55241 36.5164 1.55275 36.5148 1.55275ZM36.5255 1.55174C36.5274 1.55174 36.5297 1.55174 36.5318 1.55141C36.5295 1.55141 36.5274 1.55141 36.5255 1.55174ZM36.4609 1.11291C36.4616 1.11291 36.4622 1.11291 36.4629 1.11291C36.4617 1.11291 36.4605 1.11291 36.4593 1.11291C36.4616 1.11291 36.4637 1.11291 36.4658 1.11291C36.4648 1.11291 36.4638 1.11291 36.4628 1.11291C36.492 1.11223 36.5213 1.1119 36.5507 1.11156C36.5234 1.1119 36.4963 1.11223 36.469 1.11291C36.4961 1.11223 36.5234 1.1119 36.5507 1.11156C36.5206 1.1119 36.4907 1.11257 36.4608 1.11291H36.4609ZM36.4824 1.57025C36.4734 1.57059 36.4644 1.57092 36.4552 1.57126C36.4644 1.57126 36.4734 1.57059 36.4824 1.57025ZM36.5054 1.09675C36.5108 1.09675 36.516 1.09675 36.5214 1.09675C36.516 1.09675 36.5107 1.09675 36.5054 1.09675ZM36.5312 1.09608C36.5286 1.09608 36.5261 1.09608 36.5236 1.09608C36.5261 1.09608 36.5287 1.09608 36.5312 1.09608ZM36.5487 1.11122C36.5487 1.11122 36.5487 1.11122 36.5486 1.11122C36.5486 1.11122 36.5486 1.11122 36.5487 1.11122ZM36.6997 1.06714C36.7078 1.06714 36.7159 1.0668 36.7241 1.06646C36.7159 1.06646 36.7079 1.0668 36.6997 1.06714ZM36.7324 1.06646C36.7675 1.06579 36.8034 1.06478 36.8389 1.06445C36.8022 1.06512 36.7659 1.06579 36.73 1.0668C36.7308 1.0668 36.7316 1.0668 36.7324 1.0668V1.06646ZM36.726 0.595322C36.726 0.595322 36.7266 0.595322 36.727 0.595322C36.42 0.625273 36.1089 0.573111 35.9062 0.660273C36.1091 0.573111 36.4189 0.625273 36.7262 0.595322H36.726ZM36.4418 1.5716C36.435 1.5716 36.4281 1.57193 36.4209 1.57227C36.4279 1.57227 36.435 1.57193 36.4418 1.5716ZM36.3118 1.57496C36.3224 1.57496 36.3329 1.57463 36.3431 1.57429C36.3329 1.57429 36.3225 1.57463 36.3118 1.57496ZM36.2828 1.5753C36.2817 1.5753 36.2808 1.5753 36.2798 1.5753C36.2815 1.5753 36.2832 1.5753 36.2849 1.5753C36.2843 1.5753 36.2836 1.5753 36.2828 1.5753ZM36.2881 1.08497C36.2823 1.08531 36.2767 1.08565 36.2709 1.08598C36.2766 1.08565 36.2823 1.08531 36.288 1.08497H36.2877C36.3023 1.0843 36.3171 1.08363 36.3323 1.08262C36.3172 1.08329 36.3025 1.08396 36.288 1.08497H36.2881ZM36.304 1.57496C36.3069 1.57496 36.3099 1.57496 36.3129 1.57496C36.3062 1.57496 36.2995 1.57496 36.2927 1.57496C36.2966 1.57496 36.3003 1.57496 36.3041 1.57496H36.304ZM36.2384 1.5891C36.2255 1.5891 36.2126 1.5891 36.2002 1.5891C36.2127 1.5891 36.2255 1.5891 36.2384 1.5891ZM36.1227 1.09137C36.117 1.0917 36.1114 1.09204 36.1057 1.09238C36.1113 1.09204 36.117 1.0917 36.1227 1.09137ZM35.9785 1.1018C35.9565 1.10348 35.9349 1.1055 35.9137 1.10719C35.9349 1.10517 35.9569 1.10348 35.9785 1.1018ZM35.9136 1.10719C35.9136 1.10719 35.9132 1.10719 35.9129 1.10719C35.9132 1.10719 35.9133 1.10719 35.9136 1.10719ZM35.7572 1.59313C35.76 1.59313 35.7626 1.59313 35.7654 1.59313C35.7567 1.59313 35.7478 1.59313 35.739 1.59347C35.7451 1.59347 35.7512 1.59347 35.7573 1.59347L35.7572 1.59313ZM35.6563 0.67609C35.6539 0.67609 35.6514 0.676426 35.649 0.676763C35.6514 0.676763 35.6538 0.676426 35.6563 0.67609ZM35.4617 1.56049C35.4617 1.56049 35.4629 1.56049 35.4635 1.56049C35.4566 1.56049 35.4494 1.56049 35.4421 1.56083C35.4486 1.56083 35.455 1.56083 35.4612 1.56049H35.4609C35.4609 1.56049 35.4616 1.56049 35.462 1.56049C35.4617 1.56049 35.4615 1.56049 35.4613 1.56049H35.4617ZM35.46 1.56049C35.4465 1.56049 35.4321 1.56116 35.4171 1.5615C35.4321 1.56116 35.4465 1.56083 35.46 1.56049ZM34.7771 1.5504C34.7787 1.5504 34.7805 1.5504 34.7822 1.55006C34.7805 1.55006 34.7787 1.55006 34.7769 1.5504H34.7771ZM34.7735 1.55073C34.7719 1.55073 34.7703 1.55073 34.7689 1.55107C34.7703 1.55107 34.7719 1.55107 34.7735 1.55073ZM34.7686 1.55141C34.7686 1.55141 34.7681 1.55141 34.7678 1.55141C34.7681 1.55141 34.7683 1.55141 34.7686 1.55141ZM34.7658 1.55141C34.7642 1.55141 34.7628 1.55174 34.7613 1.55208C34.7628 1.55208 34.7642 1.55174 34.7658 1.55141ZM34.8136 1.17483C34.8136 1.17483 34.8128 1.17483 34.8124 1.17483C34.8148 1.17483 34.8173 1.17483 34.82 1.17449C34.8179 1.17449 34.8157 1.17449 34.8138 1.17483H34.8136ZM34.7875 1.54939C34.7912 1.54939 34.795 1.54871 34.7989 1.54838C34.7959 1.54838 34.7931 1.54871 34.7902 1.54905C34.803 1.54804 34.8148 1.54737 34.8294 1.54636C34.8139 1.54737 34.8013 1.54804 34.7874 1.54905C34.7874 1.54905 34.7874 1.54905 34.7875 1.54905V1.54939ZM34.8012 1.20276C34.8021 1.20276 34.803 1.20276 34.8041 1.20276C34.8032 1.20276 34.8022 1.20276 34.8012 1.20276ZM35.01 1.1092C35.009 1.1092 35.008 1.1092 35.007 1.10954C35.0074 1.10954 35.0076 1.10954 35.008 1.10954C35.0047 1.10988 35.0015 1.11055 34.9982 1.11089C35.005 1.10988 35.0117 1.1092 35.0185 1.10819C35.0156 1.10853 35.0127 1.10887 35.0098 1.10954C35.0098 1.10954 35.0099 1.10954 35.01 1.10954V1.1092ZM35.0229 1.10752C35.0229 1.10752 35.0223 1.10752 35.0221 1.10752C35.0292 1.10651 35.0362 1.1055 35.043 1.10449C35.0365 1.1055 35.0299 1.10651 35.0231 1.10719C35.0231 1.10719 35.0233 1.10719 35.0234 1.10719C35.0233 1.10719 35.023 1.10719 35.0229 1.10719V1.10752ZM34.9954 1.11122C34.9911 1.1119 34.9866 1.11257 34.9821 1.11291C34.9866 1.11223 34.9909 1.11156 34.9954 1.11122ZM34.9679 1.63083H34.9678C34.9678 1.63083 34.9678 1.63083 34.9679 1.63083ZM34.9708 1.16137C34.9708 1.16137 34.9691 1.16137 34.968 1.16137C34.9692 1.16137 34.9701 1.16137 34.9708 1.16137ZM34.968 1.63083C34.9696 1.63083 34.9712 1.63083 34.9729 1.63083C34.9713 1.63083 34.9698 1.63083 34.968 1.63083ZM34.9728 1.11425C34.9728 1.11425 34.972 1.11425 34.9716 1.11425C34.9766 1.11358 34.9817 1.11291 34.9866 1.11223C34.9819 1.11291 34.9774 1.11358 34.9728 1.11392V1.11425ZM34.9745 1.1055C34.9539 1.10786 34.9333 1.11021 34.9127 1.11223C34.9376 1.10988 34.9623 1.10685 34.9872 1.10416C34.983 1.10449 34.9788 1.10517 34.9745 1.1055ZM34.9623 1.16103C34.961 1.16103 34.9596 1.16103 34.958 1.16103C34.9596 1.16103 34.9612 1.16103 34.9623 1.16103ZM34.9498 1.16103C34.9486 1.16103 34.9475 1.16103 34.9463 1.16103C34.9476 1.16103 34.9486 1.16103 34.9498 1.16103ZM34.9457 1.11795C34.9343 1.11964 34.9227 1.12098 34.911 1.12233C34.9227 1.12098 34.9344 1.11964 34.9457 1.11795ZM34.9446 1.53963C34.9446 1.53963 34.9445 1.53963 34.9443 1.53963C34.9443 1.53963 34.9445 1.53963 34.9446 1.53963ZM34.8568 1.19973C34.861 1.19973 34.8653 1.19939 34.8695 1.19906C34.8641 1.19906 34.8584 1.19973 34.8528 1.20007C34.8541 1.20007 34.8555 1.20007 34.8568 1.20007V1.19973ZM34.8843 1.54333C34.8878 1.54333 34.891 1.54299 34.8945 1.54266C34.8849 1.54333 34.8757 1.54367 34.8669 1.54434C34.8724 1.544 34.8784 1.54367 34.8842 1.54333H34.8843ZM34.9417 1.16069C34.9417 1.16069 34.9408 1.16069 34.9402 1.16069C34.9408 1.16069 34.9412 1.16069 34.9417 1.16069ZM34.9841 1.61232C35.093 1.61164 35.2022 1.61232 35.3113 1.61299C35.2022 1.61232 35.0929 1.61164 34.9839 1.61232C34.9839 1.61232 34.9839 1.61232 34.9841 1.61232ZM35.0754 1.17617C35.0843 1.1755 35.0936 1.17449 35.1023 1.17516C35.0936 1.17449 35.0844 1.17516 35.0754 1.17617ZM35.0483 1.09709C35.0483 1.09709 35.0482 1.09709 35.048 1.09709C35.093 1.0917 35.1382 1.08598 35.1832 1.07993C35.1382 1.08598 35.0932 1.0917 35.0483 1.09709ZM35.1733 0.609457C35.0764 0.622581 34.9766 0.63436 34.8737 0.644119C34.9766 0.63436 35.0762 0.622918 35.1733 0.609457ZM34.8383 1.11863C34.8318 1.1193 34.8253 1.11964 34.8188 1.12031C34.8271 1.11964 34.8355 1.11863 34.8437 1.11795C34.8418 1.11795 34.84 1.11829 34.8383 1.11829V1.11863ZM34.6321 1.15565C34.6321 1.15565 34.6321 1.15565 34.6319 1.15565C34.6319 1.15565 34.6319 1.15565 34.6321 1.15565ZM34.631 1.15565C34.553 1.1617 34.4749 1.16675 34.3969 1.17113C34.4749 1.16675 34.553 1.16204 34.631 1.15565ZM34.6062 1.59246C34.6107 1.59246 34.6154 1.59246 34.6201 1.5928C34.6058 1.59145 34.5918 1.59448 34.5776 1.59616C34.5872 1.59482 34.5967 1.59347 34.6064 1.59246H34.6062ZM34.579 1.23742C34.5801 1.23742 34.5812 1.23675 34.5825 1.23641C34.5812 1.23641 34.58 1.23709 34.579 1.23742ZM34.5827 1.23641C34.5827 1.23641 34.5835 1.23641 34.5837 1.23641C34.5833 1.23641 34.5829 1.23641 34.5827 1.23641ZM34.5849 1.23574C34.5865 1.2354 34.5884 1.23507 34.5901 1.23473C34.5882 1.23507 34.5865 1.2354 34.5849 1.23574ZM34.5605 1.42655C34.5567 1.42655 34.5529 1.42689 34.5489 1.42723C34.5578 1.42655 34.5666 1.42622 34.5758 1.42554C34.5758 1.42554 34.5758 1.42554 34.5756 1.42554C34.5706 1.42554 34.5656 1.42622 34.5605 1.42655ZM34.5507 1.41208C34.5507 1.41208 34.5509 1.41208 34.551 1.41208H34.5507ZM34.568 1.24348C34.568 1.24348 34.5682 1.24281 34.5685 1.24247C34.5682 1.24281 34.568 1.24314 34.568 1.24348ZM34.5685 1.24247C34.5685 1.24247 34.5686 1.24247 34.5688 1.24247C34.5688 1.24247 34.5686 1.24247 34.5685 1.24247ZM34.5689 1.24213C34.5689 1.24213 34.5696 1.24146 34.57 1.24112C34.5696 1.24112 34.5692 1.2418 34.5689 1.24213ZM34.5706 1.24079C34.5706 1.24079 34.5721 1.24011 34.5727 1.23978C34.5719 1.24011 34.5711 1.24045 34.5706 1.24079ZM34.5734 1.23944C34.5747 1.2391 34.5758 1.23843 34.5772 1.2381C34.5758 1.23843 34.5745 1.2391 34.5734 1.23944ZM34.4906 1.43564C34.4616 1.439 34.4326 1.44237 34.4037 1.4454C34.4328 1.44237 34.4618 1.43867 34.4906 1.43564ZM34.4428 1.23877C34.4384 1.23877 34.4338 1.23944 34.4294 1.23978C34.4475 1.23843 34.4653 1.23742 34.4829 1.23608C34.4697 1.23709 34.4563 1.23776 34.443 1.23877H34.4428ZM34.406 1.24112C34.3918 1.24213 34.3774 1.24314 34.363 1.24415C34.3775 1.24314 34.3917 1.24213 34.406 1.24112ZM34.3283 1.2418C34.3283 1.2418 34.3271 1.2418 34.3265 1.2418C34.3261 1.2418 34.3259 1.2418 34.3255 1.2418C34.3264 1.2418 34.3273 1.2418 34.3283 1.2418ZM34.3395 1.45045C34.2211 1.45886 34.1038 1.46996 33.9877 1.48242C34.1037 1.46996 34.2211 1.4592 34.3395 1.45045ZM33.7044 1.71092C33.6848 1.71328 33.6653 1.7153 33.6457 1.71765C33.7564 1.70486 33.8675 1.6914 33.9786 1.67828C33.8874 1.68905 33.7954 1.70015 33.7044 1.71092ZM33.8583 1.73818C33.8442 1.73953 33.8303 1.74054 33.8164 1.74188C33.8303 1.74054 33.8444 1.73919 33.8583 1.73818ZM33.3942 1.53895C33.5835 1.52718 33.7756 1.5053 33.9711 1.48444C33.7756 1.5053 33.5836 1.52684 33.3942 1.53895ZM33.2721 1.77183C33.2565 1.77251 33.2407 1.77284 33.2253 1.77352C33.2407 1.77318 33.2564 1.77251 33.2721 1.77183ZM34.0488 1.25694C34.0523 1.2566 34.0556 1.25627 34.0589 1.25593C34.0035 1.26165 33.9486 1.26737 33.8947 1.27309C33.9453 1.26771 33.9968 1.26266 34.0487 1.25728L34.0488 1.25694ZM34.0074 1.47198C33.9685 1.47602 33.9304 1.4804 33.8932 1.4841C33.9306 1.4804 33.9685 1.47602 34.0074 1.47198ZM33.7877 1.25425C33.664 1.27242 33.5414 1.27242 33.4177 1.26771C33.5966 1.27915 33.7731 1.25795 33.9523 1.23608C33.8967 1.24247 33.8419 1.24886 33.7877 1.25459V1.25425ZM33.6665 1.50732C33.6665 1.50732 33.6659 1.50732 33.6657 1.50732C33.6767 1.50597 33.6876 1.50496 33.6984 1.50362C33.6892 1.50463 33.68 1.50564 33.6706 1.50665C33.6825 1.5053 33.6942 1.50395 33.706 1.50261C33.6927 1.50395 33.6795 1.50564 33.6661 1.50698C33.6676 1.50698 33.669 1.50698 33.6706 1.50665C33.6693 1.50665 33.6678 1.50665 33.6665 1.50698V1.50732ZM33.9175 1.67592C33.8862 1.67962 33.855 1.68333 33.8237 1.68703C33.8548 1.68333 33.8861 1.67962 33.9175 1.67592ZM33.958 1.67121C33.9749 1.66919 33.9916 1.66717 34.0084 1.66515C33.9918 1.66717 33.9748 1.66919 33.958 1.67121ZM34.0606 1.27175C34.0653 1.27108 34.07 1.27074 34.0747 1.27007C34.07 1.27074 34.0653 1.27141 34.0606 1.27175ZM34.1366 1.21656C34.1075 1.21891 34.0786 1.22194 34.0499 1.22497C34.0786 1.22194 34.1076 1.21925 34.1369 1.21656H34.1366ZM34.1464 1.14925C34.1427 1.14925 34.139 1.14959 34.1353 1.14992C34.139 1.14992 34.1429 1.14959 34.1464 1.14925ZM33.9267 0.684503C34.0135 0.68383 34.0863 0.681138 34.1425 0.678445C34.078 0.681474 33.9647 0.684839 33.8751 0.684839C33.8924 0.684839 33.9098 0.684839 33.9267 0.684503ZM33.7872 1.1856C33.7872 1.1856 33.7883 1.1856 33.7889 1.1856C33.7883 1.1856 33.7877 1.1856 33.7872 1.1856ZM33.7731 1.18694C33.7687 1.18694 33.7637 1.18762 33.758 1.18795C33.7637 1.18795 33.7687 1.18728 33.7731 1.18694ZM33.7352 1.18896C33.7395 1.18896 33.7435 1.18896 33.7472 1.18863C33.7435 1.18863 33.7395 1.18896 33.7352 1.18896ZM33.45 0.674407C33.4566 0.690224 33.4763 0.67609 33.4879 0.681138C33.4763 0.67609 33.4565 0.690224 33.45 0.674407ZM33.4479 1.13983H33.4481C33.4477 1.13983 33.4473 1.13983 33.4469 1.13983C33.4472 1.13983 33.4475 1.13983 33.4479 1.13983ZM33.385 1.13815C33.4047 1.13848 33.425 1.13916 33.4459 1.13983C33.425 1.13916 33.4047 1.13882 33.385 1.13815ZM33.2061 1.18358C33.2051 1.18358 33.2042 1.18358 33.2033 1.18358C33.2043 1.18358 33.2053 1.18358 33.2063 1.18358C33.2063 1.18358 33.2063 1.18358 33.2062 1.18358H33.2061ZM33.1976 1.18358C33.196 1.18358 33.1945 1.18358 33.1929 1.18358H33.1976ZM32.8821 1.54636C32.8821 1.54636 32.8828 1.54636 32.8832 1.54636C32.8828 1.54636 32.8823 1.54636 32.8819 1.54636C32.8819 1.54636 32.8821 1.54636 32.8823 1.54636H32.8821ZM32.8828 1.54636C32.9608 1.54467 33.0388 1.54198 33.1168 1.53895C33.0388 1.54232 32.9608 1.54467 32.8828 1.54636ZM32.922 1.12872C32.9237 1.12872 32.9256 1.12872 32.9273 1.12872C32.9219 1.12872 32.9167 1.12872 32.9115 1.12872C32.915 1.12872 32.9185 1.12872 32.9221 1.12872H32.922ZM33.0029 1.1294C33.0091 1.1294 33.0152 1.1294 33.0216 1.1294C33.0152 1.1294 33.009 1.1294 33.0029 1.1294ZM33.1661 0.661282C33.1459 0.660946 33.1266 0.660609 33.1078 0.659936C33.1265 0.660273 33.1459 0.660609 33.1661 0.661282ZM32.8938 1.12771C32.8959 1.12771 32.8982 1.12771 32.9004 1.12771C32.8946 1.12771 32.8889 1.12771 32.8833 1.12771C32.8868 1.12771 32.8903 1.12771 32.8938 1.12771ZM32.8424 1.12738C32.8474 1.12738 32.8526 1.12738 32.8578 1.12738C32.8507 1.12738 32.844 1.12738 32.8375 1.12738C32.8391 1.12738 32.8407 1.12738 32.8423 1.12738H32.8424ZM32.8207 0.656234C32.8223 0.656234 32.824 0.656234 32.8257 0.656234H32.817C32.8183 0.656234 32.8194 0.656234 32.8207 0.656234ZM32.5003 1.14622C32.5027 1.14622 32.505 1.14622 32.5072 1.14622C32.5021 1.14622 32.4969 1.14656 32.4916 1.14656C32.4945 1.14656 32.4976 1.14656 32.5003 1.14656V1.14622ZM32.4442 1.71092C32.4418 1.71092 32.4392 1.71126 32.4364 1.71159C32.4392 1.71159 32.4418 1.71092 32.4442 1.71092ZM32.4636 1.70856C32.4636 1.70856 32.4637 1.70856 32.4635 1.70856C32.4635 1.70856 32.4635 1.70856 32.4636 1.70856ZM32.4602 1.70924C32.4602 1.70924 32.4595 1.70924 32.4591 1.70924C32.4595 1.70924 32.4598 1.70924 32.4602 1.70924ZM32.4558 1.70991C32.4549 1.70991 32.4539 1.70991 32.4528 1.71025C32.4539 1.71025 32.4549 1.71025 32.4558 1.70991ZM32.4505 1.71058C32.4487 1.71058 32.4466 1.71092 32.4443 1.71126C32.4466 1.71126 32.4486 1.71092 32.4505 1.71058ZM32.1816 1.74861C32.1698 1.74861 32.1584 1.74828 32.1473 1.74794C32.1584 1.74794 32.1698 1.74828 32.1816 1.74861ZM32.1025 1.14858C32.1277 1.14858 32.1531 1.14858 32.1777 1.14858C32.154 1.14858 32.129 1.14858 32.1025 1.14858ZM31.9729 1.14858C31.9729 1.14858 31.9722 1.14858 31.9718 1.14858C31.9726 1.14858 31.9734 1.14858 31.9742 1.14858C31.9738 1.14858 31.9733 1.14858 31.9729 1.14858ZM31.9711 1.14858C31.9604 1.14858 31.95 1.14858 31.9394 1.14858C31.947 1.14858 31.9549 1.14858 31.9627 1.14858C31.9566 1.14858 31.9505 1.14858 31.9445 1.14858C31.9533 1.14858 31.9621 1.14858 31.9711 1.14858ZM31.9533 1.7126C31.955 1.7126 31.9562 1.7126 31.9576 1.71294C31.9564 1.71294 31.955 1.71294 31.9531 1.7126C31.9531 1.7126 31.9531 1.7126 31.9533 1.7126ZM31.953 1.7126C31.953 1.7126 31.9526 1.7126 31.9525 1.7126C31.9527 1.7126 31.953 1.7126 31.9531 1.7126C31.9531 1.7126 31.9531 1.7126 31.953 1.7126ZM31.9588 1.71328C31.9588 1.71328 31.9599 1.71328 31.9603 1.71328C31.9598 1.71328 31.959 1.71328 31.9579 1.71328C31.9582 1.71328 31.9586 1.71328 31.9588 1.71328ZM31.9608 1.71328C31.9608 1.71328 31.9616 1.71328 31.9617 1.71328C31.9617 1.71328 31.9612 1.71328 31.9607 1.71328H31.9608ZM31.9605 1.71328C31.9605 1.71328 31.9605 1.71328 31.9607 1.71328C31.9607 1.71328 31.9607 1.71328 31.9605 1.71328ZM31.9726 1.74457C31.9974 1.74491 32.0225 1.74558 32.0484 1.74592C32.0101 1.74525 31.9762 1.74457 31.9455 1.7439C31.9542 1.7439 31.9633 1.74424 31.9726 1.74457ZM31.9967 1.14858C32.0007 1.14858 32.0049 1.14858 32.0092 1.14858C32.005 1.14858 32.0008 1.14858 31.9967 1.14858ZM32.0195 1.14858C32.0195 1.14858 32.0201 1.14858 32.0205 1.14858C32.0201 1.14858 32.0199 1.14858 32.0195 1.14858ZM32.0665 1.14858C32.0777 1.14858 32.0891 1.14858 32.1 1.14858C32.089 1.14858 32.0776 1.14858 32.0665 1.14858ZM32.1307 1.08834C32.1307 1.08834 32.1318 1.08834 32.1323 1.08834C32.1318 1.08834 32.1313 1.08834 32.1307 1.08834ZM31.8626 0.606428C31.9473 0.608447 32.022 0.610466 32.0844 0.613831C32.0211 0.610466 31.9412 0.60811 31.8561 0.606428C31.8582 0.606428 31.8604 0.606428 31.8626 0.606428ZM31.9007 1.23439C31.8979 1.23439 31.8953 1.23439 31.8925 1.23439C31.8962 1.23439 31.8998 1.23439 31.9035 1.23439C31.9025 1.23439 31.9016 1.23439 31.9007 1.23439ZM31.8914 1.72337C31.8914 1.72337 31.8912 1.72371 31.8912 1.72405C31.8912 1.72405 31.8914 1.72371 31.8914 1.72337ZM31.7839 1.12233C31.7918 1.12199 31.7998 1.12166 31.8079 1.12132C31.7889 1.12233 31.7701 1.123 31.7513 1.12401C31.7622 1.12367 31.773 1.123 31.7839 1.12267V1.12233ZM31.7607 1.07757C31.7607 1.07757 31.7611 1.07757 31.7612 1.07757C31.7611 1.07757 31.7608 1.07757 31.7607 1.07757ZM31.8276 1.23507C31.84 1.23507 31.8526 1.23507 31.8651 1.23507C31.8522 1.23507 31.8394 1.23507 31.8267 1.23507C31.8269 1.23507 31.8273 1.23507 31.8276 1.23507ZM31.4265 0.612822C31.5727 0.606091 31.6708 0.607101 31.8045 0.606428C31.5666 0.605418 31.3024 0.614505 31.0604 0.63335C31.1792 0.624937 31.3021 0.616187 31.4265 0.612822ZM31.6667 1.78967H31.6668C31.6668 1.78967 31.6668 1.78967 31.6667 1.78967ZM31.6667 1.78967C31.6667 1.78967 31.6658 1.78967 31.6648 1.79001C31.6658 1.79001 31.6662 1.79001 31.6667 1.78967ZM31.6125 1.07858C31.6255 1.07858 31.6386 1.07858 31.6517 1.07858C31.6387 1.07858 31.6256 1.07858 31.6125 1.07858ZM31.6509 1.07824H31.6532C31.6524 1.07824 31.6517 1.07824 31.6509 1.07824ZM31.1717 1.544H31.1744C31.1537 1.544 31.133 1.544 31.1122 1.54434C31.1321 1.54434 31.1518 1.54434 31.1717 1.544ZM31.1493 1.54367C31.1511 1.54367 31.1531 1.54367 31.1552 1.54367C31.1531 1.54367 31.1513 1.54367 31.1493 1.54367ZM31.1288 1.54434C31.1472 1.54434 31.1654 1.54434 31.1838 1.54434C31.1821 1.54434 31.1804 1.54434 31.1787 1.54434C31.1825 1.54434 31.1865 1.54434 31.1903 1.54434C31.1698 1.54434 31.1493 1.54434 31.1288 1.54434ZM31.0649 1.80616C31.0612 1.80616 31.0572 1.8065 31.0537 1.80683C31.0572 1.80683 31.0611 1.8065 31.0649 1.80616ZM31.0518 1.80683C31.0496 1.80683 31.0473 1.80683 31.0452 1.80717C31.0473 1.80717 31.0496 1.80717 31.0518 1.80683ZM31.0791 1.80549C31.0779 1.80549 31.0768 1.80549 31.0758 1.80549C31.077 1.80549 31.078 1.80549 31.0791 1.80549ZM30.9677 1.73515C30.9737 1.73515 30.9798 1.73515 30.9859 1.73515C30.9774 1.73515 30.9688 1.73515 30.9603 1.73515C30.9628 1.73515 30.9652 1.73515 30.9677 1.73515ZM30.9512 1.19637C30.9673 1.19502 30.9832 1.193 30.9991 1.19199C30.9832 1.193 30.9673 1.19468 30.9512 1.19637ZM31.0065 1.8102C30.9773 1.81053 30.9534 1.81087 30.9345 1.81121C30.9534 1.81121 30.9773 1.81087 31.0065 1.8102ZM30.6296 0.728925C30.6296 0.719502 30.6294 0.710079 30.6294 0.700656C30.6312 0.725896 30.6287 0.732963 30.6186 0.729934C30.6223 0.729598 30.626 0.729261 30.6296 0.728925ZM30.553 1.80178C30.553 1.80178 30.5527 1.80178 30.5526 1.80178C30.5527 1.80178 30.5528 1.80178 30.553 1.80178ZM30.5414 1.80448C30.5409 1.80448 30.5404 1.80481 30.5402 1.80515C30.5405 1.80515 30.5409 1.80481 30.5414 1.80448ZM30.5463 1.80313C30.5463 1.80313 30.5457 1.80313 30.5454 1.80313C30.5457 1.80313 30.5461 1.80313 30.5463 1.80313ZM30.52 1.77722C30.52 1.77722 30.5213 1.77722 30.522 1.77722C30.5167 1.77789 30.5115 1.77856 30.5065 1.77924C30.5108 1.77856 30.5153 1.77823 30.52 1.77755V1.77722ZM30.4462 1.24752C30.4687 1.24516 30.4908 1.24281 30.5128 1.24045C30.4812 1.24382 30.4487 1.24752 30.4165 1.24987C30.4265 1.24886 30.4364 1.24819 30.4462 1.24718V1.24752ZM30.4401 1.789C30.4401 1.789 30.4413 1.789 30.4418 1.789C30.4372 1.78967 30.4327 1.79034 30.4279 1.79101C30.432 1.79034 30.4361 1.78967 30.4401 1.789ZM30.2624 0.761905C30.1881 0.767626 30.1118 0.772674 30.0332 0.777722C30.1118 0.77301 30.1882 0.767626 30.2624 0.761905ZM29.9317 0.726233C29.9317 0.726233 29.9325 0.726233 29.9328 0.726233C29.9323 0.726233 29.9317 0.726233 29.9312 0.726233C29.9313 0.726233 29.9316 0.726233 29.9317 0.726233ZM29.9305 1.20074C29.9287 1.20074 29.9266 1.20141 29.9243 1.20175C29.9263 1.20175 29.9287 1.20108 29.9305 1.20074ZM29.9185 1.20242C29.8981 1.20478 29.8701 1.20747 29.8437 1.21016C29.8508 1.20949 29.858 1.20882 29.865 1.20814C29.861 1.20848 29.857 1.20882 29.8529 1.20949C29.8784 1.2068 29.8997 1.20478 29.9183 1.20242H29.9185ZM29.8999 1.25896C29.8981 1.25896 29.896 1.25963 29.8937 1.25997C29.896 1.25997 29.8981 1.2593 29.8999 1.25896ZM29.8227 1.22463C29.8227 1.22463 29.8229 1.22463 29.823 1.22463H29.8227ZM29.8059 1.22463C29.805 1.22463 29.8042 1.22463 29.8034 1.22463C29.8053 1.22463 29.8068 1.22463 29.8088 1.22463C29.8079 1.22463 29.8068 1.22463 29.806 1.22463H29.8059ZM29.8399 1.29059C29.825 1.2916 29.8092 1.29261 29.7939 1.29396C29.8096 1.29295 29.8249 1.29194 29.8399 1.29059ZM29.7664 0.730607C29.8113 0.729261 29.8561 0.727915 29.901 0.726569C29.734 0.730271 29.5589 0.743059 29.3972 0.749117C29.5166 0.744069 29.6397 0.738011 29.7664 0.730607ZM29.7653 1.21757C29.763 1.21757 29.7608 1.2179 29.7586 1.21824C29.7608 1.21824 29.763 1.21757 29.7653 1.21757ZM29.7551 1.21858C29.7551 1.21858 29.7537 1.21858 29.7532 1.21858C29.7539 1.21858 29.7545 1.21858 29.7551 1.21858ZM29.73 1.25223C29.7278 1.25223 29.7266 1.25189 29.7262 1.25156C29.7266 1.25156 29.7278 1.25223 29.73 1.25223ZM29.7235 1.28925C29.7235 1.28925 29.7243 1.28925 29.7247 1.28925C29.7197 1.28958 29.7147 1.28958 29.7099 1.28992C29.7139 1.28992 29.7178 1.28992 29.722 1.28958C29.7225 1.28958 29.723 1.28958 29.7235 1.28958V1.28925ZM29.4825 1.25156C29.4453 1.25324 29.4062 1.25526 29.3652 1.2566C29.4064 1.25526 29.4453 1.25358 29.4825 1.25156ZM29.5103 1.88154C29.4779 1.88289 29.4456 1.8839 29.4131 1.88491C29.4456 1.8839 29.4779 1.88322 29.5103 1.88154ZM29.2628 1.33232C29.2628 1.33232 29.2623 1.33232 29.262 1.33232C29.2623 1.33232 29.2626 1.33232 29.2628 1.33232ZM29.2288 1.32862C29.2288 1.32862 29.2281 1.32862 29.2279 1.32829C29.228 1.32829 29.2284 1.32829 29.2288 1.32862ZM29.2277 1.32829C29.2277 1.32829 29.2277 1.32829 29.2276 1.32829H29.2277ZM29.2277 1.32829C29.2277 1.32829 29.2275 1.32829 29.2275 1.32795C29.2275 1.32795 29.2275 1.32795 29.2277 1.32829ZM29.1312 1.84452C29.1185 1.84452 29.1059 1.84385 29.0934 1.84351C29.1059 1.84385 29.1186 1.84419 29.1312 1.84452ZM29.0099 1.84048C28.9728 1.83914 28.9358 1.83746 28.899 1.83577C28.9358 1.83746 28.9729 1.83914 29.0099 1.84048ZM28.8384 1.28588C28.8516 1.28454 28.8649 1.28319 28.8781 1.28184C28.8422 1.28555 28.8063 1.28925 28.7706 1.29295C28.7932 1.29059 28.8157 1.28824 28.8384 1.28588ZM28.6552 1.30136C28.6499 1.30136 28.6444 1.30136 28.6388 1.30136C28.6444 1.30136 28.6498 1.30136 28.6552 1.30136ZM28.6302 1.30103C28.6207 1.30103 28.6109 1.30103 28.6007 1.30069C28.611 1.30069 28.6207 1.30069 28.6302 1.30103ZM28.5813 1.32357C28.5858 1.32357 28.5905 1.32324 28.5954 1.3229C28.5905 1.3229 28.5857 1.32324 28.5813 1.32357ZM28.5648 1.3192C28.5648 1.3192 28.5646 1.3192 28.5645 1.3192C28.5645 1.3192 28.5646 1.3192 28.5648 1.3192ZM28.4821 1.29026C28.4881 1.29026 28.4943 1.29026 28.5003 1.29026C28.4927 1.29026 28.4852 1.29026 28.4776 1.29026C28.4791 1.29026 28.4807 1.29026 28.4821 1.29026ZM28.3546 0.779404C28.3807 0.778731 28.4071 0.778058 28.4335 0.777385C28.311 0.780751 28.1913 0.783779 28.0664 0.787818C28.1639 0.784789 28.2601 0.782097 28.3546 0.779741V0.779404ZM28.279 1.32458C28.279 1.32458 28.2795 1.32458 28.2798 1.32458C28.2795 1.32458 28.2793 1.32458 28.279 1.32458ZM28.0299 1.35824C28.0299 1.35824 28.0295 1.35824 28.0294 1.35824C28.0295 1.35824 28.0298 1.35824 28.0299 1.35824ZM28.0263 1.29295C27.9984 1.29329 27.9704 1.29396 27.9424 1.2943C27.9703 1.29396 27.9982 1.29329 28.0263 1.29295ZM28.0225 1.35622C28.0214 1.35622 28.0204 1.35588 28.019 1.35554C28.0204 1.35554 28.0216 1.35588 28.0227 1.35622C28.0217 1.35622 28.0205 1.35588 28.0192 1.35554C28.0205 1.35554 28.0214 1.35588 28.0225 1.35622ZM28.0184 1.35655C28.0186 1.35655 28.0186 1.35655 28.0188 1.35655C28.0188 1.35655 28.0186 1.35655 28.0184 1.35655ZM28.019 1.35554C28.019 1.35554 28.019 1.35588 28.019 1.35622C28.019 1.35622 28.019 1.35588 28.019 1.35554ZM28.0182 1.35655C28.0181 1.35655 28.0178 1.35655 28.0176 1.35655C28.0177 1.35655 28.018 1.35655 28.0181 1.35655H28.0182ZM28.0174 1.35655C28.0174 1.35655 28.0172 1.35655 28.0169 1.35655C28.0173 1.35655 28.0174 1.35655 28.0177 1.35655C28.0177 1.35655 28.0176 1.35655 28.0174 1.35655ZM28.0165 1.35655C28.0165 1.35655 28.0155 1.35655 28.0148 1.35689C28.0155 1.35689 28.016 1.35689 28.0165 1.35655ZM27.8968 1.33232C27.901 1.33232 27.9066 1.33232 27.9131 1.33165C27.9051 1.33165 27.8983 1.33232 27.8939 1.33232C27.8947 1.33232 27.8957 1.33232 27.8967 1.33232H27.8968ZM27.9044 1.33232C27.9167 1.33199 27.9341 1.33131 27.9519 1.33064C27.9343 1.33131 27.9167 1.33199 27.9044 1.33232ZM27.9026 1.29463C27.9116 1.29463 27.9205 1.29463 27.9295 1.2943C27.9205 1.2943 27.9116 1.2943 27.9026 1.29463ZM27.9688 1.32997C27.9707 1.32997 27.9727 1.32997 27.9744 1.32997C27.9634 1.3303 27.9514 1.33098 27.9397 1.33131C27.9494 1.33098 27.9593 1.33064 27.9687 1.3303L27.9688 1.32997ZM27.8797 1.29497C27.8735 1.29497 27.8673 1.29497 27.861 1.29531C27.8673 1.29531 27.8735 1.29531 27.8797 1.29497ZM27.8383 1.29564C27.8316 1.29564 27.8252 1.29564 27.8185 1.29598C27.8252 1.29598 27.8316 1.29598 27.8383 1.29564ZM27.7962 1.29665C27.7895 1.29665 27.7829 1.29665 27.7763 1.29699C27.7829 1.29699 27.7895 1.29699 27.7962 1.29665ZM27.7552 1.29766C27.7477 1.29766 27.74 1.29766 27.7325 1.29833C27.7401 1.29833 27.7477 1.298 27.7552 1.29766ZM27.4167 1.29396C27.4345 1.29329 27.4521 1.29261 27.4698 1.29228C27.4371 1.29329 27.4047 1.2943 27.3722 1.29564C27.3871 1.29497 27.4019 1.29463 27.4167 1.2943V1.29396ZM27.7178 1.29833C27.6158 1.30069 27.5097 1.30338 27.3954 1.30641C27.5098 1.30338 27.6159 1.30069 27.7178 1.29833ZM27.2933 1.30877C27.3977 1.30607 27.4947 1.30372 27.5873 1.30136C27.4945 1.30372 27.3969 1.30607 27.2924 1.30877C27.3085 1.30843 27.3243 1.30809 27.3401 1.30742C27.3246 1.30776 27.3089 1.30809 27.2931 1.30877H27.2932H27.2933ZM27.5378 1.85024C27.5362 1.85024 27.5347 1.85024 27.5331 1.85024C27.5346 1.85024 27.5362 1.85024 27.5378 1.85024ZM26.8989 1.8627C26.8989 1.8627 26.8989 1.8627 26.8991 1.8627C26.9058 1.8627 26.924 1.86169 26.952 1.86034C26.9233 1.86169 26.9052 1.86236 26.8987 1.8627C26.8987 1.8627 26.8989 1.8627 26.8991 1.8627H26.8989ZM26.5936 1.82198C26.769 1.81289 26.9444 1.8038 27.1198 1.79472C26.9445 1.8038 26.769 1.81289 26.5936 1.82198ZM26.6426 1.43227C26.6426 1.43227 26.6435 1.43227 26.644 1.43227C26.6406 1.43227 26.6371 1.43261 26.6337 1.43295C26.6366 1.43295 26.6396 1.43261 26.6426 1.43227ZM27.1147 1.39021C27.1102 1.38987 27.1063 1.39223 27.1021 1.39391C27.1063 1.39223 27.1102 1.38953 27.1147 1.39021ZM27.1476 1.37102C27.1662 1.36968 27.1849 1.36867 27.2034 1.36732C27.1849 1.36867 27.1662 1.36934 27.1476 1.37102ZM27.2207 1.84755C27.227 1.84755 27.2329 1.84688 27.2394 1.84654C27.1921 1.8489 27.1495 1.85058 27.1115 1.8526C27.1443 1.85092 27.1809 1.84923 27.2207 1.84755ZM27.2129 1.8139C27.2209 1.8139 27.2288 1.81457 27.2369 1.81491C27.2288 1.81491 27.2209 1.81424 27.2129 1.8139ZM27.3064 1.81726C27.3109 1.81726 27.3154 1.8176 27.3197 1.81794C27.3154 1.81794 27.3109 1.8176 27.3064 1.81726ZM27.2691 1.81592C27.2637 1.81592 27.2581 1.81558 27.2527 1.81525C27.2582 1.81525 27.2637 1.81558 27.2691 1.81592ZM27.2757 1.81592C27.2801 1.81592 27.2844 1.81592 27.2887 1.81625C27.2844 1.81625 27.2801 1.81625 27.2757 1.81592ZM27.2901 1.81625C27.2946 1.81625 27.2991 1.81625 27.3035 1.81659C27.2991 1.81659 27.2946 1.81659 27.2901 1.81625ZM27.1804 1.30204C27.228 1.30002 27.2761 1.29833 27.3246 1.29632C27.2761 1.298 27.2284 1.30002 27.1804 1.30204ZM26.9318 1.42992C26.9587 1.42554 26.9854 1.42083 27.0122 1.41646C26.9849 1.42083 26.9577 1.42588 26.9305 1.42992C26.9309 1.42992 26.9313 1.42992 26.9317 1.42992H26.9318ZM26.9257 1.43025C26.9256 1.43025 26.9254 1.43025 26.9253 1.43025C26.9253 1.43025 26.9254 1.43025 26.9256 1.43025C26.9241 1.43025 26.9241 1.43025 26.9256 1.43025H26.9257ZM26.837 1.42117C26.8293 1.42117 26.8219 1.42184 26.8143 1.42218C26.822 1.42184 26.8293 1.4215 26.837 1.42117ZM26.6538 1.43093C26.6538 1.43093 26.6533 1.43093 26.6529 1.43093C26.6598 1.43059 26.6667 1.42992 26.6735 1.42958C26.6669 1.42992 26.6604 1.43025 26.6538 1.43093ZM26.0886 0.895507C26.1961 0.885748 26.3037 0.875989 26.4113 0.865893C26.2343 0.882046 26.0571 0.8982 25.8799 0.914353C25.9494 0.907959 26.0191 0.901565 26.0886 0.895507ZM26.2875 1.45146C26.3005 1.45011 26.314 1.44876 26.3272 1.44708C26.3009 1.44977 26.2759 1.45247 26.2526 1.45516C26.2553 1.45516 26.2578 1.45448 26.2606 1.45415C26.2594 1.45415 26.2582 1.45415 26.2571 1.45448C26.2669 1.45347 26.277 1.45213 26.2874 1.45112L26.2875 1.45146ZM26.327 1.37708C26.3208 1.37742 26.3148 1.37776 26.3092 1.37809C26.3151 1.37776 26.3211 1.37742 26.3275 1.37708C26.3274 1.37708 26.3272 1.37708 26.3271 1.37708H26.327ZM26.327 1.84116C26.3247 1.84116 26.3225 1.84116 26.3201 1.84116C26.3206 1.84116 26.3213 1.84116 26.3219 1.84116H26.3217C26.3227 1.84116 26.3237 1.84116 26.3247 1.84116C26.3245 1.84116 26.3242 1.84116 26.3238 1.84116C26.3249 1.84116 26.3259 1.84116 26.327 1.84116ZM26.3611 1.8977C26.17 1.90846 25.9789 1.91923 25.788 1.92967C25.9791 1.9189 26.1702 1.90846 26.3611 1.8977ZM26.338 1.84116C26.3397 1.84116 26.3411 1.84116 26.3426 1.84116C26.3411 1.84116 26.3394 1.84116 26.338 1.84116ZM25.8762 1.87346C25.8762 1.87346 25.8763 1.87346 25.8764 1.87346C25.8764 1.87346 25.8763 1.87346 25.8762 1.87346ZM25.8764 1.87346C25.8783 1.87346 25.8799 1.8738 25.8812 1.87414C25.88 1.87414 25.8783 1.87346 25.8764 1.87346ZM26.0915 1.84654C26.0968 1.84654 26.1017 1.84654 26.107 1.84621C26.102 1.84621 26.0968 1.84621 26.0915 1.84654ZM26.3029 1.84116C26.3004 1.84116 26.2977 1.84116 26.2952 1.84116C26.2978 1.84116 26.3004 1.84116 26.3029 1.84116ZM26.2548 1.84183C26.2614 1.84183 26.2676 1.84183 26.2736 1.84149C26.2676 1.84149 26.2614 1.84149 26.2548 1.84183ZM26.3193 1.84082C26.3193 1.84082 26.3206 1.84082 26.3213 1.84082C26.3206 1.84082 26.32 1.84082 26.3193 1.84082ZM25.8284 1.51102C25.7032 1.51607 25.5779 1.52011 25.4527 1.52347C25.7426 1.5154 26.0325 1.5053 26.3222 1.48107C26.1579 1.4952 25.9931 1.50429 25.8284 1.51102ZM25.7206 1.98014C25.7182 1.98014 25.7158 1.98048 25.7134 1.98082C25.7158 1.98082 25.7182 1.98048 25.7206 1.98014ZM25.692 1.95087C25.6789 1.95154 25.6654 1.95221 25.6514 1.95289C25.6654 1.95221 25.6787 1.95154 25.692 1.95087ZM25.3649 1.41578C25.3511 1.41578 25.3393 1.41578 25.3291 1.41578C25.379 1.41578 25.4374 1.41275 25.4826 1.41141C25.4466 1.41275 25.4075 1.41444 25.3649 1.41578ZM25.4811 1.41141C25.508 1.4104 25.535 1.40905 25.561 1.40804C25.5352 1.40939 25.5078 1.4104 25.4811 1.41141ZM25.8229 1.39054C25.8206 1.39054 25.8182 1.39088 25.8157 1.39122C25.8186 1.39122 25.8216 1.39088 25.8245 1.39054C25.824 1.39054 25.8235 1.39054 25.8229 1.39054ZM25.8779 1.3855C25.8844 1.38482 25.891 1.38415 25.8975 1.38381C25.891 1.38449 25.8844 1.38516 25.8779 1.3855ZM25.8386 1.3892C25.8428 1.38886 25.847 1.38852 25.8512 1.38819C25.8502 1.38819 25.8494 1.38819 25.8485 1.38819C25.8498 1.38819 25.851 1.38819 25.8523 1.38785C25.8484 1.38819 25.8444 1.38852 25.8404 1.38886C25.8411 1.38886 25.8416 1.38886 25.8423 1.38886C25.838 1.3892 25.8338 1.38953 25.8297 1.38987C25.8333 1.38987 25.837 1.3892 25.8406 1.38886C25.8399 1.38886 25.8392 1.38886 25.8387 1.38886L25.8386 1.3892ZM25.811 1.39155C25.811 1.39155 25.8114 1.39155 25.8116 1.39155C25.8104 1.39155 25.8092 1.39155 25.8078 1.39155C25.8089 1.39155 25.81 1.39155 25.811 1.39155ZM25.5802 0.935555C25.5911 0.934881 25.6018 0.934545 25.6121 0.933872C25.6018 0.934545 25.5912 0.934881 25.5802 0.935555ZM25.3698 0.944304C25.4344 0.942285 25.4905 0.939929 25.5405 0.937574C25.4933 0.93118 25.4249 0.959112 25.3698 0.935555C25.3698 0.938583 25.3698 0.941275 25.3698 0.944304ZM25.3251 1.41612H25.3237C25.3237 1.41612 25.3246 1.41612 25.3251 1.41612ZM25.2518 1.51977C25.2734 1.51943 25.2949 1.51876 25.3165 1.51843C25.2951 1.51876 25.273 1.51943 25.2512 1.51977C25.2514 1.51977 25.2516 1.51977 25.2518 1.51977ZM25.214 1.52987C25.2155 1.52987 25.2171 1.52987 25.2185 1.52987C25.1754 1.53088 25.1322 1.53222 25.0889 1.53323C25.1306 1.53189 25.1723 1.53088 25.214 1.52987ZM26.3766 2.42807C26.0922 2.44254 25.8076 2.45667 25.5231 2.47013C25.8076 2.45634 26.0922 2.4422 26.3766 2.42807ZM26.3728 1.95692C26.3728 1.95692 26.3728 1.95692 26.3729 1.95692C26.3729 1.95692 26.3729 1.95692 26.3728 1.95692ZM26.1907 1.47097C26.3398 1.4565 26.4848 1.44136 26.6347 1.4316C26.5506 1.43631 26.4655 1.44473 26.3833 1.45213C26.4435 1.44641 26.5043 1.44136 26.5665 1.43598C26.4391 1.44641 26.3176 1.45785 26.1906 1.47064L26.1907 1.47097ZM26.5999 2.41461C26.5699 2.40619 26.5254 2.43177 26.5024 2.40518C26.5977 2.43547 26.7143 2.39812 26.8167 2.40215C26.7445 2.40653 26.6722 2.41057 26.6 2.41494L26.5999 2.41461ZM27.1053 2.37052C27.0952 2.37119 27.0851 2.37153 27.0751 2.3722C27.1492 2.36783 27.2435 2.36177 27.2807 2.35874C27.243 2.36177 27.1857 2.36547 27.1051 2.37052H27.1053ZM27.2927 1.8802C27.2927 1.8802 27.2923 1.8802 27.292 1.8802C27.2923 1.8802 27.2925 1.8802 27.2928 1.8802C27.2928 1.8802 27.2928 1.8802 27.2927 1.8802ZM27.3236 2.3547C27.3271 2.35437 27.33 2.35369 27.3324 2.35336C27.33 2.35369 27.3271 2.35403 27.3236 2.3547ZM27.3716 1.82198C27.3716 1.82198 27.372 1.82198 27.3721 1.82231C27.3721 1.82231 27.3717 1.82231 27.3716 1.82198ZM27.3697 1.8213C27.3697 1.8213 27.3697 1.8213 27.3699 1.8213C27.3699 1.8213 27.3699 1.8213 27.3697 1.8213ZM27.4333 2.30826C27.4146 2.30591 27.3977 2.31163 27.3805 2.33115C27.4003 2.30893 27.4212 2.3022 27.4427 2.31196C27.4395 2.31062 27.4363 2.30961 27.4333 2.30793V2.30826ZM27.4655 1.37405C27.4509 1.37506 27.4424 1.37574 27.442 1.37675C27.443 1.37473 27.4759 1.37338 27.5256 1.3717C27.5007 1.37271 27.48 1.37338 27.4655 1.37439V1.37405ZM27.497 1.83847C27.4981 1.83847 27.4992 1.83847 27.5003 1.83813C27.4992 1.83813 27.4981 1.83813 27.497 1.83847ZM27.5002 1.83813C27.5024 1.83813 27.5048 1.83746 27.5073 1.83712C27.5073 1.83712 27.5073 1.83712 27.5072 1.83712C27.509 1.83712 27.5112 1.83678 27.5132 1.83645C27.5088 1.83712 27.5044 1.83746 27.5002 1.83813ZM27.5114 2.32038C27.5214 2.32038 27.5337 2.32038 27.5448 2.32071C27.5337 2.32071 27.5212 2.32071 27.5114 2.32038ZM27.5522 2.32071C27.55 2.32071 27.548 2.32071 27.5459 2.32071H27.5566C27.5551 2.32071 27.5535 2.32071 27.5522 2.32071ZM27.5533 1.83207C27.5554 1.83207 27.5574 1.83174 27.5595 1.8314C27.5574 1.8314 27.5554 1.83174 27.5533 1.83207ZM27.6063 2.32071C27.6029 2.32071 27.5999 2.32071 27.5966 2.32071C27.5999 2.32071 27.6031 2.32071 27.6064 2.32071C27.6064 2.32071 27.6064 2.32071 27.6063 2.32071ZM27.5877 1.30103C27.6017 1.30069 27.6158 1.30035 27.6297 1.30002C27.6158 1.30035 27.6019 1.30069 27.5877 1.30103ZM27.7097 1.298C27.7032 1.298 27.6967 1.298 27.6902 1.29833C27.6967 1.29833 27.7032 1.29833 27.7097 1.298ZM27.6703 1.29901C27.6595 1.29901 27.6488 1.29968 27.6378 1.29968C27.6486 1.29968 27.6595 1.29901 27.6703 1.29901ZM27.6721 1.83073C27.6786 1.83073 27.6848 1.83039 27.6915 1.83005C27.6848 1.83005 27.6783 1.83039 27.6721 1.83073ZM27.7044 1.82972C27.7 1.82972 27.6956 1.82972 27.6915 1.83005C27.6984 1.83005 27.7056 1.82972 27.713 1.82938C27.7101 1.82938 27.7073 1.82938 27.7044 1.82938V1.82972ZM27.7849 1.82736C27.7983 1.82736 27.8077 1.82534 27.8229 1.82366C27.8138 1.82467 27.806 1.82568 27.7999 1.82669C27.8028 1.82601 27.8061 1.82568 27.8098 1.82534C27.8011 1.82702 27.7934 1.82702 27.7849 1.82736ZM27.8359 1.82265C27.8323 1.82299 27.8289 1.82332 27.8257 1.82366C27.829 1.82332 27.8323 1.82299 27.8359 1.82265ZM27.8397 1.82231C27.8449 1.82198 27.8499 1.8213 27.8555 1.82097C27.8499 1.8213 27.8448 1.82198 27.8397 1.82231ZM27.8793 1.81895C27.8757 1.81895 27.8724 1.81962 27.869 1.81962C27.873 1.81928 27.8768 1.81928 27.8809 1.81861C27.8804 1.81861 27.88 1.81861 27.8793 1.81861V1.81895ZM27.9061 1.81525C27.9034 1.81558 27.9009 1.81592 27.8984 1.81625C27.9013 1.81592 27.9042 1.81558 27.9074 1.81491C27.9069 1.81491 27.9065 1.81491 27.9061 1.81491V1.81525ZM28.1242 1.37708C28.1242 1.37708 28.1235 1.37708 28.1231 1.37708C27.9753 1.38011 27.8277 1.3828 27.6799 1.3855C27.8277 1.3828 27.9755 1.37977 28.1233 1.37708C28.1237 1.37708 28.1239 1.37708 28.1243 1.37708H28.1242ZM28.1339 1.37708C28.1373 1.37708 28.1407 1.37708 28.1444 1.37708C28.1409 1.37708 28.1373 1.37708 28.1339 1.37708ZM28.15 1.37675C28.1483 1.37675 28.1464 1.37675 28.1448 1.37675C28.146 1.37675 28.1474 1.37675 28.1486 1.37675C28.1464 1.37675 28.1443 1.37675 28.1423 1.37675C28.1569 1.37641 28.1717 1.37607 28.1897 1.37574C28.1764 1.37574 28.1631 1.37607 28.1501 1.37641L28.15 1.37675ZM28.1852 1.37607C28.1803 1.37607 28.1756 1.37607 28.1707 1.37607C28.1783 1.37607 28.1859 1.37607 28.1936 1.37574H28.1852V1.37607ZM28.2071 1.32458C28.2121 1.32458 28.2173 1.32458 28.2223 1.32458C28.213 1.32458 28.2036 1.32458 28.1944 1.32492C28.1986 1.32492 28.2028 1.32492 28.2071 1.32492V1.32458ZM28.2169 1.3754H28.2168C28.2168 1.3754 28.2175 1.3754 28.2179 1.3754C28.2175 1.3754 28.2173 1.3754 28.2169 1.3754ZM28.3672 1.33939C28.3672 1.33939 28.3682 1.33939 28.3688 1.33939C28.3682 1.33939 28.3677 1.33939 28.3672 1.33939ZM28.5253 1.32593C28.5235 1.32593 28.5212 1.32559 28.5188 1.32526C28.5213 1.32526 28.5235 1.32559 28.5253 1.32593ZM28.5395 1.32492C28.5523 1.32425 28.5714 1.32324 28.5874 1.32256C28.5669 1.32324 28.5505 1.32425 28.5395 1.32492ZM28.6922 1.30136C28.6989 1.30136 28.7057 1.30136 28.7119 1.3017C28.7057 1.3017 28.6989 1.3017 28.6922 1.30136ZM28.6669 0.770991C28.6669 0.770991 28.6658 0.770991 28.6653 0.770991C28.687 0.770318 28.7087 0.769982 28.7308 0.769309C28.7094 0.769982 28.6879 0.770318 28.6669 0.770991ZM28.7802 1.82972C28.7802 1.82972 28.7793 1.82972 28.7789 1.82972C28.7798 1.82972 28.7808 1.82972 28.7816 1.82972C28.7812 1.82972 28.7806 1.82972 28.7802 1.82972ZM29.0234 2.36042C29.017 2.36042 29.0108 2.36042 29.0044 2.36042C29.0157 2.36042 29.0271 2.36042 29.0385 2.36042C29.0334 2.36042 29.0284 2.36042 29.0234 2.36042ZM29.0632 1.88895C29.0011 1.88895 28.9392 1.88895 28.8772 1.88895C28.9423 1.88895 29.0076 1.88895 29.0729 1.88895C29.0697 1.88895 29.0664 1.88895 29.0632 1.88895ZM29.1405 1.88895C29.1389 1.88895 29.1373 1.88895 29.1358 1.88895C29.2092 1.88861 29.2825 1.88794 29.3559 1.88625C29.284 1.88794 29.2122 1.88861 29.1405 1.88895ZM29.3621 1.84822C29.3684 1.84822 29.3745 1.84822 29.3808 1.84822C29.3794 1.84822 29.3779 1.84822 29.3766 1.84822C29.3775 1.84822 29.3784 1.84822 29.3794 1.84822C29.3745 1.84822 29.3694 1.84822 29.3645 1.84822C29.3662 1.84822 29.368 1.84822 29.3697 1.84822C29.3653 1.84822 29.3609 1.84822 29.3567 1.84822C29.3594 1.84822 29.362 1.84822 29.3647 1.84822C29.3639 1.84822 29.3631 1.84822 29.3623 1.84822H29.3621ZM29.8014 1.8627H29.8007C29.8096 1.86202 29.8185 1.86135 29.8274 1.86068C29.8188 1.86135 29.81 1.86202 29.8014 1.8627ZM29.8656 1.82669C29.8009 1.83476 29.7363 1.84149 29.6716 1.84722C29.7363 1.84149 29.801 1.83476 29.8658 1.82669H29.8656ZM29.8744 1.28723C29.8789 1.28689 29.8834 1.28656 29.8879 1.28622C29.8835 1.28656 29.879 1.28689 29.8744 1.28723ZM29.8904 1.25896C29.8904 1.25896 29.8892 1.25896 29.8887 1.25896C29.8897 1.25896 29.8908 1.25896 29.8917 1.25862C29.8913 1.25862 29.8908 1.25862 29.8904 1.25862V1.25896ZM29.9123 1.25459C29.9123 1.25459 29.9121 1.25459 29.912 1.25459C30.0389 1.24718 30.1659 1.23944 30.2927 1.22935C30.2289 1.23439 30.1652 1.23877 30.1014 1.24314C30.1611 1.2391 30.2209 1.23507 30.2807 1.23036C30.1579 1.23978 30.035 1.24785 29.9121 1.25459H29.9123ZM29.979 1.86135C29.9828 1.86068 29.9864 1.86034 29.9897 1.85967C29.9858 1.86034 29.9822 1.86101 29.9781 1.86135C29.9785 1.86135 29.9787 1.86135 29.979 1.86135ZM29.9865 2.32509C29.9835 2.32509 29.9803 2.32543 29.9771 2.32576C29.9803 2.32576 29.9834 2.32509 29.9865 2.32509ZM29.9991 1.85832C29.9983 1.85832 29.9977 1.85832 29.9969 1.85866C29.9985 1.85866 30.0003 1.85798 30.0018 1.85798C30.001 1.85798 30.0001 1.85798 29.9991 1.85832ZM30.0991 1.8001C30.0599 1.80481 30.0228 1.80952 29.9871 1.81356C30.0267 1.80885 30.0677 1.80347 30.1116 1.79842C30.1073 1.79876 30.1032 1.79943 30.099 1.79976L30.0991 1.8001ZM30.3085 1.81996C30.3095 1.81996 30.3103 1.81996 30.3114 1.81996C30.3105 1.81996 30.3097 1.81996 30.3085 1.81996ZM30.2416 1.77251H30.2404C30.2721 1.7688 30.3037 1.76477 30.3352 1.76106C30.304 1.76477 30.2727 1.7688 30.2416 1.77251ZM30.346 1.56991C30.346 1.56991 30.3473 1.56991 30.3479 1.56991C30.3473 1.56991 30.3466 1.56991 30.346 1.56991ZM30.3486 1.56991C30.3486 1.56991 30.3481 1.56991 30.3478 1.56991C30.3481 1.56991 30.3483 1.56991 30.3487 1.56991H30.3486ZM30.6306 2.26384C30.5318 2.29615 30.4531 2.23355 30.3572 2.2773C30.4621 2.23725 30.5535 2.29379 30.6619 2.26148C30.6509 2.26216 30.6405 2.26317 30.6306 2.26418V2.26384ZM30.636 1.1405C30.636 1.1405 30.6365 1.1405 30.6368 1.1405C30.6365 1.1405 30.6362 1.1405 30.636 1.1405ZM30.7341 1.21555C30.719 1.21723 30.7038 1.21891 30.6883 1.22026C30.7233 1.21656 30.7585 1.21286 30.793 1.20983C30.7736 1.21185 30.754 1.21353 30.734 1.21555H30.7341ZM30.7086 1.13411C30.7177 1.13343 30.727 1.13242 30.7365 1.13142C30.727 1.13242 30.7176 1.1331 30.7086 1.13411ZM30.7258 1.15093C30.7258 1.15093 30.7254 1.15093 30.7251 1.15093C30.7254 1.15093 30.7255 1.15093 30.7258 1.15093ZM30.8191 1.77419C30.8191 1.77419 30.8191 1.77419 30.819 1.77419C30.8336 1.77318 30.8479 1.77251 30.8628 1.7715C30.8479 1.77251 30.8333 1.77352 30.8193 1.77419H30.8191ZM30.9387 1.15228C30.9387 1.15228 30.9392 1.15228 30.9396 1.15228C30.9228 1.15497 30.906 1.15733 30.8892 1.16002C30.9057 1.15733 30.9223 1.15497 30.9387 1.15262V1.15228ZM30.9171 1.80952C30.9159 1.80952 30.9151 1.80952 30.914 1.80952C30.915 1.80952 30.9161 1.80952 30.9171 1.80952ZM31.0114 2.27966C30.9675 2.28033 30.937 2.28067 30.9096 2.28067C30.937 2.28067 30.972 2.28067 31.0153 2.27932C31.0139 2.27932 31.0127 2.27932 31.0114 2.27966ZM31.0292 2.27797C31.0692 2.27495 31.1531 2.27259 31.2436 2.27023C31.1531 2.27225 31.0692 2.27461 31.0292 2.27797ZM31.3918 1.13478C31.3959 1.13478 31.3997 1.13478 31.4038 1.13444C31.3998 1.13444 31.3957 1.13444 31.3918 1.13478ZM31.4092 1.13411C31.4222 1.13343 31.4352 1.1331 31.4479 1.13242C31.4351 1.1331 31.4222 1.13343 31.4092 1.13411ZM31.4197 1.77924C31.4197 1.77924 31.4196 1.77924 31.4194 1.77924C31.4265 1.77924 31.4336 1.77924 31.4408 1.77924C31.4337 1.77924 31.4266 1.77924 31.4197 1.77924ZM31.4276 1.13343C31.449 1.13242 31.4703 1.13175 31.4915 1.13074C31.4706 1.13175 31.449 1.13242 31.4276 1.13343ZM31.2687 1.13983C31.345 1.1331 31.4213 1.12704 31.4976 1.12199C31.4213 1.12738 31.345 1.1331 31.2687 1.13983ZM31.6696 2.2598C31.6654 2.26014 31.6591 2.26081 31.6512 2.26115C31.6684 2.26014 31.6793 2.25946 31.6945 2.25307C31.6864 2.25644 31.6782 2.25879 31.6695 2.2598H31.6696ZM31.6764 1.12536C31.6977 1.12468 31.7191 1.12401 31.7406 1.123C31.7191 1.12368 31.6978 1.12468 31.6764 1.12536ZM31.9249 1.71395C31.9269 1.71395 31.9289 1.71328 31.9309 1.71328C31.9288 1.71328 31.9269 1.71395 31.9249 1.71395ZM31.9121 1.71597C31.9121 1.71597 31.9126 1.71597 31.9129 1.71597C31.9126 1.71597 31.9123 1.71597 31.9121 1.71597ZM31.918 1.71496C31.918 1.71496 31.9192 1.71496 31.9199 1.71496C31.9192 1.71496 31.9186 1.71496 31.918 1.71496ZM32.1707 2.24769C32.1497 2.24769 32.1289 2.24769 32.1083 2.24735C32.1328 2.25038 32.1585 2.24028 32.1829 2.25475C32.1788 2.2524 32.1747 2.25072 32.1707 2.24769ZM32.1939 2.26081C32.1939 2.26081 32.1934 2.26081 32.1931 2.26047C32.1935 2.26047 32.1939 2.26081 32.1943 2.26115C32.1942 2.26115 32.194 2.26115 32.1939 2.26115V2.26081ZM32.1947 2.26115C32.1947 2.26115 32.1942 2.26115 32.194 2.26081C32.1943 2.26081 32.1946 2.26081 32.1948 2.26115H32.1947ZM32.2045 2.27999V2.26418C32.2045 2.26956 32.2045 2.27461 32.2045 2.27999ZM32.2171 1.80851C32.2123 1.80851 32.2077 1.80851 32.2028 1.80885C32.2114 1.80885 32.2196 1.80851 32.2278 1.80818C32.2243 1.80818 32.2208 1.80818 32.2172 1.80818L32.2171 1.80851ZM32.282 1.69813C32.2653 1.69813 32.2481 1.69746 32.2304 1.69712C32.2504 1.69746 32.2694 1.6978 32.2884 1.69813C32.2863 1.69813 32.2842 1.69813 32.282 1.69813ZM32.2686 1.15228C32.265 1.15228 32.2614 1.15228 32.258 1.15194C32.2637 1.15194 32.2695 1.15228 32.2752 1.15228C32.2731 1.15228 32.2708 1.15228 32.2687 1.15228C32.2778 1.15228 32.2871 1.15228 32.2963 1.15262C32.2871 1.15262 32.278 1.15262 32.2687 1.15228H32.2686ZM32.1992 0.676426C32.1936 0.676426 32.1882 0.676426 32.1826 0.676426C32.2263 0.676426 32.2729 0.676426 32.3095 0.676426C32.2767 0.676426 32.2401 0.676426 32.1992 0.676426ZM32.3266 1.69914C32.3266 1.69914 32.3271 1.69914 32.3275 1.69914C32.3273 1.69914 32.3269 1.69914 32.3266 1.69914ZM32.3415 1.69948C32.3475 1.69948 32.3532 1.69948 32.359 1.69982C32.3533 1.69982 32.3475 1.69982 32.3415 1.69948ZM32.4479 1.77991C32.4221 1.77924 32.3958 1.7789 32.3695 1.77856C32.396 1.7789 32.4223 1.77957 32.4482 1.77991C32.4482 1.77991 32.4482 1.77991 32.4479 1.77991ZM32.478 1.15766C32.496 1.15834 32.5145 1.15901 32.532 1.16002C32.5149 1.15935 32.4968 1.15834 32.478 1.15766ZM32.534 1.16002C32.534 1.16002 32.533 1.16002 32.5325 1.16002C32.5333 1.16002 32.534 1.16002 32.5348 1.16002C32.5345 1.16002 32.5342 1.16002 32.534 1.16002ZM32.5352 1.16002C32.5451 1.16036 32.5549 1.16103 32.5642 1.16137C32.5549 1.16103 32.5452 1.16036 32.5352 1.16002ZM32.6177 0.665657C32.6019 0.668013 32.5865 0.670032 32.5598 0.672051C32.5895 0.670032 32.6031 0.667676 32.6226 0.664984C32.6208 0.664984 32.6193 0.665321 32.6175 0.665657H32.6177ZM32.6929 1.17247C32.6912 1.17146 32.6836 1.17045 32.6712 1.16911C32.6836 1.17045 32.6913 1.17146 32.6929 1.17247C32.6926 1.17247 32.6924 1.17247 32.692 1.17214C32.6925 1.17214 32.6928 1.17247 32.6931 1.17247H32.6929ZM32.6512 1.16709C32.6512 1.16709 32.6509 1.16709 32.6508 1.16709C32.6509 1.16709 32.651 1.16709 32.6513 1.16709H32.6512ZM32.663 1.1681C32.6599 1.1681 32.6565 1.16742 32.653 1.16709C32.6579 1.16742 32.6626 1.16776 32.6667 1.16843C32.6655 1.16843 32.6641 1.16843 32.663 1.1681ZM32.7374 1.55208C32.84 1.55006 32.9472 1.5477 33.0613 1.544C32.9473 1.5477 32.84 1.55006 32.7374 1.55208ZM33.016 1.77789C33.0173 1.77789 33.0187 1.77789 33.0199 1.77789C33.0168 1.77789 33.0139 1.77789 33.0109 1.77789C33.0126 1.77789 33.0143 1.77789 33.016 1.77789ZM32.9554 1.77654C32.9531 1.77654 32.951 1.77654 32.9489 1.77654C32.9522 1.77654 32.9554 1.77654 32.9587 1.77654H32.9554ZM32.9673 1.77654C32.9694 1.77654 32.9714 1.77654 32.9735 1.77654C32.9702 1.77654 32.9668 1.77654 32.9634 1.77654C32.9648 1.77654 32.966 1.77654 32.9673 1.77654ZM33.0115 2.24903C32.9973 2.24903 32.9829 2.24903 32.9683 2.24903C33.0783 2.24836 33.1915 2.24668 33.2919 2.24365C33.2035 2.24634 33.1107 2.24802 33.0115 2.2487V2.24903ZM33.286 1.77015C33.2852 1.77015 33.2845 1.77015 33.2837 1.77015C33.2927 1.77015 33.3019 1.76948 33.3109 1.76914C33.3026 1.76914 33.2943 1.76981 33.286 1.77015ZM33.453 1.72068C33.453 1.72068 33.4522 1.72068 33.4518 1.72068C33.4607 1.72001 33.4699 1.71967 33.4791 1.719C33.461 1.72034 33.4424 1.72135 33.4251 1.72236C33.434 1.72203 33.4434 1.72135 33.453 1.72068ZM33.4989 1.75803C33.5261 1.75602 33.5536 1.75433 33.5815 1.75265C33.5536 1.75433 33.526 1.75635 33.4989 1.75803ZM33.5095 1.73044C33.5095 1.73044 33.5089 1.73044 33.5087 1.73044C33.5088 1.73044 33.5091 1.73044 33.5092 1.73044C33.5087 1.73044 33.508 1.73044 33.5075 1.73044C33.5398 1.72808 33.5722 1.72472 33.6048 1.72135C33.5729 1.72472 33.5411 1.72808 33.5095 1.73044ZM33.6056 1.72135C33.6202 1.71967 33.6347 1.71799 33.6493 1.71631C33.6345 1.71799 33.6195 1.72001 33.6047 1.72135C33.6049 1.72135 33.6053 1.72135 33.6056 1.72135ZM33.8323 2.211C33.7707 2.21673 33.709 2.22177 33.6461 2.22649C33.8121 2.21471 33.9465 2.19956 34.1239 2.18509C34.0175 2.19418 33.9191 2.20326 33.8323 2.211ZM34.2912 1.68299C34.1662 1.69308 34.0455 1.70486 33.9255 1.71832C34.0445 1.70486 34.1671 1.69308 34.2921 1.68299C34.2917 1.68299 34.2915 1.68299 34.2911 1.68299H34.2912ZM34.3504 1.62679C34.3484 1.62679 34.3461 1.62712 34.3442 1.62746C34.3558 1.62611 34.3675 1.62443 34.3791 1.62275C34.3696 1.6241 34.3601 1.62544 34.3504 1.62679ZM34.4081 1.69208C34.4081 1.69208 34.4079 1.69208 34.4077 1.69208C34.4476 1.68905 34.4882 1.68635 34.5301 1.68366C34.4885 1.68635 34.4478 1.68938 34.4081 1.69208ZM34.7056 1.12906C34.6903 1.13007 34.6752 1.13142 34.66 1.13242C34.6755 1.13142 34.691 1.13007 34.7066 1.12906C34.7062 1.12906 34.706 1.12906 34.7056 1.12906ZM34.7095 1.12906C34.732 1.12738 34.7547 1.12569 34.7772 1.12401C34.7543 1.12603 34.7313 1.12738 34.7083 1.12906C34.7087 1.12906 34.7091 1.12906 34.7095 1.12906ZM34.7442 1.55477C34.7392 1.55511 34.7342 1.55578 34.7291 1.55612C34.7342 1.55578 34.7391 1.55511 34.7442 1.55477ZM34.7442 1.55477C34.7442 1.55477 34.745 1.55443 34.7456 1.5541C34.7449 1.5541 34.7445 1.55443 34.7442 1.55477ZM34.7456 1.5541C34.7456 1.5541 34.7456 1.5541 34.7457 1.5541C34.7457 1.5541 34.7457 1.5541 34.7456 1.5541ZM34.7467 1.55376C34.7467 1.55376 34.7478 1.55376 34.7482 1.55342C34.7474 1.55342 34.7467 1.55376 34.7462 1.55376C34.7463 1.55376 34.7465 1.55376 34.7466 1.55376H34.7467ZM34.7483 1.55746C34.7483 1.55746 34.7473 1.55746 34.7467 1.55746C34.7473 1.55746 34.7481 1.55746 34.7489 1.55746C34.7489 1.55746 34.7487 1.55746 34.7486 1.55746C34.8119 1.55208 34.8751 1.54535 34.9384 1.53963C34.8751 1.54535 34.8118 1.55241 34.7483 1.55746ZM35.155 1.649C35.155 1.649 35.155 1.649 35.1552 1.649C35.1552 1.649 35.1552 1.649 35.155 1.649ZM35.1985 2.10668C35.1851 2.11476 35.1708 2.11947 35.1557 2.12014C35.175 2.12149 35.1916 2.10567 35.2097 2.10634C35.206 2.10634 35.2023 2.10634 35.1985 2.10634V2.10668ZM35.1132 1.62477C35.2342 1.62107 35.3554 1.61703 35.4766 1.61366C35.4354 1.61467 35.3943 1.61602 35.3531 1.61737C35.3929 1.61602 35.4327 1.61467 35.4725 1.61366C35.3527 1.61636 35.2329 1.62039 35.1132 1.62443V1.62477ZM35.6834 2.1087C35.6201 2.10769 35.558 2.10668 35.4954 2.10601C35.6302 2.10769 35.7585 2.11038 35.896 2.11173C35.8225 2.11106 35.7526 2.10971 35.6834 2.1087ZM35.8631 1.52852C35.8928 1.52886 35.9223 1.52919 35.9515 1.52953C35.9223 1.52953 35.8929 1.52886 35.8631 1.52852ZM35.9885 1.57294C35.9846 1.57294 35.9805 1.57294 35.9764 1.57294C35.9814 1.57294 35.9866 1.57294 35.9915 1.57294C35.9905 1.57294 35.9895 1.57294 35.9885 1.57294ZM36.0166 1.57328C36.0144 1.57328 36.012 1.57328 36.0096 1.57328C36.0125 1.57328 36.0154 1.57328 36.0183 1.57328C36.0177 1.57328 36.0171 1.57328 36.0165 1.57328H36.0166ZM35.9828 1.10012C36.0022 1.09844 36.0219 1.09709 36.0414 1.09574C36.0215 1.09709 36.0021 1.09877 35.9828 1.10012ZM36.0704 1.09372C36.0826 1.09271 36.095 1.09204 36.1073 1.09103C36.0921 1.09204 36.077 1.09305 36.062 1.09406C36.0648 1.09406 36.0676 1.09372 36.0704 1.09339V1.09372ZM36.0806 2.11274C36.0787 2.11274 36.077 2.11274 36.0751 2.11274C36.101 2.11274 36.1273 2.11274 36.1543 2.11274C36.1292 2.11274 36.1046 2.11274 36.0806 2.11274ZM36.1657 1.61938C36.1219 1.61467 36.2294 1.62645 36.25 1.62847C36.2219 1.62544 36.1938 1.62241 36.1657 1.61938ZM37.1731 2.07538C36.9018 2.0912 36.612 2.0599 36.3495 2.09793C36.6209 2.06125 36.9185 2.0875 37.199 2.07673C37.1882 2.07606 37.1796 2.07572 37.1733 2.07505L37.1731 2.07538ZM36.9696 1.09642C37.095 1.09305 37.2204 1.09036 37.3457 1.08767C37.2203 1.09036 37.0949 1.09305 36.9696 1.09642ZM37.4424 1.63116C37.453 1.63116 37.463 1.63049 37.4733 1.63015C37.4635 1.63015 37.4534 1.63083 37.4425 1.63116H37.4424ZM41.553 0.543833C41.4841 0.54316 41.4109 0.54215 41.3358 0.541814C41.411 0.54215 41.4841 0.542824 41.553 0.543833ZM41.13 1.48746C41.13 1.48746 41.1297 1.4878 41.1293 1.4878C41.1299 1.4878 41.13 1.4878 41.13 1.48746ZM41.1292 1.4878C41.1291 1.4878 41.1288 1.4878 41.1287 1.4878C41.1288 1.4878 41.1291 1.4878 41.1291 1.4878H41.1292ZM41.1285 1.4878C41.1285 1.4878 41.1275 1.4878 41.127 1.4878C41.1276 1.4878 41.1282 1.4878 41.1285 1.4878ZM41.0776 1.4915C41.0731 1.4915 41.0686 1.49184 41.0637 1.49218C41.069 1.49218 41.0744 1.49184 41.0794 1.4915C41.0788 1.4915 41.0782 1.4915 41.0776 1.4915ZM41.0075 1.0106C41.041 1.0106 41.075 1.01127 41.1099 1.01127C41.061 1.01094 41.0132 1.0106 40.9672 1.01026C40.9805 1.01026 40.994 1.01026 41.0075 1.01026V1.0106ZM40.7174 0.536766C40.7863 0.537439 40.8555 0.538112 40.9245 0.538449C40.8155 0.537439 40.6371 0.536766 40.5465 0.534747C40.5836 0.53542 40.6379 0.536429 40.7172 0.536766H40.7174ZM40.5657 1.02272C40.5633 1.02272 40.561 1.02305 40.5583 1.02339C40.5608 1.02339 40.5633 1.02305 40.5657 1.02272ZM40.546 1.55881C40.5494 1.55881 40.5529 1.55881 40.5564 1.55881C40.5357 1.55881 40.5147 1.55881 40.4939 1.55881C40.5113 1.55881 40.5286 1.55881 40.5461 1.55881H40.546ZM40.4826 1.00387C40.4794 1.00387 40.4766 1.00353 40.4738 1.0032C40.4738 1.0032 40.4738 1.0032 40.4739 1.0032C40.4739 1.0032 40.4738 1.0032 40.4737 1.0032C40.4763 1.0032 40.4792 1.00353 40.4826 1.00387ZM40.4716 1.0032C40.47 1.0032 40.4684 1.0032 40.4669 1.00286C40.4684 1.00286 40.47 1.00286 40.4718 1.0032C40.4718 1.0032 40.4718 1.0032 40.4717 1.0032H40.4716ZM40.4647 1.00252C40.463 1.00252 40.4616 1.00219 40.4603 1.00185C40.4616 1.00185 40.4631 1.00219 40.4648 1.00252H40.4647ZM40.4661 1.00252C40.4661 1.00252 40.4656 1.00252 40.4653 1.00252C40.4656 1.00252 40.4659 1.00252 40.4661 1.00252ZM40.0046 0.550227C40.1438 0.520613 40.3058 0.53542 40.4685 0.530708C40.3056 0.53542 40.1439 0.520613 40.0046 0.550227ZM40.4594 1.00185C40.4578 1.00185 40.4566 1.00151 40.4557 1.00118C40.457 1.00118 40.4578 1.00151 40.4594 1.00185ZM40.3811 1.00185C40.3742 1.00185 40.3673 1.00185 40.3607 1.00185C40.3785 1.00185 40.3971 1.00151 40.4166 1.00118C40.4044 1.00118 40.3926 1.00118 40.3811 1.00151V1.00185ZM40.4555 1.00084C40.4418 1.00084 40.4287 1.00084 40.4157 1.00118C40.4287 1.00118 40.4419 1.00118 40.4555 1.00084ZM40.1562 1.00488C40.1562 1.00488 40.1562 1.00488 40.1561 1.00488C40.1561 1.00488 40.1561 1.00488 40.1562 1.00488ZM39.6325 0.559313C39.7566 0.55864 39.8807 0.558304 40.0047 0.557631C39.873 0.5509 39.7403 0.574457 39.6092 0.549554C39.6173 0.55191 39.6249 0.554939 39.6325 0.559313ZM39.59 1.01733C39.59 1.01733 39.5897 1.01733 39.5896 1.01733C39.5897 1.01733 39.5898 1.01733 39.59 1.01733ZM39.584 0.546189C39.584 0.546189 39.5849 0.546189 39.5855 0.546189C39.5822 0.546189 39.5793 0.546189 39.5746 0.546189C39.5785 0.546189 39.5816 0.546189 39.584 0.546189ZM39.5469 0.546862C39.5492 0.546862 39.5516 0.546862 39.5538 0.546862C39.5513 0.546862 39.5488 0.546862 39.5463 0.546862C39.5465 0.546862 39.5467 0.546862 39.5469 0.546862ZM39.3916 1.03113C39.6791 1.03012 39.882 1.02911 40.1662 1.02776C40.1446 1.02776 40.1233 1.02776 40.1026 1.0281C40.2291 1.02743 40.3726 1.02642 40.506 1.02574C40.506 1.02574 40.5059 1.02574 40.5057 1.02574C40.5174 1.02507 40.531 1.0244 40.5415 1.02373C40.1087 1.03147 39.8159 1.0281 39.3915 1.03113H39.3916ZM39.9813 1.57799C39.9787 1.57799 39.9763 1.57799 39.974 1.57833C40.0226 1.57496 40.1788 1.57193 40.2715 1.56857C40.1831 1.5716 40.0368 1.57463 39.9813 1.57799ZM39.8584 1.48915C39.7775 1.49083 39.6939 1.49251 39.6114 1.49419C39.6951 1.49251 39.776 1.49083 39.8584 1.48915ZM39.9904 1.49689C40.0589 1.49924 40.103 1.50093 40.129 1.50294C40.103 1.50126 40.0589 1.49924 39.9904 1.49689ZM39.9532 1.52213C39.9702 1.5191 39.9881 1.51943 40.018 1.51742C39.9881 1.5191 39.9702 1.5191 39.9532 1.52213ZM40.2814 1.55915C40.2753 1.55915 40.2692 1.55915 40.2633 1.55915C40.3397 1.55847 40.4161 1.55814 40.4925 1.55814C40.4222 1.55814 40.3518 1.55814 40.2814 1.55915ZM40.3424 1.56419C40.3411 1.5652 40.3389 1.5652 40.3371 1.56554C40.3405 1.5652 40.3424 1.56487 40.3424 1.56419ZM40.3346 1.56588C40.3346 1.56588 40.3333 1.56588 40.3326 1.56588C40.3333 1.56588 40.334 1.56588 40.3346 1.56588ZM40.3295 1.56621C40.3276 1.56621 40.3255 1.56621 40.3231 1.56655C40.3254 1.56655 40.3275 1.56655 40.3295 1.56621ZM40.3215 1.56689C40.3197 1.56689 40.3177 1.56689 40.3156 1.56722C40.3177 1.56722 40.3197 1.56722 40.3215 1.56689ZM40.2934 1.56823C40.2907 1.56823 40.2877 1.56823 40.2847 1.56857C40.2877 1.56857 40.2907 1.56857 40.2934 1.56823ZM40.2834 1.56857C40.2798 1.56857 40.2761 1.56857 40.2723 1.5689C40.2761 1.5689 40.2798 1.5689 40.2834 1.56857ZM39.9177 1.02911C39.9177 1.02911 39.9165 1.02911 39.916 1.02911C39.9165 1.02911 39.9172 1.02911 39.9177 1.02911ZM39.163 1.49756C39.163 1.49756 39.163 1.49756 39.1628 1.49756C39.1629 1.49756 39.1632 1.49756 39.163 1.49756ZM38.7018 0.565371C38.8521 0.561669 39.0023 0.557967 39.1526 0.554266C38.9763 0.55864 38.8002 0.563015 38.6239 0.56739C38.6499 0.566717 38.6758 0.566044 38.7018 0.565371ZM39.1602 1.49857C39.1581 1.49857 39.1547 1.49924 39.1499 1.49958C39.1547 1.49958 39.158 1.49891 39.1602 1.49857ZM38.7036 1.03651C38.6896 1.03685 38.6754 1.03719 38.6614 1.03752C38.7143 1.03618 38.768 1.03483 38.8204 1.03382C38.7819 1.03483 38.7431 1.03584 38.7038 1.03651C38.763 1.03517 38.8204 1.03382 38.878 1.03214C38.821 1.03348 38.7628 1.03483 38.7038 1.03651H38.7036ZM38.8376 1.54198C38.8376 1.54198 38.8374 1.54198 38.8371 1.54198C38.8372 1.54198 38.8374 1.54198 38.8376 1.54198ZM37.5449 0.58388C37.8516 0.583207 38.1666 0.578832 38.4453 0.571765C38.1669 0.578832 37.8513 0.583207 37.5449 0.58388ZM37.7112 1.05401C37.6745 1.05401 37.6378 1.05435 37.6011 1.05469C37.6316 1.05469 37.6622 1.05435 37.6928 1.05401C37.6899 1.05401 37.6868 1.05401 37.6839 1.05401C37.693 1.05401 37.7022 1.05401 37.7113 1.05401H37.7112ZM37.7194 1.05401C37.7181 1.05401 37.7169 1.05401 37.7156 1.05401C37.7634 1.05401 37.8113 1.05368 37.8591 1.053C37.8125 1.05334 37.766 1.05368 37.7194 1.05401ZM37.7732 1.55107C37.7692 1.55107 37.7654 1.55107 37.7615 1.55107C37.7655 1.55107 37.7693 1.55107 37.7732 1.55107ZM37.5623 1.55275C37.592 1.55275 37.6217 1.55208 37.6513 1.55208C37.6217 1.55208 37.592 1.55241 37.5623 1.55275ZM37.7077 1.55141C37.7003 1.55141 37.693 1.55141 37.6856 1.55141C37.6929 1.55141 37.7003 1.55141 37.7077 1.55141ZM37.8641 1.62511C37.8619 1.62511 37.8595 1.62511 37.8573 1.62511C37.8639 1.62511 37.8705 1.62511 37.8771 1.62477C37.8729 1.62477 37.8685 1.62477 37.8643 1.62477L37.8641 1.62511ZM38.0052 1.55006C38.0184 1.55006 38.0317 1.55006 38.045 1.55006C38.0315 1.55006 38.0184 1.55006 38.0052 1.55006ZM38.6076 2.06428C38.5264 2.06933 38.4471 2.07404 38.3616 2.07841C38.4533 2.0737 38.5377 2.06865 38.6254 2.06327C38.6194 2.0636 38.6136 2.06394 38.6077 2.06428H38.6076ZM38.6647 1.58977C38.6509 1.59044 38.6373 1.59112 38.6236 1.59179C38.6545 1.59011 38.6857 1.58842 38.7175 1.58708C38.6998 1.58809 38.6823 1.58876 38.6647 1.58977ZM38.7239 1.58674C38.731 1.5864 38.7382 1.58607 38.7453 1.58573C38.7382 1.58607 38.7309 1.5864 38.7239 1.58674ZM38.7776 1.58405C38.7835 1.58405 38.7893 1.58338 38.7953 1.58304C38.7893 1.58304 38.7835 1.58371 38.7776 1.58405ZM38.7953 2.05452C38.8538 2.05183 38.9155 2.0488 38.983 2.0461C38.9155 2.0488 38.8537 2.05149 38.7953 2.05452ZM39.1033 1.56049C38.9925 1.5615 38.8929 1.56251 38.7441 1.56386C38.8351 1.56318 38.9117 1.56217 38.9808 1.5615C38.9001 1.56217 38.8094 1.56318 38.6975 1.56419C38.7134 1.56419 38.7289 1.56419 38.744 1.56386C38.7379 1.56386 38.7316 1.56386 38.7253 1.56386C38.9072 1.56217 39.0328 1.56116 39.1523 1.55982C39.1361 1.55982 39.1198 1.55982 39.1033 1.56016V1.56049ZM39.1655 2.03971C39.2051 2.03836 39.2465 2.03736 39.2902 2.03635C39.2465 2.03736 39.205 2.0387 39.1655 2.03971ZM39.4468 1.5578C39.4385 1.5578 39.4303 1.5578 39.4222 1.5578C39.4353 1.5578 39.4485 1.5578 39.4623 1.5578C39.4571 1.5578 39.452 1.5578 39.4468 1.5578ZM39.5052 1.55107C39.5165 1.55107 39.5275 1.5504 39.5379 1.55006C39.5275 1.55006 39.5166 1.55073 39.5052 1.55107ZM39.5573 1.50463C39.4292 1.50867 39.3013 1.51304 39.1732 1.51674C39.286 1.51338 39.399 1.50968 39.5118 1.50597C39.4634 1.50766 39.4149 1.509 39.3663 1.51069C39.5579 1.50395 39.7496 1.50025 39.9412 1.49554C39.8131 1.49857 39.6852 1.5016 39.5571 1.50463H39.5573ZM39.9381 1.55073C39.9614 1.55073 39.985 1.55073 40.0087 1.55073C39.971 1.55073 39.9338 1.55073 39.8969 1.55073C39.9106 1.55073 39.9244 1.55073 39.9381 1.55073ZM39.9339 2.0313C39.9277 2.0313 39.9215 2.0313 39.9152 2.0313C39.9211 2.02726 39.934 2.04173 39.9339 2.02221C39.9339 2.02524 39.9339 2.02827 39.9339 2.03163V2.0313ZM40.5154 2.04913C40.3315 2.04981 40.1476 2.05048 39.9637 2.05082C40.1814 2.05014 40.5248 2.04846 40.7857 2.05014C40.6956 2.04981 40.6056 2.04947 40.5155 2.0488L40.5154 2.04913ZM40.5702 1.55847C40.5667 1.55847 40.5632 1.55847 40.5596 1.55847C40.6482 1.55847 40.7368 1.55881 40.8256 1.55915C40.7404 1.55915 40.6554 1.55847 40.5702 1.55847ZM40.8245 1.55915C40.9339 1.5615 41.0442 1.55645 41.1532 1.56184C41.1481 1.5578 41.1407 1.56116 41.135 1.56016C41.136 1.56016 41.1369 1.56016 41.138 1.56016C41.0335 1.56016 40.9291 1.55982 40.8246 1.55915H40.8245ZM41.1325 2.05889C41.1824 2.06125 41.2585 2.06327 41.3645 2.06529C41.2583 2.0636 41.1823 2.06159 41.1325 2.05889ZM41.3183 1.59313C41.3256 1.59313 41.3332 1.59313 41.341 1.59347C41.3332 1.59347 41.3259 1.59347 41.3183 1.59313ZM41.3685 1.59414C41.3753 1.59414 41.3822 1.59482 41.3892 1.59414C41.3822 1.59448 41.3753 1.59414 41.3685 1.59414ZM41.3917 2.06562C41.3898 2.06562 41.3881 2.06562 41.3863 2.06562C41.3898 2.06562 41.3935 2.06562 41.3971 2.06495C41.3953 2.06495 41.3935 2.06529 41.3917 2.06562ZM41.6723 1.58405C41.4707 1.58304 41.2692 1.58169 41.0676 1.58035C41.0675 1.58035 41.0674 1.58001 41.0675 1.57967C41.2687 1.58304 41.4709 1.58237 41.6723 1.58405ZM41.609 0.891132C41.6128 0.891132 41.6167 0.891469 41.6204 0.891806C41.6127 0.891469 41.6046 0.891132 41.5968 0.890459C41.6007 0.890459 41.6042 0.890796 41.6079 0.891132C41.6073 0.891132 41.6066 0.891132 41.6058 0.891132C41.6069 0.891132 41.6078 0.891132 41.6089 0.891132H41.609ZM41.5718 0.889113C41.5706 0.889113 41.5694 0.889113 41.5682 0.889113C41.5768 0.88945 41.5852 0.890123 41.5931 0.890459C41.5862 0.890123 41.5791 0.889786 41.5718 0.88945V0.889113ZM41.6728 1.58405H41.6726C41.7028 1.58338 41.7331 1.58304 41.7643 1.58237C41.7331 1.58304 41.7029 1.58338 41.6727 1.58405H41.6728ZM41.7428 1.58472C41.7428 1.58472 41.7422 1.58506 41.7421 1.58539C41.7421 1.58539 41.7422 1.58506 41.7428 1.58472ZM41.7263 2.05586C41.7087 2.05519 41.691 2.05553 41.6734 2.05519C41.6984 2.05586 41.7201 2.05384 41.7457 2.05957C41.7377 2.05856 41.7318 2.05721 41.7263 2.05586ZM41.8004 2.06529C41.7939 2.06461 41.7869 2.06428 41.781 2.0636C41.7874 2.06394 41.7949 2.06495 41.802 2.06529C41.8014 2.06529 41.8009 2.06529 41.8004 2.06529ZM41.801 1.58102C41.7993 1.58102 41.7975 1.58102 41.7957 1.58102C41.7992 1.58102 41.8028 1.58102 41.8063 1.58102C41.8045 1.58102 41.8027 1.58102 41.8009 1.58102H41.801ZM41.8127 0.89719C41.8127 0.89719 41.8129 0.89719 41.8131 0.89719C41.8129 0.89719 41.8128 0.89719 41.8127 0.89719ZM41.8152 0.546862C41.8415 0.345953 41.564 0.373885 41.5534 0.480902C41.5636 0.374222 41.8418 0.345617 41.8152 0.546862ZM48.1267 0.57614C48.1818 0.578159 48.2378 0.580515 48.2946 0.582534C48.1754 0.577823 48.0597 0.573448 47.9411 0.569073C48.003 0.571429 48.0648 0.573784 48.1267 0.57614ZM47.9781 1.16238C48.0145 1.16372 48.0503 1.1654 48.0851 1.16709C48.0503 1.1654 48.0146 1.16372 47.9781 1.16238ZM48.0659 1.62948C48.0823 1.62982 48.0987 1.63015 48.1153 1.63049C48.0949 1.63015 48.0745 1.62948 48.0544 1.62914C48.0582 1.62914 48.0621 1.62914 48.0659 1.62914V1.62948ZM48.1966 1.17281C48.2038 1.17315 48.2106 1.17382 48.2177 1.17415C48.2106 1.17382 48.2036 1.17315 48.1966 1.17281ZM47.773 1.15464C47.7641 1.15464 47.7552 1.15396 47.7463 1.15363C47.7552 1.15363 47.7641 1.1543 47.773 1.15464ZM47.9083 1.15935C47.9009 1.15935 47.8933 1.15867 47.8858 1.15834C47.8933 1.15834 47.9009 1.15901 47.9083 1.15935ZM47.842 1.15699C47.8328 1.15699 47.8237 1.15632 47.8145 1.15598C47.8237 1.15598 47.833 1.15665 47.842 1.15699ZM46.3456 0.513882C46.4828 0.612822 46.8412 0.334175 46.932 0.656234C47.0404 0.337203 47.422 0.647484 47.6228 0.557294C47.1678 0.538112 46.6286 0.525661 46.3458 0.513882H46.3456ZM47.5314 1.02507C47.5203 1.02473 47.5093 1.0244 47.4983 1.02373C47.5093 1.02406 47.5204 1.0244 47.5314 1.02507ZM46.1071 1.68568C46.5238 1.70183 46.9404 1.719 47.357 1.73582C46.8711 1.71698 46.3854 1.69477 45.8995 1.67895C45.9687 1.68131 46.038 1.68366 46.1073 1.68568H46.1071ZM46.385 1.59549C46.3904 1.59549 46.396 1.59549 46.4014 1.59583C46.396 1.59583 46.3904 1.59583 46.385 1.59549ZM46.4397 1.59684C46.4558 1.59717 46.472 1.59751 46.4879 1.59785C46.4718 1.59751 46.4558 1.59717 46.4397 1.59684ZM46.4936 1.63823C46.47 1.63756 46.4453 1.63655 46.4194 1.63554C46.4442 1.63655 46.4695 1.63756 46.4936 1.63823ZM46.4182 1.6352C46.4085 1.63486 46.3989 1.63419 46.3888 1.63386C46.3987 1.63419 46.4085 1.63486 46.4182 1.6352ZM46.5324 1.62241C46.5316 1.62241 46.5306 1.62241 46.5298 1.62241C46.5325 1.62241 46.5351 1.62241 46.5378 1.62241C46.5359 1.62241 46.5342 1.62241 46.5324 1.62241ZM46.9299 1.60727C46.9398 1.60727 46.9496 1.60761 46.9596 1.60794C46.9496 1.60794 46.9398 1.60761 46.9299 1.60727ZM46.8773 1.60626C46.8624 1.60626 46.8474 1.60559 46.8324 1.60525C46.8328 1.60525 46.8332 1.60525 46.8336 1.60525C46.8331 1.60525 46.8324 1.60525 46.8319 1.60525C46.8535 1.60559 46.875 1.60626 46.8965 1.6066C46.8877 1.6066 46.8787 1.60626 46.8698 1.60592C46.8723 1.60592 46.8748 1.60592 46.8773 1.60592V1.60626ZM46.7759 1.60424C46.7429 1.60357 46.7101 1.60289 46.6768 1.60222C46.7136 1.60289 46.7502 1.6039 46.7866 1.60458C46.783 1.60458 46.7796 1.60458 46.776 1.60458L46.7759 1.60424ZM46.7273 1.64227C46.7103 1.64227 46.6931 1.64227 46.6759 1.64193C46.6931 1.64193 46.7102 1.64193 46.7273 1.64227ZM46.6665 1.09844C46.6649 1.09844 46.6633 1.09844 46.6617 1.09844C46.6635 1.09844 46.6652 1.09844 46.6669 1.09844C46.6669 1.09844 46.6666 1.09844 46.6665 1.09844ZM46.6658 1.09844C46.6374 1.09743 46.6085 1.09608 46.5798 1.09507C46.6085 1.09608 46.6372 1.09743 46.6658 1.09844ZM46.6364 1.6416C46.6272 1.6416 46.6178 1.6416 46.6084 1.64126C46.6179 1.64126 46.6272 1.64126 46.6364 1.6416ZM46.9719 1.65775C47.1049 1.65909 47.2379 1.66078 47.3709 1.66179C47.2379 1.66044 47.1049 1.65909 46.9719 1.65775ZM46.9597 1.60761C46.9674 1.60761 46.9751 1.60761 46.9826 1.60794C46.9749 1.60794 46.9674 1.60794 46.9597 1.60761ZM47.2007 1.01363C47.205 1.01363 47.2093 1.01363 47.2136 1.01397C47.2093 1.01397 47.205 1.01397 47.2007 1.01363ZM46.2177 1.59145C46.1973 1.59078 46.1768 1.59044 46.1563 1.58977C46.1769 1.59044 46.1973 1.59078 46.2177 1.59145ZM46.0342 1.5864C46.0146 1.58573 45.9947 1.58539 45.9748 1.58472C45.996 1.58539 46.0171 1.58607 46.038 1.5864C46.0367 1.5864 46.0355 1.5864 46.0342 1.5864ZM45.9591 1.58439C45.9562 1.58439 45.9531 1.58439 45.9501 1.58439C45.9531 1.58439 45.956 1.58439 45.9591 1.58439ZM45.9344 1.58371C45.9113 1.58304 45.888 1.58237 45.8645 1.58169C45.8905 1.58237 45.9163 1.58338 45.9418 1.58405C45.9393 1.58405 45.937 1.58405 45.9344 1.58405V1.58371ZM45.8535 1.58136C45.8261 1.58068 45.7982 1.57967 45.7704 1.57866C45.7983 1.57967 45.8261 1.58035 45.8535 1.58136ZM45.446 1.5679C45.446 1.5679 45.4459 1.5679 45.4458 1.5679C45.4458 1.5679 45.4459 1.5679 45.446 1.5679ZM44.7501 1.59717C44.7501 1.59717 44.7501 1.59717 44.75 1.59717C44.75 1.59717 44.75 1.59717 44.7501 1.59717ZM44.7488 1.59717C44.7488 1.59717 44.7484 1.59717 44.7481 1.59717C44.7485 1.59717 44.7489 1.59717 44.7493 1.59717C44.7491 1.59717 44.7489 1.59717 44.7488 1.59717ZM44.7488 1.59717C44.7488 1.59717 44.7479 1.59717 44.7475 1.59717C44.748 1.59717 44.7484 1.59717 44.7488 1.59717ZM44.6809 1.52886H44.6807C44.6807 1.52886 44.6807 1.52886 44.6809 1.52886ZM44.4112 1.58573C44.4104 1.58573 44.4096 1.58573 44.4087 1.58573C44.4088 1.58573 44.4091 1.58573 44.4092 1.58573C44.4088 1.58573 44.4083 1.58573 44.4079 1.58573C44.4091 1.58573 44.4102 1.58573 44.4111 1.58573H44.4112ZM44.4078 1.58573C44.4051 1.58573 44.4018 1.58573 44.3986 1.58573C44.402 1.58573 44.4051 1.58573 44.4078 1.58573ZM44.3955 1.58573C44.3928 1.58573 44.3902 1.58573 44.3875 1.58573C44.3903 1.58573 44.3929 1.58573 44.3955 1.58573ZM44.354 1.58607C44.2799 1.58607 44.1962 1.58539 44.1209 1.58607C44.186 1.58539 44.2869 1.58607 44.354 1.58607ZM44.1039 1.5053C44.1286 1.50597 44.1513 1.50698 44.1721 1.50766C44.1513 1.50698 44.1285 1.50631 44.1039 1.5053C44.1902 1.50799 44.251 1.51001 44.2952 1.51136C44.2511 1.51001 44.1903 1.50799 44.1039 1.5053ZM44.1529 1.0419C44.1756 1.0419 44.1987 1.04223 44.2217 1.04257C44.1987 1.04257 44.1756 1.04223 44.1529 1.0419ZM44.3004 1.51169C44.3004 1.51169 44.3006 1.51169 44.3008 1.51169C44.2969 1.51169 44.2931 1.51169 44.289 1.51136C44.293 1.51136 44.2967 1.51136 44.3004 1.51169ZM44.3156 1.51237C44.3184 1.51237 44.321 1.51237 44.3236 1.51237C44.3187 1.51237 44.3134 1.51237 44.3082 1.51169C44.3107 1.51169 44.3131 1.51169 44.3155 1.51169L44.3156 1.51237ZM43.4581 0.542823C43.4581 0.542823 43.4587 0.542823 43.4588 0.542823C43.4583 0.542823 43.4579 0.542823 43.4573 0.542823C43.4576 0.542823 43.4579 0.542823 43.458 0.542823H43.4581ZM43.2032 1.00824C43.2032 1.00824 43.2024 1.00824 43.202 1.00824C43.2068 1.00824 43.2115 1.00824 43.2164 1.00824C43.2119 1.00824 43.2076 1.00824 43.2032 1.00824ZM43.2062 1.49453C43.2107 1.49419 43.2156 1.49386 43.2207 1.49352C43.2142 1.49386 43.2084 1.49419 43.2023 1.49487C43.2036 1.49487 43.2049 1.49487 43.2062 1.49487V1.49453ZM43.1889 1.00791C43.1911 1.00791 43.1935 1.00791 43.1958 1.00791C43.1919 1.00791 43.1881 1.00791 43.1843 1.00791C43.1858 1.00791 43.1873 1.00791 43.1889 1.00791ZM43.1749 1.00791C43.1709 1.00791 43.1668 1.00791 43.1628 1.00791C43.1668 1.00791 43.1708 1.00791 43.1749 1.00791ZM43.1546 1.00757C43.1485 1.00757 43.1423 1.00757 43.1362 1.00757C43.1421 1.00757 43.1484 1.00757 43.1546 1.00757ZM43.115 1.50025C43.115 1.50025 43.1153 1.50025 43.1154 1.50025C43.1153 1.50025 43.1151 1.50025 43.1149 1.50025H43.115ZM43.1147 1.50025C43.1123 1.50025 43.1098 1.50025 43.1075 1.50025C43.11 1.50025 43.1123 1.50025 43.1147 1.50025ZM43.0313 1.50194C43.0231 1.50194 43.0142 1.50194 43.005 1.50194C43.0142 1.50194 43.023 1.50194 43.0313 1.50194ZM42.9134 1.0244C42.9123 1.02373 42.9104 1.02305 42.9079 1.02238C42.9104 1.02305 42.9124 1.02373 42.9134 1.0244ZM42.8813 1.00623C42.8791 1.00623 42.8769 1.00623 42.8749 1.00623C42.8769 1.00623 42.879 1.00623 42.8813 1.00623ZM42.8733 1.00623C42.8744 1.00623 42.8757 1.00623 42.8769 1.00623C42.8754 1.00623 42.8738 1.00623 42.8725 1.00623C42.8728 1.00623 42.8731 1.00623 42.8733 1.00623ZM42.843 0.537103C42.8279 0.538785 42.8136 0.54417 42.8003 0.552583C42.8137 0.54417 42.8279 0.538785 42.843 0.537103ZM42.9006 1.57092C42.8948 1.57092 42.8888 1.57092 42.883 1.57092C42.8944 1.57092 42.9056 1.57126 42.9169 1.5716C42.9113 1.5716 42.9059 1.5716 42.9003 1.5716C42.9003 1.5716 42.9005 1.5716 42.9006 1.5716V1.57092ZM42.8511 1.54198C42.8426 1.54198 42.8341 1.54165 42.8255 1.54131C42.8341 1.54131 42.8427 1.54165 42.8511 1.54198ZM42.7717 1.53996C42.7772 1.53996 42.7826 1.53996 42.788 1.53996C42.7794 1.53996 42.7707 1.53963 42.7619 1.53929C42.7653 1.53929 42.7686 1.53929 42.7719 1.53929L42.7717 1.53996ZM42.7585 1.53996C42.7592 1.53996 42.76 1.53996 42.7606 1.53996C42.7589 1.53996 42.7572 1.53996 42.7556 1.53996C42.7565 1.53996 42.7576 1.53996 42.7585 1.53996ZM42.5826 1.5366C42.5836 1.5366 42.5846 1.5366 42.5855 1.5366C42.5826 1.5366 42.5798 1.5366 42.5768 1.5366C42.5787 1.5366 42.5806 1.5366 42.5825 1.5366H42.5826ZM42.4491 1.56318C42.48 1.56386 42.5106 1.56419 42.5412 1.56487C42.5106 1.56419 42.4799 1.56386 42.4491 1.56318ZM42.0013 1.52179C42.0062 1.52179 42.0111 1.52179 42.016 1.52145C42.0111 1.52145 42.0062 1.52179 42.0013 1.52179ZM42.1439 1.51607C42.1439 1.51607 42.1432 1.51607 42.1428 1.51607C42.1432 1.51607 42.1436 1.51607 42.144 1.51607C42.1398 1.51607 42.1351 1.51641 42.1306 1.51674C42.135 1.51674 42.1395 1.51641 42.1438 1.51607H42.1439ZM42.1244 1.02541C42.1305 1.02541 42.1365 1.02574 42.1424 1.02608C42.1365 1.02608 42.1306 1.02574 42.1244 1.02541ZM42.1541 1.02642C42.1623 1.02642 42.1702 1.02709 42.1781 1.02743C42.1702 1.02743 42.1623 1.02675 42.1541 1.02642ZM42.1921 1.02776C42.1958 1.02776 42.1996 1.02776 42.2032 1.0281C42.1996 1.0281 42.1958 1.0281 42.1921 1.02776ZM42.4604 1.60458C42.4367 1.6039 42.4126 1.60289 42.3881 1.60222C42.4125 1.60289 42.4367 1.60357 42.4604 1.60458ZM42.527 0.563015C42.4995 0.563015 42.4703 0.563015 42.4397 0.562342C42.4705 0.562342 42.4995 0.562679 42.527 0.563015ZM42.2816 1.03248C42.2751 1.03214 42.2684 1.0318 42.2611 1.03113C42.2682 1.03147 42.2751 1.0318 42.2816 1.03248ZM42.2157 1.02911C42.22 1.02911 42.2241 1.02945 42.2284 1.02978C42.2243 1.02978 42.22 1.02945 42.2157 1.02911ZM42.2384 1.03012C42.2419 1.03012 42.2451 1.03046 42.2484 1.03079C42.2451 1.03079 42.2419 1.03046 42.2384 1.03012ZM42.0822 1.0244C42.0717 1.0244 42.0611 1.02373 42.0503 1.02339C42.0611 1.02339 42.0717 1.02406 42.0822 1.0244ZM42.1129 1.02541C42.1063 1.02541 42.0995 1.02507 42.0928 1.02473C42.0997 1.02473 42.1063 1.02507 42.1129 1.02541ZM41.859 0.548208C41.9235 0.549554 41.9814 0.550564 42.0329 0.55191C41.9748 0.550227 41.8998 0.548881 41.8303 0.547535C41.8401 0.547535 41.8498 0.547871 41.859 0.548208ZM41.9842 1.55814C41.9842 1.55814 41.9839 1.55814 41.9838 1.55814C41.9838 1.55814 41.984 1.55814 41.9842 1.55814ZM41.9225 1.02036C41.91 1.02036 41.8973 1.01969 41.8845 1.01969C41.8972 1.01969 41.91 1.02002 41.9225 1.02036ZM41.8517 1.58068C41.8695 1.58068 41.8883 1.58035 41.906 1.58001C41.8884 1.58001 41.8695 1.58068 41.8517 1.58068ZM41.966 1.57866C41.965 1.57866 41.9639 1.57866 41.9629 1.57866C41.9639 1.57866 41.9648 1.57866 41.9659 1.57866C41.9578 1.57866 41.9494 1.57866 41.9409 1.579C41.9569 1.579 41.9733 1.57833 41.9892 1.57799C41.9815 1.57799 41.974 1.57799 41.966 1.57833V1.57866ZM42.0816 1.57597C42.0803 1.57597 42.079 1.57597 42.0777 1.57597C42.0843 1.57597 42.0908 1.57564 42.0969 1.5753C42.092 1.5753 42.0868 1.5753 42.0816 1.57564V1.57597ZM42.1828 1.59785C42.1828 1.59785 42.1836 1.59785 42.1841 1.59785C42.1643 1.59751 42.1446 1.59717 42.1243 1.59684C42.1442 1.59684 42.1634 1.59751 42.1828 1.59785ZM42.9843 2.09288C42.7156 2.08783 42.413 2.07134 42.1351 2.06798C42.4127 2.07101 42.716 2.08851 42.9843 2.09255C42.9843 2.09255 42.9843 2.09255 42.9843 2.09288ZM42.9852 1.62174C42.9852 1.62174 42.9855 1.62174 42.9856 1.62174C42.9856 1.62174 42.9853 1.62174 42.9852 1.62174ZM43.0787 1.60727C43.0774 1.60727 43.0762 1.60727 43.075 1.60727H43.0761C43.071 1.60727 43.066 1.60727 43.0612 1.60727C43.0663 1.60727 43.0714 1.60727 43.0767 1.60727H43.0761C43.077 1.60727 43.0778 1.60727 43.0787 1.60727ZM43.0637 1.5504C43.0512 1.54972 43.0385 1.54939 43.0253 1.54871C43.0472 1.54972 43.0682 1.5504 43.0885 1.55141C43.0804 1.55107 43.0721 1.55073 43.0637 1.5504ZM42.846 1.54165C43.0428 1.544 43.2076 1.54602 43.3544 1.5477C43.2993 1.54703 43.2416 1.54636 43.1807 1.54568C43.2416 1.54636 43.2992 1.54703 43.3544 1.5477C43.2074 1.54602 43.043 1.54434 42.846 1.54165ZM43.2926 1.49251C43.2964 1.49251 43.3001 1.49251 43.304 1.49251C43.2999 1.49251 43.2963 1.49251 43.2926 1.49251ZM43.3376 1.49251C43.3257 1.49251 43.3147 1.49251 43.3048 1.49251C43.3147 1.49251 43.3256 1.49251 43.3376 1.49251ZM43.5404 1.58136C43.5404 1.58136 43.539 1.58136 43.5384 1.58136C43.5406 1.58136 43.543 1.58136 43.5454 1.58169C43.5437 1.58169 43.542 1.58169 43.5404 1.58136ZM43.551 1.58203C43.5539 1.58203 43.5571 1.58237 43.5601 1.5827C43.5569 1.5827 43.5539 1.58237 43.551 1.58203ZM43.4735 1.54871C43.5196 1.54939 43.5641 1.54972 43.6076 1.55006C43.5641 1.54972 43.5194 1.54905 43.4735 1.54871ZM43.4657 1.01531C43.3699 1.01161 43.28 1.01094 43.2097 1.00892C43.2452 1.00959 43.2868 1.0106 43.3248 1.01127C43.3211 1.01127 43.3175 1.01127 43.3138 1.01127C43.3611 1.01228 43.4083 1.01329 43.456 1.01464C43.4556 1.01464 43.4553 1.01464 43.4549 1.01464C43.5895 1.02339 43.7242 1.0318 43.8587 1.04022C43.7278 1.03214 43.5966 1.02373 43.4657 1.01531ZM43.7911 1.55208C43.9281 1.55342 44.0635 1.55477 44.2162 1.55645C44.0668 1.55511 43.9273 1.55376 43.7911 1.55208ZM44.3262 1.63453C44.3114 1.63419 44.2959 1.63386 44.28 1.63352C44.2956 1.63386 44.311 1.63419 44.3257 1.63453C44.2444 1.63251 44.1605 1.63083 44.077 1.62881C44.0874 1.62881 44.098 1.62914 44.1082 1.62948C44.1023 1.62948 44.0962 1.62948 44.0902 1.62914C44.2192 1.63217 44.3343 1.63486 44.4184 1.63688C44.3908 1.63621 44.3598 1.63554 44.3261 1.63486L44.3262 1.63453ZM44.4536 1.50294C44.4433 1.50294 44.4333 1.50294 44.4234 1.50261C44.447 1.50261 44.4706 1.50328 44.4947 1.50362C44.4808 1.50362 44.467 1.50328 44.4537 1.50294H44.4536ZM44.4549 1.50294C44.5213 1.50395 44.5946 1.5053 44.6726 1.50732C44.5945 1.5053 44.5213 1.50395 44.4549 1.50294ZM44.65 1.52953C44.6467 1.52953 44.6432 1.52953 44.6399 1.52953C44.6434 1.52953 44.6468 1.52953 44.65 1.52953ZM44.884 2.13057C44.804 2.13057 44.8052 2.13057 44.8844 2.13057C44.8843 2.13057 44.8841 2.13057 44.884 2.13057ZM44.9172 1.64799C44.7643 1.64462 44.6113 1.64126 44.4584 1.63789C44.6406 1.64227 44.8229 1.6453 45.0052 1.65035C44.9759 1.64967 44.9465 1.64866 44.9172 1.64799ZM45.0445 1.62107C45.0445 1.62107 45.0454 1.62107 45.0458 1.62107C45.0454 1.62107 45.0449 1.62107 45.0445 1.62107ZM45.0938 1.65607C45.0927 1.65607 45.0916 1.65607 45.0903 1.6564C45.0918 1.6564 45.0931 1.6564 45.0943 1.65607C45.0942 1.65607 45.094 1.65607 45.0939 1.65607H45.0938ZM45.0967 1.65573C45.0967 1.65573 45.0954 1.65573 45.0944 1.65607C45.0954 1.65607 45.0962 1.65607 45.0968 1.65573C45.0968 1.65573 45.0968 1.65573 45.0967 1.65573ZM45.0983 1.65539C45.0983 1.65539 45.0976 1.65539 45.0973 1.65539C45.0977 1.65539 45.098 1.65539 45.0983 1.65539ZM45.0985 1.65539C45.0985 1.65539 45.0988 1.65539 45.0987 1.65539C45.0987 1.65539 45.0987 1.65539 45.0985 1.65539ZM45.1802 1.54669C45.2728 1.55174 45.3609 1.55612 45.4442 1.5615C45.3796 1.55746 45.2745 1.55208 45.1802 1.54669ZM45.4822 1.56419C45.4798 1.56419 45.4774 1.56386 45.4748 1.56352C45.4774 1.56352 45.4798 1.56386 45.4822 1.56419ZM45.4707 1.56318C45.4679 1.56318 45.465 1.56285 45.4618 1.56251C45.4648 1.56251 45.4679 1.56285 45.4707 1.56318ZM45.3766 2.14202C45.3972 2.14269 45.4173 2.14303 45.4366 2.14336C45.4173 2.14303 45.3972 2.14235 45.3766 2.14202ZM45.4374 2.14336C45.4556 2.1437 45.4732 2.14437 45.4901 2.14471C45.4733 2.14437 45.4557 2.14404 45.4374 2.14336ZM45.4713 1.67289C45.4781 1.67289 45.4848 1.67289 45.4916 1.67323C45.485 1.67323 45.4782 1.67323 45.4713 1.67289ZM45.5018 1.67357C45.5084 1.67357 45.5148 1.67357 45.5213 1.6739C45.5149 1.6739 45.5084 1.6739 45.5018 1.67357ZM45.5305 1.5716C45.5028 1.57059 45.4748 1.56958 45.447 1.56857C45.4797 1.56958 45.5119 1.57092 45.5438 1.57193C45.5394 1.57193 45.5349 1.57193 45.5305 1.5716ZM45.6383 1.5753C45.6259 1.57496 45.6133 1.57463 45.6007 1.57395C45.6159 1.57463 45.6314 1.57496 45.6465 1.57564C45.6438 1.57564 45.6411 1.57564 45.6383 1.57564V1.5753ZM45.6545 2.1474C45.6565 2.1474 45.6582 2.1474 45.66 2.1474C45.6582 2.1474 45.6565 2.1474 45.6546 2.1474H45.6545ZM45.6844 1.67592C45.6844 1.67592 45.6847 1.67592 45.6848 1.67592C45.6847 1.67592 45.6845 1.67592 45.6844 1.67592ZM45.6851 1.67592H45.6848C45.6848 1.67592 45.6851 1.67592 45.6853 1.67592C45.6853 1.67592 45.6852 1.67592 45.6851 1.67592ZM45.6718 1.57665C45.6697 1.57665 45.6676 1.57665 45.6655 1.57665C45.6937 1.57765 45.7215 1.57833 45.7492 1.57934C45.7235 1.57866 45.6979 1.57765 45.6718 1.57698V1.57665ZM47.3498 2.20764C46.7988 2.18778 46.2476 2.15851 45.6966 2.14605C46.274 2.16187 46.8542 2.18543 47.4313 2.2137C47.4082 2.21168 47.3815 2.21 47.3498 2.20764ZM47.4578 1.74424C47.457 1.74424 47.4563 1.74424 47.4555 1.74424C47.4604 1.74457 47.4652 1.74491 47.4698 1.74558C47.4659 1.74525 47.4619 1.74491 47.4578 1.74457V1.74424ZM47.4693 1.74525C47.4719 1.74525 47.4745 1.74558 47.477 1.74592C47.4745 1.74592 47.4718 1.74558 47.4693 1.74525ZM47.4791 1.74626C47.4782 1.74626 47.4772 1.74626 47.4762 1.74626C47.4811 1.74659 47.4857 1.74727 47.4904 1.7476C47.4866 1.74727 47.4829 1.74693 47.479 1.74659L47.4791 1.74626ZM47.5149 2.21908H47.5137C47.5147 2.21908 47.5158 2.21908 47.5168 2.21908C47.5162 2.21908 47.5155 2.21908 47.5149 2.21908ZM47.5468 1.7476C47.5468 1.7476 47.5464 1.7476 47.5461 1.7476C47.5472 1.7476 47.5481 1.7476 47.549 1.7476C47.5484 1.7476 47.5476 1.7476 47.5468 1.7476ZM47.4823 1.14622C47.5068 1.1469 47.5311 1.14757 47.5552 1.14858C47.5135 1.14723 47.471 1.14589 47.4281 1.14454C47.4461 1.14521 47.4645 1.14555 47.4824 1.14622C47.4432 1.14488 47.403 1.14387 47.3632 1.14252C47.4812 1.14622 47.5948 1.14959 47.7037 1.15295C47.6321 1.1506 47.5583 1.14824 47.4824 1.14622H47.4823ZM47.6376 1.6214C47.6511 1.6214 47.6645 1.62208 47.678 1.62208C47.6645 1.62208 47.651 1.6214 47.6376 1.6214ZM47.7903 1.62443C47.7903 1.62443 47.79 1.62443 47.7899 1.62443C47.794 1.62443 47.7981 1.62443 47.8022 1.62443C47.7983 1.62443 47.7943 1.62443 47.7903 1.62443ZM47.8024 1.62443C47.8208 1.62477 47.839 1.62511 47.8575 1.62544C47.839 1.62511 47.8206 1.62477 47.8024 1.62443ZM47.8784 1.62612C47.8772 1.62612 47.876 1.62612 47.8748 1.62612C47.8782 1.62612 47.8818 1.62612 47.8853 1.62612C47.883 1.62612 47.8808 1.62612 47.8784 1.62612ZM47.898 1.62645C47.9004 1.62645 47.9027 1.62645 47.9051 1.62645C47.9008 1.62645 47.8964 1.62645 47.8921 1.62645C47.8941 1.62645 47.896 1.62645 47.898 1.62645ZM47.9671 1.6278C47.9631 1.6278 47.9593 1.6278 47.9553 1.6278C47.9601 1.6278 47.9647 1.6278 47.9695 1.6278C47.9687 1.6278 47.9679 1.6278 47.9671 1.6278ZM47.9794 1.6278C47.9986 1.62813 48.0178 1.62881 48.0373 1.62914C48.018 1.62881 47.9986 1.62813 47.9794 1.6278ZM48.0368 1.62914C48.0394 1.62914 48.0421 1.62914 48.0446 1.62914C48.0419 1.62914 48.0393 1.62914 48.0368 1.62914ZM48.246 1.17617C48.2542 1.17685 48.2622 1.17718 48.2702 1.17786C48.2622 1.17718 48.2541 1.17685 48.246 1.17617ZM48.3382 1.18257C48.3408 1.18257 48.3433 1.1829 48.346 1.18324C48.3435 1.18324 48.3408 1.1829 48.3382 1.18257ZM48.3481 1.18324C48.3473 1.18324 48.3465 1.18324 48.3457 1.18324C48.3604 1.18425 48.375 1.1856 48.3892 1.18661C48.3756 1.1856 48.362 1.18425 48.3481 1.18324ZM48.4517 1.06007C48.4544 1.06007 48.4571 1.06007 48.4597 1.06007C48.4571 1.06007 48.4543 1.06007 48.4517 1.06007ZM48.8312 0.724886C48.8312 0.704358 48.8315 0.68383 48.8316 0.663301C48.8316 0.68383 48.8313 0.704358 48.8312 0.724886ZM59.8406 2.57277C59.8406 2.57277 59.8406 2.57479 59.8406 2.57614C59.8406 2.57345 59.8406 2.57076 59.8405 2.56806C59.8405 2.56975 59.8405 2.57143 59.8405 2.57311L59.8406 2.57277ZM59.6552 2.59768C59.6552 2.59768 59.6552 2.597 59.6552 2.59667C59.6552 2.597 59.6552 2.59734 59.6552 2.59768ZM59.6552 2.63167C59.6552 2.63167 59.6552 2.63099 59.6552 2.63066C59.655 2.64143 59.6548 2.65186 59.6547 2.66229C59.655 2.65186 59.6551 2.6421 59.6552 2.63167ZM59.6461 2.67508C59.6456 2.68349 59.6452 2.69224 59.6446 2.70066C59.645 2.69224 59.6456 2.68383 59.6461 2.67508ZM59.6443 2.7084C59.6443 2.70671 59.6445 2.70469 59.6446 2.70301C59.6445 2.70537 59.6444 2.70739 59.6443 2.70974C59.6443 2.70941 59.6443 2.70907 59.6443 2.70873V2.7084ZM59.6429 2.80363C59.6429 2.80363 59.6431 2.80262 59.6432 2.80195C59.6423 2.80801 59.6413 2.81373 59.6404 2.81945C59.6412 2.8144 59.642 2.80902 59.6429 2.80363ZM59.6307 1.78832C59.6196 1.77553 59.6084 1.76376 59.5967 1.754C59.6084 1.76376 59.6196 1.77587 59.6307 1.78832ZM59.6208 2.632C59.6208 2.63705 59.6207 2.6421 59.6205 2.64715C59.6205 2.6421 59.6207 2.63705 59.6208 2.632ZM59.6205 2.58556C59.6201 2.57479 59.6198 2.56369 59.6191 2.55258C59.6205 2.57446 59.6208 2.59566 59.6211 2.61753C59.6209 2.60676 59.6207 2.59633 59.6205 2.58556ZM59.6031 2.32307C59.6077 2.33485 59.6122 2.34797 59.6164 2.36211C59.6122 2.34831 59.6078 2.33485 59.6031 2.32307ZM59.6178 2.7084C59.6168 2.71917 59.6158 2.73061 59.6146 2.74205C59.6159 2.73061 59.617 2.71917 59.6178 2.7084ZM59.6178 2.7084C59.618 2.70402 59.6183 2.69965 59.6186 2.69494C59.6183 2.69931 59.618 2.70369 59.6178 2.7084ZM59.6066 2.79488C59.6016 2.82282 59.5943 2.85277 59.5852 2.87532C59.5942 2.85243 59.6016 2.82282 59.6066 2.79488ZM59.6069 2.79488C59.6036 2.81272 59.5995 2.83089 59.5943 2.84873C59.5995 2.83089 59.6036 2.81306 59.6069 2.79488ZM59.5382 2.95305C59.539 2.95238 59.5396 2.95204 59.5404 2.95103C59.538 2.95339 59.5355 2.95507 59.5331 2.95709C59.5347 2.95575 59.5364 2.9544 59.5382 2.95305ZM59.5086 3.0244C59.5073 3.02507 59.506 3.02541 59.5047 3.02574C59.506 3.02541 59.5073 3.02473 59.5086 3.0244ZM59.4855 2.97796C59.4855 2.97796 59.4852 2.97796 59.4851 2.97796C59.4853 2.97796 59.4855 2.97796 59.4857 2.97796C59.4855 2.97796 59.4851 2.97796 59.4848 2.97796C59.4848 2.97796 59.4849 2.97796 59.4851 2.97796C59.4803 2.97796 59.4758 2.97796 59.4712 2.97796C59.4759 2.97796 59.4806 2.97863 59.4855 2.97796ZM59.4786 3.04392C59.4771 3.04392 59.4757 3.04392 59.4742 3.04392C59.4755 3.04392 59.4771 3.04392 59.4786 3.04392ZM59.4638 1.69073C59.4638 1.69073 59.4641 1.69073 59.4643 1.69073C59.464 1.69073 59.4637 1.69073 59.4635 1.69073C59.4635 1.69073 59.4636 1.69073 59.4638 1.69073ZM59.4656 2.16355C59.4677 2.16389 59.4698 2.16423 59.4721 2.1649C59.4688 2.16423 59.4656 2.16355 59.4624 2.16288C59.4635 2.16288 59.4645 2.16322 59.4656 2.16355ZM59.446 2.16019C59.4426 2.15985 59.4391 2.15952 59.4358 2.15918C59.4391 2.15918 59.4426 2.15985 59.446 2.16019ZM59.4359 2.15918C59.4359 2.15918 59.4359 2.15918 59.4358 2.15918C59.4358 2.15918 59.4358 2.15918 59.4359 2.15918ZM59.42 1.6877C59.4211 1.6877 59.4222 1.6877 59.4234 1.6877C59.4212 1.6877 59.419 1.6877 59.4169 1.6877C59.4179 1.6877 59.419 1.6877 59.42 1.6877ZM59.3861 2.16086C59.3934 2.16019 59.401 2.15985 59.4085 2.15952C59.3997 2.15985 59.3906 2.16019 59.3822 2.1612C59.3835 2.1612 59.3848 2.1612 59.3861 2.16086ZM59.4079 2.20158C59.4007 2.20158 59.3957 2.20158 59.3922 2.20091C59.3954 2.20091 59.3999 2.20091 59.4035 2.20125C59.4024 2.20125 59.4011 2.20125 59.4002 2.20125C59.4024 2.20125 59.4049 2.20125 59.4079 2.20125V2.20158ZM59.4064 2.2487C59.4064 2.2487 59.4067 2.2487 59.4068 2.2487C59.4068 2.2487 59.4068 2.2487 59.4067 2.2487C59.4067 2.2487 59.4069 2.2487 59.4071 2.2487C59.4057 2.2487 59.4044 2.2487 59.4032 2.2487C59.4044 2.2487 59.4055 2.2487 59.4067 2.2487H59.4064ZM59.3872 2.19855C59.3872 2.19855 59.3879 2.19855 59.3883 2.19822C59.3879 2.19822 59.3875 2.19822 59.3872 2.19855ZM59.3869 2.19855C59.3869 2.19855 59.3867 2.19855 59.3864 2.19855C59.3865 2.19855 59.3867 2.19855 59.3869 2.19855ZM59.3857 2.19956C59.3857 2.19956 59.3857 2.19956 59.386 2.19923C59.3859 2.19923 59.3859 2.19923 59.3857 2.19956ZM59.3861 2.20024C59.3861 2.20024 59.3861 2.20024 59.3859 2.20024C59.3859 2.20024 59.3859 2.20024 59.3861 2.20024ZM59.3861 2.19923C59.3861 2.19923 59.3864 2.19923 59.3865 2.19923C59.3864 2.19923 59.3863 2.19923 59.3861 2.19923ZM59.3246 1.69813C59.3305 1.69712 59.3369 1.69611 59.3434 1.6951C59.3256 1.6978 59.3031 1.70217 59.288 1.70352C59.2978 1.70284 59.3108 1.70049 59.3244 1.69813H59.3246ZM59.3304 2.26115C59.3304 2.26115 59.3307 2.26115 59.3308 2.26115C59.3305 2.26115 59.3301 2.26115 59.3299 2.26115C59.33 2.26115 59.3301 2.26115 59.3303 2.26115H59.3304ZM59.3209 2.26317C59.3193 2.2635 59.3175 2.26384 59.3161 2.26418C59.3175 2.26418 59.3193 2.2635 59.3209 2.26317ZM59.303 2.21471C59.2979 2.21538 59.2928 2.21605 59.2878 2.21673C59.2928 2.21673 59.2978 2.21572 59.303 2.21471ZM59.268 2.17365C59.2621 2.17298 59.256 2.17163 59.25 2.17096C59.256 2.17197 59.2622 2.17298 59.268 2.17365ZM58.4304 1.52818C58.5936 1.56251 58.7568 1.5965 58.9201 1.63049C58.7567 1.5965 58.5933 1.56251 58.4299 1.52818C58.43 1.52818 58.4303 1.52818 58.4304 1.52818ZM58.4157 1.99798C58.666 2.04981 58.9164 2.10264 59.1666 2.15682C58.7533 2.06663 58.3399 1.98149 57.9264 1.90308C58.0895 1.93471 58.2525 1.96635 58.4157 1.99798ZM58.3658 2.73734C58.3776 2.73969 58.3893 2.74205 58.4013 2.74407C58.3895 2.74171 58.3776 2.73936 58.3658 2.73734ZM58.4708 2.7582C58.5158 2.76729 58.561 2.77671 58.6063 2.78647C58.5611 2.77671 58.5159 2.76729 58.4708 2.7582ZM58.4205 2.74811C58.4259 2.74912 58.4312 2.75013 58.4366 2.75147C58.4312 2.75046 58.4259 2.74945 58.4205 2.74811ZM58.6788 2.8107C58.7763 2.83224 58.8736 2.85647 58.9708 2.88205C58.8735 2.85613 58.7762 2.83224 58.6787 2.8107H58.6788ZM58.7979 2.60273C58.7972 2.60273 58.7966 2.60273 58.7959 2.60239C58.8023 2.60374 58.8087 2.60542 58.815 2.60676C58.8093 2.60542 58.8036 2.60407 58.7979 2.60273ZM58.815 2.60676C58.8127 2.6071 58.8106 2.60744 58.8081 2.60777C58.8106 2.60777 58.8129 2.60744 58.815 2.60676ZM58.9267 2.15144C58.9147 2.14908 58.9028 2.14639 58.8905 2.1437C58.9041 2.14639 58.9173 2.14942 58.9307 2.15211C58.9287 2.15178 58.9267 2.15144 58.9248 2.15077C58.9254 2.15077 58.9261 2.15077 58.9267 2.1511V2.15144ZM58.9287 2.82383C58.9287 2.82383 58.9297 2.82416 58.9302 2.8245C58.9297 2.8245 58.9293 2.82416 58.9287 2.82383ZM58.9477 2.83897C58.982 2.84839 59.0177 2.85849 59.0551 2.86959C59.0177 2.85883 58.982 2.84839 58.9477 2.83897ZM58.9462 2.83022C58.9493 2.83123 58.9526 2.83258 58.9557 2.83359C58.9524 2.83224 58.9493 2.83123 58.9462 2.83022ZM59.0159 2.85815C59.0288 2.86185 59.0418 2.86556 59.0551 2.86959C59.0417 2.86556 59.0288 2.86185 59.0159 2.85815ZM59.028 2.2285C58.9956 2.22211 58.9628 2.21572 58.9293 2.20932C58.9711 2.2174 59.0122 2.22548 59.0524 2.23322C59.0328 2.22951 59.0131 2.22548 58.9931 2.22177C59.0049 2.22413 59.0164 2.22615 59.028 2.2285ZM59.0389 2.17567C59.0491 2.17802 59.0592 2.18004 59.0692 2.18206C59.0593 2.18004 59.0491 2.17769 59.0389 2.17567ZM58.049 2.58725C58.0437 2.58624 58.0384 2.58556 58.0331 2.58455C58.0385 2.58556 58.0441 2.58624 58.0495 2.58725C58.0499 2.58725 58.0502 2.58725 58.0506 2.58725C58.072 2.59095 58.0938 2.59465 58.1153 2.59835C58.0931 2.59465 58.0711 2.59061 58.0491 2.58725H58.049ZM58.1037 2.66263C58.1037 2.66263 58.1025 2.66263 58.1018 2.66263C58.1054 2.66296 58.109 2.66364 58.1127 2.66397C58.1097 2.66364 58.1067 2.6633 58.1037 2.66263ZM58.116 2.59869C58.1177 2.59869 58.1196 2.59936 58.1213 2.5997C58.1209 2.5997 58.1204 2.5997 58.12 2.5997C58.1204 2.5997 58.1208 2.5997 58.121 2.5997C58.1193 2.5997 58.1176 2.59902 58.1159 2.59869H58.116ZM57.8453 2.01582C57.8811 2.02187 57.9171 2.02793 57.9531 2.03433C57.9121 2.0276 57.8714 2.01986 57.8306 2.01346C57.8355 2.01413 57.8404 2.01514 57.8453 2.01582ZM57.806 2.65186C57.806 2.65186 57.8052 2.65186 57.8049 2.65186C57.8053 2.65186 57.8057 2.65186 57.806 2.65186ZM57.5041 2.49201C57.5041 2.49201 57.5039 2.49167 57.5034 2.49133C57.504 2.49133 57.5043 2.49201 57.5041 2.49201ZM57.5003 2.49032C57.5003 2.49032 57.5002 2.49032 57.5001 2.49032C57.5001 2.49032 57.5002 2.49032 57.5003 2.49032ZM57.4942 2.48864C57.4929 2.48864 57.4915 2.48797 57.4899 2.48763C57.4915 2.48797 57.4929 2.48831 57.4942 2.48864ZM57.4871 2.48696C57.4858 2.48696 57.4845 2.48629 57.4831 2.48595C57.4845 2.48595 57.4859 2.48662 57.4871 2.48696ZM57.59 2.51691C57.5917 2.51691 57.5934 2.51725 57.5952 2.51758C57.5936 2.51758 57.5921 2.51725 57.5905 2.51725C57.5905 2.51725 57.5907 2.51725 57.5908 2.51725C57.5905 2.51725 57.5903 2.51725 57.5899 2.51725L57.59 2.51691ZM57.6757 2.52667C57.6757 2.52667 57.6745 2.52667 57.674 2.52667C57.6762 2.52667 57.6786 2.52734 57.6808 2.52734C57.6796 2.52734 57.6786 2.52734 57.6774 2.52701C57.6824 2.52768 57.6876 2.52835 57.6928 2.52869C57.6898 2.52835 57.6868 2.52802 57.6839 2.52768C57.7143 2.53138 57.7449 2.53508 57.7754 2.53878C57.7281 2.53306 57.6806 2.52734 57.6333 2.52196C57.6366 2.5223 57.6399 2.52263 57.6432 2.52297C57.6431 2.52297 57.643 2.52297 57.6428 2.52297C57.6537 2.52431 57.6647 2.52532 57.6758 2.52667H57.6757ZM57.6134 2.52297C57.6182 2.52364 57.6232 2.52431 57.628 2.52499C57.6116 2.52297 57.5953 2.52095 57.5793 2.51893C57.5907 2.52028 57.6019 2.52162 57.6134 2.5233V2.52297ZM57.6974 2.62258C57.7117 2.62494 57.7263 2.62696 57.7411 2.62931C57.7253 2.62696 57.71 2.62426 57.695 2.62224C57.6958 2.62224 57.6966 2.62224 57.6974 2.62258ZM57.6895 2.53306C57.6741 2.53104 57.659 2.52903 57.6439 2.52701C57.6591 2.52903 57.6742 2.53104 57.6895 2.53306ZM57.6905 2.62157C57.6767 2.61955 57.6631 2.6172 57.6499 2.61518C57.663 2.6172 57.677 2.61955 57.6905 2.62157ZM57.7063 2.53542C57.7227 2.53744 57.739 2.53979 57.7554 2.54215C57.7388 2.53979 57.7226 2.53744 57.7063 2.53542ZM57.6309 2.52162C57.6309 2.52162 57.6308 2.52162 57.6306 2.52162C57.6308 2.52162 57.631 2.52162 57.6312 2.52162C57.6312 2.52162 57.6309 2.52162 57.6308 2.52162H57.6309ZM57.6303 2.52162C57.6303 2.52162 57.6305 2.52162 57.6306 2.52162C57.621 2.52061 57.6112 2.51927 57.6016 2.51826C57.6112 2.51927 57.6207 2.52028 57.6304 2.52162H57.6303ZM57.6301 1.8913C57.6864 1.90173 57.7436 1.9125 57.8012 1.92327C57.7154 1.90712 57.6312 1.8913 57.5463 1.87582C57.574 1.88087 57.6021 1.88625 57.6301 1.8913ZM57.5234 1.965C57.5222 1.965 57.521 1.96466 57.5198 1.96433C57.5201 1.96433 57.5203 1.96433 57.5206 1.96433C57.5215 1.96433 57.5225 1.96433 57.5235 1.96466L57.5234 1.965ZM57.4381 1.95221C57.4388 1.95221 57.4396 1.95221 57.4402 1.95221C57.4332 1.9512 57.4263 1.95019 57.4193 1.94918C57.4255 1.95019 57.4319 1.9512 57.4381 1.95188V1.95221ZM57.3108 2.47653C57.3079 2.47619 57.305 2.47585 57.3021 2.47552C57.3213 2.47787 57.3413 2.47989 57.3617 2.48225C57.3443 2.48023 57.3273 2.47821 57.3108 2.47653ZM57.3226 2.4523C57.3226 2.4523 57.3226 2.4523 57.3225 2.4523C57.3225 2.4523 57.3225 2.4523 57.3226 2.4523ZM57.3524 1.8213C57.3237 1.81491 57.2918 1.80784 57.2637 1.80145C57.2912 1.80784 57.3229 1.81457 57.3524 1.8213ZM57.1912 1.78159C57.1912 1.78159 57.191 1.78159 57.1908 1.78159C57.191 1.78159 57.191 1.78159 57.1911 1.78159H57.1912ZM57.1828 2.46105C57.1738 2.4597 57.1648 2.45869 57.1558 2.45734C57.1645 2.45869 57.1735 2.4597 57.1828 2.46105ZM57.1479 2.45634C57.1385 2.45499 57.1291 2.45364 57.1199 2.4523C57.1289 2.45364 57.1383 2.45499 57.1479 2.45634ZM57.1175 2.45196C57.1097 2.45061 57.1019 2.4496 57.094 2.44826C57.1016 2.4496 57.1094 2.45061 57.1175 2.45196ZM57.0899 2.44759C57.0899 2.44759 57.0902 2.44759 57.0903 2.44759C57.0894 2.44759 57.0885 2.44759 57.0876 2.44725C57.0883 2.44725 57.0891 2.44725 57.0901 2.44759H57.0899ZM57.0872 2.44725C57.0792 2.4459 57.0715 2.44456 57.0639 2.44287C57.0713 2.44422 57.0791 2.44557 57.0872 2.44725ZM57.0617 2.44254C57.0552 2.44119 57.0486 2.43985 57.0424 2.4385C57.0486 2.43985 57.055 2.44119 57.0617 2.44254ZM57.0366 2.43715C57.0305 2.43581 57.0247 2.43446 57.019 2.43278C57.0245 2.43412 57.0305 2.43581 57.0366 2.43715ZM56.6944 2.40182C56.6749 2.40013 56.6552 2.39845 56.6353 2.39643C56.6552 2.39812 56.6746 2.40013 56.6944 2.40182ZM56.6369 2.39677C56.6176 2.39509 56.5978 2.39307 56.5782 2.39105C56.598 2.39307 56.6176 2.39475 56.6369 2.39677ZM56.511 2.38465C56.5021 2.38364 56.4932 2.38297 56.4843 2.38196C56.4932 2.38297 56.5022 2.38398 56.511 2.38465ZM56.4728 2.36278C56.472 2.36278 56.4714 2.36278 56.4706 2.36278C56.4714 2.36278 56.4722 2.36278 56.4728 2.36278ZM56.4666 2.37994C56.4613 2.37927 56.4561 2.37893 56.4507 2.37826C56.456 2.37893 56.4613 2.37927 56.4666 2.37994ZM56.4502 2.37826C56.4441 2.37759 56.4379 2.37691 56.4318 2.37624C56.4381 2.37691 56.4446 2.37759 56.4508 2.37826C56.4506 2.37826 56.4504 2.37826 56.4502 2.37826ZM56.4243 2.37557C56.4185 2.37489 56.4126 2.37422 56.4066 2.37355C56.4124 2.37422 56.4184 2.37489 56.4243 2.37557ZM56.3258 2.3648C56.3162 2.36379 56.3065 2.36244 56.2968 2.36143C56.307 2.36244 56.3173 2.36379 56.3275 2.3648C56.327 2.3648 56.3265 2.3648 56.3258 2.3648ZM56.329 2.36514C56.3322 2.36547 56.3352 2.36581 56.3384 2.36615C56.3347 2.36581 56.3311 2.36547 56.3274 2.3648C56.3279 2.3648 56.3285 2.3648 56.329 2.3648V2.36514ZM55.981 1.14555C56.4565 1.20545 56.3494 1.19132 55.9436 1.1405C55.9561 1.14218 55.9685 1.14387 55.981 1.14555ZM55.9726 1.61636C56.1035 1.62376 56.2338 1.64866 56.3641 1.67424C56.1043 1.62006 55.8435 1.60424 55.5833 1.56251C55.7131 1.58068 55.8428 1.59852 55.9726 1.61636ZM55.7593 2.37893C55.756 2.37826 55.7528 2.37759 55.7496 2.37691C55.7529 2.37759 55.756 2.37826 55.7593 2.37893ZM55.5781 1.56049C55.5798 1.56116 55.5816 1.56184 55.5833 1.56217C55.5828 1.56217 55.5821 1.56184 55.5816 1.5615H55.5818C55.574 1.55881 55.5658 1.55578 55.5565 1.55309C55.5643 1.55544 55.5714 1.5578 55.5781 1.56016V1.56049ZM55.1836 2.31365C55.1787 2.31297 55.1737 2.3123 55.1689 2.31163C55.1882 2.31432 55.2076 2.31735 55.2268 2.32004C55.2138 2.31802 55.201 2.31634 55.188 2.31432C55.1901 2.31432 55.1922 2.31499 55.1943 2.31533L55.1835 2.31365H55.1836ZM55.1753 1.60491C55.1857 1.60626 55.1958 1.60727 55.206 1.60862C55.1958 1.60727 55.1856 1.60626 55.1753 1.60491ZM55.2563 1.6241C55.2778 1.62544 55.2991 1.62645 55.3205 1.6278C55.2991 1.62645 55.2776 1.62544 55.2563 1.6241ZM55.3764 1.63015C55.3644 1.62847 55.3519 1.62679 55.3396 1.62544C55.3521 1.62712 55.3644 1.62881 55.3764 1.63015ZM54.8927 0.981323C54.9774 0.991082 55.0518 0.999832 55.1175 1.00791C55.052 0.999832 54.9774 0.991082 54.8927 0.981323ZM55.1117 1.59717C55.1104 1.59717 55.1092 1.59717 55.1079 1.59684C55.1092 1.59684 55.1104 1.59684 55.1117 1.59717ZM54.8924 0.991419C54.8921 0.998486 54.8924 0.994784 54.8924 0.991419C54.8921 0.998486 54.8924 0.99512 54.8924 0.991419ZM54.7906 2.25644C54.7906 2.25644 54.7912 2.25644 54.7915 2.25644C54.7894 2.25644 54.7872 2.25576 54.7853 2.25543C54.7871 2.25543 54.7888 2.25576 54.7906 2.2561V2.25644ZM54.7829 2.25543C54.7837 2.25543 54.7845 2.25543 54.7851 2.25543C54.7753 2.25408 54.7654 2.25273 54.7556 2.25139C54.7647 2.25273 54.7737 2.25408 54.7827 2.25509L54.7829 2.25543ZM53.8849 2.01144C53.8849 2.01144 53.8857 2.01144 53.8862 2.01144C53.8841 2.01144 53.8821 2.01077 53.88 2.01077C53.8817 2.01077 53.8833 2.01111 53.885 2.01144H53.8849ZM53.713 2.0074C53.7127 2.0074 53.7124 2.0074 53.7123 2.0074C53.7123 2.0074 53.7126 2.0074 53.7128 2.0074H53.713ZM53.6196 1.98216C53.6178 1.98216 53.6159 1.98183 53.6141 1.98149C53.6166 1.98149 53.6191 1.98183 53.6215 1.98216C53.6039 1.98048 53.5858 1.9788 53.5677 1.97712C53.5853 1.9788 53.6027 1.98048 53.6196 1.98183V1.98216ZM53.5669 1.97745C53.5511 1.97611 53.5353 1.97442 53.519 1.97308C53.5351 1.97442 53.5511 1.97611 53.5669 1.97745ZM52.7044 1.90207C52.6068 1.895 52.5089 1.88895 52.4123 1.88289C52.5089 1.88861 52.6068 1.895 52.7044 1.90207ZM52.4039 1.8351C52.4099 1.83577 52.4149 1.83678 52.4191 1.83746C52.4149 1.83678 52.4099 1.83611 52.4039 1.8351ZM52.5424 1.35453C52.5545 1.35554 52.566 1.35622 52.5773 1.35723C52.5659 1.35655 52.5545 1.35554 52.5424 1.35453ZM52.5643 1.3616C52.5643 1.3616 52.5639 1.3616 52.5636 1.3616C52.5639 1.3616 52.564 1.3616 52.5643 1.3616ZM52.5634 1.3616C52.5634 1.3616 52.562 1.3616 52.5614 1.3616C52.5622 1.3616 52.5627 1.3616 52.5634 1.3616ZM52.615 1.35992C52.6184 1.35992 52.6216 1.36059 52.6249 1.36059C52.6216 1.36059 52.6183 1.35992 52.615 1.35992ZM52.9516 1.27747C52.9516 1.27747 52.9519 1.27814 52.9516 1.27848C52.952 1.27814 52.9516 1.27781 52.9515 1.27747H52.9516ZM52.9507 0.803971C52.9459 0.803298 52.9404 0.802625 52.9339 0.801615C52.9404 0.802288 52.9459 0.803298 52.9507 0.803971ZM52.9036 1.39189C52.901 1.39155 52.8987 1.39122 52.8961 1.39088C52.9001 1.39155 52.9042 1.39189 52.9082 1.39256C52.9066 1.39256 52.905 1.39223 52.9036 1.39189ZM52.5193 0.873633C52.5031 0.653879 52.7891 0.838297 52.8898 0.797241C52.664 0.726906 52.5369 0.84772 52.3823 0.86421C52.428 0.867239 52.4737 0.870604 52.5193 0.873633ZM52.5169 2.00639C52.3781 1.99832 52.2394 1.99024 52.1008 1.98216C52.2394 1.99024 52.3782 1.99832 52.5169 2.00639ZM52.082 1.9401C52.0789 1.9401 52.0759 1.93976 52.0728 1.93942C52.0759 1.93942 52.0789 1.93976 52.082 1.9401ZM52.0764 1.91991C52.0779 1.91991 52.0793 1.91991 52.0808 1.92024C52.0795 1.92024 52.078 1.92024 52.0764 1.91991ZM52.094 1.92193C52.0952 1.92193 52.0964 1.92193 52.0976 1.9226C52.0965 1.9226 52.0953 1.92226 52.094 1.92193ZM52.1034 1.92361C52.1034 1.92361 52.1046 1.92361 52.1051 1.92428C52.1047 1.92428 52.1041 1.92394 52.1034 1.92361ZM52.1057 1.92428C52.1057 1.92428 52.1063 1.92462 52.1063 1.92495C52.1063 1.92495 52.1061 1.92462 52.1057 1.92428ZM52.1053 1.92428H52.1054C52.1054 1.92428 52.1054 1.92428 52.1053 1.92428ZM52.1348 1.94346C52.1348 1.94346 52.1361 1.94346 52.1368 1.94346C52.1351 1.94346 52.1334 1.94346 52.1318 1.94346C52.1328 1.94346 52.1339 1.94346 52.1349 1.94346H52.1348ZM52.2103 1.94784C52.2103 1.94784 52.2115 1.94784 52.2122 1.94784C52.2114 1.94784 52.2107 1.94784 52.2099 1.94784C52.21 1.94784 52.2102 1.94784 52.2103 1.94784ZM52.2084 1.94784C52.2062 1.94784 52.2038 1.94784 52.2016 1.9475C52.2038 1.9475 52.2062 1.9475 52.2084 1.94784ZM52.1751 1.94582C52.1639 1.94515 52.153 1.94447 52.1414 1.9438C52.1414 1.9438 52.1416 1.9438 52.1417 1.9438C52.153 1.94447 52.1639 1.94515 52.1751 1.94582ZM52.1361 1.94346C52.1371 1.94346 52.1381 1.94346 52.1392 1.94346C52.1381 1.94346 52.1372 1.94346 52.1361 1.94346ZM52.2985 1.85361C52.2704 1.85226 52.2418 1.85058 52.2124 1.8489C52.2443 1.85058 52.2756 1.85226 52.306 1.85395C52.3035 1.85395 52.301 1.85395 52.2985 1.85361ZM52.0432 1.91721C52.0389 1.91688 52.0343 1.91654 52.0297 1.9162C52.0342 1.9162 52.0388 1.91688 52.0432 1.91721ZM52.0702 1.93942C52.0702 1.93942 52.071 1.93942 52.0712 1.93942C52.0612 1.93875 52.051 1.93808 52.0406 1.93741C52.0506 1.93808 52.0604 1.93875 52.07 1.93942H52.0702ZM51.8535 1.82837C51.8623 1.82871 51.8709 1.82938 51.8795 1.82972C51.8709 1.82938 51.8621 1.82871 51.8535 1.82837ZM51.6014 1.83443C51.5908 1.83443 51.5793 1.83375 51.5667 1.83342C51.5791 1.83375 51.5909 1.83409 51.6014 1.83443ZM51.6065 1.21622C51.613 1.21689 51.6198 1.21757 51.6269 1.21858C51.6174 1.21757 51.6083 1.21656 51.5998 1.21555C51.6019 1.21555 51.6043 1.21588 51.6065 1.21622ZM51.5994 1.21555C51.5957 1.21521 51.5922 1.21487 51.5888 1.2142C51.5922 1.21454 51.5957 1.21487 51.5994 1.21555ZM51.5774 1.83678C51.602 1.83779 51.6273 1.8388 51.6522 1.84015C51.6513 1.84015 51.6504 1.84015 51.6495 1.84015C51.6694 1.84116 51.6896 1.84217 51.7102 1.84318C51.6526 1.84015 51.5922 1.83746 51.5357 1.83577C51.563 1.83678 51.5913 1.83779 51.6206 1.83914C51.6059 1.83847 51.5916 1.83779 51.5774 1.83746V1.83678ZM51.7721 1.3303H51.7723C51.7713 1.3303 51.7701 1.3303 51.7693 1.3303C51.77 1.3303 51.771 1.3303 51.7719 1.3303H51.7721ZM51.8613 1.30776C51.859 1.30776 51.8566 1.30742 51.8543 1.30708C51.8578 1.30708 51.8615 1.30776 51.865 1.30809C51.8639 1.30809 51.8625 1.30809 51.8613 1.30809V1.30776ZM51.8759 1.24045C51.8845 1.24079 51.8926 1.24112 51.8992 1.24146C51.8915 1.24112 51.8845 1.24079 51.8759 1.24045ZM51.8399 1.30607C51.8372 1.30607 51.8346 1.30574 51.8321 1.3054C51.8384 1.30607 51.8451 1.30675 51.8521 1.30708C51.848 1.30675 51.844 1.30641 51.8399 1.30607ZM51.8326 1.3054C51.8326 1.3054 51.8315 1.3054 51.8309 1.3054C51.8314 1.3054 51.8319 1.3054 51.8326 1.3054ZM51.9134 1.33232C51.9134 1.33232 51.913 1.33232 51.9127 1.33232C51.9129 1.33232 51.9131 1.33232 51.9134 1.33232ZM52.0711 1.33434C52.0711 1.33434 52.0711 1.33434 52.071 1.33434C52.071 1.33434 52.071 1.33434 52.0711 1.33434ZM52.1451 1.33434C52.1451 1.33434 52.1447 1.33434 52.1445 1.33434C52.1447 1.33434 52.145 1.33434 52.1451 1.33434ZM52.1442 1.33401C52.1442 1.33401 52.1432 1.33401 52.1424 1.33367C52.1432 1.33367 52.1438 1.33367 52.1442 1.33401ZM52.1389 1.333C52.1365 1.33266 52.1334 1.33232 52.1296 1.33165C52.1334 1.33199 52.1364 1.33232 52.1389 1.333ZM52.1081 1.32963C52.1 1.32896 52.0908 1.32795 52.0809 1.32728C52.0908 1.32829 52.1 1.32896 52.1081 1.32963ZM51.9707 1.31785C51.944 1.31583 51.9168 1.31348 51.8914 1.31146C51.9167 1.31348 51.9438 1.31583 51.9707 1.31785ZM51.5909 0.724213C51.5916 0.724213 51.5924 0.724213 51.593 0.724213C51.5896 0.724213 51.5865 0.724213 51.5832 0.724213C51.5858 0.724213 51.5883 0.724213 51.5909 0.724213ZM51.5728 1.21319C51.5691 1.21286 51.5658 1.21218 51.5622 1.21185C51.5655 1.21218 51.5691 1.21286 51.5728 1.21319ZM51.468 0.744069C51.4728 0.74104 51.4778 0.738348 51.4829 0.735992C51.4622 0.750463 51.4357 0.739021 51.419 0.739357C51.4327 0.740703 51.4486 0.742386 51.468 0.744069ZM51.4411 1.29127H51.4414C51.4414 1.29127 51.4407 1.29127 51.4403 1.29127C51.4417 1.29127 51.4431 1.29127 51.4443 1.29127C51.4437 1.29127 51.4431 1.29127 51.4423 1.29127C51.4429 1.29127 51.4433 1.29127 51.4435 1.29127C51.4427 1.29127 51.4419 1.29127 51.441 1.29127H51.4411ZM51.381 1.2068C51.3841 1.20713 51.3871 1.20747 51.3904 1.20781C51.3736 1.20579 51.3606 1.20377 51.3483 1.20209C51.3581 1.20343 51.3686 1.20478 51.381 1.20646V1.2068ZM51.3149 1.31348C51.3136 1.31348 51.3126 1.31348 51.3116 1.31381C51.3124 1.31381 51.3135 1.31381 51.3144 1.31348C51.3143 1.31348 51.3141 1.31348 51.314 1.31348C51.3143 1.31348 51.3145 1.31348 51.3148 1.31348H51.3149ZM51.2682 1.19569C51.271 1.19569 51.2737 1.19569 51.2763 1.19569C51.2736 1.19569 51.271 1.19569 51.2682 1.19569ZM49.9438 1.1405C49.9438 1.1405 49.9441 1.1405 49.9444 1.1405C49.944 1.1405 49.9436 1.1405 49.9438 1.1405ZM49.9465 1.14016C49.9465 1.14016 49.9471 1.14016 49.9473 1.14016C49.9467 1.14016 49.9459 1.14016 49.9453 1.14016C49.9457 1.14016 49.9463 1.14016 49.9468 1.14016C49.9468 1.14016 49.9467 1.14016 49.9465 1.14016ZM50.8796 1.27545C50.9021 1.27612 50.9239 1.27713 50.9459 1.27781C50.6744 1.26805 50.3538 1.25593 50.1147 1.24886C50.3597 1.25593 50.624 1.26636 50.8796 1.27545ZM50.4408 1.16641C50.4408 1.16641 50.4409 1.16641 50.441 1.16641C50.441 1.16641 50.4409 1.16641 50.4408 1.16641ZM50.6872 1.28083C50.6754 1.28016 50.6639 1.27983 50.6525 1.27949C50.6639 1.27983 50.6756 1.2805 50.6872 1.28083ZM50.1066 1.80145C50.1552 1.80347 50.2028 1.80549 50.2486 1.8075C50.2028 1.80582 50.1546 1.80347 50.1066 1.80145ZM51.1716 1.19401C51.1666 1.19401 51.1614 1.19401 51.1562 1.19401C51.1613 1.19401 51.1666 1.19401 51.1716 1.19401ZM51.1558 1.19401C51.138 1.19401 51.1216 1.19401 51.1029 1.19435C51.1087 1.19435 51.1144 1.19435 51.1199 1.19435C51.1135 1.19435 51.107 1.19435 51.1003 1.19435C51.1219 1.19435 51.1412 1.19435 51.1587 1.19401C51.1577 1.19401 51.1567 1.19401 51.1556 1.19401H51.1558ZM51.1719 1.19401C51.1761 1.19401 51.1805 1.19401 51.1848 1.19401C51.1805 1.19401 51.1763 1.19401 51.1719 1.19401ZM51.1789 1.19401C51.1817 1.19401 51.1844 1.19401 51.1869 1.19401C51.1842 1.19401 51.1816 1.19401 51.1789 1.19401ZM51.1881 1.19401H51.1878C51.191 1.19401 51.1942 1.19401 51.1973 1.19401C51.1946 1.19401 51.1918 1.19401 51.1889 1.19401C51.1895 1.19401 51.1902 1.19401 51.1908 1.19401C51.1899 1.19401 51.1889 1.19401 51.1879 1.19401H51.1881ZM51.2024 1.19401H51.2021C51.205 1.19401 51.2081 1.19401 51.211 1.19401C51.2086 1.19401 51.2061 1.19401 51.2036 1.19401C51.2044 1.19401 51.2053 1.19401 51.2062 1.19401C51.205 1.19401 51.2037 1.19401 51.2025 1.19401H51.2024ZM51.2439 1.19468C51.2418 1.19468 51.2397 1.19468 51.2376 1.19468C51.2397 1.19468 51.242 1.19468 51.2439 1.19468ZM51.2303 0.723204C51.2344 0.723204 51.2385 0.723204 51.2424 0.723204C51.2385 0.723204 51.2346 0.723204 51.2303 0.723204ZM51.2447 1.19468C51.25 1.19468 51.2552 1.19468 51.26 1.19502C51.2551 1.19502 51.2498 1.19502 51.2447 1.19468ZM51.3084 1.31449C51.3082 1.31449 51.3079 1.31482 51.308 1.31516C51.308 1.31516 51.308 1.31482 51.3084 1.31449ZM51.309 1.31449C51.309 1.31449 51.3088 1.31449 51.3087 1.31449C51.3087 1.31449 51.3088 1.31449 51.309 1.31449ZM51.309 1.31449C51.309 1.31449 51.3099 1.31449 51.3104 1.31415C51.3098 1.31415 51.3092 1.31415 51.309 1.31449ZM51.316 1.31314C51.316 1.31314 51.3161 1.31314 51.3163 1.31314C51.3163 1.31314 51.3163 1.31314 51.3161 1.31314C51.3185 1.31314 51.3253 1.31247 51.3193 1.31314C51.3204 1.31314 51.3212 1.31314 51.3223 1.31314C51.3197 1.31314 51.3176 1.31348 51.3156 1.31381C51.3157 1.31381 51.316 1.31381 51.3161 1.31381L51.316 1.31314ZM51.3201 1.21353C51.319 1.21353 51.318 1.21353 51.3171 1.21353C51.32 1.21353 51.3231 1.21387 51.3261 1.2142C51.3241 1.2142 51.3221 1.2142 51.3201 1.21387V1.21353ZM51.1768 0.723204C51.1971 0.723204 51.2146 0.723204 51.2299 0.72354C51.2073 0.72354 51.18 0.723204 51.1464 0.72354C51.1571 0.72354 51.1673 0.72354 51.1767 0.72354L51.1768 0.723204ZM50.0521 0.655561C50.4169 0.672388 50.7816 0.688878 51.1465 0.704695C50.7804 0.688878 50.4143 0.672388 50.0482 0.655225C50.0496 0.655225 50.0509 0.655225 50.0521 0.655225V0.655561ZM50.0647 1.8001C50.0504 1.79943 50.0358 1.79876 50.0214 1.79808C50.0359 1.79876 50.0504 1.79943 50.0647 1.8001ZM49.969 1.13983C49.977 1.13983 49.9869 1.13983 49.9984 1.13983C49.9886 1.13983 49.9792 1.13983 49.9696 1.13983C49.9702 1.13983 49.971 1.13983 49.9717 1.13983C49.9708 1.13983 49.9697 1.13983 49.9689 1.13983H49.969ZM49.9679 1.13983C49.9663 1.13983 49.9645 1.14017 49.963 1.1405C49.9645 1.1405 49.9661 1.14017 49.9679 1.13983ZM49.942 0.669022C49.9456 0.669022 49.9528 0.669022 49.9627 0.668686C49.9157 0.664311 49.8732 0.69056 49.8374 0.754501C49.8669 0.702339 49.9028 0.671378 49.942 0.669359V0.669022ZM49.7949 1.26502C49.8028 1.26535 49.8105 1.26569 49.8183 1.26603C49.8093 1.26569 49.8003 1.26535 49.7912 1.26468C49.7924 1.26468 49.7936 1.26468 49.7948 1.26468L49.7949 1.26502ZM49.7354 0.696281C49.7264 0.783443 49.7638 0.743732 49.7863 0.752818C49.7638 0.743732 49.7266 0.783443 49.7354 0.696281ZM49.607 1.7789C49.6038 1.7789 49.6005 1.7789 49.5973 1.77856C49.6451 1.78092 49.6931 1.78294 49.741 1.78529C49.6964 1.78327 49.6516 1.78126 49.6071 1.77924L49.607 1.7789ZM49.6711 1.2593C49.6847 1.25997 49.6978 1.26064 49.7112 1.26132C49.698 1.26064 49.6847 1.25997 49.6711 1.2593ZM49.7303 1.26233C49.7405 1.26266 49.7507 1.26334 49.7609 1.26367C49.7507 1.26334 49.7406 1.26266 49.7303 1.26233ZM48.8554 0.606764C48.8519 0.606764 48.8483 0.606764 48.8447 0.606428C49.141 0.61787 49.4373 0.629648 49.7337 0.641427C49.4409 0.629648 49.1482 0.618206 48.8554 0.606764ZM49.8509 1.85798C49.8509 1.85798 49.8517 1.85798 49.8521 1.85798C49.7025 1.85024 49.553 1.84217 49.4033 1.83443C49.5526 1.84217 49.7017 1.85024 49.8509 1.85798ZM52.5291 2.47989C51.6751 2.43042 50.792 2.37826 49.9461 2.3335C50.8684 2.38331 51.8278 2.43614 52.7574 2.4947C52.6823 2.48932 52.606 2.48427 52.5291 2.47956V2.47989ZM53.0094 0.832576C53.203 1.02541 53.4484 0.898873 53.6115 0.957429C53.4484 0.898873 53.2029 1.02507 53.0094 0.832576ZM53.5938 2.07471C53.6064 2.07606 53.6188 2.07774 53.6314 2.07908C53.619 2.07774 53.6064 2.07606 53.5938 2.07471ZM53.6852 2.08548C53.6807 2.08481 53.6762 2.08447 53.6717 2.0838C53.6894 2.08582 53.7077 2.08817 53.725 2.09053C53.7121 2.08884 53.6987 2.08716 53.6852 2.08548ZM53.7589 2.10702C53.7589 2.10702 53.7589 2.10702 53.7588 2.10702C53.7588 2.10702 53.7588 2.10702 53.7589 2.10702ZM53.7608 1.9963C53.7608 1.9963 53.76 1.9963 53.7595 1.9963C53.7599 1.9963 53.7603 1.9963 53.7608 1.9963C53.7568 1.99596 53.7526 1.99563 53.7486 1.99529C53.7522 1.99563 53.7559 1.99596 53.7596 1.9963C53.756 1.9963 53.7524 1.99563 53.7489 1.99529C53.7984 2.00067 53.8491 2.00808 53.8843 2.01245C53.8507 2.00808 53.8099 2.00269 53.7609 1.9963H53.7608ZM53.9547 2.07471C53.9461 2.07336 53.9376 2.07235 53.929 2.07101C53.9374 2.07202 53.9461 2.07336 53.9547 2.07471ZM53.9973 1.37574C54.0198 1.37809 54.0422 1.38045 54.0647 1.3828C54.0414 1.38045 54.0181 1.37809 53.9948 1.3754C53.9956 1.3754 53.9965 1.3754 53.9973 1.3754V1.37574ZM54.1288 2.11913C54.1304 2.11947 54.1319 2.11981 54.1334 2.12014C54.132 2.11981 54.1304 2.11947 54.1288 2.11913ZM54.1362 2.12081C54.1362 2.12081 54.1353 2.12081 54.1349 2.12081C54.1357 2.12081 54.1364 2.12115 54.1371 2.12149C54.1369 2.12149 54.1365 2.12149 54.1362 2.12149V2.12081ZM54.1379 2.12115C54.1387 2.12115 54.1394 2.12149 54.1401 2.12182C54.1391 2.12182 54.1382 2.12149 54.1373 2.12115C54.1375 2.12115 54.1378 2.12115 54.1379 2.12115ZM54.1415 2.12216C54.1423 2.12216 54.1431 2.1225 54.1439 2.12283C54.1431 2.12283 54.1423 2.1225 54.1415 2.12216ZM54.1528 2.13057C54.1533 2.13057 54.1537 2.13057 54.1541 2.13057C54.1537 2.13057 54.1533 2.13057 54.1529 2.13057H54.1528ZM54.1533 2.13057C54.1533 2.13057 54.1541 2.13057 54.1546 2.13057C54.1541 2.13057 54.1538 2.13057 54.1533 2.13057ZM54.1546 1.39189C54.2353 1.4003 54.3105 1.40804 54.3819 1.41578C54.3106 1.40804 54.2308 1.39963 54.1546 1.39189ZM54.3923 1.41713C54.4029 1.41814 54.4134 1.41949 54.4237 1.42049C54.4176 1.41982 54.4115 1.41915 54.4055 1.41848C54.4229 1.42049 54.4401 1.42251 54.4572 1.4242C54.4529 1.42386 54.4484 1.42319 54.444 1.42285C54.4527 1.42386 54.4615 1.42487 54.4702 1.42588C54.4672 1.42554 54.4641 1.42521 54.4611 1.42487C54.4778 1.42689 54.4942 1.42857 54.5103 1.43059C54.5054 1.42992 54.5005 1.42958 54.4956 1.42891C54.5029 1.42992 54.5102 1.43059 54.5175 1.4316C54.5159 1.4316 54.5144 1.43126 54.5129 1.43093C54.5299 1.43295 54.5469 1.43497 54.5637 1.43698C54.4921 1.42824 54.4245 1.42049 54.3494 1.41242C54.3682 1.41444 54.3868 1.41646 54.4051 1.41848C54.4008 1.41814 54.3966 1.41747 54.3923 1.41713ZM55.2894 2.78815C55.0688 2.79556 54.8227 2.72018 54.592 2.70133C54.9966 2.76695 55.3861 2.79926 55.7886 2.85883C55.6221 2.83527 55.4558 2.81171 55.2893 2.78815H55.2894ZM56.157 2.421C56.1619 2.42201 56.1662 2.42268 56.1705 2.42369C56.1664 2.42302 56.1619 2.42201 56.157 2.421ZM56.1726 2.42403C56.1762 2.4247 56.1795 2.42537 56.1827 2.42605C56.1796 2.42537 56.1762 2.4247 56.1726 2.42403ZM56.0501 2.33316C56.0501 2.33316 56.0488 2.33316 56.0482 2.33316C56.0998 2.33956 56.1506 2.34562 56.2008 2.35167C56.2008 2.35167 56.2007 2.35167 56.2005 2.35167C56.2012 2.35167 56.2019 2.35167 56.2027 2.35167C56.1523 2.34562 56.1016 2.33956 56.0501 2.33316ZM56.2393 2.35605C56.2372 2.35605 56.2351 2.35571 56.233 2.35538C56.2436 2.35672 56.2543 2.35773 56.2648 2.35908C56.2563 2.35807 56.2478 2.35706 56.2393 2.35605ZM56.2658 2.35908C56.2768 2.36042 56.2877 2.36143 56.2987 2.36278C56.2872 2.36143 56.2756 2.36009 56.264 2.35874C56.2646 2.35874 56.2653 2.35874 56.2658 2.35874V2.35908ZM56.6342 2.97627C56.5037 2.95777 56.4157 2.9443 56.3547 2.93421C56.4157 2.9443 56.5043 2.95777 56.6346 2.97627H56.6342ZM56.636 2.97627C56.636 2.97627 56.6357 2.97627 56.6356 2.97627C56.6536 2.97829 56.6717 2.98065 56.6897 2.98267C56.6719 2.98065 56.6538 2.97829 56.636 2.97627ZM57.2144 2.46643C57.205 2.46509 57.1956 2.46408 57.1863 2.46273C57.1971 2.46408 57.2082 2.46542 57.2195 2.46677C57.2177 2.46677 57.216 2.46643 57.2144 2.46609V2.46643ZM57.2334 2.46879C57.2308 2.46879 57.2285 2.46811 57.2261 2.46778C57.2373 2.46912 57.2487 2.47047 57.2606 2.47182C57.2515 2.47081 57.2424 2.4698 57.2334 2.46845V2.46879ZM57.2608 2.47215C57.2739 2.47383 57.2874 2.47518 57.3013 2.47686C57.2877 2.47518 57.2743 2.47383 57.2608 2.47215ZM57.2904 2.48898C57.2904 2.48898 57.2902 2.48898 57.2899 2.48898C57.3059 2.49066 57.3226 2.49201 57.3392 2.49369C57.3225 2.49201 57.3062 2.49066 57.2904 2.48898ZM57.3487 2.49436C57.3624 2.49571 57.3761 2.49706 57.3899 2.4984C57.376 2.49706 57.3622 2.49571 57.3487 2.49436ZM57.4029 2.49975C57.4164 2.50109 57.43 2.50278 57.4437 2.50412C57.4299 2.50244 57.4162 2.50109 57.4029 2.49975ZM57.4615 3.07723C57.5418 3.08767 57.622 3.09877 57.7019 3.11021C57.6219 3.09877 57.5418 3.088 57.4615 3.07723ZM57.8719 3.13545C57.8391 3.13209 57.7941 3.12704 57.7019 3.11358C57.7966 3.12738 57.8383 3.13175 57.8747 3.13545C57.8738 3.13545 57.8729 3.13545 57.8719 3.13545ZM57.838 2.55528C57.8575 2.5583 57.8772 2.561 57.8967 2.56402C57.877 2.561 57.8574 2.55797 57.838 2.55528ZM57.8952 2.56402C57.8979 2.56436 57.9005 2.5647 57.9033 2.56537C57.9007 2.56503 57.898 2.5647 57.8952 2.56402ZM57.9148 2.56705C57.9306 2.56941 57.9465 2.5721 57.9623 2.57446C57.9464 2.57177 57.9306 2.56941 57.9148 2.56705ZM57.9832 2.57782C57.9991 2.58051 58.0151 2.58287 58.0311 2.58556C58.0151 2.58287 57.9991 2.58018 57.9832 2.57782ZM58.151 2.69897C58.145 2.69796 58.1391 2.69695 58.1331 2.69595C58.1498 2.69897 58.1666 2.702 58.1834 2.70503C58.1724 2.70301 58.1617 2.70133 58.1508 2.69931L58.151 2.69897ZM58.234 2.71378C58.219 2.71109 58.2039 2.7084 58.189 2.7057C58.2039 2.7084 58.2189 2.71109 58.234 2.71378ZM59.0816 3.38785C58.8766 3.32795 58.6774 3.28151 58.4679 3.23911C58.6775 3.28151 58.8768 3.32829 59.0821 3.38785C59.082 3.38785 59.0818 3.38785 59.0816 3.38785ZM59.2275 2.90157C59.2108 2.89416 59.1947 2.88979 59.178 2.88507C59.1947 2.88979 59.2107 2.8945 59.2275 2.90157ZM59.1725 3.4141C59.1676 3.41275 59.1627 3.41141 59.1578 3.40973C59.1651 3.41175 59.1727 3.41376 59.18 3.41646C59.1776 3.41545 59.1752 3.41477 59.1725 3.4141ZM59.1945 2.94632C59.1643 2.93757 59.134 2.92882 59.1038 2.92007C59.1369 2.92983 59.1702 2.93858 59.2031 2.94935C59.2003 2.94834 59.1976 2.94733 59.1945 2.94632ZM59.2101 2.94161C59.2072 2.9406 59.2043 2.93959 59.2013 2.93892C59.2101 2.94128 59.2189 2.94531 59.2276 2.94935C59.2218 2.947 59.2158 2.94397 59.21 2.94195L59.2101 2.94161ZM59.2365 2.93589C59.2454 2.93959 59.2544 2.94363 59.2635 2.94834C59.2544 2.94397 59.2454 2.93959 59.2365 2.93589ZM59.2727 2.21807C59.2727 2.21807 59.2727 2.21807 59.2725 2.21807C59.2725 2.21807 59.2725 2.21807 59.2727 2.21807C59.256 2.21673 59.2374 2.21403 59.2176 2.211C59.2399 2.21403 59.2591 2.21774 59.2787 2.21774C59.2768 2.21774 59.2746 2.21774 59.2728 2.21774L59.2727 2.21807ZM59.2787 1.70453C59.2787 1.70453 59.2781 1.70453 59.2777 1.70453C59.2782 1.70453 59.2787 1.70453 59.2793 1.70453C59.2791 1.70453 59.2789 1.70453 59.2787 1.70453ZM59.2953 3.47703C59.2912 3.47468 59.2872 3.47232 59.2831 3.46996C59.3048 3.48242 59.3242 3.49352 59.3492 3.5053C59.3293 3.49588 59.3113 3.48578 59.2953 3.4767V3.47703ZM59.3509 2.99344C59.3443 2.99007 59.3379 2.98671 59.3313 2.98334C59.3387 2.98738 59.3462 2.99142 59.3537 2.99512C59.3528 2.99478 59.3518 2.99411 59.3509 2.99377V2.99344ZM59.3855 2.25206C59.3672 2.25442 59.3524 2.25745 59.3383 2.26047C59.3518 2.25745 59.368 2.25442 59.3863 2.25206C59.3865 2.25206 59.3868 2.25206 59.3871 2.25206C59.3865 2.25206 59.3861 2.25206 59.3856 2.25206H59.3855ZM59.3869 2.20158C59.3873 2.20158 59.3879 2.20158 59.3884 2.20192C59.3877 2.20192 59.3872 2.20192 59.3869 2.20158ZM59.3893 2.20225C59.3893 2.20225 59.3889 2.20225 59.3888 2.20225C59.3889 2.20225 59.3892 2.20225 59.3893 2.20225ZM59.3945 3.0355C59.3945 3.0355 59.3941 3.0355 59.394 3.0355C59.399 3.03752 59.4042 3.03954 59.4092 3.04156C59.4043 3.03954 59.3994 3.03752 59.3945 3.0355ZM59.4102 2.20326C59.4087 2.20326 59.4072 2.20326 59.4057 2.20326C59.4151 2.20326 59.4244 2.2036 59.4353 2.20495C59.4264 2.20427 59.4183 2.2036 59.4102 2.2036V2.20326ZM59.421 3.03483C59.4243 3.03618 59.4276 3.03685 59.431 3.03786C59.4277 3.03685 59.4243 3.03584 59.421 3.03483ZM59.4404 3.04089C59.4463 3.04223 59.4521 3.04358 59.4582 3.04459C59.4521 3.04358 59.4461 3.04257 59.4404 3.04089ZM59.4775 3.06882C59.4803 3.06882 59.4833 3.06882 59.4863 3.06815C59.4833 3.06815 59.4803 3.06848 59.4775 3.06882C59.4802 3.06882 59.4828 3.06882 59.4856 3.06848C59.4771 3.06949 59.4685 3.06848 59.4604 3.06781C59.4659 3.06848 59.4716 3.06882 59.4775 3.06882ZM59.4785 3.53996C59.4769 3.53996 59.4753 3.53996 59.4738 3.53996C59.4795 3.53996 59.4851 3.53996 59.4909 3.53963C59.4867 3.53996 59.4825 3.53996 59.4786 3.5403L59.4785 3.53996ZM59.4908 3.03147C59.4954 3.03079 59.5003 3.02945 59.5052 3.02776C59.5002 3.02945 59.4953 3.03079 59.4908 3.03147ZM59.5183 3.03719C59.5224 3.03517 59.5265 3.03281 59.5308 3.03012C59.5199 3.03719 59.5085 3.04122 59.4978 3.04358C59.5158 3.04022 59.5323 3.03147 59.5505 3.0143C59.5392 3.02507 59.5285 3.03214 59.5183 3.03719ZM59.5386 3.00925C59.5423 3.00656 59.546 3.00286 59.5498 2.99882C59.5416 3.00791 59.5333 3.01363 59.5248 3.01868C59.5248 3.01868 59.5248 3.01868 59.5249 3.01868C59.5249 3.01868 59.5248 3.01868 59.5247 3.01868C59.5194 3.02204 59.5142 3.0244 59.5092 3.02642C59.5274 3.01901 59.5444 3.00757 59.5615 2.98469C59.5537 2.99478 59.5457 3.00353 59.5384 3.00925H59.5386ZM59.5617 3.02642C59.5643 3.02339 59.5666 3.02036 59.5692 3.017C59.5666 3.02002 59.5643 3.02339 59.5617 3.02642ZM59.5713 2.99041C59.5725 2.98873 59.5737 2.98637 59.5749 2.98435C59.5737 2.98603 59.5726 2.98839 59.5714 2.99007L59.5713 2.99041ZM59.5655 2.25374C59.5686 2.25812 59.5719 2.26317 59.5751 2.26821C59.5719 2.26283 59.5686 2.25778 59.5655 2.25374ZM59.5877 2.98974C59.5929 2.98065 59.5979 2.97055 59.6027 2.95945C59.5959 2.97493 59.5889 2.98873 59.5811 2.99983C59.5833 2.99647 59.5855 2.99344 59.5877 2.9894V2.98974ZM59.6939 3.37607C59.6608 3.43463 59.6229 3.47905 59.5833 3.50597C59.6649 3.45146 59.7373 3.32223 59.7834 3.14319C59.7599 3.23406 59.7291 3.31482 59.6939 3.37641V3.37607ZM59.8167 2.97695C59.8163 2.9793 59.816 2.98132 59.8156 2.98368C59.8161 2.98031 59.8167 2.97695 59.8172 2.97358L59.8167 2.97695ZM59.8206 2.95036C59.8199 2.95608 59.8189 2.9618 59.8181 2.96753C59.8197 2.95676 59.8213 2.94565 59.8229 2.93488C59.8221 2.93993 59.8214 2.94531 59.8206 2.95036ZM59.8396 2.50816C59.8402 2.52162 59.8406 2.53374 59.8409 2.54417C59.8402 2.52028 59.8389 2.49032 59.8372 2.46542C59.8381 2.47956 59.8389 2.49403 59.8396 2.50816ZM59.8414 2.66835C59.8412 2.68753 59.8405 2.71883 59.8384 2.75686C59.8408 2.71277 59.8412 2.68652 59.8416 2.6596C59.8416 2.66263 59.8416 2.66532 59.8414 2.66835ZM32.449 1.78126H32.4491C32.4491 1.78126 32.448 1.78126 32.4475 1.78126C32.448 1.78126 32.4484 1.78126 32.449 1.78126ZM58.1167 2.60037C58.1167 2.60037 58.1169 2.60037 58.1172 2.60037C58.1169 2.60037 58.1168 2.60037 58.1165 2.60037H58.1167ZM15.4806 2.50008C15.4837 2.50008 15.4869 2.49975 15.4902 2.49941C15.4869 2.49941 15.4837 2.49975 15.4806 2.50008ZM51.6538 1.84082C51.6538 1.84082 51.6532 1.84082 51.6528 1.84082C51.6532 1.84082 51.6534 1.84082 51.6538 1.84082ZM28.4933 1.29093C28.4933 1.29093 28.4945 1.29093 28.495 1.29093C28.4945 1.29093 28.4938 1.29093 28.4933 1.29093ZM34.8017 1.54838C34.8017 1.54838 34.8005 1.54838 34.8 1.54838C34.8005 1.54838 34.8012 1.54838 34.8017 1.54838ZM35.0091 1.10954C35.0091 1.10954 35.0103 1.10954 35.0108 1.10954C35.0103 1.10954 35.0096 1.10954 35.0091 1.10954ZM3.98047 3.00993C3.98047 3.00993 3.98073 3.00993 3.98099 3.00993C3.98033 3.00993 3.9798 3.00993 3.97914 3.00993C3.97954 3.00993 3.98007 3.00993 3.98047 3.00993ZM15.5458 2.48629C15.5458 2.48629 15.5456 2.48629 15.5453 2.48629C15.5454 2.48629 15.5456 2.48629 15.5458 2.48629ZM5.00018 2.23355C5.00018 2.23355 5.0011 2.23355 5.0015 2.23355C5.0011 2.23355 5.00071 2.23355 5.00031 2.23355H5.00018ZM15.5453 2.48629C15.5394 2.48662 15.5337 2.48696 15.5278 2.4873C15.5337 2.4873 15.5394 2.48662 15.5453 2.48629ZM25.7105 1.50732C25.7105 1.50732 25.7102 1.50732 25.71 1.50732C25.7428 1.50631 25.7757 1.50496 25.8084 1.50395C25.7758 1.5053 25.7431 1.50631 25.7104 1.50732H25.7105ZM18.6108 1.70924C18.612 1.70924 18.6132 1.70924 18.6143 1.7089C18.6131 1.7089 18.6119 1.7089 18.6108 1.70924ZM4.12349 2.24735C4.12508 2.24735 4.12693 2.24735 4.12852 2.24701C4.12667 2.24701 4.12468 2.24701 4.12283 2.24735C4.12309 2.24735 4.12323 2.24735 4.12349 2.24735ZM41.0691 1.48309C41.0676 1.48309 41.0662 1.48309 41.0646 1.48309C41.0687 1.48309 41.0724 1.48309 41.0762 1.48275C41.074 1.48275 41.0715 1.48275 41.0691 1.48275V1.48309ZM30.2817 1.22127C30.2817 1.22127 30.2805 1.22127 30.28 1.22127C30.2805 1.22127 30.2812 1.22127 30.2817 1.22127ZM25.641 1.50968C25.6362 1.50968 25.6315 1.51001 25.6267 1.51035C25.6315 1.51035 25.6362 1.51001 25.641 1.50968ZM41.9613 1.57059C41.9613 1.57059 41.9615 1.57059 41.9618 1.57059C41.9617 1.57059 41.9615 1.57059 41.9613 1.57059ZM14.7959 2.30658C14.7975 2.30658 14.7992 2.30624 14.8009 2.30591C14.7992 2.30591 14.7975 2.30624 14.7959 2.30658ZM25.8719 1.50059C25.8571 1.50126 25.8423 1.50194 25.8274 1.50261C25.8424 1.50194 25.8574 1.50126 25.8723 1.50059C25.8723 1.50059 25.8721 1.50059 25.8719 1.50059ZM24.8934 2.00538C24.8934 2.00538 24.8938 2.00538 24.8939 2.00538C24.8938 2.00538 24.8936 2.00538 24.8934 2.00538ZM15.0763 2.43244C15.0763 2.43244 15.0764 2.43244 15.0765 2.43244C15.0765 2.43244 15.0764 2.43244 15.0763 2.43244ZM56.1987 2.34091C56.198 2.34091 56.1975 2.34091 56.1968 2.34091C56.1974 2.34091 56.198 2.34091 56.1986 2.34091H56.1987ZM26.0176 1.49352C25.9845 1.4952 25.9515 1.49655 25.9184 1.49823C25.9515 1.49655 25.9846 1.4952 26.0176 1.49352ZM5.95566 2.2524C5.96228 2.2524 5.96877 2.25206 5.97539 2.25172C5.96877 2.25172 5.96228 2.25206 5.95566 2.2524ZM22.0223 1.56318C22.0192 1.56318 22.0158 1.56318 22.0125 1.56285C22.0158 1.56285 22.019 1.56285 22.0223 1.56318ZM54.4035 1.40804H54.4039C54.4039 1.40804 54.4036 1.40804 54.4035 1.40804ZM54.4556 1.4141C54.457 1.4141 54.4582 1.4141 54.4595 1.41444C54.4582 1.41444 54.457 1.41444 54.4556 1.4141ZM19.2229 1.60862C19.2229 1.60862 19.2226 1.60862 19.2225 1.60862C19.2225 1.60862 19.2226 1.60862 19.2228 1.60862H19.2229ZM25.8273 1.50294C25.821 1.50294 25.8147 1.50328 25.8084 1.50362C25.8147 1.50362 25.821 1.50328 25.8273 1.50294ZM54.5106 1.42049C54.5106 1.42049 54.511 1.42049 54.5113 1.42049C54.5105 1.42049 54.5095 1.42049 54.5087 1.42049C54.5094 1.42049 54.5099 1.42049 54.5106 1.42049ZM25.9184 1.49857C25.9031 1.49924 25.8877 1.49992 25.8722 1.50059C25.8876 1.49992 25.9029 1.49924 25.9184 1.49857ZM11.0087 2.51355C11.0087 2.51355 11.0089 2.51355 11.0091 2.51355C11.0085 2.51355 11.008 2.51355 11.0075 2.51355C11.0079 2.51355 11.0083 2.51355 11.0088 2.51355H11.0087ZM59.3982 2.19283C59.3982 2.19283 59.3986 2.19283 59.3987 2.19283C59.3985 2.19283 59.3983 2.19283 59.3982 2.19283ZM10.9428 2.70268C10.9489 2.70268 10.9549 2.70234 10.9609 2.702C10.9548 2.702 10.9488 2.70234 10.9428 2.70268ZM18.0351 2.3611C18.0351 2.3611 18.0351 2.3611 18.035 2.3611H18.0351ZM2.39541 2.86825C2.39541 2.86825 2.39475 2.86825 2.39448 2.86825C2.39475 2.86825 2.39515 2.86825 2.39541 2.86825ZM39.7199 1.48343C39.7142 1.48343 39.7086 1.48343 39.7029 1.48376C39.7142 1.48376 39.7249 1.48343 39.736 1.48309C39.7307 1.48309 39.7253 1.48309 39.7199 1.48309V1.48343ZM39.736 1.48343C39.7497 1.48343 39.7632 1.48275 39.7767 1.48275C39.7633 1.48275 39.7497 1.48343 39.736 1.48343ZM4.90628 2.28201C4.90456 2.28201 4.90297 2.28201 4.90138 2.28201C4.90297 2.28201 4.90469 2.28201 4.90628 2.28201ZM16.1769 2.47922H16.1767C16.1767 2.47922 16.1771 2.47922 16.1774 2.47922C16.1773 2.47922 16.177 2.47922 16.1769 2.47922ZM46.8685 1.59852C46.8685 1.59852 46.8687 1.59852 46.8689 1.59852C46.8689 1.59852 46.8686 1.59852 46.8685 1.59852ZM0.93325 2.96618C0.93325 2.96618 0.93325 2.96618 0.933118 2.96618C0.933118 2.96618 0.933118 2.96618 0.93325 2.96618ZM14.8012 2.30624C14.8034 2.30624 14.8058 2.30591 14.8082 2.30557C14.8057 2.30557 14.8033 2.30591 14.8012 2.30624ZM29.721 1.27949C29.721 1.27949 29.7212 1.27949 29.7213 1.27949C29.7213 1.27949 29.7212 1.27949 29.721 1.27949ZM40.5051 1.018C40.5051 1.018 40.5047 1.018 40.5044 1.018C40.5047 1.018 40.5048 1.018 40.5051 1.018ZM55.201 2.30725C55.1983 2.30692 55.1957 2.30658 55.193 2.30624C55.1979 2.30692 55.2028 2.30759 55.2076 2.30826C55.2053 2.30826 55.2031 2.30759 55.201 2.30725ZM14.8085 2.30557C14.8085 2.30557 14.8095 2.30557 14.8101 2.30557C14.8094 2.30557 14.8089 2.30557 14.8083 2.30557H14.8085ZM15.0766 2.43278C15.0766 2.43278 15.0766 2.43278 15.0765 2.43278C15.0765 2.43278 15.0765 2.43278 15.0766 2.43278ZM8.44071 2.11476C8.44654 2.11442 8.45223 2.11408 8.45806 2.11375C8.44614 2.11442 8.43422 2.11543 8.4223 2.1161C8.42839 2.11577 8.43462 2.11543 8.44071 2.11509V2.11476ZM14.8011 2.30624C14.8011 2.30624 14.8009 2.30624 14.8008 2.30624C14.8008 2.30624 14.8008 2.30624 14.8009 2.30624H14.8011ZM14.7959 2.30692C14.7959 2.30692 14.7959 2.30692 14.7958 2.30692C14.7958 2.30692 14.7958 2.30692 14.7959 2.30692ZM22.9762 2.08178C22.9753 2.08178 22.9744 2.08178 22.9737 2.08178C22.9745 2.08178 22.9753 2.08178 22.9762 2.08178Z' fill='%23990000'/%3E%3C/svg%3E");
}
.page-discourse__section-Head-subtitle {
  letter-spacing: -0.48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  font-size: clamp(38px, 16.9527720739px + 2.0533880903vw, 48px);
}
@media screen and (max-width: 1024px) {
  .page-discourse__section-Head-subtitle {
    font-size: clamp(28px, -2.1568627451px + 3.9215686275vw, 38px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__section-Head-subtitle {
    font-size: clamp(26px, 26px + 0.2604166667vw, 28px);
  }
}
.page-discourse__podcasts, .page-discourse__events, .page-discourse__articles {
  padding-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .page-discourse__podcasts, .page-discourse__events, .page-discourse__articles {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__podcasts, .page-discourse__events, .page-discourse__articles {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1513px) {
  .page-discourse__podcasts-Inner {
    padding: 0 100px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1512px) {
  .page-discourse__podcasts-Inner {
    padding: 0 clamp(15px, 15px + 110 * (100vw - 1025px) / 487, 100px);
  }
}
.page-discourse__podcasts-Head {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .page-discourse__podcasts-Head {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__podcasts-Head {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 961px) {
  .page-discourse__podcasts-Body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 960px) {
  .page-discourse__podcasts-Block {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .page-discourse__podcasts-Block + div {
    margin-top: 40px;
  }
}
.page-discourse__podcasts-Block-script {
  margin-bottom: 20px;
}
.page-discourse__podcasts-Block-script iframe {
  border-radius: 5px;
  border: 1px solid #D2CAC1;
  overflow: hidden;
}
.page-discourse__podcasts-Block-title {
  margin-bottom: 10px;
}
.page-discourse__podcasts-Block-title h3 {
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #003953;
  font-size: clamp(28px, 19.5811088296px + 0.8213552361vw, 32px);
}
@media screen and (max-width: 1024px) {
  .page-discourse__podcasts-Block-title h3 {
    font-size: clamp(26px, 19.968627451px + 0.7843137255vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__podcasts-Block-title h3 {
    font-size: clamp(24px, 24px + 0.2604166667vw, 26px);
  }
}
.page-discourse__podcasts-Block-description {
  margin-bottom: 30px;
}
.page-discourse__podcasts-Block-description p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 175%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-discourse__podcasts-Block-description p {
    font-size: 16px;
  }
}
.page-discourse__podcasts-Block-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.page-discourse__podcasts-Block-links span {
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
  color: #003953;
}
@media screen and (max-width: 768px) {
  .page-discourse__podcasts-Block-links span {
    font-size: 16px;
    display: block;
    width: 100%;
  }
}
.page-discourse__podcasts-Block-links a {
  border-radius: 3px;
  border: 1px solid #D2CAC1;
  background: #FCFBF8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
}
.page-discourse__events-Head {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (min-width: 1513px) {
  .page-discourse__events-Head {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1512px) {
  .page-discourse__events-Head {
    padding-left: clamp(15px, 15px + 110 * (100vw - 1025px) / 487, 100px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__events-Head {
    margin-bottom: 40px;
  }
}
.page-discourse__events-Head-subtitle h3 {
  max-width: 600px;
}
.page-discourse__events-Head-link {
  padding-top: 30px;
}
.page-discourse__events-Head-left {
  width: calc(50% + 75px);
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .page-discourse__events-Head-left {
    width: 50%;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__events-Head-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.page-discourse__events-Head-right {
  width: calc(50% - 75px);
}
@media screen and (max-width: 1024px) {
  .page-discourse__events-Head-right {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__events-Head-right {
    width: 100%;
  }
}
.page-discourse__events-List {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 60px;
}
@media screen and (max-width: 1024px) {
  .page-discourse__events-List {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__events-List {
    -moz-column-gap: 0;
         column-gap: 0;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
.page-discourse__events-List-all a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #E4A746;
  border-radius: 5px;
  text-decoration: underline;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #003953;
  padding: 80px 25px;
  transition: color 0.1s ease-in-out;
}
.page-discourse__events-List-all a:hover {
  color: #E4A746;
}
.page-discourse__events-List-all a {
  font-size: clamp(24px, 24px + 0vw, 24px);
}
@media screen and (max-width: 1024px) {
  .page-discourse__events-List-all a {
    font-size: clamp(22px, 15.968627451px + 0.7843137255vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__events-List-all a {
    font-size: clamp(20px, 20px + 0.2604166667vw, 22px);
  }
}
.page-discourse__articles-Head {
  margin-bottom: 80px;
}
@media screen and (min-width: 1513px) {
  .page-discourse__articles-Head {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1512px) {
  .page-discourse__articles-Head {
    padding-left: clamp(15px, 15px + 110 * (100vw - 1025px) / 487, 100px);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__articles-Head {
    margin-bottom: 40px;
  }
}
.page-discourse__articles-Head-link {
  padding-top: 30px;
}
.page-discourse__articles-List {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 60px;
}
@media screen and (max-width: 1024px) {
  .page-discourse__articles-List {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-discourse__articles-List {
    -moz-column-gap: 0;
         column-gap: 0;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .discourse-substack-section-head {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.filter__fields {
  margin-bottom: 50px;
}
.filter__fields-container {
  display: flex;
}
@media screen and (max-width: 600px) {
  .filter__fields-container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.filter__fields .left-col {
  width: 420px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .filter__fields .left-col {
    width: 100%;
  }
}
.filter__fields .right-col {
  width: calc(100% - 420px);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .filter__fields .right-col {
    width: 100%;
  }
}
.filter__fields-btn-container {
  width: 100%;
  text-align: center;
}
.filter__fields .filter-fields-btn {
  position: relative;
  text-align: center;
  display: inline-block;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .filter__fields .filter-fields-btn {
    width: 100%;
  }
}
.filter__fields .filter-fields-btn i {
  display: inline-block;
  padding: 3px;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #003953;
  color: #F0E9DE;
}
.filter__fields-state-btn {
  display: inline-block;
  padding: 15px 70px;
  background: #003953;
  color: #F0E9DE;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .filter__fields-state-btn {
    width: 100%;
  }
}
.filter__fields-dropdown {
  position: absolute;
  width: 100%;
  max-height: 400px;
  overflow-y: scroll;
  top: 48px;
  z-index: 3;
  display: none;
}
.filter__fields-dropdown-states {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #003953;
  color: #F0E9DE;
}
.filter__fields-dropdown-states:hover {
  background: #cecece;
  color: #003953;
}
.filter__fields-search {
  width: 100%;
  position: relative;
}
.filter__fields-search input {
  width: 100%;
}
.filter__fields-search i {
  padding: 6px;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  background: #003953;
  position: absolute;
}

.search-results .left-col {
  width: 420px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .search-results .left-col {
    width: 100%;
  }
}
.search-results .right-col {
  width: calc(100% - 420px);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .search-results .right-col {
    width: 100%;
  }
}
.search-results__header {
  display: flex;
  width: 100%;
}
.search-results__header-state {
  margin-right: 20px;
}
.search-results__header h2 {
  display: inline-block;
  padding: 10px 0;
  color: #F0E9DE;
  background: #003953;
  margin-bottom: 0;
}
.search-results-box__state-list {
  border: 1px solid #919191;
  border-bottom: none;
}
.search-results-box__state {
  display: flex;
  border-bottom: 1px solid #919191;
}
.search-results-box__state span {
  padding: 10px 0;
  color: #003953;
}
.search-results-box__state:nth-child(even) {
  background: #cecece;
}

.single-body {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.post-details-wrap {
  width: calc(100% - 2rem);
  max-width: 37.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  left: calc(50% - 1rem);
  transform: translateX(-50%);
  position: absolute;
  bottom: -120px;
}
@media screen and (min-width: 768px) {
  .post-details-wrap {
    position: absolute;
    bottom: -44.5px;
  }
}
.post-details {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .post-details {
    flex-direction: row;
  }
}
.post-details > * {
  height: 91px;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.post-details p {
  margin-bottom: 0;
}
.post-details .btn, .post-details .btn-2, .post-details .btn-3, .post-details .btn-lg, .post-details .btn-2-lg, .post-details .btn-3-lg, .post-details .btn-sm, .post-details .btn-2-sm, .post-details .btn-3-sm, .post-details .wp-block-button__link, .post-details .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button.is-style-outline .post-details .wp-block-button__link, .post-details .gform_wrapper.gravity-theme .gform_footer input[type=submit], .gform_wrapper.gravity-theme .gform_footer .post-details input[type=submit] {
  border-radius: 0;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-details .post-details-date {
  position: relative;
  border-radius: 3px 0 0 3px;
  background: white;
  border: 1px solid #D2CAC1;
}
@media screen and (max-width: 767px) {
  .post-details .post-details-date {
    border-radius: 3px 3px 0 0;
    border-bottom: none;
  }
}
.post-details .post-details-author {
  position: relative;
  background: white;
  border: 1px solid #D2CAC1;
  border-right: none;
  border-left: none;
  border-radius: 0 3px 3px 0;
}
@media screen and (max-width: 767px) {
  .post-details .post-details-author {
    border-left: 1px solid #D2CAC1;
    border-right: 1px solid #D2CAC1;
  }
}

.post-content-wrapper {
  margin-top: 100px;
}

.post-detail-category {
  margin-bottom: 20px;
}
.post-detail-category a {
  text-decoration: none;
}

.post-detail-column {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.post-content-wrapper {
  padding-bottom: 200px;
}

.post-detail-overview-text {
  margin-bottom: 50px;
}

@media screen and (max-width: 1025px) {
  .post-overview {
    margin-bottom: 60px;
  }
}

.page-default .content {
  max-width: 94ch;
  margin-left: auto;
  margin-right: auto;
}

img {
  border-radius: 3px;
}

.page-default__about-hero-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 60vh;
}
.page-default__hero-Title {
  margin-bottom: 50px;
}
.page-default__hero-Subtitle {
  margin-bottom: 50px;
}
.page-default__hero-Text {
  margin-bottom: 30px;
}
.page-default__hero.align-left {
  text-align: left;
}
.page-default__hero.align-center {
  text-align: center;
}
.page-default__hero.align-right {
  text-align: right;
}
.page-default__hero.constrained {
  max-width: 960px;
  margin: 0 auto;
}
.page-default__hero-img img {
  width: 100vw;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-default .board-img img {
  width: 225px;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 480px) {
  .page-default .board-img img {
    width: 200px;
    height: 200px;
  }
}

.alumni .masthead {
  background-color: #003953;
  padding: 90px 0 40px;
}
.alumni .page-default__hero-Subtitle h3, .alumni .page-default__hero p {
  color: white;
}
.alumni .notable-alumni figure {
  margin-left: 0 !important;
}
.alumni .two-column-alumni-modals {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.alumni .two-column-alumni-modals .alumni-modal {
  border: 1px solid #D2CAC1;
  border-radius: 0.6px;
}
.alumni .page-default__alumni-hero-img img {
  width: 100vw;
  max-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 100px;
}

.title-with-eyebrow {
  gap: 15px;
  align-items: center !important;
  margin: 25px 0;
  display: flex;
}
.title-with-eyebrow .eyebrow-image-container {
  position: relative;
}
.title-with-eyebrow div {
  margin: auto;
}
.title-with-eyebrow img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.title-with-eyebrow h5 {
  font-weight: bold !important;
  margin: 0;
}

.students__section-headers {
  border-bottom: 1.5px solid #D2CAC1;
  padding-bottom: 8px;
}
.students .masthead {
  padding: 0 !important;
}
.students .masthead .page-default__students-hero img {
  max-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.students .page-default__hero {
  position: relative;
  top: -5vh;
  padding: 30px;
  background: #F0E9DE;
}
.students .students-modal-blocks {
  margin: 0 !important;
}
.students .students-modal-blocks figure {
  margin: 0 !important;
}
.students .students-modal-blocks a {
  padding: 20px 50px;
  line-height: normal;
}
.students .students-modal-blocks img {
  margin: 0;
  width: 100%;
}
.students .students-flagship-program-modal p {
  margin: 0;
}
.students .featured-speakers figure img {
  margin-left: 0 !important;
}
.students .student-modal-block {
  border: 1px solid #D2CAC1;
  border-radius: 0.6px;
}
.students .student-modal-block figure {
  margin: 0;
}
.students .student-modal-block div {
  margin: 0;
}
.students .student-modal-block-desc {
  padding: 40px;
}

.faculty .masthead {
  padding: 0 !important;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .faculty .masthead {
    flex-direction: column-reverse;
  }
}
.faculty .masthead .page-default__faculty-hero-image img {
  max-height: 60vh;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media screen and (max-width: 767px) {
  .faculty .masthead .page-default__faculty-hero-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.faculty .masthead .page-default__hero-faculty-Subtitle h3 {
  position: relative;
  right: -10%;
  background: #F0E9DE;
  text-align: left;
  padding: 35px 0;
}
.faculty .masthead .page-default__hero-Subtitle-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faculty .masthead .page-default__hero-Subtitle-container img {
  width: 175px;
  padding-bottom: 15%;
}
.faculty .masthead .page-default__hero-Subtitle-container .page-default__hero-Subtitle {
  text-align: left;
}
.faculty .masthead .page-default__hero-Subtitle-container .page-default__hero-Subtitle p {
  margin-right: 80px;
  margin-bottom: 30px !important;
}
.faculty .masthead .page-default__hero-Subtitle-container .page-default__hero-CTA {
  text-align: left;
}
.faculty-benefits-img img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .faculty-benefits-img img {
    height: 330px;
  }
}
.faculty-benefits-desc {
  margin: 0 !important;
}

.faculty-featured-event {
  background: white;
  border: 1px solid #D2CAC1;
  border-radius: 0.6px;
}
.faculty-featured-event figure {
  margin: 0;
}
.faculty-featured-event-desc {
  padding: 30px;
  margin: 0;
}
.faculty-featured-event h3 {
  font-family: "artifex-hand-cf", sans-serif;
  font-size: 35px;
}
.faculty-featured-event h6 {
  font-family: "cartograph-cf", monospace;
  font-size: 15px;
}
.faculty-featured-event p {
  font-family: "artifex-cf", sans-serif;
  margin: 0;
}

.students-flagship-program-modal {
  background: white;
}
.students-flagship-program-modal figure {
  margin: 0;
}
.students-flagship-program-modal figure img {
  min-width: 100%;
}
.students-flagship-program-modal-desc {
  padding: 30px;
  padding-bottom: 10px;
  margin: 0;
}
.students-flagship-program-modal h2 {
  font-family: "artifex-hand-cf", sans-serif;
}
.students-flagship-program-modal h6 {
  font-family: "cartograph-cf", monospace;
  font-size: 15px;
}
.students-flagship-program-modal p {
  font-family: "artifex-cf", sans-serif;
}

.discourse .masthead {
  background-size: cover !important;
  box-shadow: inset 0 0 0 2000px rgba(0, 57, 83, 0.87);
}
.discourse .masthead .container {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .discourse .masthead .container {
    flex-wrap: wrap;
  }
}
.discourse .masthead .container div {
  width: 100%;
}
.discourse .masthead .container div h3 {
  font-size: 27px;
  color: #F0E9DE;
}
@media screen and (max-width: 480px) {
  .discourse .masthead .container div h3 {
    font-size: 22px;
  }
}
.discourse .masthead .container div img {
  border-radius: 50% 50% 1% 1%;
}
@media screen and (max-width: 480px) {
  .discourse .masthead .container div img {
    width: 80%;
  }
}

.page-404__title {
  margin-bottom: 40px;
}
.page-404__title h6 {
  margin: 0;
}
.page-404__image {
  margin-bottom: 20px;
}
.page-404__text {
  margin-bottom: 50px;
}
.template-speaker {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .template-speaker {
    padding: 60px 0;
  }
}
.template-speaker__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.template-speaker__image {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .template-speaker__image {
    width: 100%;
    margin-bottom: 40px;
  }
}
.template-speaker__image-Box {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.template-speaker__image-Box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.template-speaker__content {
  width: calc(100% - 300px);
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .template-speaker__content {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
}

/*
|--------------------------------------------------------------------------
| Overrides
|--------------------------------------------------------------------------
|
*/
/* >rte */
/* >rte heading */
.rte h1:not([class]),
.rte h2:not([class]),
.rte h3:not([class]),
.rte h4:not([class]),
.rte h5:not([class]),
.rte h6:not([class]) {
  font-family: "artifex-cf", sans-serif;
  color: #003953;
  font-weight: bold;
}

.rte h1:not([class]),
.rte h2:not([class]),
.rte h3:not([class]) {
  line-height: 1.2;
}

.rte h1:not([class]) {
  font-size: 2.5rem;
  margin-top: 3rem;
}

.rte h2:not([class]) {
  font-size: 1.75rem;
  margin-top: 3rem;
}

.rte h3:not([class]) {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.rte h4:not([class]),
.rte h5:not([class]),
.rte h6:not([class]) {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* >rte list */
.rte ul,
.rte ol {
  list-style-type: disc;
  color: #003953;
  font-size: 16px;
  line-height: 1.5;
  margin: 1.5rem;
}

.rte ol {
  list-style-type: decimal;
}

.rte li {
  margin-bottom: 0.25rem;
}

.rte ul ul,
.rte ol ol {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.rte ol ol {
  list-style-type: lower-alpha;
}

.rte ol ol ol {
  list-style-type: lower-roman;
}

/* >rte blockquote */
.rte blockquote > p {
  font-family: "artifex-hand-cf", sans-serif;
  font-style: italic;
  font-size: 34px;
  line-height: 1.4;
  font-weight: 300;
}

/* >rte table */
.rte table {
  border-top: 1px solid #D2CAC1;
  border-left: 1px solid #D2CAC1;
}

.rte table th {
  background-color: #ebe2d9;
}

.rte table td, .rte table th {
  border-bottom: 1px solid #D2CAC1;
  border-right: 1px solid #D2CAC1;
  padding: 5px 7px;
}

.rte figcaption {
  font-size: 0.75rem;
  color: #003953;
  padding-top: 8px;
}

/* >rte definition list */
.rte dt {
  font-weight: bold;
}

.rte dd {
  margin-bottom: 1rem;
}

.rte > div,
.rte > figure,
.rte > blockquote,
.rte > hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rte > div.wp-block-buttons {
  margin-top: 0;
  margin-bottom: 3.75rem;
}

/* >margin-top */
.m-0 {
  margin-top: 0 !important;
}

.m-10 {
  margin-top: 0.625rem !important;
}

.m-20 {
  margin-top: 1.25rem !important;
}

.m-30 {
  margin-top: 1.875rem !important;
}

.m-40 {
  margin-top: 2.5rem !important;
}

.m-50 {
  margin-top: 3.125rem !important;
}

.m-60 {
  margin-top: 3.75rem !important;
}

.m-70 {
  margin-top: 4.375rem !important;
}

.m-80 {
  margin-top: 5rem !important;
}

.m-90 {
  margin-top: 5.625rem !important;
}

.m-100 {
  margin-top: 6.25rem !important;
}

.m-110 {
  margin-top: 6.875rem !important;
}

.m-120 {
  margin-top: 7.5rem !important;
}

.m-130 {
  margin-top: 8.125rem !important;
}

.m-140 {
  margin-top: 8.75rem !important;
}

.m-150 {
  margin-top: 9.375rem !important;
}

.m-160 {
  margin-top: 10rem !important;
}

.m-170 {
  margin-top: 10.625rem !important;
}

.m-180 {
  margin-top: 11.25rem !important;
}

.m-190 {
  margin-top: 11.875rem !important;
}

.m-200 {
  margin-top: 12.5rem !important;
}

.m-210 {
  margin-top: 13.125rem !important;
}

.m-220 {
  margin-top: 13.75rem !important;
}

.m-230 {
  margin-top: 14.375rem !important;
}

.m-240 {
  margin-top: 15rem !important;
}

.m-250 {
  margin-top: 15.625rem !important;
}

.m-260 {
  margin-top: 16.25rem !important;
}

.m-270 {
  margin-top: 16.875rem !important;
}

.m-280 {
  margin-top: 17.5rem !important;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .m-0-md {
    margin-top: 0 !important;
  }
  .m-20-md {
    margin-top: 1.25rem !important;
  }
  .m-30-md {
    margin-top: 1.875rem !important;
  }
  .m-40-md {
    margin-top: 2.5rem !important;
  }
  .m-50-md {
    margin-top: 3.125rem !important;
  }
  .m-60-md {
    margin-top: 3.75rem !important;
  }
  .m-70-md {
    margin-top: 4.375rem !important;
  }
  .m-80-md {
    margin-top: 5rem !important;
  }
  .m-90-md {
    margin-top: 5.625rem !important;
  }
  .m-100-md {
    margin-top: 6.25rem !important;
  }
  .m-110-md {
    margin-top: 6.875rem !important;
  }
  .m-120-md {
    margin-top: 7.5rem !important;
  }
  .m-130-md {
    margin-top: 8.125rem !important;
  }
  .m-140-md {
    margin-top: 8.75rem !important;
  }
  .m-150-md {
    margin-top: 9.375rem !important;
  }
  .m-160-md {
    margin-top: 10rem !important;
  }
  .m-170-md {
    margin-top: 10.625rem !important;
  }
  .m-180-md {
    margin-top: 11.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .m-0-sm {
    margin-top: 0 !important;
  }
  .m-10-sm {
    margin-top: 0.625rem !important;
  }
  .m-20-sm {
    margin-top: 1.25rem !important;
  }
  .m-30-sm {
    margin-top: 1.875rem !important;
  }
  .m-40-sm {
    margin-top: 2.5rem !important;
  }
  .m-50-sm {
    margin-top: 3.125rem !important;
  }
  .m-60-sm {
    margin-top: 3.75rem !important;
  }
  .m-70-sm {
    margin-top: 4.375rem !important;
  }
  .m-80-sm {
    margin-top: 5rem !important;
  }
  .m-90-sm {
    margin-top: 5.625rem !important;
  }
  .m-100-sm {
    margin-top: 6.25rem !important;
  }
  .m-110-sm {
    margin-top: 6.875rem !important;
  }
  .m-120-sm {
    margin-top: 7.5rem !important;
  }
  .m-130-sm {
    margin-top: 8.125rem !important;
  }
  .m-140-sm {
    margin-top: 8.75rem !important;
  }
  .m-150-sm {
    margin-top: 9.375rem !important;
  }
  .m-160-sm {
    margin-top: 10rem !important;
  }
  .m-170-sm {
    margin-top: 10.625rem !important;
  }
  .m-180-sm {
    margin-top: 11.25rem !important;
  }
}
/* >margin-bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 0.625rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.mb-50 {
  margin-bottom: 3.125rem !important;
}

.mb-60 {
  margin-bottom: 3.75rem !important;
}

.mb-70 {
  margin-bottom: 4.375rem !important;
}

.mb-80 {
  margin-bottom: 5rem !important;
}

.mb-90 {
  margin-bottom: 5.625rem !important;
}

.mb-100 {
  margin-bottom: 6.25rem !important;
}

.mb-110 {
  margin-bottom: 6.875rem !important;
}

.mb-120 {
  margin-bottom: 7.5rem !important;
}

.mb-130 {
  margin-bottom: 8.125rem !important;
}

.mb-140 {
  margin-bottom: 8.75rem !important;
}

.mb-150 {
  margin-bottom: 9.375rem !important;
}

.mb-160 {
  margin-bottom: 10rem !important;
}

.mb-170 {
  margin-bottom: 10.625rem !important;
}

.mb-180 {
  margin-bottom: 11.25rem !important;
}

.mb-190 {
  margin-bottom: 11.875rem !important;
}

.mb-200 {
  margin-bottom: 12.5rem !important;
}

.mb-210 {
  margin-bottom: 13.125rem !important;
}

.mb-220 {
  margin-bottom: 13.75rem !important;
}

.mb-230 {
  margin-bottom: 14.375rem !important;
}

.mb-240 {
  margin-bottom: 15rem !important;
}

.mb-250 {
  margin-bottom: 15.625rem !important;
}

.mb-260 {
  margin-bottom: 16.25rem !important;
}

.mb-270 {
  margin-bottom: 16.875rem !important;
}

.mb-280 {
  margin-bottom: 17.5rem !important;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .mb-0-md {
    margin-bottom: 0 !important;
  }
  .mb-20-md {
    margin-bottom: 1.25rem !important;
  }
  .mb-30-md {
    margin-bottom: 1.875rem !important;
  }
  .mb-40-md {
    margin-bottom: 2.5rem !important;
  }
  .mb-50-md {
    margin-bottom: 3.125rem !important;
  }
  .mb-60-md {
    margin-bottom: 3.75rem !important;
  }
  .mb-70-md {
    margin-bottom: 4.375rem !important;
  }
  .mb-80-md {
    margin-bottom: 5rem !important;
  }
  .mb-90-md {
    margin-bottom: 5.625rem !important;
  }
  .mb-100-md {
    margin-bottom: 6.25rem !important;
  }
  .mb-110-md {
    margin-bottom: 6.875rem !important;
  }
  .mb-120-md {
    margin-bottom: 7.5rem !important;
  }
  .mb-130-md {
    margin-bottom: 8.125rem !important;
  }
  .mb-140-md {
    margin-bottom: 8.75rem !important;
  }
  .mb-150-md {
    margin-bottom: 9.375rem !important;
  }
  .mb-160-md {
    margin-bottom: 10rem !important;
  }
  .mb-170-md {
    margin-bottom: 10.625rem !important;
  }
  .mb-180-md {
    margin-bottom: 11.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .mb-0-sm {
    margin-bottom: 0 !important;
  }
  .mb-10-sm {
    margin-bottom: 0.625rem !important;
  }
  .mb-20-sm {
    margin-bottom: 1.25rem !important;
  }
  .mb-30-sm {
    margin-bottom: 1.875rem !important;
  }
  .mb-40-sm {
    margin-bottom: 2.5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 3.125rem !important;
  }
  .mb-60-sm {
    margin-bottom: 3.75rem !important;
  }
  .mb-70-sm {
    margin-bottom: 4.375rem !important;
  }
  .mb-80-sm {
    margin-bottom: 5rem !important;
  }
  .mb-90-sm {
    margin-bottom: 5.625rem !important;
  }
  .mb-100-sm {
    margin-bottom: 6.25rem !important;
  }
  .mb-110-sm {
    margin-bottom: 6.875rem !important;
  }
  .mb-120-sm {
    margin-bottom: 7.5rem !important;
  }
  .mb-130-sm {
    margin-bottom: 8.125rem !important;
  }
  .mb-140-sm {
    margin-bottom: 8.75rem !important;
  }
  .mb-150-sm {
    margin-bottom: 9.375rem !important;
  }
  .mb-160-sm {
    margin-bottom: 10rem !important;
  }
  .mb-170-sm {
    margin-bottom: 10.625rem !important;
  }
  .mb-180-sm {
    margin-bottom: 11.25rem !important;
  }
}
/* >padding-top */
.p-0 {
  padding-top: 0 !important;
}

.p-10 {
  padding-top: 0.625rem !important;
}

.p-20 {
  padding-top: 1.25rem !important;
}

.p-30 {
  padding-top: 1.875rem !important;
}

.p-40 {
  padding-top: 2.5rem !important;
}

.p-50 {
  padding-top: 3.125rem !important;
}

.p-60 {
  padding-top: 3.75rem !important;
}

.p-70 {
  padding-top: 4.375rem !important;
}

.p-80 {
  padding-top: 5rem !important;
}

.p-90 {
  padding-top: 5.625rem !important;
}

.p-100 {
  padding-top: 6.25rem !important;
}

.p-110 {
  padding-top: 6.875rem !important;
}

.p-120 {
  padding-top: 7.5rem !important;
}

.p-130 {
  padding-top: 8.125rem !important;
}

.p-140 {
  padding-top: 8.75rem !important;
}

.p-150 {
  padding-top: 9.375rem !important;
}

.p-160 {
  padding-top: 10rem !important;
}

.p-170 {
  padding-top: 10.625rem !important;
}

.p-180 {
  padding-top: 11.25rem !important;
}

.p-190 {
  padding-top: 11.875rem !important;
}

.p-200 {
  padding-top: 12.5rem !important;
}

.p-210 {
  padding-top: 13.125rem !important;
}

.p-220 {
  padding-top: 13.75rem !important;
}

.p-230 {
  padding-top: 14.375rem !important;
}

.p-240 {
  padding-top: 15rem !important;
}

.p-250 {
  padding-top: 15.625rem !important;
}

.p-260 {
  padding-top: 16.25rem !important;
}

.p-270 {
  padding-top: 16.875rem !important;
}

.p-280 {
  padding-top: 17.5rem !important;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-0-md {
    padding-top: 0 !important;
  }
  .p-20-md {
    padding-top: 1.25rem !important;
  }
  .p-30-md {
    padding-top: 1.875rem !important;
  }
  .p-40-md {
    padding-top: 2.5rem !important;
  }
  .p-50-md {
    padding-top: 3.125rem !important;
  }
  .p-60-md {
    padding-top: 3.75rem !important;
  }
  .p-70-md {
    padding-top: 4.375rem !important;
  }
  .p-80-md {
    padding-top: 5rem !important;
  }
  .p-90-md {
    padding-top: 5.625rem !important;
  }
  .p-100-md {
    padding-top: 6.25rem !important;
  }
  .p-110-md {
    padding-top: 6.875rem !important;
  }
  .p-120-md {
    padding-top: 7.5rem !important;
  }
  .p-130-md {
    padding-top: 8.125rem !important;
  }
  .p-140-md {
    padding-top: 8.75rem !important;
  }
  .p-150-md {
    padding-top: 9.375rem !important;
  }
  .p-160-md {
    padding-top: 10rem !important;
  }
  .p-170-md {
    padding-top: 10.625rem !important;
  }
  .p-180-md {
    padding-top: 11.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-0-sm {
    padding-top: 0 !important;
  }
  .p-10-sm {
    padding-top: 0.625rem !important;
  }
  .p-20-sm {
    padding-top: 1.25rem !important;
  }
  .p-30-sm {
    padding-top: 1.875rem !important;
  }
  .p-40-sm {
    padding-top: 2.5rem !important;
  }
  .p-50-sm {
    padding-top: 3.125rem !important;
  }
  .p-60-sm {
    padding-top: 3.75rem !important;
  }
  .p-70-sm {
    padding-top: 4.375rem !important;
  }
  .p-80-sm {
    padding-top: 5rem !important;
  }
  .p-90-sm {
    padding-top: 5.625rem !important;
  }
  .p-100-sm {
    padding-top: 6.25rem !important;
  }
  .p-110-sm {
    padding-top: 6.875rem !important;
  }
  .p-120-sm {
    padding-top: 7.5rem !important;
  }
  .p-130-sm {
    padding-top: 8.125rem !important;
  }
  .p-140-sm {
    padding-top: 8.75rem !important;
  }
  .p-150-sm {
    padding-top: 9.375rem !important;
  }
  .p-160-sm {
    padding-top: 10rem !important;
  }
  .p-170-sm {
    padding-top: 10.625rem !important;
  }
  .p-180-sm {
    padding-top: 11.25rem !important;
  }
}
/* >padding-bottom */
.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: 0.625rem !important;
}

.pb-20 {
  padding-bottom: 1.25rem !important;
}

.pb-30 {
  padding-bottom: 1.875rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.pb-50 {
  padding-bottom: 3.125rem !important;
}

.pb-60 {
  padding-bottom: 3.75rem !important;
}

.pb-70 {
  padding-bottom: 4.375rem !important;
}

.pb-80 {
  padding-bottom: 5rem !important;
}

.pb-90 {
  padding-bottom: 5.625rem !important;
}

.pb-100 {
  padding-bottom: 6.25rem !important;
}

.pb-110 {
  padding-bottom: 6.875rem !important;
}

.pb-120 {
  padding-bottom: 7.5rem !important;
}

.pb-130 {
  padding-bottom: 8.125rem !important;
}

.pb-140 {
  padding-bottom: 8.75rem !important;
}

.pb-150 {
  padding-bottom: 9.375rem !important;
}

.pb-160 {
  padding-bottom: 10rem !important;
}

.pb-170 {
  padding-bottom: 10.625rem !important;
}

.pb-180 {
  padding-bottom: 11.25rem !important;
}

.pb-190 {
  padding-bottom: 11.875rem !important;
}

.pb-200 {
  padding-bottom: 12.5rem !important;
}

.pb-210 {
  padding-bottom: 13.125rem !important;
}

.pb-220 {
  padding-bottom: 13.75rem !important;
}

.pb-230 {
  padding-bottom: 14.375rem !important;
}

.pb-240 {
  padding-bottom: 15rem !important;
}

.pb-250 {
  padding-bottom: 15.625rem !important;
}

.pb-260 {
  padding-bottom: 16.25rem !important;
}

.pb-270 {
  padding-bottom: 16.875rem !important;
}

.pb-280 {
  padding-bottom: 17.5rem !important;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .pb-0-md {
    padding-bottom: 0 !important;
  }
  .pb-20-md {
    padding-bottom: 1.25rem !important;
  }
  .pb-30-md {
    padding-bottom: 1.875rem !important;
  }
  .pb-40-md {
    padding-bottom: 2.5rem !important;
  }
  .pb-50-md {
    padding-bottom: 3.125rem !important;
  }
  .pb-60-md {
    padding-bottom: 3.75rem !important;
  }
  .pb-70-md {
    padding-bottom: 4.375rem !important;
  }
  .pb-80-md {
    padding-bottom: 5rem !important;
  }
  .pb-90-md {
    padding-bottom: 5.625rem !important;
  }
  .pb-100-md {
    padding-bottom: 6.25rem !important;
  }
  .pb-110-md {
    padding-bottom: 6.875rem !important;
  }
  .pb-120-md {
    padding-bottom: 7.5rem !important;
  }
  .pb-130-md {
    padding-bottom: 8.125rem !important;
  }
  .pb-140-md {
    padding-bottom: 8.75rem !important;
  }
  .pb-150-md {
    padding-bottom: 9.375rem !important;
  }
  .pb-160-md {
    padding-bottom: 10rem !important;
  }
  .pb-170-md {
    padding-bottom: 10.625rem !important;
  }
  .pb-180-md {
    padding-bottom: 11.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .pb-0-sm {
    padding-bottom: 0 !important;
  }
  .pb-10-sm {
    padding-bottom: 0.625rem !important;
  }
  .pb-20-sm {
    padding-bottom: 1.25rem !important;
  }
  .pb-30-sm {
    padding-bottom: 1.875rem !important;
  }
  .pb-40-sm {
    padding-bottom: 2.5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 3.125rem !important;
  }
  .pb-60-sm {
    padding-bottom: 3.75rem !important;
  }
  .pb-70-sm {
    padding-bottom: 4.375rem !important;
  }
  .pb-80-sm {
    padding-bottom: 5rem !important;
  }
  .pb-90-sm {
    padding-bottom: 5.625rem !important;
  }
  .pb-100-sm {
    padding-bottom: 6.25rem !important;
  }
  .pb-110-sm {
    padding-bottom: 6.875rem !important;
  }
  .pb-120-sm {
    padding-bottom: 7.5rem !important;
  }
  .pb-130-sm {
    padding-bottom: 8.125rem !important;
  }
  .pb-140-sm {
    padding-bottom: 8.75rem !important;
  }
  .pb-150-sm {
    padding-bottom: 9.375rem !important;
  }
  .pb-160-sm {
    padding-bottom: 10rem !important;
  }
  .pb-170-sm {
    padding-bottom: 10.625rem !important;
  }
  .pb-180-sm {
    padding-bottom: 11.25rem !important;
  }
}
body.dark-theme .header-top {
  background: #900;
}
body.dark-theme .header-nav-wrap {
  background-color: #171D1A;
}
@media screen and (max-width: 768px) {
  body.dark-theme .header-nav-wrap {
    background-color: black;
  }
}
body.dark-theme .header-nav-logo:after {
  background-color: #171D1A;
}
body.dark-theme .hamburger-inner, body.dark-theme .hamburger-inner:after, body.dark-theme .hamburger-inner:before {
  background-color: #900;
}
body.dark-theme .header-mobile__nav {
  background-color: black;
}
body.dark-theme .header-mobile__nav-inner nav ul li a {
  color: #FCFBF8;
}
body.dark-theme .header-nav-right .header-nav > li:last-child {
  background: none;
}
body.dark-theme .alumni .masthead {
  background-color: black !important;
}
body.dark-theme .header-nav > li:not(.header-nav-logo) > a {
  color: #FCFBF8;
}
body.dark-theme .prefooter {
  background-color: #FCFBF8;
}
body.dark-theme .prefooter .eyebrow-image-container {
  display: none !important;
}
body.dark-theme .prefooter .eyebrow-header-container {
  position: relative;
  padding-left: 75px;
  margin: 0;
}
body.dark-theme .prefooter .title-with-eyebrow h5 {
  color: #900;
}
body.dark-theme .prefooter .title-with-eyebrow h5:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 61px;
  height: 5px;
  display: block;
  content: "";
  margin-top: -2.5px;
  background-size: 61px 5px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='61' height='5' viewBox='0 0 61 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.19161 2.74769C5.19161 2.74769 5.19281 2.74769 5.19334 2.74769C5.19267 2.74769 5.19228 2.74769 5.19161 2.74769ZM1.89874 3.53113C1.89874 3.53113 1.89954 3.53113 1.89993 3.53113C1.89874 3.53113 1.89768 3.53113 1.89649 3.53113C1.89729 3.53113 1.89795 3.53113 1.89861 3.53113H1.89874ZM6.85613 3.4019C6.85613 3.4019 6.85639 3.4019 6.85652 3.4019C6.85652 3.4019 6.85626 3.4019 6.85613 3.4019ZM15.946 2.99201C15.9406 2.99201 15.9353 2.99268 15.93 2.99302C15.9353 2.99302 15.9407 2.99234 15.946 2.99201ZM58.1407 3.01455C58.1407 3.01455 58.141 3.01455 58.1411 3.01455C58.1407 3.01455 58.1403 3.01455 58.1399 3.01455C58.1402 3.01455 58.1404 3.01455 58.1406 3.01455H58.1407ZM58.2175 3.02364C58.2182 3.02364 58.219 3.02364 58.2196 3.02364C58.2188 3.02364 58.2179 3.02364 58.2171 3.02364C58.2173 3.02364 58.2174 3.02364 58.2175 3.02364ZM28.6439 1.868C28.6439 1.868 28.644 1.868 28.6442 1.868C28.6442 1.868 28.644 1.868 28.6439 1.868ZM58.1917 3.02061C58.1917 3.02061 58.1913 3.02061 58.1912 3.02061C58.1913 3.02061 58.1916 3.02061 58.1917 3.02061ZM26.8222 2.33308C26.8222 2.33308 26.8229 2.33308 26.8233 2.33308C26.8229 2.33308 26.8226 2.33308 26.8222 2.33308ZM58.1758 3.01859C58.1758 3.01859 58.1746 3.01859 58.1741 3.01859C58.1746 3.01859 58.1753 3.01859 58.1758 3.01859ZM25.7667 2.01136C25.7686 2.01136 25.7704 2.01136 25.7723 2.01136C25.7671 2.01136 25.762 2.01136 25.7567 2.01169C25.7601 2.01169 25.7633 2.01169 25.7667 2.01169V2.01136ZM58.5483 3.07917C58.5483 3.07917 58.5481 3.07917 58.5479 3.07917C58.5482 3.07917 58.5485 3.07917 58.5487 3.07917C58.5486 3.07917 58.5485 3.07917 58.5482 3.07917H58.5483ZM1.49602 2.90182C1.47179 2.89643 1.44755 2.89071 1.42345 2.88398C1.44769 2.89037 1.47179 2.89643 1.49602 2.90182ZM34.6358 1.70646C34.6336 1.70646 34.6313 1.7068 34.6291 1.70713C34.6313 1.70713 34.6336 1.7068 34.6358 1.70646ZM16.0215 2.79244C16.0215 2.79244 16.0208 2.79244 16.0206 2.79244C16.0208 2.79244 16.0212 2.79244 16.0215 2.79244ZM50.4455 1.62973C50.4455 1.62973 50.4453 1.62973 50.4452 1.62973C50.4452 1.62973 50.4453 1.62973 50.4455 1.62973ZM2.88323 3.37094C2.88323 3.37094 2.88323 3.37094 2.88309 3.37094H2.88323ZM43.9549 1.5069C43.958 1.5069 43.9612 1.50724 43.9642 1.50757C43.9612 1.50757 43.958 1.50724 43.9549 1.5069ZM22.7712 2.44716C22.7712 2.44716 22.7706 2.44716 22.7704 2.44716C22.7706 2.44716 22.7709 2.44716 22.7712 2.44716ZM6.76025 3.37733C6.76025 3.37733 6.75985 3.37733 6.75972 3.37733C6.7621 3.37733 6.76422 3.37733 6.76661 3.37733C6.76435 3.37733 6.76237 3.37733 6.76025 3.37733ZM35.2481 2.04838C35.2481 2.04838 35.2489 2.04838 35.2494 2.04838C35.2489 2.04838 35.2486 2.04838 35.2481 2.04838ZM60.4985 3.05662C60.4985 3.05292 60.4984 3.04686 60.4982 3.04316V3.04417C60.4589 1.56983 59.8391 1.81785 59.4306 1.71959C58.9403 1.61493 58.449 1.51969 57.9584 1.43387C57.6375 1.41503 57.7253 1.31811 57.5309 1.49512C56.5456 1.20032 55.5868 1.07143 54.5068 0.991334C54.463 1.01556 54.3257 0.88802 54.3466 1.08018C54.0008 1.061 53.6617 0.977537 53.2968 0.877587C51.2483 0.797829 49.0159 0.651102 46.8467 0.602642C45.7865 0.842588 44.3845 0.53298 43.2645 0.651439C43.1213 0.580094 42.4904 0.808598 42.4752 0.521538C42.3508 0.515817 42.181 0.509759 42.0551 0.505721L41.8967 0.5L41.8958 0.629901C41.6733 0.628555 41.4398 0.626872 41.2167 0.624853C40.7341 0.593555 40.481 0.669948 40.0431 0.635622H40.0438C37.4193 0.642016 34.8338 0.864799 32.2622 0.692495C30.1692 0.841578 28.1037 0.901817 26.0247 1.01691C23.6961 1.15018 21.4973 1.03912 19.1599 1.28748C16.253 1.56646 13.4289 1.56041 10.4776 1.67651C9.50976 1.74987 8.4927 1.71117 7.53364 1.74954C6.28482 1.75761 4.78929 1.92689 3.4977 1.88583C2.84893 1.90737 2.1105 1.97299 1.45206 1.78992C1.2358 1.70814 1.01676 1.55199 0.797983 1.8017C0.557623 2.06419 0.435125 2.79783 0.534845 3.42916V3.42781C0.562523 3.59843 0.590995 3.7068 0.637611 3.83434C0.96074 4.64706 1.8414 4.41318 2.29047 4.5H2.28981C10.6606 4.11602 19.1973 3.74685 27.5467 3.28378C28.4831 3.09364 29.3663 3.30801 30.3072 3.22859C30.4985 3.25215 30.7523 3.19393 30.9503 3.15321C31.2719 3.1845 31.5383 3.16364 31.9157 3.16162C35.3886 3.09499 38.8149 2.86446 42.294 2.96071C47.5055 3.04821 52.7843 3.17104 58.034 3.98376C58.5769 4.05713 59.0995 4.14193 59.5633 4.27957C59.7431 4.31323 59.9109 4.51279 60.0979 4.40039C60.338 4.28765 60.5176 3.66507 60.4986 3.05595L60.4985 3.05662ZM0.661978 3.07883C0.658402 3.01018 0.658402 2.95802 0.660654 2.89576C0.658402 2.95835 0.658402 3.01186 0.66211 3.08085C0.66211 3.08018 0.66211 3.07951 0.66211 3.07883H0.661978ZM0.683829 3.28849C0.680915 3.27099 0.678796 3.25248 0.676413 3.23431C0.679988 3.26359 0.684358 3.29488 0.689656 3.32181C0.687802 3.31137 0.685815 3.30061 0.683829 3.28849ZM0.702501 3.38541C0.701045 3.37868 0.69972 3.37229 0.698131 3.36522C0.699985 3.37397 0.701707 3.38205 0.703693 3.3908C0.703296 3.38911 0.702899 3.38743 0.702501 3.38541ZM0.708726 3.412C0.708063 3.4093 0.707534 3.40661 0.706872 3.40392C0.707666 3.40729 0.708461 3.41065 0.709255 3.41402C0.709123 3.41334 0.70899 3.41267 0.708726 3.412ZM0.721306 2.46433C0.710977 2.50202 0.69641 2.55957 0.685021 2.63259C0.696674 2.55889 0.711109 2.50168 0.721571 2.46332C0.721571 2.46332 0.721439 2.46399 0.721306 2.46433ZM0.722631 2.45962C0.726471 2.44616 0.730312 2.43303 0.734549 2.42024C0.730444 2.43337 0.726471 2.44649 0.722631 2.45962ZM0.724352 3.47089C0.724352 3.47089 0.724088 3.47022 0.723955 3.46988C0.724088 3.47055 0.72422 3.47089 0.724485 3.47156C0.724485 3.47156 0.724485 3.47156 0.724352 3.47123V3.47089ZM0.741966 3.52675C0.736139 3.50925 0.730444 3.49108 0.725015 3.47291C0.730841 3.49243 0.736933 3.51161 0.743157 3.53012C0.74276 3.52911 0.742363 3.52776 0.741966 3.52675ZM0.75309 3.55738C0.751765 3.55368 0.750309 3.55031 0.748984 3.54695C0.752163 3.55502 0.755076 3.56243 0.758387 3.57118C0.756533 3.56646 0.754679 3.56175 0.75309 3.55738ZM0.773351 2.31726C0.771762 2.32097 0.770306 2.32467 0.768716 2.32837C0.770438 2.32433 0.772027 2.31996 0.773881 2.31592C0.773749 2.31625 0.773484 2.31659 0.773351 2.31726ZM2.62565 2.97417C2.63161 2.97417 2.63757 2.97417 2.64353 2.97383C2.63757 2.97383 2.63161 2.97383 2.62565 2.97417ZM2.66511 2.97316C2.65863 2.97316 2.65214 2.9735 2.64565 2.97383C2.65214 2.97383 2.65863 2.97383 2.66511 2.97316ZM2.7014 3.54425C2.72232 3.54425 2.74139 3.54425 2.75835 3.54493C2.74153 3.54459 2.72246 3.54425 2.7014 3.54425ZM2.70445 2.97182C2.70246 2.97182 2.70047 2.97182 2.69849 2.97182C2.70418 2.97182 2.70974 2.97148 2.71544 2.97114C2.71173 2.97114 2.70815 2.97114 2.70445 2.97148V2.97182ZM2.70378 2.99201C2.70378 2.99201 2.70392 2.99201 2.70405 2.99201C2.70405 2.99201 2.70405 2.99201 2.70392 2.99201C2.70392 2.99201 2.70312 2.99201 2.70286 2.99201C2.70325 2.99201 2.70352 2.99201 2.70392 2.99201C2.69928 2.99201 2.69451 2.99234 2.68988 2.99268C2.69451 2.99268 2.69915 2.99234 2.70392 2.99201H2.70378ZM2.61347 3.59036C2.61929 3.59036 2.62499 3.59036 2.63082 3.59002C2.59744 3.59137 2.55136 3.5917 2.51957 3.5917C2.54606 3.5917 2.58433 3.5917 2.6136 3.59069L2.61347 3.59036ZM2.48594 3.59137H2.48633C2.48461 3.59137 2.48302 3.59137 2.4813 3.59137C2.48289 3.59137 2.48422 3.59137 2.48594 3.59137ZM2.56407 2.97518C2.565 2.97518 2.56606 2.97518 2.56698 2.97518C2.56526 2.97518 2.56354 2.97518 2.56195 2.97518C2.56261 2.97518 2.56341 2.97518 2.5642 2.97518H2.56407ZM2.53268 2.97585C2.53613 2.97585 2.5397 2.97585 2.54328 2.97585C2.53984 2.97585 2.53626 2.97585 2.53268 2.97585ZM2.51282 3.5917C2.51573 3.5917 2.51865 3.5917 2.52169 3.5917C2.51878 3.5917 2.51573 3.5917 2.51282 3.5917ZM2.50249 3.5917C2.49865 3.5917 2.49521 3.5917 2.49176 3.5917C2.49521 3.5917 2.49878 3.5917 2.50249 3.5917ZM2.61267 2.97451C2.60671 2.97451 2.60075 2.97451 2.59493 2.97484C2.60089 2.97484 2.60671 2.97484 2.61267 2.97451ZM2.61241 2.8436C2.61241 2.8436 2.61267 2.8436 2.6128 2.8436C2.6128 2.8436 2.61254 2.8436 2.61241 2.8436ZM2.47256 2.83889C2.47362 2.83889 2.47455 2.83889 2.47561 2.83889C2.47018 2.83889 2.46488 2.83889 2.45919 2.83889C2.46382 2.83889 2.46819 2.83889 2.47256 2.83889ZM2.3637 2.83788C2.35774 2.83788 2.35179 2.83788 2.34583 2.83788C2.35192 2.83788 2.35788 2.83788 2.3637 2.83788ZM2.2857 3.62569C2.28279 3.62569 2.28001 3.62569 2.27696 3.62569C2.27988 3.62569 2.28266 3.62569 2.2857 3.62569ZM2.17949 2.97047C2.17406 2.97047 2.16863 2.9698 2.16334 2.96946C2.16877 2.96946 2.17406 2.97013 2.17949 2.97047ZM2.12851 2.83653C2.12851 2.83653 2.12811 2.83653 2.12798 2.83653C2.12811 2.83653 2.12838 2.83653 2.12851 2.83653ZM1.80525 2.74197C1.84921 2.74836 1.89305 2.75374 1.93662 2.75846C1.86378 2.75038 1.79015 2.74062 1.71705 2.72749C1.74645 2.73254 1.77598 2.73759 1.80525 2.74197ZM1.90682 3.37498C1.88815 3.3733 1.86947 3.37195 1.8508 3.37027C1.87636 3.37262 1.90192 3.37498 1.92735 3.37666C1.92483 3.37666 1.92245 3.37632 1.92006 3.37632C1.92152 3.37632 1.92284 3.37632 1.9243 3.37632C1.91847 3.37599 1.91265 3.37532 1.90682 3.37498ZM1.90709 3.53247C1.90285 3.53247 1.89874 3.5318 1.8945 3.53147C1.89874 3.5318 1.90285 3.53214 1.90709 3.53247ZM1.82074 2.79547C1.8214 2.79547 1.82246 2.79581 1.82326 2.79615C1.82233 2.79615 1.8214 2.79581 1.82074 2.79547ZM1.77995 2.92268C1.77995 2.92268 1.78101 2.92268 1.78154 2.92302C1.78101 2.92302 1.78022 2.92302 1.78008 2.92302L1.77995 2.92268ZM1.76803 3.52036C1.76803 3.52036 1.7675 3.52036 1.76737 3.52036C1.76817 3.52036 1.76909 3.52036 1.76989 3.52036C1.76923 3.52036 1.7687 3.52036 1.76803 3.52036ZM1.67983 2.79345C1.7042 2.79749 1.72804 2.80086 1.75161 2.80422C1.71228 2.79884 1.67229 2.79244 1.63243 2.7847C1.64845 2.78773 1.66421 2.79043 1.67983 2.79345ZM1.50874 2.90586C1.48026 2.89912 1.45179 2.89273 1.42332 2.88499C1.42279 2.88499 1.42226 2.88499 1.42173 2.88465C1.45815 2.89441 1.49457 2.90283 1.53098 2.91057C1.52092 2.90855 1.51085 2.90619 1.50066 2.90384C1.50331 2.90451 1.50609 2.90518 1.50874 2.90586ZM1.34836 3.44801C1.39233 3.45945 1.4363 3.4682 1.48026 3.47661C1.4363 3.4682 1.39233 3.45911 1.34836 3.44801ZM1.37127 2.72312C1.37127 2.72312 1.37246 2.72379 1.37313 2.72379C1.37246 2.72379 1.37194 2.72312 1.37127 2.72312ZM1.43325 3.35647C1.43563 3.35714 1.43802 3.35748 1.4404 3.35782C1.4204 3.35378 1.40054 3.3494 1.38068 3.34435C1.39816 3.34873 1.41577 3.35277 1.43338 3.35613L1.43325 3.35647ZM1.46212 2.74836C1.46291 2.74836 1.46384 2.7487 1.46464 2.74903C1.46384 2.74903 1.46291 2.7487 1.46212 2.74836ZM1.58316 2.70326C1.58872 2.70427 1.59442 2.70528 1.59998 2.70663C1.59217 2.70495 1.58449 2.70394 1.57667 2.70192C1.57879 2.70259 1.58104 2.70293 1.58316 2.7036V2.70326ZM1.5727 2.71572C1.5727 2.71572 1.57283 2.71572 1.57296 2.71572C1.57137 2.71538 1.56992 2.71504 1.56846 2.71471C1.56992 2.71504 1.57124 2.71538 1.5727 2.71572ZM1.4355 2.19275C1.47563 2.20419 1.51589 2.21429 1.55615 2.22371C1.51165 2.21361 1.46715 2.20183 1.42279 2.18938C1.42703 2.19039 1.43126 2.19174 1.4355 2.19275ZM1.4155 2.6612C1.41617 2.6612 1.41683 2.66153 1.41749 2.66187C1.41643 2.66187 1.4155 2.6612 1.41445 2.6612C1.41484 2.6612 1.41511 2.6612 1.4155 2.6612ZM1.39736 2.82946C1.41776 2.83451 1.43828 2.83922 1.45868 2.84427C1.43789 2.83922 1.41723 2.83417 1.39643 2.82913C1.3967 2.82913 1.39696 2.82913 1.39736 2.82913V2.82946ZM1.38359 2.66759C1.3869 2.6686 1.39034 2.66961 1.39379 2.67028C1.38849 2.66894 1.38319 2.66759 1.37803 2.66557C1.37988 2.66625 1.38174 2.66692 1.38372 2.66759H1.38359ZM1.37578 2.64976H1.37657C1.37379 2.64908 1.37114 2.64774 1.36836 2.64673C1.37088 2.64774 1.37339 2.64875 1.37578 2.64976ZM1.36081 2.8685C1.35935 2.86816 1.3579 2.86715 1.35631 2.86682C1.35777 2.86749 1.35922 2.86816 1.36081 2.8685ZM1.34373 2.81264C1.33658 2.80994 1.32956 2.80725 1.32227 2.80389C1.32943 2.80692 1.33658 2.80961 1.34373 2.81264ZM1.23831 2.6188C1.25116 2.62519 1.26414 2.63125 1.27698 2.63764C1.26414 2.63125 1.25129 2.62519 1.23845 2.6188H1.23831ZM1.27632 3.27166C1.27632 3.27166 1.27566 3.27166 1.27539 3.27166C1.27566 3.27166 1.27606 3.27166 1.27632 3.27166ZM1.08734 2.54375C1.08999 2.54375 1.09264 2.54442 1.09529 2.54476C1.08549 2.54375 1.07556 2.54308 1.06536 2.54308C1.07463 2.54308 1.08416 2.54375 1.0933 2.54442C1.09132 2.54442 1.08933 2.54375 1.08734 2.54375ZM1.10376 2.57976C1.11846 2.5811 1.1333 2.58447 1.14773 2.58783C1.12734 2.58279 1.10694 2.57908 1.08628 2.57807C1.0888 2.57807 1.09145 2.57807 1.09396 2.57807C1.09171 2.57807 1.08946 2.57807 1.08734 2.57807C1.09291 2.57807 1.09833 2.57908 1.10376 2.57942V2.57976ZM1.10284 2.54577C1.11224 2.54711 1.12151 2.5488 1.13052 2.55082C1.12138 2.5488 1.11211 2.54711 1.10284 2.54577ZM1.14296 2.73019C1.14296 2.73019 1.14296 2.73019 1.14283 2.73019C1.14283 2.73019 1.14283 2.73019 1.14296 2.73019ZM1.14045 3.23969C1.13952 3.23936 1.13846 3.23902 1.13753 3.23868C1.13873 3.23902 1.13992 3.23969 1.14098 3.24003C1.14084 3.24003 1.14058 3.24003 1.14045 3.24003V3.23969ZM1.12005 3.23195C1.12376 3.2333 1.1276 3.23532 1.13131 3.23666C1.1276 3.23498 1.12376 3.2333 1.12005 3.23195ZM1.11767 2.72447C1.1235 2.72548 1.12932 2.72682 1.13502 2.72817C1.12919 2.72682 1.1235 2.72548 1.11767 2.72447ZM1.10098 2.72413C1.10098 2.72413 1.09966 2.72413 1.099 2.72413C1.09966 2.72413 1.10032 2.72413 1.10098 2.72413ZM1.09728 2.72413C1.09728 2.72413 1.09728 2.72413 1.09714 2.72413C1.09714 2.72413 1.09714 2.72413 1.09728 2.72413ZM1.08668 2.62014C1.08668 2.62014 1.08761 2.62014 1.08801 2.62014C1.08721 2.62014 1.08655 2.62014 1.08589 2.62014C1.08642 2.62014 1.08681 2.62014 1.08734 2.62014C1.08708 2.62014 1.08681 2.62014 1.08668 2.62014ZM1.08205 2.77057C1.08205 2.77057 1.08085 2.77057 1.08019 2.77057C1.08814 2.77057 1.09622 2.77158 1.10416 2.77293C1.09582 2.77158 1.08748 2.77091 1.079 2.77057C1.07993 2.77057 1.08099 2.77057 1.08191 2.77057H1.08205ZM1.1333 3.23767C1.1333 3.23767 1.13224 3.23767 1.13144 3.23767C1.13436 3.23767 1.13714 3.23936 1.14005 3.24037C1.1378 3.23969 1.13555 3.23868 1.13316 3.23801L1.1333 3.23767ZM1.1676 3.30027C1.16031 3.29791 1.15316 3.29556 1.14588 3.2932C1.15316 3.29556 1.16031 3.29825 1.1676 3.30027ZM1.14641 3.24239C1.14641 3.24239 1.1468 3.24239 1.14694 3.24239C1.1468 3.24239 1.14654 3.24239 1.14641 3.24239ZM1.17329 3.45642C1.17594 3.45709 1.17872 3.45777 1.18124 3.45844C1.17859 3.45777 1.17594 3.45709 1.17329 3.45642ZM1.19832 3.46214C1.19368 3.46113 1.18892 3.46046 1.18415 3.45911C1.19236 3.46079 1.20044 3.46248 1.20838 3.46416C1.20507 3.46349 1.20163 3.46281 1.19832 3.46214ZM1.21858 3.49647C1.21064 3.49478 1.20269 3.4931 1.19461 3.49108C1.20256 3.4931 1.21064 3.49478 1.21858 3.49647ZM1.17038 2.78908C1.16111 2.78605 1.15184 2.78336 1.14257 2.781C1.16614 2.78706 1.18971 2.79547 1.21315 2.80523C1.19898 2.79951 1.18468 2.79413 1.17038 2.78942V2.78908ZM1.15607 2.55856C1.16283 2.56058 1.16985 2.56226 1.1766 2.56461C1.16985 2.56226 1.16296 2.56058 1.15607 2.55856ZM1.16905 2.63831C1.16905 2.63831 1.16826 2.63831 1.16773 2.63798C1.16813 2.63798 1.16852 2.63798 1.16905 2.63831ZM1.17726 2.64134C1.18786 2.64504 1.19832 2.64875 1.20865 2.65278C1.19845 2.64875 1.18786 2.64504 1.17726 2.64134ZM1.2207 2.6575C1.21818 2.65649 1.21567 2.65548 1.21302 2.65447C1.21593 2.65548 1.21885 2.65682 1.22163 2.65783C1.22123 2.65783 1.22096 2.65783 1.22057 2.6575H1.2207ZM1.22255 2.65817C1.23408 2.66288 1.24533 2.66759 1.25646 2.67264C1.24507 2.66726 1.23341 2.66254 1.22163 2.65783C1.22189 2.65783 1.22229 2.65783 1.22255 2.65817ZM1.23235 2.81264C1.24335 2.81735 1.25434 2.82206 1.26533 2.82711C1.25169 2.82105 1.23805 2.81499 1.22454 2.80927C1.22719 2.81028 1.22984 2.81129 1.23235 2.81264ZM1.29791 3.27537C1.2987 3.27537 1.29976 3.27537 1.30042 3.2757C1.2934 3.27436 1.28705 3.27368 1.27645 3.27234C1.28559 3.27368 1.29287 3.27469 1.29791 3.27537ZM1.2995 2.84292C1.30678 2.84629 1.31406 2.84965 1.32135 2.85268C1.31406 2.84932 1.30678 2.84595 1.2995 2.84292ZM1.31631 2.69149C1.31631 2.69149 1.31578 2.69149 1.31552 2.69115C1.31578 2.69115 1.31605 2.69115 1.31631 2.69149ZM1.06973 2.07294C1.1517 2.07294 1.24123 2.10996 1.31565 2.1453C1.23964 2.10929 1.14786 2.0716 1.0643 2.07294C1.06602 2.07294 1.06788 2.07294 1.06973 2.07294ZM1.0639 2.61913C1.06152 2.61913 1.05927 2.6198 1.05755 2.62014C1.05927 2.6198 1.06139 2.61947 1.0639 2.61913ZM1.04788 2.54509C1.04271 2.54577 1.03755 2.54644 1.03212 2.54745C1.03742 2.54644 1.04258 2.54577 1.04788 2.54509ZM1.04497 2.77259C1.04351 2.77259 1.04205 2.77259 1.0406 2.77326C1.04205 2.77293 1.04351 2.77259 1.04497 2.77259ZM1.03689 2.58481C1.03689 2.58481 1.03649 2.58481 1.03636 2.58481C1.03649 2.58481 1.03675 2.58481 1.03689 2.58481ZM0.971334 3.3245C0.971334 3.3245 0.970937 3.32383 0.970672 3.32383C0.970937 3.32383 0.97107 3.3245 0.971334 3.3245ZM0.936373 2.93985C0.9373 2.92874 0.937962 2.91696 0.939684 2.90619C0.938889 2.91158 0.938227 2.9173 0.937697 2.92302C0.939021 2.90787 0.941405 2.89374 0.944584 2.88062C0.940081 2.89812 0.93783 2.91864 0.936373 2.93951V2.93985ZM0.936903 3.0048C0.936903 3.0048 0.936903 3.00244 0.936638 3.00109C0.936638 3.00244 0.936638 3.00345 0.936903 3.0048ZM0.920084 2.89912C0.92366 2.86917 0.930016 2.8399 0.938889 2.81768C0.938227 2.81937 0.937432 2.82105 0.93677 2.82307C0.93677 2.82307 0.937035 2.8224 0.937167 2.82206C0.936108 2.82475 0.935181 2.82845 0.934254 2.83148C0.935181 2.82879 0.935976 2.82576 0.936903 2.82307C0.929222 2.84461 0.923527 2.87153 0.920216 2.89912H0.920084ZM0.896114 3.15388C0.89969 3.16599 0.903265 3.17676 0.906973 3.18686C0.903265 3.17676 0.899557 3.16599 0.896114 3.15388ZM0.870688 3.0896C0.869893 3.08388 0.869231 3.07782 0.868436 3.0721C0.870555 3.09128 0.873866 3.10979 0.877574 3.12662C0.875058 3.11484 0.872806 3.10239 0.870688 3.0896ZM0.871747 3.14479C0.87135 3.14277 0.87082 3.14075 0.87029 3.13873C0.870688 3.14075 0.871217 3.14277 0.871747 3.14479ZM0.883931 2.73523C0.888168 2.72211 0.892936 2.70999 0.897571 2.69754C0.886447 2.72514 0.876912 2.75644 0.869893 2.79177C0.873733 2.77192 0.878766 2.75341 0.883931 2.73557V2.73523ZM0.884593 2.70394C0.885387 2.70158 0.886182 2.69956 0.886976 2.69721C0.886182 2.69923 0.885387 2.70158 0.884593 2.70394ZM0.884195 3.10474C0.884195 3.10474 0.884858 3.10777 0.885122 3.10912C0.880223 3.08657 0.877044 3.061 0.874793 3.03475C0.876912 3.05931 0.879958 3.08321 0.884195 3.10441V3.10474ZM0.884328 2.82643C0.88499 2.82307 0.88552 2.8197 0.886182 2.816C0.88552 2.81937 0.88499 2.82273 0.884328 2.82643ZM0.882209 3.18484C0.882209 3.18484 0.881547 3.18248 0.88115 3.18147C0.881547 3.18282 0.881812 3.18383 0.882209 3.18484ZM0.88115 3.18114C0.880487 3.17912 0.879958 3.17676 0.879428 3.17474C0.879958 3.17676 0.88062 3.17912 0.88115 3.18114ZM0.872542 2.99571C0.872806 3.00278 0.873204 3.00984 0.873601 3.01691C0.872939 3.00715 0.872409 2.99638 0.872277 2.98662C0.872277 2.98965 0.872277 2.99234 0.872542 2.99571ZM0.872409 2.9597C0.872409 2.94893 0.872806 2.9385 0.873071 2.92773C0.872806 2.9385 0.872542 2.94893 0.872409 2.9597ZM0.884328 3.22522C0.884328 3.22522 0.884725 3.22623 0.88499 3.22691C0.884858 3.22623 0.884593 3.2259 0.884328 3.22522C0.885917 3.2296 0.887639 3.23364 0.88936 3.23801C0.884725 3.22691 0.880885 3.21479 0.877177 3.20234C0.87956 3.21008 0.881944 3.21782 0.884328 3.22522ZM0.879295 2.79278C0.877706 2.80018 0.876382 2.80792 0.875058 2.81533C0.878633 2.79244 0.884328 2.77158 0.890022 2.75172C0.886182 2.76485 0.882606 2.77831 0.879295 2.79244V2.79278ZM0.879693 2.78639C0.884725 2.76451 0.890022 2.74432 0.896909 2.72648C0.890155 2.74432 0.884725 2.76451 0.879693 2.78639ZM0.894525 2.78033C0.897836 2.76687 0.901941 2.75543 0.906311 2.74432C0.899955 2.76014 0.89479 2.77797 0.890287 2.79749C0.891744 2.79177 0.893068 2.78605 0.894525 2.78033ZM0.904722 3.27436C0.907371 3.27974 0.909887 3.28479 0.912535 3.2895C0.909887 3.28479 0.907238 3.27974 0.90459 3.27436H0.904722ZM0.915714 2.97282C0.915581 2.97686 0.915714 2.98157 0.915846 2.98629C0.915316 2.97484 0.915846 2.96441 0.915979 2.95331C0.915979 2.9597 0.915714 2.96609 0.915714 2.97282ZM0.919157 3.02936C0.920216 3.03878 0.921673 3.04753 0.923262 3.05595C0.921673 3.04753 0.920216 3.03845 0.919157 3.02936ZM0.920216 3.3033C0.920216 3.3033 0.919157 3.30128 0.918627 3.30061C0.919157 3.30162 0.919687 3.30262 0.920216 3.3033ZM0.924851 2.70259C0.926441 2.69923 0.928162 2.69586 0.930016 2.69317C0.928162 2.69586 0.926573 2.69923 0.924851 2.70259ZM0.934784 2.65447C0.934784 2.65447 0.935313 2.65379 0.935578 2.65346C0.935313 2.65379 0.935049 2.65413 0.934784 2.65447ZM1.0161 2.55183C1.00643 2.55485 0.995966 2.55889 0.985902 2.56461C0.995834 2.55889 1.00643 2.55485 1.0161 2.55183ZM0.956502 3.27907C0.962594 3.28714 0.968553 3.29421 0.974513 3.30061C0.964978 3.28984 0.95531 3.27806 0.94604 3.26392C0.949616 3.26931 0.953191 3.27436 0.956635 3.27873L0.956502 3.27907ZM0.970142 2.76317C0.971467 2.76182 0.972659 2.76047 0.973983 2.75913C0.966832 2.7662 0.96021 2.77528 0.953456 2.78639C0.958886 2.7773 0.964448 2.76956 0.970142 2.76317ZM0.962726 2.62216C0.964713 2.62048 0.966434 2.61947 0.968288 2.61779C0.966434 2.61947 0.96458 2.62048 0.962726 2.62216ZM0.973188 3.17575C0.969878 3.17138 0.966699 3.16633 0.963389 3.16128C0.966567 3.16633 0.969878 3.17138 0.973188 3.17575ZM0.95968 3.09162C0.957297 3.08657 0.954781 3.08152 0.952662 3.0758C0.954913 3.08152 0.957297 3.08624 0.95968 3.09162ZM0.958489 2.605C0.95637 2.60702 0.954251 2.60836 0.952 2.61072C0.959151 2.60331 0.966037 2.59759 0.972791 2.59288C0.968156 2.59658 0.963389 2.60062 0.958489 2.605ZM0.954251 2.63125C0.952 2.6336 0.949748 2.63596 0.947497 2.63831C0.949748 2.63562 0.952 2.6336 0.954251 2.63125ZM0.947762 3.13268C0.945908 3.12864 0.944054 3.12494 0.9422 3.12023C0.944054 3.12426 0.945908 3.12864 0.947762 3.13268ZM0.95968 3.31137C0.962991 3.31541 0.96617 3.31945 0.969348 3.32315C0.96617 3.31945 0.962991 3.31575 0.95968 3.31137ZM0.957826 3.30902C0.957826 3.30902 0.958621 3.31003 0.959151 3.3107C0.958753 3.31003 0.958224 3.30969 0.957826 3.30902ZM0.975175 3.32988C0.975175 3.32988 0.974513 3.32887 0.974115 3.32854C0.974513 3.32887 0.97491 3.32955 0.975175 3.32988ZM0.989345 3.34469C0.988153 3.34334 0.986829 3.342 0.985637 3.34099C0.986829 3.34234 0.988153 3.34368 0.989345 3.34469ZM0.950675 2.10188C0.983783 2.08405 1.01636 2.07698 1.04139 2.07463C1.01596 2.07698 0.981134 2.08472 0.947894 2.10323C0.948821 2.10289 0.949748 2.10222 0.950675 2.10155V2.10188ZM0.935313 2.60769C0.941802 2.60062 0.948556 2.59255 0.955045 2.58716C0.946438 2.59524 0.937565 2.60432 0.929486 2.61577C0.93134 2.61307 0.933327 2.61038 0.935181 2.60769H0.935313ZM0.92803 2.66423C0.930149 2.66086 0.9324 2.65783 0.934519 2.6548C0.932268 2.65783 0.930149 2.6612 0.927897 2.66456L0.92803 2.66423ZM0.927765 2.66456C0.927765 2.66456 0.927368 2.66524 0.927235 2.66557C0.9275 2.66524 0.927632 2.6649 0.927897 2.66456H0.927765ZM0.91876 2.68038C0.921011 2.67567 0.923262 2.6723 0.925514 2.6686C0.918097 2.68038 0.911211 2.69485 0.90459 2.71067C0.909225 2.6999 0.91386 2.68947 0.91876 2.68038ZM0.908695 2.67365C0.909357 2.6723 0.910019 2.67062 0.910814 2.66927C0.90949 2.67163 0.908298 2.67466 0.907106 2.67735C0.907636 2.67634 0.908165 2.675 0.908827 2.67399L0.908695 2.67365ZM0.897703 2.67096C0.893995 2.67937 0.890287 2.68846 0.886712 2.69822C0.892803 2.68173 0.898895 2.66726 0.906046 2.65413C0.903265 2.65952 0.900484 2.66524 0.897703 2.67096ZM0.873469 2.16246C0.884328 2.15034 0.893863 2.14193 0.902074 2.1352C0.892406 2.14294 0.878633 2.1564 0.867112 2.16953C0.869231 2.16717 0.87135 2.16482 0.873469 2.16246ZM0.867244 2.86581C0.868171 2.8584 0.869363 2.851 0.870423 2.8436C0.868966 2.85403 0.867377 2.86379 0.866582 2.87456C0.866847 2.87153 0.867112 2.86884 0.867377 2.86581H0.867244ZM0.870158 3.13907C0.868834 3.13268 0.867509 3.12628 0.866185 3.11989C0.867377 3.12662 0.868701 3.13301 0.870158 3.13907ZM0.866847 3.16667C0.865126 3.1596 0.863536 3.1522 0.861947 3.14446C0.863536 3.15186 0.865126 3.15926 0.866847 3.16667ZM0.863801 3.02701C0.863801 3.02701 0.863934 3.03004 0.864066 3.03172C0.863934 3.02936 0.863801 3.02667 0.863669 3.02431C0.863669 3.02532 0.863669 3.02633 0.863801 3.02701ZM0.862477 2.93581C0.862477 2.93076 0.862742 2.92537 0.863007 2.91965C0.862742 2.92537 0.862477 2.9311 0.862344 2.93614C0.862344 2.93614 0.862344 2.93614 0.862344 2.93581H0.862477ZM0.861947 2.96946C0.861947 2.96273 0.862212 2.956 0.862212 2.94927C0.861947 2.96744 0.86155 2.98561 0.862477 3.00379C0.861947 2.99234 0.861682 2.9809 0.861815 2.96946H0.861947ZM0.861815 3.00816C0.861682 3.00412 0.861417 3.00008 0.861285 2.99571C0.861417 2.99975 0.861682 3.00379 0.861815 3.00816ZM0.860888 2.97619C0.860888 2.97619 0.860888 2.97821 0.860888 2.97956C0.860888 2.97855 0.860888 2.97754 0.860888 2.97619ZM0.860888 2.9809C0.860888 2.9809 0.860888 2.97956 0.860888 2.97855C0.860755 2.9846 0.860888 2.99066 0.861285 2.99672C0.86102 2.99133 0.860623 2.98595 0.860755 2.98057L0.860888 2.9809ZM0.861417 3.0896C0.862212 3.09566 0.863139 3.10071 0.864066 3.10643C0.86208 3.09532 0.860623 3.08287 0.859166 3.07109C0.859961 3.07715 0.860755 3.08354 0.86155 3.0896H0.861417ZM0.853472 2.97888C0.853472 2.97888 0.853472 2.97821 0.853472 2.97787C0.853472 2.97922 0.853472 2.98157 0.853472 2.98359C0.853472 2.97754 0.853472 2.97182 0.853472 2.96576C0.853472 2.97013 0.853472 2.97451 0.853472 2.97888ZM0.856385 3.11518C0.857312 3.1209 0.858372 3.12628 0.859431 3.13167C0.854266 3.10407 0.850293 3.07446 0.848042 3.04451C0.849631 3.06874 0.853074 3.09229 0.856518 3.11518H0.856385ZM0.853737 2.94624C0.853737 2.94624 0.853737 2.94287 0.853737 2.94153C0.853737 2.94321 0.853737 2.94489 0.853737 2.94624ZM0.853737 2.94119C0.853737 2.9385 0.853737 2.93581 0.854001 2.93311C0.854001 2.93581 0.854001 2.9385 0.853737 2.94119ZM0.854796 3.02061C0.855193 3.03205 0.85612 3.04282 0.85718 3.05393C0.855988 3.04316 0.855326 3.03172 0.854796 3.02061ZM0.849101 2.19073C0.852015 2.18703 0.854796 2.18265 0.857709 2.17962C0.853472 2.184 0.849499 2.19006 0.845526 2.19544C0.846718 2.19376 0.84791 2.19207 0.849101 2.19039V2.19073ZM0.847777 3.04383C0.847115 3.0334 0.846585 3.0233 0.846056 3.01254C0.846585 3.02297 0.847115 3.0334 0.847777 3.04383ZM0.845658 3.00109C0.845658 3.00109 0.845658 2.99773 0.845526 2.99605C0.845526 2.99773 0.845526 2.99941 0.845658 3.00109ZM0.845261 2.98932C0.845261 2.98932 0.845261 2.99167 0.845261 2.99268C0.845261 2.99133 0.845261 2.98999 0.845261 2.98864C0.845261 2.98864 0.845261 2.98898 0.845261 2.98932ZM0.845261 2.97484C0.845261 2.97787 0.845261 2.98057 0.845261 2.98393C0.845261 2.98057 0.845261 2.97754 0.845261 2.97484ZM0.845261 2.98831C0.845261 2.98831 0.845261 2.98528 0.845261 2.98393C0.845261 2.98528 0.845261 2.98696 0.845261 2.98831ZM0.780635 2.30515C0.780635 2.30515 0.779443 2.3075 0.778914 2.30885C0.786065 2.29404 0.793348 2.27957 0.801294 2.26477C0.794011 2.27823 0.787124 2.29169 0.780768 2.30515H0.780635ZM0.912933 3.82021C0.879825 3.78689 0.843804 3.74584 0.802751 3.66944C0.847777 3.75189 0.882739 3.79127 0.921143 3.82761C0.918362 3.82492 0.915714 3.8229 0.912933 3.82021ZM0.925911 3.26392C0.924322 3.26123 0.922865 3.25787 0.921276 3.25517C0.923924 3.26022 0.926441 3.26527 0.929354 3.26931C0.928162 3.26763 0.927103 3.26594 0.925911 3.26392ZM0.939684 3.28277C0.935446 3.27604 0.931076 3.26897 0.926838 3.26157C0.932003 3.27032 0.936903 3.27873 0.942067 3.28613C0.941273 3.28513 0.940478 3.28378 0.939684 3.28277ZM0.94604 3.29186C0.94604 3.29186 0.945775 3.29152 0.945643 3.29118C0.945643 3.29118 0.945908 3.29152 0.94604 3.29186ZM0.982591 3.38306C0.973321 3.37464 0.964448 3.36455 0.954913 3.35344C0.96511 3.36556 0.974513 3.37599 0.984577 3.38507C0.982723 3.38339 0.980869 3.38171 0.978883 3.38003C0.980075 3.38104 0.981267 3.38205 0.982459 3.38339L0.982591 3.38306ZM1.06986 3.4194C1.06033 3.41469 1.05066 3.4093 1.0406 3.40291C1.05066 3.4093 1.06046 3.41469 1.06999 3.4194C1.06999 3.4194 1.06999 3.4194 1.06986 3.4194ZM1.07648 3.92756C1.07648 3.92756 1.07595 3.92756 1.07569 3.92723C1.07874 3.92857 1.08178 3.92958 1.08483 3.93093C1.08205 3.92992 1.07913 3.92891 1.07635 3.92756H1.07648ZM1.10615 3.46248C1.10615 3.46248 1.10655 3.46248 1.10681 3.46248C1.10549 3.4618 1.10416 3.46113 1.10284 3.46079C1.11939 3.4682 1.13594 3.47392 1.15223 3.47897C1.13727 3.47426 1.12217 3.46887 1.10681 3.46248C1.11171 3.4645 1.11661 3.46618 1.12151 3.4682C1.11635 3.46618 1.11131 3.4645 1.10615 3.46214V3.46248ZM1.15435 3.47998C1.14839 3.47796 1.14243 3.47627 1.13634 3.47426C1.1423 3.47627 1.14826 3.47829 1.15435 3.47998ZM1.21156 3.96795C1.1966 3.96492 1.1823 3.96155 1.16826 3.95785C1.18786 3.9629 1.20891 3.96761 1.22918 3.97097C1.22335 3.96996 1.21752 3.96895 1.21169 3.96795H1.21156ZM1.21315 3.46517C1.23672 3.46954 1.25937 3.47224 1.28069 3.47459C1.28056 3.47459 1.28029 3.47459 1.28016 3.47459C1.28029 3.47459 1.28043 3.47459 1.28069 3.47459C1.25937 3.47257 1.23672 3.46954 1.21315 3.46517ZM1.2791 3.97939C1.27672 3.97905 1.27433 3.97871 1.27195 3.97838C1.27566 3.97905 1.2795 3.97939 1.28321 3.98073C1.28188 3.9804 1.28043 3.98006 1.2791 3.97972V3.97939ZM1.23752 3.3171C1.27685 3.32248 1.31605 3.32921 1.35512 3.34032C1.31605 3.32921 1.27685 3.32282 1.23752 3.3171ZM1.29738 3.43724C1.29738 3.43724 1.29724 3.44027 1.29711 3.44195C1.29711 3.44027 1.29724 3.43892 1.29738 3.43724ZM1.29539 3.49276C1.29552 3.48772 1.29605 3.47459 1.29671 3.45945C1.29605 3.47459 1.29566 3.48637 1.29539 3.49276ZM1.29897 3.47695C1.29195 3.47526 1.30757 3.47897 1.31062 3.47964C1.30678 3.47897 1.30281 3.47796 1.29897 3.47695ZM1.31605 3.98881C1.31194 3.9878 1.30771 3.98679 1.3036 3.98545C1.37763 4.00496 1.45219 4.02179 1.52794 4.03592C1.45643 4.02246 1.38558 4.00665 1.31605 3.98847V3.98881ZM1.54939 2.91629C1.54939 2.91629 1.55045 2.91629 1.55098 2.91662C1.55045 2.91662 1.54992 2.91662 1.54939 2.91629ZM1.68328 3.40156C1.68765 3.40224 1.69215 3.40291 1.69652 3.40358C1.66116 3.39887 1.62594 3.39349 1.59058 3.38777C1.62143 3.39281 1.65242 3.39753 1.68328 3.40156ZM1.70659 3.5143C1.69215 3.51228 1.67785 3.51094 1.66341 3.50892C1.67798 3.51094 1.69215 3.51262 1.70659 3.5143ZM1.66328 3.50892C1.65825 3.50824 1.65308 3.50757 1.64805 3.50656C1.65308 3.50724 1.65825 3.50791 1.66328 3.50892ZM1.64487 3.56041C1.64487 3.56041 1.64474 3.56041 1.64461 3.56041C1.68169 3.57286 1.71877 3.58464 1.75585 3.59642C1.71877 3.5843 1.68182 3.57286 1.64474 3.56074L1.64487 3.56041ZM1.7344 3.58935C1.74631 3.59305 1.75837 3.59709 1.77028 3.60079C1.75823 3.59709 1.74631 3.59305 1.7344 3.58935ZM1.87795 4.05578C1.70804 4.04097 1.78962 4.04905 1.91053 4.05814C1.9002 4.05746 1.88934 4.05679 1.87795 4.05578ZM1.91119 4.05814C1.92099 4.05881 1.93026 4.05948 1.939 4.05982C1.93026 4.05914 1.92099 4.05881 1.91119 4.05814ZM1.81664 2.27419C1.81491 2.27419 1.81319 2.27351 1.81147 2.27351C1.90338 2.28698 1.99926 2.29741 2.09871 2.30515C2.00138 2.29775 1.90642 2.28731 1.81664 2.27452V2.27419ZM2.10242 2.96845C2.09871 2.96845 2.09514 2.96778 2.09143 2.96778C2.09514 2.96811 2.09871 2.96845 2.10242 2.96845ZM2.02587 2.8197C2.02429 2.8197 2.0227 2.8197 2.02097 2.81937C2.0321 2.82038 2.04322 2.82105 2.05435 2.82172C2.04481 2.82105 2.03528 2.82038 2.02574 2.8197H2.02587ZM2.04998 3.59574C2.04614 3.59574 2.04243 3.59507 2.03806 3.59473C2.04243 3.59473 2.04614 3.59541 2.04998 3.59574ZM2.03766 3.59473C2.03435 3.59473 2.03117 3.5944 2.0276 3.59406C2.03117 3.59406 2.03448 3.5944 2.03766 3.59473ZM2.05435 3.60315C2.057 3.60315 2.05951 3.60247 2.0619 3.60247C2.05938 3.60247 2.057 3.60315 2.05435 3.60315ZM2.06348 3.62132C2.05911 3.62098 2.05448 3.62065 2.05051 3.62031C2.05461 3.62065 2.05898 3.62098 2.06348 3.62132ZM1.97608 2.78874C1.97754 2.78874 1.97913 2.78874 1.98058 2.78908C1.97913 2.78908 1.97754 2.78908 1.97608 2.78874ZM1.98244 2.78942C1.98244 2.78942 1.98297 2.78942 1.98323 2.78942C1.98217 2.78942 1.98125 2.78942 1.98019 2.78942C1.98191 2.78942 1.98363 2.78942 1.98535 2.78975C1.98442 2.78975 1.98336 2.78975 1.98244 2.78975V2.78942ZM1.9925 3.59204C1.99118 3.59204 1.98985 3.59204 1.9884 3.59204C1.9925 3.59204 1.99634 3.59238 2.00005 3.59271C1.99753 3.59271 1.99502 3.59271 1.9925 3.59238V3.59204ZM2.04468 3.60416C2.04759 3.60416 2.05037 3.60348 2.05316 3.60315C2.04177 3.60416 2.02892 3.6055 2.01793 3.60651C2.02627 3.6055 2.03581 3.60483 2.04468 3.60382V3.60416ZM2.03779 4.09044C2.07355 4.09381 2.10467 4.09515 2.14758 4.09684C2.10467 4.09515 2.07355 4.09347 2.03779 4.09044ZM2.28822 4.09987C2.27511 4.09987 2.26187 4.09987 2.24928 4.09953C2.36927 4.09953 2.48183 4.08708 2.62168 4.0753C2.49852 4.08674 2.3894 4.09482 2.28809 4.09987H2.28822ZM2.67333 4.07496C2.67213 4.07496 2.67107 4.07496 2.66988 4.0753C2.67942 4.07429 2.68882 4.07362 2.69835 4.07261C2.69001 4.07328 2.68154 4.07429 2.67319 4.07496H2.67333ZM2.66657 3.60416C2.62565 3.60281 2.58486 3.60685 2.54394 3.61055C2.67915 3.60247 2.81436 3.5917 2.94971 3.57791C2.85528 3.58666 2.76099 3.59541 2.66657 3.60416ZM2.87224 3.38339C2.86032 3.38743 2.84615 3.38575 2.8333 3.38777C2.84615 3.38575 2.86045 3.38709 2.87224 3.38339ZM2.87912 3.37532C2.87912 3.37532 2.87992 3.37532 2.88031 3.37532C2.87992 3.37532 2.87952 3.37532 2.87912 3.37532ZM2.88429 3.37431C2.88309 3.37431 2.88177 3.37464 2.88058 3.37498C2.88164 3.37498 2.8827 3.37464 2.88376 3.37431H2.88349C2.88376 3.37431 2.88402 3.37431 2.88429 3.37431ZM2.89488 3.37262C2.89488 3.37262 2.89594 3.37262 2.89647 3.37262C2.89621 3.37262 2.89607 3.37262 2.89581 3.37262C2.8974 3.37262 2.89912 3.37229 2.90084 3.37195C2.89713 3.37229 2.89395 3.37296 2.89051 3.3733C2.89183 3.3733 2.89342 3.37296 2.89488 3.37262ZM2.90071 3.37195C2.90071 3.37195 2.90111 3.37195 2.90124 3.37195C2.90111 3.37195 2.90097 3.37195 2.90071 3.37195ZM2.89117 3.3733C2.88972 3.3733 2.88839 3.37363 2.88707 3.37397C2.88839 3.37397 2.88972 3.37363 2.89117 3.3733ZM2.87647 3.37599C2.87621 3.37599 2.87581 3.37599 2.87555 3.37599C2.87581 3.37599 2.87621 3.37599 2.87661 3.37599H2.87647ZM3.18596 3.55469C3.19589 3.55401 3.20609 3.55334 3.21682 3.553C3.20609 3.55368 3.19589 3.55435 3.18596 3.55469ZM3.21841 3.55267C3.20463 3.55334 3.19205 3.55435 3.17921 3.55502C3.18027 3.55502 3.18146 3.55502 3.18252 3.55502C3.17934 3.55502 3.17629 3.55536 3.17325 3.5557C3.17524 3.5557 3.17709 3.5557 3.17921 3.55536C3.17325 3.5557 3.16729 3.55603 3.16133 3.55637C3.17894 3.55536 3.19788 3.55401 3.21841 3.553C3.21841 3.553 3.21841 3.553 3.21854 3.553C3.21854 3.553 3.21841 3.553 3.21827 3.553L3.21841 3.55267ZM3.22556 4.02347C3.22556 4.01742 3.22543 4.01169 3.22529 4.00564C3.22529 4.01169 3.22543 4.01742 3.22556 4.02347ZM2.64883 2.32063C2.63519 2.32063 2.62062 2.32063 2.60565 2.32063C2.85992 2.36606 3.17934 2.21563 3.34422 2.34755C3.18742 2.2153 2.89766 2.36438 2.64883 2.32029V2.32063ZM3.32621 4.01338C3.32621 4.01338 3.32621 4.01001 3.32621 4.00833C3.32621 4.01001 3.32621 4.01169 3.32621 4.01338ZM3.33269 2.8197C3.32832 2.8197 3.32435 2.8197 3.32011 2.8197C3.32435 2.8197 3.32859 2.8197 3.33296 2.8197H3.33269ZM3.33336 2.8197C3.34488 2.8197 3.35587 2.81937 3.3666 2.81903C3.356 2.81903 3.34488 2.81937 3.33336 2.8197ZM3.36289 2.81903C3.37335 2.81903 3.38394 2.81869 3.39388 2.81836C3.38394 2.81836 3.37362 2.81869 3.36289 2.81903ZM11.981 2.02011C11.9896 2.02112 11.9979 2.02549 12.0059 2.02751C11.9975 2.02516 11.989 2.02078 11.98 2.01977C11.9802 2.01977 11.9806 2.01977 11.981 2.01977V2.02011ZM11.9579 2.01708C11.964 2.01775 11.9693 2.01842 11.9738 2.01876C11.9634 2.01742 11.9516 2.01641 11.94 2.0154C11.9465 2.01573 11.9526 2.01641 11.9579 2.01708ZM12.1329 2.64336C12.0568 2.64538 11.9886 2.6474 11.9261 2.64908C11.9886 2.6474 12.0569 2.64538 12.1329 2.64336ZM12.0057 3.01321C12.0177 3.01254 12.0298 3.01186 12.042 3.01153C12.0299 3.0122 12.0135 3.01287 12.0042 3.01355C12.0039 3.01355 12.0037 3.01355 12.0034 3.01355C12.0042 3.01355 12.0049 3.01355 12.0057 3.01355V3.01321ZM12.1023 3.20032C12.0802 3.20133 12.0577 3.20234 12.036 3.20335C12.0576 3.20234 12.0797 3.20133 12.1023 3.20032ZM11.9458 2.65851C11.9448 2.65851 11.9438 2.65851 11.9429 2.65851C11.9459 2.65851 11.9491 2.65851 11.9524 2.65884C11.9506 2.65884 11.9485 2.65884 11.9466 2.65884C11.9469 2.65884 11.947 2.65884 11.9473 2.65884C11.9467 2.65884 11.9462 2.65884 11.9458 2.65884V2.65851ZM11.9405 2.65851C11.9369 2.65851 11.9331 2.65783 11.9297 2.65783C11.933 2.65783 11.9365 2.65851 11.9405 2.65851ZM11.9482 2.99975C11.9658 3.00412 11.9836 3.00883 12.0012 3.01321C11.9569 2.99706 11.9122 3.00008 11.8679 3.00278C11.8947 3.00177 11.9214 3.00076 11.9483 2.99975H11.9482ZM11.9109 3.00109C11.8838 3.0021 11.857 3.00311 11.8299 3.00412C11.8567 3.00311 11.8838 3.0021 11.9109 3.00109ZM11.5773 3.21412C11.569 3.21412 11.5612 3.21412 11.5541 3.21412C11.5648 3.21412 11.5777 3.21412 11.5897 3.21378C11.5767 3.21378 11.5649 3.21412 11.5541 3.21412C11.5612 3.21412 11.5692 3.21412 11.5773 3.21412ZM11.5483 3.18854C11.5504 3.18854 11.5526 3.1882 11.5547 3.18787C11.5526 3.18787 11.5504 3.1882 11.5483 3.18854ZM11.5359 3.01691C11.5628 3.01556 11.5898 3.01455 11.6169 3.01321C11.5897 3.01455 11.5628 3.01556 11.5359 3.01691ZM11.4337 3.02162C11.4591 3.02028 11.4847 3.01927 11.5101 3.01792C11.5099 3.01792 11.5096 3.01792 11.5092 3.01792C11.5306 3.01691 11.5522 3.0159 11.5739 3.01489C11.5272 3.01691 11.4803 3.01927 11.4336 3.02129L11.4337 3.02162ZM11.5056 3.19258C11.5043 3.19258 11.5028 3.19258 11.5015 3.19292C11.5028 3.19292 11.5043 3.19292 11.5056 3.19258ZM11.3427 3.21143C11.3805 3.20974 11.4217 3.2084 11.4665 3.20671C11.4243 3.2084 11.3802 3.20974 11.3427 3.21143ZM11.316 3.21243C11.3237 3.21243 11.3315 3.21176 11.3394 3.21143C11.3315 3.21143 11.3237 3.2121 11.316 3.21243ZM11.2425 3.2158C11.249 3.2158 11.2556 3.21513 11.2622 3.21479C11.2556 3.21479 11.249 3.21546 11.2425 3.2158ZM11.3149 2.5424C11.2957 2.54308 11.2768 2.54375 11.2578 2.54409C11.2768 2.54341 11.2958 2.54274 11.3149 2.5424ZM11.3631 3.14176C11.3704 3.14109 11.3776 3.14042 11.3843 3.13974C11.3774 3.14042 11.3704 3.14109 11.3631 3.14176ZM11.3835 3.19393C11.3825 3.19393 11.3814 3.19393 11.3802 3.19393C11.3813 3.19393 11.3823 3.19393 11.3835 3.19393ZM11.4076 3.13739C11.4062 3.13739 11.4048 3.13739 11.4034 3.13739C11.4047 3.13739 11.406 3.13739 11.4074 3.13739H11.4076ZM11.4035 3.13772C11.4035 3.13772 11.4039 3.13772 11.404 3.13772C11.4039 3.13772 11.4036 3.13772 11.4035 3.13772ZM11.3969 3.19325C11.4014 3.19325 11.4059 3.19292 11.4104 3.19258C11.404 3.19258 11.3977 3.19292 11.3915 3.19325C11.3933 3.19325 11.3952 3.19325 11.397 3.19325H11.3969ZM11.4051 3.02263C11.3811 3.02364 11.3574 3.02499 11.3336 3.026C11.3573 3.02499 11.3813 3.02364 11.4051 3.02263ZM11.3572 3.00345C11.3572 3.00345 11.3572 3.00345 11.3573 3.00345C11.357 3.00345 11.3568 3.00345 11.3566 3.00345C11.3568 3.00345 11.357 3.00345 11.3572 3.00345ZM11.2776 3.02903C11.2855 3.02869 11.2933 3.02835 11.3014 3.02802C11.2823 3.02903 11.2635 3.03004 11.2446 3.03071C11.2556 3.03004 11.2666 3.0297 11.2776 3.02903ZM11.2254 3.03172C11.2168 3.03205 11.208 3.03273 11.1993 3.03306C11.2079 3.03273 11.2167 3.03205 11.2254 3.03172ZM11.1232 2.54913C11.1232 2.54913 11.1236 2.54913 11.1237 2.54913C11.1236 2.54913 11.1233 2.54913 11.1232 2.54913ZM11.0748 2.55115C11.0885 2.55048 11.1021 2.55014 11.1159 2.54947C11.0935 2.55048 11.0712 2.55115 11.0493 2.55216C11.0577 2.55183 11.0663 2.55149 11.075 2.55115H11.0748ZM11.4035 3.13772C11.2994 3.14143 11.1956 3.14547 11.0916 3.14917C11.1955 3.14547 11.2993 3.14143 11.4035 3.13772ZM11.2205 3.21715C11.2253 3.21715 11.2302 3.21681 11.2351 3.21647C11.2302 3.21647 11.2253 3.21681 11.2205 3.21715ZM11.2807 3.21445C11.2758 3.21445 11.2708 3.21479 11.266 3.21513C11.2708 3.21513 11.2758 3.21479 11.2807 3.21445ZM11.205 3.21816C11.2031 3.21816 11.2012 3.21816 11.1992 3.21816C11.201 3.21816 11.203 3.21816 11.205 3.21816ZM11.1871 3.21917C11.1841 3.21917 11.1809 3.21917 11.1778 3.2195C11.1809 3.2195 11.1839 3.2195 11.1871 3.21917ZM11.5483 3.18888C11.5457 3.18888 11.5434 3.18921 11.5408 3.18955C11.5434 3.18955 11.5457 3.18921 11.5483 3.18888ZM11.6465 3.0122C11.6723 3.01119 11.6984 3.00984 11.7243 3.00883C11.6992 3.00984 11.6746 3.01085 11.6498 3.0122C11.6602 3.01186 11.6704 3.01119 11.6807 3.01085C11.6692 3.01119 11.6578 3.01186 11.6464 3.0122H11.6465ZM11.7342 3.21075C11.7416 3.21075 11.749 3.21042 11.7568 3.21008C11.7334 3.21075 11.7115 3.21142 11.6913 3.21176C11.7048 3.21142 11.7194 3.21109 11.7342 3.21075ZM11.7256 3.00883C11.7244 3.00883 11.7232 3.00883 11.7219 3.00883C11.7261 3.00883 11.7306 3.0085 11.7349 3.00816C11.7317 3.00816 11.7286 3.00816 11.7254 3.0085L11.7256 3.00883ZM11.7801 3.00648C11.7839 3.00648 11.7877 3.00648 11.7914 3.00614C11.7894 3.00614 11.7874 3.00614 11.7854 3.00614C11.8016 3.00547 11.8178 3.0048 11.834 3.00412C11.809 3.00513 11.7842 3.00614 11.7595 3.00715C11.7664 3.00715 11.7733 3.00648 11.7801 3.00614V3.00648ZM11.802 2.97653C11.802 2.97653 11.8023 2.97653 11.8025 2.97653C11.8024 2.97653 11.8023 2.97653 11.802 2.97653ZM11.667 2.02145C11.7257 2.01742 11.7845 2.01304 11.8432 2.009C11.7838 2.01304 11.7245 2.01742 11.6652 2.02145C11.6659 2.02145 11.6664 2.02145 11.667 2.02145ZM11.3826 2.51212C11.3793 2.51212 11.376 2.51245 11.3727 2.51279C11.376 2.51279 11.3793 2.51245 11.3826 2.51212ZM11.3035 2.51649C11.306 2.51649 11.3086 2.51649 11.3109 2.51615C11.3084 2.51615 11.306 2.51615 11.3035 2.51649C11.3099 2.51649 11.3162 2.51582 11.3226 2.51548C11.2977 2.51683 11.2744 2.51784 11.2483 2.51918C11.2676 2.51817 11.2858 2.5175 11.3035 2.51649C11.2306 2.51986 11.1502 2.52389 11.0118 2.53062C11.1502 2.52389 11.2306 2.52019 11.3035 2.51649ZM10.9587 2.53298C10.9766 2.53197 10.9936 2.5313 11.0099 2.53062C10.9727 2.53231 10.9314 2.53433 10.8848 2.53668C10.911 2.53534 10.9355 2.53433 10.9587 2.53332V2.53298ZM10.9942 2.55418C10.9762 2.55485 10.958 2.55586 10.94 2.55654C10.9579 2.55586 10.9762 2.55485 10.9942 2.55418ZM10.7041 3.02499C10.7041 3.02499 10.7048 3.02499 10.7051 3.02499C10.7036 3.02499 10.7019 3.02499 10.7002 3.02499C10.7008 3.02499 10.7018 3.02499 10.7023 3.02499C10.7022 3.02499 10.7019 3.02499 10.7018 3.02499C10.7026 3.02499 10.7034 3.02499 10.7041 3.02499ZM10.5439 3.21412C10.5366 3.21445 10.5293 3.21479 10.5222 3.21546C10.5295 3.21513 10.5368 3.21479 10.5439 3.21412ZM10.5148 3.2158C10.5104 3.2158 10.5059 3.21614 10.5015 3.21647C10.5059 3.21647 10.5104 3.21614 10.5148 3.2158ZM10.4166 3.17441C10.441 3.1734 10.4652 3.17239 10.4896 3.17171C10.4652 3.17272 10.441 3.17373 10.4166 3.17441ZM10.4622 3.21883C10.4561 3.21883 10.4501 3.2195 10.4441 3.21984C10.4501 3.21984 10.4562 3.21917 10.4622 3.21883ZM10.4393 3.22017C10.4316 3.22051 10.4239 3.22085 10.4162 3.22152C10.4239 3.22118 10.4316 3.22085 10.4393 3.22017ZM10.4923 3.21748C10.485 3.21782 10.4776 3.21816 10.4703 3.21883C10.4777 3.21849 10.485 3.21816 10.4923 3.21748ZM10.0966 3.04552C10.0978 3.04552 10.0989 3.04552 10.1001 3.04552C10.0989 3.04552 10.0979 3.04552 10.0966 3.04552ZM10.0554 3.04686C10.0543 3.04686 10.0533 3.04686 10.0522 3.04686C10.067 3.04653 10.0819 3.04585 10.0964 3.04552C10.0829 3.04552 10.0691 3.04619 10.0554 3.04686ZM10.1461 3.18518C10.1564 3.18484 10.1669 3.1845 10.1772 3.18383C10.1669 3.18417 10.1564 3.1845 10.1461 3.18518ZM10.3153 3.22657C10.3212 3.22657 10.327 3.2259 10.3328 3.22556C10.327 3.22556 10.3212 3.22623 10.3153 3.22657ZM10.3488 3.23431C10.3471 3.23431 10.3454 3.23431 10.3435 3.23465C10.3453 3.23465 10.347 3.23465 10.3488 3.23431ZM10.334 3.22556C10.342 3.22522 10.3499 3.22489 10.3577 3.22421C10.3498 3.22455 10.342 3.22489 10.334 3.22556ZM10.39 3.22253C10.3928 3.22253 10.3955 3.22253 10.3982 3.22219C10.3955 3.22219 10.3928 3.22219 10.39 3.22253ZM10.3944 3.17542C10.3229 3.17811 10.2516 3.1808 10.1804 3.18383C10.2584 3.1808 10.3364 3.17777 10.4147 3.17474C10.4079 3.17474 10.4011 3.17542 10.3944 3.17542ZM10.6683 2.67836C10.6643 2.6787 10.6582 2.67937 10.6499 2.68038C10.6582 2.67971 10.6644 2.67903 10.6684 2.67836H10.6683ZM10.062 2.57168C10.0665 2.57168 10.071 2.57168 10.0755 2.57168C10.0709 2.57168 10.0665 2.57168 10.062 2.57168ZM10.0621 2.57168C10.0441 2.57168 10.0261 2.57202 10.0085 2.57235C10.0262 2.57235 10.0442 2.57202 10.0621 2.57168ZM9.98863 2.60197C9.98585 2.60197 9.9824 2.60264 9.97909 2.60298C9.98254 2.60298 9.98571 2.60231 9.98863 2.60197ZM9.97658 2.60298C9.973 2.60331 9.96956 2.60365 9.96572 2.60399C9.96956 2.60399 9.97313 2.60331 9.97658 2.60298ZM9.7925 2.61408C9.78906 2.61408 9.78548 2.61442 9.78191 2.61476C9.78469 2.61476 9.78747 2.61476 9.79012 2.61442C9.78773 2.61442 9.78535 2.61442 9.78296 2.61476C9.79859 2.61408 9.81356 2.61307 9.82786 2.6124C9.81647 2.61307 9.80468 2.61375 9.7925 2.61408ZM9.87341 2.57437C9.86865 2.57437 9.86388 2.57437 9.85911 2.57471C9.86587 2.57471 9.87275 2.57471 9.87964 2.57437C9.87752 2.57437 9.87553 2.57437 9.87341 2.57437ZM9.88374 2.57437C9.89328 2.57437 9.90281 2.57404 9.91235 2.5737C9.90109 2.5737 9.88997 2.57404 9.87898 2.57437C9.88056 2.57437 9.88215 2.57437 9.88374 2.57437ZM9.82799 2.61274C9.83408 2.61274 9.83991 2.61206 9.8456 2.61173C9.83978 2.61173 9.83395 2.6124 9.82799 2.61274ZM9.65186 2.10996C9.65822 2.10996 9.66444 2.10962 9.6708 2.10929C9.66418 2.10929 9.65742 2.10962 9.6508 2.10996C9.6512 2.10996 9.65159 2.10996 9.65186 2.10996ZM9.60829 2.62317C9.60829 2.62317 9.60922 2.62317 9.60961 2.62317C9.60869 2.62317 9.60789 2.62317 9.60697 2.62317C9.60736 2.62317 9.60789 2.62317 9.60829 2.62317ZM10.2969 2.71807C10.0232 2.72648 9.74972 2.73557 9.47612 2.74567C9.74946 2.73523 10.0232 2.72648 10.2969 2.71807ZM10.0344 3.20772L10.027 3.2084C10.0295 3.2084 10.0319 3.20806 10.0344 3.20772ZM9.46844 2.62923C9.45282 2.6299 9.43692 2.63057 9.42103 2.63158C9.43679 2.63091 9.45268 2.6299 9.46844 2.62923ZM9.40965 3.29085C9.40448 3.2895 9.39945 3.28849 9.39428 3.28714C9.40263 3.28916 9.41084 3.29118 9.41918 3.2932C9.416 3.29253 9.41282 3.29152 9.40965 3.29085ZM9.43706 3.29758C9.43865 3.29791 9.4401 3.29825 9.44169 3.29859C9.43295 3.29657 9.42421 3.29421 9.41547 3.29219C9.42262 3.29387 9.42991 3.29556 9.43706 3.29758ZM9.29297 2.59591C9.32039 2.59423 9.3482 2.59288 9.37654 2.5912C9.33376 2.59322 9.29258 2.59557 9.25046 2.5986C9.2645 2.59759 9.27854 2.59692 9.29284 2.59591H9.29297ZM8.65585 2.16549C8.81993 2.15472 8.98415 2.14462 9.14823 2.13419C8.90879 2.14934 8.66896 2.16448 8.42966 2.18097C8.50515 2.17626 8.5801 2.17087 8.65585 2.16583V2.16549ZM8.98746 2.61577C8.95541 2.61779 8.92376 2.6198 8.89184 2.62182C8.9178 2.62014 8.94415 2.61846 8.97077 2.61678C8.96667 2.61678 8.96256 2.61745 8.95846 2.61745C8.96812 2.61678 8.97779 2.6161 8.98746 2.61577ZM9.03248 3.13907C9.03248 3.13907 9.03142 3.13907 9.03089 3.13907C9.03142 3.13907 9.03195 3.13907 9.03248 3.13907ZM9.0297 3.13907C9.01514 3.14008 9.00043 3.14109 8.98348 3.14176C9.0003 3.14075 9.01514 3.14008 9.02957 3.13907H9.0297ZM8.97739 3.1421C8.98176 3.1421 8.98574 3.14176 8.98971 3.14143C8.98574 3.14143 8.98163 3.14176 8.97739 3.1421ZM8.98216 2.65447C8.98825 2.65413 8.99434 2.65379 9.00044 2.65346C8.97752 2.6548 8.95514 2.65615 8.93303 2.65716C8.94918 2.65615 8.96547 2.65514 8.98203 2.65447H8.98216ZM8.91634 2.65817C8.91078 2.65817 8.90495 2.65884 8.89939 2.65918C8.91912 2.65817 8.93939 2.65682 8.95991 2.65581C8.94521 2.65682 8.93078 2.6575 8.91634 2.65817ZM8.94786 2.63125C8.94892 2.63125 8.94998 2.63125 8.95091 2.63125C8.92919 2.63259 8.90747 2.63394 8.88575 2.63529C8.90641 2.63394 8.92707 2.63259 8.94773 2.63125H8.94786ZM8.95567 3.14311C8.92177 3.14479 8.87489 3.14681 8.83477 3.14883C8.88006 3.14681 8.92164 3.14479 8.95567 3.14311ZM8.94746 3.26561C8.94746 3.26561 8.94839 3.26561 8.94866 3.26561C8.94852 3.26561 8.94839 3.26561 8.94826 3.26561C8.94919 3.26561 8.95011 3.26561 8.95091 3.26561C8.95024 3.26561 8.94945 3.26561 8.94866 3.26561C8.94945 3.26561 8.95011 3.26561 8.95091 3.26561C8.94985 3.26561 8.94879 3.26561 8.94746 3.26561ZM9.07446 2.64908C9.09618 2.64807 9.11817 2.64673 9.14015 2.64572C9.11817 2.64673 9.09631 2.64807 9.07446 2.64908ZM8.67943 2.66086C8.67837 2.66086 8.67731 2.66086 8.67598 2.66086C8.67717 2.66086 8.67837 2.66086 8.67943 2.66086ZM8.33365 2.66961C8.46701 2.6612 8.59109 2.65346 8.71134 2.64605C8.59096 2.65346 8.46701 2.66153 8.33365 2.66961ZM8.58897 2.67634C8.58739 2.67634 8.5854 2.67668 8.58368 2.67701C8.58553 2.67701 8.58739 2.67668 8.58897 2.67634ZM8.57944 2.67735C8.57984 2.67735 8.5801 2.67735 8.5805 2.67735C8.58023 2.67735 8.57984 2.67735 8.57957 2.67735H8.57944ZM8.54766 2.67163C8.54964 2.67163 8.55176 2.67163 8.55375 2.67163C8.55176 2.67163 8.54978 2.67163 8.54766 2.67163ZM8.49018 2.67197C8.4678 2.67197 8.44529 2.6723 8.42344 2.67264C8.44476 2.67264 8.4678 2.6723 8.49018 2.67197ZM8.15513 2.19712C8.16864 2.06857 8.39748 2.10727 8.4286 2.1803C8.39457 2.10458 8.17076 2.07193 8.15302 2.19712C8.15368 2.19712 8.15447 2.19712 8.15513 2.19712ZM7.83373 2.16482C7.83744 2.16482 7.84114 2.16414 7.84485 2.16414C7.81611 2.16616 7.78671 2.16852 7.75957 2.17054C7.7834 2.16885 7.8083 2.16683 7.83373 2.16515V2.16482ZM7.72686 2.65548C7.71917 2.65581 7.7111 2.65649 7.70315 2.65682C7.71123 2.65649 7.71917 2.65581 7.72686 2.65548ZM7.64554 2.15169C7.64965 2.19006 7.63561 2.17861 7.62581 2.18097C7.63574 2.17861 7.64965 2.19006 7.64554 2.15169ZM7.62528 2.1527C7.62528 2.16212 7.62541 2.17155 7.62541 2.18131C7.62541 2.17188 7.62528 2.16246 7.62528 2.1527ZM7.57615 2.6262C7.58436 2.62586 7.59257 2.62553 7.60091 2.62519C7.59244 2.62553 7.58436 2.62586 7.57615 2.6262ZM7.57257 2.66221C7.57257 2.66221 7.57205 2.66221 7.57191 2.66221C7.57205 2.66221 7.57231 2.66221 7.57257 2.66221ZM7.57284 2.66221C7.57496 2.66254 7.5784 2.66322 7.5837 2.66355C7.5784 2.66322 7.57496 2.66288 7.57284 2.66221ZM7.53722 2.15674C7.55735 2.15573 7.57747 2.15472 7.59747 2.15405C7.57734 2.15506 7.55721 2.15607 7.53722 2.15674ZM7.5641 2.62687C7.55615 2.62721 7.54821 2.62755 7.54066 2.62788C7.54847 2.62755 7.55629 2.62721 7.5641 2.62687ZM7.50557 2.15842C7.50557 2.17054 7.5057 2.18265 7.50583 2.19477C7.50583 2.18265 7.5057 2.17054 7.50557 2.15842ZM7.54463 2.69721C7.5098 2.69687 7.47511 2.6962 7.44028 2.69586C7.47497 2.6962 7.50967 2.69687 7.5445 2.69721H7.54463ZM7.45577 2.16078C7.46464 2.16044 7.47365 2.15977 7.48252 2.15943C7.47365 2.15977 7.46464 2.1601 7.45577 2.16078ZM7.45802 2.63192C7.44994 2.63226 7.442 2.63259 7.43432 2.63327C7.442 2.63293 7.44981 2.63259 7.45789 2.63192H7.45802ZM7.4024 2.63495C7.4024 2.63495 7.40174 2.63495 7.40134 2.63495C7.40161 2.63495 7.40201 2.63495 7.40227 2.63495H7.4024ZM7.24944 2.72749C6.99147 2.73725 6.73363 2.74668 6.47566 2.7561C6.48095 2.7561 6.48625 2.75576 6.49168 2.75543C6.47764 2.75576 6.46347 2.75644 6.44944 2.75711C6.71615 2.74769 6.98286 2.73793 7.24944 2.72783V2.72749ZM7.20203 2.73221C7.1978 2.73221 7.19356 2.73221 7.18945 2.73221C7.19369 2.73221 7.1978 2.73221 7.20203 2.73221ZM6.68847 3.23936C6.84659 3.23263 7.00577 3.22556 7.16535 3.21782C7.00591 3.22556 6.84659 3.23263 6.68847 3.23936ZM7.1247 3.37632C7.12218 3.37666 7.11966 3.37733 7.11688 3.37767C7.11966 3.37733 7.12231 3.37666 7.1247 3.37632ZM7.05252 3.29556C7.05424 3.29556 7.05596 3.29556 7.05769 3.29556C7.05385 3.29556 7.04987 3.29556 7.04603 3.29556C7.04815 3.29556 7.0504 3.29556 7.05252 3.29556ZM7.07503 3.29522C7.07755 3.29522 7.0802 3.29522 7.08258 3.29522C7.07782 3.29522 7.07278 3.29522 7.06775 3.29522C7.07013 3.29522 7.07252 3.29522 7.0749 3.29522H7.07503ZM7.00365 3.2969C6.99597 3.2969 6.98829 3.29758 6.98035 3.29758C6.98816 3.29758 6.99597 3.2969 7.00365 3.2969ZM6.96035 3.30229C6.95624 3.30262 6.95201 3.30296 6.94777 3.3033C6.95201 3.30296 6.95638 3.30262 6.96035 3.30229ZM6.88844 3.40325C6.88844 3.40325 6.88738 3.40325 6.88685 3.40325C6.88738 3.40325 6.88791 3.40325 6.88844 3.40325ZM6.85719 3.4056C6.85494 3.4056 6.85268 3.4056 6.8503 3.40594C6.85401 3.40594 6.85785 3.40527 6.86156 3.40527C6.85997 3.40527 6.85838 3.40527 6.85679 3.4056C6.85679 3.4056 6.85706 3.4056 6.85719 3.4056ZM6.84209 3.31104C6.8548 3.31036 6.86699 3.30936 6.87838 3.30868C6.86699 3.30969 6.8548 3.31036 6.84209 3.31104ZM6.86182 3.40527C6.86964 3.40459 6.87718 3.40426 6.88447 3.40358C6.87679 3.40426 6.86884 3.40459 6.86076 3.40527C6.86116 3.40527 6.86143 3.40527 6.86182 3.40527ZM6.84103 3.40661C6.83918 3.40661 6.83732 3.40661 6.83547 3.40695C6.83732 3.40695 6.83918 3.40695 6.84103 3.40661ZM5.77259 3.23397C5.81231 3.23263 5.85178 3.23128 5.89058 3.23027C5.85191 3.23162 5.81231 3.23263 5.77259 3.23397ZM5.85284 3.4157C5.84767 3.4157 5.84251 3.41604 5.83721 3.41637C5.84251 3.41637 5.84767 3.41604 5.85284 3.4157ZM5.78702 3.41334C5.77656 3.41402 5.7661 3.41469 5.7555 3.41503C5.76596 3.41435 5.77643 3.41402 5.78702 3.41334ZM5.33742 3.25248C5.32616 3.25315 5.31504 3.25383 5.30418 3.2545C5.31517 3.25383 5.3263 3.25315 5.33742 3.25248ZM5.29147 2.78807C5.31967 2.78773 5.35371 2.78706 5.39436 2.78605C5.35411 2.78706 5.32537 2.7874 5.29147 2.78807ZM5.2916 3.25719C5.28485 3.25787 5.2773 3.25854 5.26909 3.25921C5.2773 3.25854 5.28471 3.25787 5.2916 3.25719ZM5.50945 2.78336C5.48548 2.78403 5.4631 2.78437 5.44217 2.78504C5.4631 2.7847 5.48548 2.78403 5.50945 2.78336ZM5.48481 2.78269C5.48481 2.78269 5.48574 2.78269 5.48627 2.78269C5.48587 2.78269 5.48534 2.78269 5.48481 2.78269ZM6.28204 2.6723C6.28721 2.6723 6.29237 2.67197 6.29727 2.67163C6.16047 2.67802 5.90766 2.69115 5.64519 2.70528C5.89826 2.69182 6.14233 2.67903 6.28204 2.6723ZM6.41275 2.71504C6.41341 2.71504 6.41421 2.71504 6.41487 2.71504C6.41235 2.71504 6.40931 2.71504 6.4064 2.71504C6.40918 2.71504 6.41196 2.71504 6.41461 2.71504C6.41394 2.71504 6.41328 2.71504 6.41262 2.71504H6.41275ZM6.53459 3.37902C6.54333 3.37868 6.55194 3.37834 6.56081 3.37767C6.55194 3.37801 6.5432 3.37834 6.53459 3.37902ZM6.50956 3.38036C6.51565 3.38036 6.52174 3.37969 6.52797 3.37935C6.51962 3.37969 6.51141 3.38003 6.50333 3.3807C6.50545 3.3807 6.50744 3.3807 6.50956 3.3807V3.38036ZM6.48426 3.38171C6.48718 3.38171 6.49022 3.38171 6.49314 3.38137C6.48546 3.38171 6.47791 3.38205 6.47036 3.38238C6.47499 3.38238 6.47963 3.38205 6.48413 3.38171H6.48426ZM6.3913 2.71538C6.39037 2.71538 6.38931 2.71538 6.38839 2.71538C6.38997 2.71538 6.3917 2.71538 6.39328 2.71538C6.39262 2.71538 6.39209 2.71538 6.39143 2.71538H6.3913ZM6.02222 3.4083C6.11439 3.40358 6.2051 3.39786 6.29568 3.39248C6.20484 3.39786 6.11889 3.40325 6.02222 3.4083ZM6.10287 3.42176C6.10128 3.42176 6.09942 3.42176 6.0977 3.42176C6.09942 3.42176 6.10114 3.42176 6.10287 3.42176ZM5.93931 3.41267C5.93931 3.41267 5.93971 3.41267 5.93984 3.41267C5.93945 3.41267 5.93905 3.41267 5.93852 3.41267C5.93879 3.41267 5.93905 3.41267 5.93918 3.41267H5.93931ZM5.94011 3.41267C5.94011 3.41267 5.93984 3.41267 5.93971 3.41267C5.94196 3.41267 5.94421 3.41267 5.94647 3.41267C5.94435 3.41267 5.94223 3.41267 5.93998 3.41267H5.94011ZM5.94806 3.41233C5.95825 3.412 5.96818 3.41132 5.97812 3.41099C5.96686 3.41166 5.95547 3.412 5.94395 3.41267C5.94541 3.41267 5.94673 3.41267 5.94819 3.41267L5.94806 3.41233ZM5.99414 2.71639C6.00328 2.71572 6.01228 2.71538 6.02182 2.71471C6.01215 2.71504 6.00275 2.71572 5.99348 2.71639C5.99374 2.71639 5.99401 2.71639 5.99427 2.71639H5.99414ZM5.96156 2.88163C5.96302 2.88163 5.96434 2.88163 5.9658 2.88163C5.96395 2.88163 5.96209 2.88163 5.96024 2.88196C5.96064 2.88196 5.96117 2.88196 5.96156 2.88196V2.88163ZM6.16339 2.86749C6.16484 2.86749 6.16617 2.86715 6.16762 2.86682C6.16617 2.86682 6.16484 2.86715 6.16339 2.86749ZM6.16127 2.86783C6.15597 2.86884 6.15054 2.86951 6.14524 2.87052C6.15094 2.86951 6.15676 2.8685 6.16246 2.86749C6.16206 2.86749 6.16166 2.86749 6.16127 2.86749V2.86783ZM6.26456 3.34907C6.2696 3.34873 6.27529 3.34806 6.28151 3.34772C6.27529 3.34839 6.26973 3.34873 6.26456 3.34907ZM6.32455 3.39147C6.32071 3.39147 6.31687 3.39181 6.3129 3.39214C6.31674 3.39214 6.32058 3.39181 6.32455 3.39147ZM6.3472 3.21479C6.3472 3.21479 6.34733 3.21479 6.34746 3.21479H6.3472ZM6.20139 3.21816C6.1961 3.21816 6.19106 3.21816 6.1863 3.21816C6.22457 3.21748 6.27661 3.21647 6.34508 3.21479C6.28522 3.21647 6.23794 3.21748 6.20139 3.21782V3.21816ZM6.21834 2.72447C6.21993 2.72447 6.22192 2.72379 6.2243 2.72379C6.22205 2.72379 6.22007 2.72447 6.21834 2.72447ZM6.24377 2.72211C6.24655 2.72211 6.24933 2.72177 6.25238 2.72144C6.24947 2.72144 6.24655 2.72177 6.24377 2.72211ZM5.84569 2.89004C5.84317 2.89004 5.84052 2.89038 5.83814 2.89071C5.84065 2.89071 5.84317 2.89037 5.84569 2.89004ZM5.88979 3.23195C5.85165 3.23296 5.81284 3.23431 5.77364 3.23566C5.81271 3.23431 5.85165 3.23296 5.88979 3.23195ZM5.66969 2.73523C5.67724 2.73523 5.68465 2.73456 5.69207 2.73423C5.68465 2.73423 5.67697 2.7349 5.66916 2.73523C5.66929 2.73523 5.66955 2.73523 5.66969 2.73523ZM5.62704 2.73658C5.60824 2.73725 5.58838 2.73759 5.56745 2.73793C5.58851 2.73759 5.60824 2.73725 5.62704 2.73658ZM5.50931 2.7847C5.50931 2.7847 5.50918 2.7847 5.50905 2.7847C5.50905 2.7847 5.50918 2.7847 5.50931 2.7847ZM5.5354 2.73826C5.54507 2.73826 5.55447 2.73826 5.56361 2.73793C5.55447 2.73793 5.54507 2.73793 5.5354 2.73826ZM5.50402 2.7386C5.50256 2.7386 5.50124 2.7386 5.49978 2.7386C5.50945 2.7386 5.51872 2.7386 5.52785 2.7386C5.52004 2.7386 5.51223 2.7386 5.50402 2.7386ZM5.41608 2.78706C5.43237 2.78672 5.44773 2.78639 5.46495 2.78605C5.43648 2.78672 5.41065 2.7874 5.38708 2.78773C5.39172 2.78773 5.39648 2.78773 5.40112 2.78773C5.40072 2.78773 5.40019 2.78773 5.39979 2.78773C5.40364 2.78773 5.40774 2.78773 5.41171 2.78773C5.40986 2.78773 5.40787 2.78773 5.40602 2.78773C5.40933 2.78773 5.41264 2.78773 5.41595 2.78773L5.41608 2.78706ZM5.68955 2.88196C5.65684 2.88297 5.62373 2.88398 5.59063 2.88465C5.62387 2.88364 5.65684 2.88297 5.68955 2.88196ZM6.69615 3.42849C6.43964 3.4406 6.17703 3.45272 5.92846 3.46281C6.17703 3.45272 6.43977 3.44094 6.69615 3.42849ZM6.64397 3.37262C6.6457 3.37262 6.64742 3.37262 6.64914 3.37262C6.64742 3.37262 6.64583 3.37262 6.64397 3.37262ZM6.767 3.38306C6.75628 3.38306 6.74568 3.38339 6.73522 3.38373C6.7433 3.38373 6.75151 3.38339 6.75972 3.38306C6.73389 3.38373 6.709 3.38407 6.68596 3.38474C6.7135 3.38407 6.74555 3.38339 6.77548 3.38272C6.7727 3.38272 6.76978 3.38272 6.767 3.38272V3.38306ZM6.75932 3.41402C6.75707 3.41402 6.75469 3.41402 6.75244 3.41435C6.75469 3.41435 6.75707 3.41435 6.75932 3.41402ZM6.73005 3.4157C6.72648 3.4157 6.72277 3.41604 6.71906 3.41637C6.72277 3.41637 6.72635 3.41604 6.73005 3.4157ZM6.69867 3.41738C6.69456 3.41738 6.69059 3.41772 6.68648 3.41805C6.69059 3.41805 6.6947 3.41772 6.69867 3.41738ZM6.79269 3.42411C6.79269 3.42411 6.79336 3.42411 6.79362 3.42411C6.5077 3.43791 6.21066 3.45171 5.93137 3.46281C6.2104 3.45137 6.50704 3.43791 6.79269 3.42411ZM6.78528 3.41267C6.78634 3.41267 6.7874 3.41267 6.78832 3.41267C6.78726 3.41267 6.7862 3.41267 6.78528 3.41267ZM6.80051 3.41166C6.80342 3.41166 6.80647 3.41132 6.80938 3.41099C6.80448 3.41099 6.79945 3.41166 6.79442 3.412C6.7964 3.412 6.79852 3.412 6.80051 3.41166ZM6.8119 3.36455C6.81772 3.36421 6.82368 3.36354 6.82938 3.3632C6.82355 3.36354 6.81772 3.36421 6.8119 3.36455ZM6.82223 3.41031C6.82633 3.41031 6.83044 3.40964 6.83454 3.40964C6.82898 3.40998 6.82315 3.41031 6.81746 3.41065C6.81905 3.41065 6.82064 3.41065 6.82223 3.41065V3.41031ZM6.45301 3.25147C6.45301 3.25147 6.45222 3.25147 6.45182 3.25147C6.52519 3.24844 6.59908 3.24541 6.67311 3.24239C6.59948 3.24541 6.52598 3.24844 6.45301 3.25147ZM6.80223 3.1808C6.80223 3.1808 6.8017 3.18114 6.8013 3.18147C6.8017 3.18147 6.8021 3.18114 6.80223 3.1808ZM7.05769 2.17424C7.05769 2.17424 7.05835 2.17424 7.05861 2.17424C7.04405 2.17458 7.02948 2.17491 7.01491 2.17525C7.02908 2.17491 7.04338 2.17458 7.05769 2.17424ZM6.35514 2.19981C6.45738 2.19409 6.55167 2.18972 6.64172 2.18602C6.3909 2.19645 6.28284 2.20318 5.96289 2.219C6.1418 2.20991 6.28827 2.20251 6.35514 2.19948V2.19981ZM5.59818 2.70966C5.5791 2.71067 5.56017 2.71168 5.5411 2.71269C5.56004 2.71168 5.5791 2.71067 5.59818 2.70966ZM5.20433 2.75543C5.32683 2.74802 5.44932 2.74028 5.57182 2.73254C5.44932 2.74028 5.32683 2.74769 5.20433 2.75543C5.20433 2.75543 5.20393 2.75543 5.2038 2.75543C5.20393 2.75543 5.2042 2.75543 5.20433 2.75543ZM5.24671 3.26056C5.24671 3.26056 5.24551 3.26056 5.24498 3.26056C5.24565 3.26056 5.24618 3.26056 5.24671 3.26056ZM5.24207 3.26325C5.24207 3.26325 5.24167 3.26325 5.24141 3.26325C5.24167 3.26325 5.24181 3.26325 5.24207 3.26325ZM5.19175 2.75408C5.19175 2.75408 5.19267 2.75408 5.1932 2.75408C5.19241 2.75408 5.19161 2.75408 5.19069 2.75408C5.19095 2.75408 5.19135 2.75408 5.19161 2.75408H5.19175ZM5.2034 3.26628C5.19943 3.26628 5.19546 3.26695 5.19148 3.26695C5.19559 3.26695 5.19956 3.26628 5.2034 3.26628ZM5.19281 2.78201C5.19042 2.78269 5.18817 2.78302 5.18566 2.78336C5.18817 2.78302 5.19056 2.78235 5.19281 2.78201ZM5.17175 2.78639C5.17029 2.78639 5.16897 2.78706 5.16764 2.7874C5.16884 2.7874 5.17029 2.78672 5.17175 2.78639ZM5.11494 2.73658C5.10196 2.73725 5.08925 2.73793 5.0764 2.73894C5.08898 2.73826 5.10183 2.73759 5.11494 2.73658ZM4.989 2.78201C4.9935 2.78336 4.99747 2.77865 5.00145 2.77394C4.99747 2.77898 4.9935 2.78336 4.989 2.78201ZM4.97787 2.74466C4.97787 2.74466 4.97814 2.74466 4.97827 2.74466C4.97814 2.74466 4.978 2.74466 4.97774 2.74466H4.97787ZM4.94702 2.7847C4.94768 2.7847 4.94834 2.7847 4.94914 2.7847C4.94834 2.7847 4.94768 2.7847 4.94688 2.7847H4.94702ZM4.94622 2.7847C4.94622 2.7847 4.94649 2.7847 4.94662 2.7847C4.94503 2.7847 4.94331 2.7847 4.94172 2.7847C4.94318 2.7847 4.94463 2.7847 4.94622 2.7847ZM4.94066 3.30801C4.88438 3.31003 4.82915 3.31205 4.7734 3.31373C4.82915 3.31171 4.88438 3.31003 4.94066 3.30801ZM4.84015 3.49579C4.83498 3.49579 4.82995 3.49613 4.82478 3.49647C4.82955 3.49647 4.83432 3.49613 4.83909 3.49579C4.83948 3.49579 4.83988 3.49579 4.84015 3.49579ZM4.84571 3.49579C4.84399 3.49579 4.84213 3.49579 4.84028 3.49579C4.85193 3.49512 4.86359 3.49478 4.87537 3.49411C4.86544 3.49445 4.85551 3.49512 4.84558 3.49546L4.84571 3.49579ZM4.78227 2.28866C4.78227 2.28866 4.78267 2.28866 4.7828 2.28866C4.76598 2.289 4.7489 2.28933 4.73195 2.29001C4.74877 2.28967 4.76572 2.28933 4.78227 2.28866ZM4.65329 3.47964C4.69606 3.47762 4.73619 3.4756 4.77247 3.47426C4.73606 3.4756 4.69619 3.47728 4.65329 3.47964ZM4.5288 3.48603C4.52337 3.48603 4.51794 3.48671 4.51251 3.48704C4.51794 3.48704 4.52337 3.48637 4.5288 3.48603ZM4.66044 2.94523C4.66216 2.94523 4.66415 2.94523 4.66573 2.94523C4.66335 2.94523 4.6607 2.94523 4.65805 2.94523C4.65885 2.94523 4.65964 2.94523 4.66044 2.94523ZM4.71513 2.29034C4.71513 2.29034 4.71513 2.28731 4.71513 2.28563C4.71513 2.28731 4.71513 2.28866 4.71513 2.29034ZM4.71778 2.74701C4.68242 2.74937 4.65315 2.75139 4.62852 2.75341C4.63938 2.75273 4.6509 2.75172 4.66388 2.75072C4.64839 2.75172 4.63501 2.75273 4.62203 2.75374C4.6223 2.75374 4.62256 2.75374 4.62283 2.75374C4.6219 2.75374 4.62084 2.75374 4.62005 2.75374C4.64825 2.75172 4.67805 2.74937 4.71778 2.74701ZM4.52536 2.94355C4.54019 2.94355 4.55423 2.94355 4.56734 2.94388C4.54959 2.94388 4.5292 2.94287 4.51026 2.94456C4.51516 2.94456 4.52046 2.94388 4.52523 2.94355H4.52536ZM4.52284 3.28142C4.51874 3.28142 4.51476 3.28142 4.51066 3.2821C4.51476 3.2821 4.51874 3.28176 4.52284 3.28142ZM4.41981 2.76283C4.40829 2.76384 4.39876 2.76451 4.39068 2.76552C4.39889 2.76451 4.40842 2.76384 4.41981 2.76283ZM4.55675 3.46517C4.42299 3.47257 4.28924 3.48166 4.15548 3.49041C4.28924 3.48166 4.42299 3.47291 4.55675 3.46517ZM4.50126 3.49243C4.49662 3.49243 4.49225 3.49243 4.48722 3.49276C4.49238 3.49276 4.49715 3.49276 4.50126 3.49243ZM4.47609 3.4931C4.47609 3.4931 4.4753 3.4931 4.4749 3.4931C4.4753 3.4931 4.4757 3.4931 4.47609 3.4931ZM4.2352 2.80826C4.2254 2.80826 4.21521 2.80893 4.20488 2.80927C4.21508 2.80893 4.22527 2.8086 4.2352 2.80826ZM4.1964 2.80961C4.18634 2.80994 4.17601 2.81028 4.16541 2.81062C4.17601 2.81028 4.18607 2.80994 4.1964 2.80961ZM4.1037 2.77326C4.1037 2.77326 4.1037 2.77326 4.10383 2.77326C4.10357 2.77326 4.10317 2.77326 4.10291 2.77326C4.10317 2.77326 4.10344 2.77326 4.1037 2.77326ZM4.10238 2.30212C4.10238 2.30212 4.10238 2.30448 4.10238 2.30582C4.10238 2.30448 4.10238 2.30347 4.10238 2.30212ZM3.55915 2.3526C3.68602 2.33712 3.85089 2.28126 4.01113 2.3038C3.84666 2.27957 3.6835 2.3425 3.55134 2.35125C3.55412 2.35159 3.55663 2.35226 3.55915 2.3526ZM3.86241 2.94557C3.88493 2.94355 3.90744 2.94119 3.92982 2.93917C3.90731 2.94119 3.8848 2.94355 3.86241 2.94557ZM3.8652 2.94557C3.86427 2.94557 3.86334 2.94557 3.86255 2.94557C3.86347 2.94557 3.8644 2.94557 3.8652 2.94557ZM3.95578 2.78168C3.9726 2.78168 3.98928 2.78168 4.0061 2.78168C3.98928 2.78235 3.9726 2.78168 3.95578 2.78168ZM3.54154 2.35058C3.54366 2.35058 3.54538 2.35092 3.54723 2.35125C3.54524 2.35125 3.54326 2.35092 3.54101 2.35058C3.54114 2.35058 3.5414 2.35058 3.54154 2.35058ZM3.54154 2.82206C3.54154 2.82206 3.5422 2.82206 3.54233 2.82206C3.54167 2.82206 3.54074 2.82206 3.53968 2.82172C3.54048 2.82172 3.54101 2.82172 3.54154 2.82172V2.82206ZM3.53796 2.82172C3.53796 2.82172 3.53902 2.82172 3.53955 2.82172C3.53889 2.82172 3.53796 2.82172 3.53717 2.82172C3.53743 2.82172 3.53783 2.82172 3.53809 2.82172H3.53796ZM3.53611 2.82172C3.53611 2.82172 3.53571 2.82172 3.53544 2.82172C3.53558 2.82172 3.53584 2.82172 3.53611 2.82172ZM3.51465 2.8372C3.51465 2.8372 3.51492 2.8372 3.51518 2.8372C3.51505 2.8372 3.51492 2.8372 3.51465 2.8372ZM3.51412 2.8372C3.51412 2.8372 3.51306 2.8372 3.5124 2.83687C3.51306 2.83687 3.51359 2.83687 3.51412 2.8372ZM3.50737 2.83619C3.50962 2.83619 3.51134 2.83687 3.51267 2.83687C3.51121 2.83687 3.50962 2.83619 3.50737 2.83619ZM4.0351 2.96912C4.07881 2.9671 4.12237 2.96542 4.16528 2.9634C3.94783 2.97316 3.72945 2.97922 3.51161 2.98662C3.68628 2.9809 3.86069 2.97518 4.0351 2.96912ZM4.04172 3.35277C4.04053 3.35277 4.03947 3.35277 4.03815 3.35277C4.03934 3.35277 4.0404 3.35277 4.04172 3.35277ZM4.00531 3.50084C4.00769 3.50084 4.01047 3.50017 4.01312 3.50017C4.0106 3.50017 4.00782 3.50084 4.00531 3.50084ZM4.00676 3.50084C4.00676 3.50084 4.00584 3.50084 4.00544 3.50084C4.00584 3.50084 4.00637 3.50084 4.00676 3.50084ZM3.63119 3.39517C3.63119 3.39517 3.63146 3.39517 3.63172 3.39517C3.63159 3.39517 3.63146 3.39517 3.63119 3.39517ZM3.63238 3.39517C3.63238 3.39517 3.63278 3.39517 3.63291 3.39517C3.63278 3.39517 3.63252 3.39517 3.63238 3.39517ZM3.60788 3.54896C3.60629 3.54896 3.60471 3.54896 3.60312 3.5493C3.60471 3.5493 3.60629 3.5493 3.60788 3.54896ZM3.60285 3.39685C3.6104 3.39685 3.61848 3.39618 3.62695 3.39584C3.61888 3.39618 3.6108 3.39685 3.60285 3.39685ZM3.62589 3.54762C3.62444 3.54762 3.62285 3.54762 3.62139 3.54796C3.62285 3.54796 3.62431 3.54796 3.62589 3.54762ZM3.69727 3.32955C3.70244 3.32955 3.7076 3.32887 3.71277 3.32854C3.7076 3.32854 3.70244 3.32921 3.69727 3.32955ZM3.73356 3.38676C3.72522 3.38743 3.71687 3.3881 3.7088 3.38878C3.71674 3.3881 3.72482 3.38743 3.73356 3.38676ZM3.67185 3.39147C3.66946 3.39147 3.66708 3.39181 3.66483 3.39214C3.66814 3.39214 3.67158 3.39147 3.67529 3.39113C3.6741 3.39113 3.67304 3.39113 3.67185 3.39113V3.39147ZM3.66682 3.38104C3.65966 3.38137 3.65278 3.38205 3.64589 3.38238C3.65278 3.38205 3.65966 3.38171 3.66682 3.38104ZM3.66271 3.54425C3.66271 3.54425 3.66152 3.54425 3.66086 3.54425C3.66152 3.54425 3.66205 3.54425 3.66271 3.54425ZM3.72601 3.53921C3.72323 3.53921 3.72058 3.53954 3.7178 3.53988C3.72058 3.53988 3.72323 3.53954 3.72601 3.53921ZM3.91883 3.52541C3.91141 3.52574 3.904 3.52642 3.89685 3.52675C3.90413 3.52642 3.91155 3.52574 3.91883 3.52541ZM3.75131 3.53752C3.7476 3.53752 3.74389 3.5382 3.74031 3.5382C3.74402 3.5382 3.7476 3.53752 3.75131 3.53752ZM3.64536 3.54594C3.6439 3.54594 3.64232 3.54594 3.64086 3.54627C3.64232 3.54627 3.6439 3.54627 3.64536 3.54594ZM3.59093 3.55065C3.58934 3.55065 3.58775 3.55065 3.58617 3.55098C3.58775 3.55098 3.58934 3.55098 3.59093 3.55065ZM3.5316 3.56041C3.84348 3.53921 4.15535 3.51733 4.46709 3.49546C4.15522 3.51767 3.84334 3.53921 3.5316 3.56041ZM4.38644 3.51868C4.3867 3.51868 4.3871 3.51868 4.38737 3.51868C4.3871 3.51868 4.38684 3.51868 4.38657 3.51868H4.38644ZM4.46431 3.51868C4.46073 3.51868 4.45729 3.51868 4.45398 3.51868C4.47067 3.51868 4.49 3.51733 4.50748 3.51632C4.49874 3.51699 4.49 3.51733 4.48139 3.518C4.48762 3.51767 4.49384 3.51733 4.50006 3.51666C4.48828 3.51733 4.47596 3.51834 4.46444 3.51834L4.46431 3.51868ZM5.20777 3.96088C4.9498 3.94843 4.69063 3.98275 4.48285 3.98948C4.6905 3.98309 4.94993 3.94876 5.20777 3.96088ZM5.16659 3.30195C5.36682 3.29488 5.56123 3.28748 5.76755 3.27974C5.56123 3.28748 5.36682 3.29455 5.16659 3.30195ZM5.4084 3.48401C5.39132 3.48469 5.3745 3.48502 5.35781 3.4857C5.3745 3.48536 5.39132 3.48469 5.4084 3.48401ZM5.70611 3.42209C5.6975 3.42243 5.68889 3.4231 5.68041 3.42344C5.68968 3.4231 5.69909 3.42243 5.70849 3.42209C5.70769 3.42209 5.7069 3.42209 5.70611 3.42209ZM5.74822 3.41974C5.73815 3.42041 5.72822 3.42075 5.71829 3.42142C5.72822 3.42075 5.73829 3.42041 5.74822 3.41974ZM7.42134 3.86564C6.94049 3.89088 6.27701 3.92319 5.71842 3.94439C6.27953 3.92319 6.943 3.89088 7.4265 3.8653C7.42478 3.8653 7.42306 3.8653 7.42121 3.8653L7.42134 3.86564ZM7.60939 3.20032C7.61588 3.19998 7.62303 3.19931 7.63084 3.19864C7.62303 3.19931 7.61588 3.19965 7.60939 3.20032ZM7.59164 3.20167C7.59403 3.20167 7.59654 3.20133 7.59919 3.20099C7.59654 3.20099 7.59403 3.20133 7.59164 3.20167ZM7.59999 3.20099C7.6029 3.20099 7.60595 3.20066 7.60926 3.20032C7.60595 3.20032 7.6029 3.20066 7.59999 3.20099ZM7.6466 3.19763C7.65097 3.19763 7.65548 3.19695 7.66024 3.19662C7.65548 3.19662 7.65097 3.19729 7.6466 3.19763ZM7.63243 3.21849C7.63243 3.21849 7.63323 3.21849 7.63362 3.21849C7.63204 3.21849 7.63058 3.21849 7.62899 3.21849C7.63018 3.21849 7.63124 3.21849 7.63243 3.21849ZM7.64832 3.21849C7.64832 3.21849 7.64766 3.21849 7.6474 3.21849C7.65137 3.21849 7.65548 3.21849 7.65945 3.21849C7.65587 3.21849 7.65216 3.21849 7.64846 3.21849H7.64859C7.64859 3.21849 7.64832 3.21849 7.64819 3.21849H7.64832ZM7.63442 3.19864C7.63747 3.19864 7.64078 3.1983 7.64409 3.19796C7.64078 3.19796 7.6376 3.1983 7.63442 3.19864ZM7.66461 3.19662C7.67243 3.19594 7.68051 3.19561 7.68925 3.19493C7.68051 3.19561 7.67229 3.19594 7.66461 3.19662ZM7.65587 3.15623C7.65945 3.15623 7.66289 3.15623 7.66647 3.1559C7.66289 3.1559 7.65945 3.1559 7.65587 3.15623ZM7.5833 3.20268C7.58105 3.20268 7.57893 3.20301 7.57708 3.20335C7.57893 3.20335 7.58105 3.20301 7.5833 3.20268ZM7.52861 3.84377C7.61138 3.82862 7.7197 3.81314 7.83439 3.79732C7.7197 3.81314 7.61138 3.82829 7.52861 3.84377ZM7.78049 3.18955C7.78128 3.18955 7.78208 3.18955 7.78301 3.18955C7.78221 3.18955 7.78142 3.18955 7.78049 3.18955ZM7.87068 3.18417C7.85677 3.18484 7.84273 3.18585 7.82883 3.18652C7.84512 3.18551 7.86127 3.1845 7.87756 3.18383C7.87531 3.18383 7.87306 3.18383 7.87068 3.18417ZM7.06749 3.17138C7.04193 3.17474 7.01637 3.17811 6.99081 3.18181C7.6176 3.13604 8.24519 3.12763 8.87277 3.09532C8.27075 3.12056 7.66898 3.14614 7.06749 3.17171V3.17138ZM8.22969 3.26729C8.2195 3.26897 8.2093 3.27065 8.19897 3.27234C8.273 3.2609 8.34689 3.26426 8.42132 3.25921C8.35722 3.2619 8.29326 3.2646 8.22956 3.26729H8.22969ZM8.2134 3.32551C8.2134 3.32551 8.21287 3.32551 8.21261 3.32551C8.21287 3.32551 8.21314 3.32551 8.2134 3.32551ZM8.12891 3.19965C8.12017 3.20032 8.11117 3.20066 8.10216 3.20133C8.11117 3.20066 8.12004 3.20032 8.12891 3.19965ZM8.09355 3.202C8.07581 3.20301 8.0574 3.20402 8.03807 3.20537C8.05727 3.20436 8.07568 3.20335 8.09355 3.202ZM7.94417 3.19965C7.94417 3.19965 7.94417 3.19965 7.94431 3.19965C7.94431 3.19965 7.9447 3.19965 7.94484 3.19965C7.9447 3.19965 7.94444 3.19965 7.94417 3.19965ZM8.1158 3.75728C8.08376 3.76199 8.05157 3.7667 8.01926 3.77141C8.05594 3.77377 8.09475 3.74247 8.12971 3.77007C8.12494 3.76636 8.12031 3.76199 8.1158 3.75728ZM8.16149 3.19763C8.20109 3.19494 8.24108 3.19157 8.28055 3.1882C8.24201 3.19157 8.20321 3.1946 8.16149 3.19763ZM8.20903 3.79665C8.20069 3.79631 8.19394 3.79564 8.18798 3.79497C8.22214 3.79833 8.24519 3.79833 8.29366 3.79867C8.25658 3.79867 8.2289 3.798 8.20903 3.79665ZM8.29551 3.79867C8.29551 3.79867 8.29419 3.79867 8.29366 3.79867C8.29458 3.79867 8.29551 3.79867 8.29657 3.79867C8.2963 3.79867 8.29591 3.79867 8.29564 3.79867H8.29551ZM8.34663 3.35075C8.34663 3.35075 8.34663 3.35075 8.34676 3.35075C8.34676 3.35075 8.34676 3.35075 8.34663 3.35075ZM8.36186 3.35008C8.35696 3.35008 8.35206 3.35041 8.34729 3.35075C8.52501 3.34234 8.70273 3.33359 8.88045 3.32484C8.70763 3.33325 8.53468 3.34166 8.36186 3.35008ZM9.25682 3.78555C9.22371 3.78723 9.19113 3.78925 9.15909 3.79093C9.26251 3.78521 9.36766 3.77949 9.47149 3.77377C9.40011 3.77747 9.3282 3.78151 9.25695 3.78555H9.25682ZM9.41229 3.24138C9.54724 3.2333 9.71397 3.22455 9.93142 3.21614C9.71278 3.22489 9.54764 3.2333 9.41229 3.24138ZM9.68881 3.30296C9.68881 3.30296 9.68881 3.30296 9.68867 3.30296H9.68894C9.68894 3.30296 9.68894 3.30296 9.68881 3.30296ZM9.87924 3.29287C9.88864 3.29219 9.89778 3.29152 9.90692 3.29118C9.89765 3.29186 9.88851 3.29253 9.87924 3.29287ZM10.0526 3.28109C10.0425 3.28176 10.0323 3.28243 10.022 3.28344C10.0321 3.28277 10.0421 3.2821 10.0521 3.28109C10.0726 3.27974 10.0931 3.27873 10.1136 3.27738C10.0991 3.27806 10.0846 3.27907 10.0701 3.28008C10.0872 3.27907 10.1042 3.27806 10.1213 3.27705C10.1188 3.27705 10.1162 3.27705 10.1136 3.27738C10.1163 3.27738 10.1188 3.27738 10.1215 3.27705C10.0985 3.27839 10.0755 3.27974 10.0526 3.28109ZM10.0988 3.27738C10.1689 3.272 10.2387 3.26628 10.3092 3.2609C10.236 3.26662 10.1679 3.27234 10.0988 3.27738ZM10.2596 3.73608C10.2371 3.73776 10.2148 3.73978 10.1927 3.74146C10.224 3.7391 10.256 3.73641 10.2878 3.73372C10.2783 3.73439 10.2689 3.7354 10.2596 3.73608ZM10.3315 3.75324C10.3347 3.75324 10.338 3.75324 10.3412 3.7529C10.338 3.7529 10.3347 3.7529 10.3315 3.75324ZM10.3732 3.28008C10.3617 3.28075 10.35 3.28109 10.3381 3.28176C10.3503 3.28109 10.3621 3.28075 10.3739 3.28008C10.3737 3.28008 10.3735 3.28008 10.3733 3.28008H10.3732ZM10.3699 3.25585C10.3774 3.25517 10.385 3.2545 10.3925 3.25416C10.3849 3.25484 10.3773 3.25551 10.3699 3.25585ZM10.3772 3.27974C10.3772 3.27974 10.3776 3.27974 10.3778 3.27974C10.3776 3.27974 10.3774 3.27974 10.3772 3.27974ZM10.378 3.27974C10.378 3.27974 10.3782 3.27974 10.3784 3.27974H10.3781H10.378ZM10.4503 3.74752C10.4271 3.74853 10.4038 3.74954 10.3806 3.75055C10.4119 3.75055 10.4427 3.75627 10.4597 3.71992C10.4503 3.71622 10.449 3.72531 10.4503 3.74718V3.74752ZM10.4264 3.25114C10.4333 3.25046 10.4402 3.25013 10.4471 3.24945C10.4401 3.25013 10.4333 3.25046 10.4264 3.25114ZM10.4789 3.71858C10.4789 3.72598 10.4789 3.73338 10.479 3.74079C10.479 3.73338 10.479 3.72598 10.4789 3.71858ZM10.4765 3.27503C10.4791 3.27503 10.4818 3.27503 10.4843 3.27469C10.4817 3.27469 10.4791 3.27469 10.4765 3.27503ZM10.4982 3.74516C10.4472 3.73776 10.5234 3.76468 10.5201 3.73002C10.5222 3.75694 10.5055 3.74011 10.4982 3.74516ZM10.4924 3.27436C10.4924 3.27436 10.4927 3.27436 10.4928 3.27436C10.4928 3.27436 10.4925 3.27436 10.4924 3.27436ZM10.4966 3.27436C10.4966 3.27436 10.4966 3.27436 10.4965 3.27436C10.4976 3.27436 10.4985 3.27436 10.4995 3.27436C10.4985 3.27436 10.4974 3.27436 10.4964 3.27436C10.4964 3.27436 10.4964 3.27436 10.4965 3.27436C10.4965 3.27436 10.4964 3.27436 10.4962 3.27436C10.4962 3.27436 10.4965 3.27436 10.4966 3.27436ZM10.5007 3.27436C10.5002 3.27436 10.4997 3.27436 10.4991 3.27436C10.5022 3.27436 10.5051 3.27436 10.5082 3.27402C10.5056 3.27402 10.5031 3.27402 10.5007 3.27436ZM10.5317 3.74449C10.5317 3.74449 10.5317 3.74415 10.5317 3.74382C10.532 3.74516 10.5332 3.74382 10.5337 3.74415C10.533 3.74415 10.5324 3.74415 10.5317 3.74415V3.74449ZM10.5728 3.27133C10.5728 3.27133 10.5724 3.27133 10.5722 3.27133C10.5809 3.27099 10.5892 3.27032 10.5973 3.26998C10.5892 3.27032 10.5809 3.27099 10.5724 3.27133C10.5724 3.27133 10.5726 3.27133 10.5728 3.27133ZM10.4084 3.2333C10.4984 3.22556 10.5884 3.21782 10.6812 3.21042C10.5901 3.21748 10.4984 3.22522 10.4084 3.2333ZM10.668 3.16936C10.6481 3.17003 10.6283 3.17104 10.6083 3.17171C10.6453 3.17037 10.6824 3.16902 10.7196 3.16734C10.7024 3.16801 10.6852 3.16869 10.668 3.16936ZM10.9188 3.15994C10.9649 3.15825 11.0109 3.15657 11.0571 3.15489C11.011 3.15657 10.9649 3.15825 10.9188 3.15994ZM11.604 3.69872C11.4311 3.70646 11.2582 3.71353 11.0853 3.72093C11.4716 3.70478 11.858 3.68795 12.2443 3.67012C12.0308 3.67988 11.8175 3.6893 11.604 3.69872ZM19.7232 2.1177C19.7355 2.11703 19.7483 2.11602 19.7613 2.11535C19.7486 2.11602 19.736 2.11703 19.7238 2.1177C19.7794 2.11434 19.8412 2.1103 19.9054 2.10626C19.8361 2.11097 19.773 2.114 19.7119 2.11905C19.7123 2.11905 19.7126 2.11905 19.713 2.11905C19.7112 2.11905 19.7095 2.11938 19.7078 2.11972C19.713 2.11905 19.7181 2.11871 19.7232 2.11804V2.1177ZM19.9411 2.1039C19.9284 2.10458 19.9157 2.10559 19.9031 2.10626C19.9223 2.10491 19.9417 2.1039 19.9613 2.10256C19.9545 2.10289 19.9479 2.10357 19.9411 2.1039ZM19.9707 2.16549C19.9675 2.16549 19.9643 2.16616 19.9613 2.1665C19.9645 2.1665 19.9676 2.16583 19.9707 2.16549ZM19.9329 2.16919C19.93 2.16919 19.9271 2.16986 19.9242 2.1702C19.9271 2.1702 19.93 2.16953 19.9329 2.16919ZM19.115 2.21765C19.1158 2.21765 19.1165 2.21765 19.1173 2.21765C19.1074 2.21866 19.0976 2.22001 19.0875 2.22102C19.0957 2.22001 19.1035 2.21933 19.1116 2.21832C19.0851 2.22135 19.0581 2.22438 19.0302 2.22707C19.0839 2.22135 19.1397 2.2153 19.1924 2.2089C19.1676 2.21193 19.1415 2.21496 19.115 2.21799V2.21765ZM19.1768 2.85302C19.1768 2.85302 19.1757 2.85302 19.1753 2.85302C19.1758 2.85302 19.1762 2.85302 19.1768 2.85302ZM19.1312 2.23448C19.1402 2.2338 19.1491 2.23313 19.158 2.23279C19.1491 2.23347 19.1402 2.23414 19.1312 2.23448ZM19.1026 2.76586C19.1026 2.76586 19.1026 2.76519 19.1026 2.76485C19.1026 2.76485 19.1027 2.76552 19.1026 2.76552V2.76586ZM19.0104 2.78605C19.0112 2.78605 19.0119 2.78605 19.0127 2.78571C19.0021 2.78672 18.9914 2.78639 18.9813 2.78706C18.9896 2.78706 18.9992 2.78639 19.0104 2.78605ZM18.9898 2.78168C18.9898 2.78168 18.9898 2.78168 18.9899 2.78168C18.9899 2.78168 18.9899 2.78168 18.9898 2.78168ZM18.93 2.19107C18.9883 2.18635 19.0472 2.18131 19.1059 2.17626C19.047 2.18131 18.9884 2.18602 18.93 2.19107ZM18.9349 2.78874C18.9349 2.78874 18.9343 2.78874 18.934 2.78874C18.9344 2.78874 18.9349 2.78874 18.9353 2.78874C18.9352 2.78874 18.9351 2.78874 18.9349 2.78874ZM18.9356 2.78874C18.9356 2.78874 18.936 2.78874 18.9361 2.78874C18.9359 2.78874 18.9355 2.78874 18.9352 2.78874C18.9352 2.78874 18.9355 2.78874 18.9356 2.78874ZM18.9363 2.78874C18.9352 2.78874 18.934 2.78874 18.933 2.78908C18.934 2.78908 18.9352 2.78908 18.9363 2.78874ZM18.9292 2.19107C18.9147 2.19241 18.9002 2.19342 18.8858 2.19477C18.9009 2.19342 18.916 2.19241 18.9311 2.19107C18.9304 2.19107 18.9299 2.19107 18.9292 2.19107ZM19.0449 2.2052C19.0438 2.2052 19.0423 2.20587 19.041 2.20621C19.0425 2.20621 19.0438 2.20554 19.0449 2.2052ZM19.041 2.20621C19.041 2.20621 19.041 2.20621 19.0409 2.20621C19.0409 2.20621 19.0409 2.20621 19.041 2.20621ZM19.0811 2.15809C19.0756 2.15876 19.07 2.15943 19.0645 2.1601C19.07 2.15943 19.0754 2.15876 19.0811 2.15809ZM19.0639 1.68593C19.0675 1.68593 19.0705 1.68593 19.0737 1.68593C19.0703 1.68593 19.0668 1.68593 19.063 1.68593C19.0633 1.68593 19.0637 1.68593 19.0639 1.68593ZM18.9928 2.16818C18.9851 2.16885 18.9774 2.16986 18.9698 2.17054C18.9773 2.16986 18.9851 2.16885 18.9928 2.16818ZM18.8751 2.20924C18.8751 2.20924 18.8744 2.20924 18.8743 2.20924C18.8746 2.20924 18.8748 2.20924 18.8751 2.20924ZM18.7073 2.90384C18.7232 2.90283 18.7389 2.90182 18.7543 2.90114C18.7388 2.90215 18.7229 2.90316 18.7073 2.90384ZM18.6503 2.9072C18.6503 2.9072 18.6501 2.9072 18.65 2.9072C18.6501 2.9072 18.6502 2.9072 18.6503 2.9072ZM18.0159 2.28159C18.0225 2.28092 18.0291 2.28058 18.0356 2.27991C18.0291 2.28058 18.0226 2.28092 18.0159 2.28159ZM18.0159 2.28159C18.0131 2.28159 18.0104 2.28193 18.0077 2.28226C18.0104 2.28226 18.0131 2.28193 18.0159 2.28159ZM18.0397 2.27957C18.0416 2.27957 18.0433 2.27957 18.0451 2.27924C18.0433 2.27924 18.0416 2.27924 18.0397 2.27957ZM18.0684 2.27722C18.0706 2.27722 18.0727 2.27688 18.0748 2.27654C18.0727 2.27654 18.0706 2.27688 18.0684 2.27722ZM18.0902 2.32972C18.0882 2.32972 18.0861 2.33039 18.0841 2.33073C18.0861 2.33073 18.0882 2.33005 18.0902 2.32972ZM18.0944 2.27486C18.0972 2.27486 18.1 2.27452 18.1026 2.27419C18.0998 2.27419 18.0972 2.27486 18.0944 2.27486ZM18.1666 2.81028C18.1683 2.81028 18.17 2.81028 18.1717 2.80994C18.156 2.81095 18.1388 2.8123 18.1206 2.81365C18.1369 2.81264 18.1521 2.81129 18.1666 2.81028ZM18.1835 2.26645C18.1947 2.26544 18.2054 2.26409 18.2157 2.26308C18.2052 2.26409 18.1943 2.26544 18.1835 2.26645ZM18.2905 2.30347C18.2732 2.30549 18.2558 2.3075 18.2386 2.30986C18.2558 2.30784 18.2732 2.30549 18.2905 2.30347ZM18.2394 2.27553C18.2394 2.27553 18.2395 2.27553 18.2397 2.27553C18.2397 2.27553 18.2395 2.27553 18.2394 2.27553ZM18.1502 2.26981C18.1479 2.26981 18.1457 2.27015 18.1434 2.27049C18.1474 2.27015 18.1512 2.26981 18.1551 2.26948C18.1533 2.26948 18.1519 2.26948 18.1502 2.26981ZM18.0523 2.2789C18.0561 2.2789 18.06 2.27823 18.0638 2.27789C18.0601 2.27789 18.0561 2.27856 18.0523 2.2789ZM18.1336 2.93379C18.1205 2.93446 18.1073 2.93513 18.0939 2.93547C18.1073 2.9348 18.1205 2.93412 18.1336 2.93379ZM18.6162 2.20217C18.6182 2.20217 18.6203 2.20183 18.6224 2.2015C18.6204 2.2015 18.6183 2.20183 18.6163 2.20217H18.6162ZM18.6277 2.88129C18.6325 2.88129 18.6372 2.88095 18.6421 2.88062C18.6374 2.88062 18.6326 2.88095 18.6277 2.88129ZM18.7208 2.81365C18.6921 2.81667 18.6621 2.8197 18.6311 2.82307C18.6621 2.82004 18.6921 2.81701 18.7208 2.81365ZM18.7044 1.7206C18.6899 1.72228 18.6756 1.72396 18.6621 1.72531C18.6756 1.72362 18.6899 1.72228 18.7044 1.7206ZM18.6339 2.20015C18.628 2.20082 18.6221 2.2015 18.6162 2.20217C18.6219 2.2015 18.6278 2.20082 18.6339 2.20015ZM18.6162 2.20217C18.6162 2.20217 18.6162 2.20217 18.616 2.20217C18.616 2.20217 18.6162 2.20217 18.6163 2.20217H18.6162ZM18.6084 1.74584C18.3267 1.76805 17.9922 1.79463 17.7436 1.82155C18.0005 1.79396 18.2962 1.77074 18.6084 1.74584ZM17.9302 2.82643C17.8726 2.8298 17.8122 2.8335 17.7518 2.83653C17.8122 2.83316 17.8726 2.8298 17.9302 2.82643ZM17.6464 2.30885C17.6455 2.30885 17.6447 2.30919 17.6441 2.30919C17.6448 2.30919 17.6455 2.30885 17.6464 2.30885ZM17.592 1.81651C17.592 1.81651 17.5929 1.81651 17.5934 1.81651C17.5928 1.81651 17.592 1.81651 17.5912 1.81651C17.5914 1.81651 17.5917 1.81651 17.592 1.81651ZM17.5622 2.29236C17.5622 2.29236 17.5619 2.29236 17.5618 2.29236C17.5618 2.29236 17.562 2.29236 17.5622 2.29236ZM17.5724 2.82273C17.5626 2.82341 17.5526 2.82408 17.5427 2.82442C17.5526 2.82374 17.5626 2.82307 17.5724 2.82273ZM17.3651 2.86749C17.4059 2.86278 17.4467 2.85807 17.4873 2.85336C17.4466 2.85807 17.4058 2.86278 17.3651 2.86749ZM17.3029 2.8399C17.3275 2.83821 17.3519 2.83653 17.3757 2.83518C17.3517 2.83687 17.3275 2.83821 17.3029 2.8399ZM17.4631 2.29573C17.4581 2.29573 17.4532 2.2964 17.4483 2.29674C17.4532 2.29674 17.4581 2.29606 17.4631 2.29573ZM17.4354 2.29741C17.4386 2.29741 17.4418 2.29707 17.4451 2.29674C17.439 2.29707 17.4325 2.29741 17.4267 2.29775C17.4296 2.29775 17.4325 2.29741 17.4356 2.29707L17.4354 2.29741ZM17.2192 2.84562C17.2375 2.84427 17.2557 2.84326 17.2737 2.84191C17.2553 2.84326 17.2371 2.84427 17.2184 2.84562C17.2186 2.84562 17.2189 2.84562 17.2192 2.84562ZM17.2361 2.95028C17.216 2.95162 17.1956 2.95263 17.1753 2.95398C17.1957 2.95263 17.216 2.95162 17.2361 2.95028ZM17.2112 1.84242C17.2112 1.84242 17.2126 1.84242 17.2131 1.84242C17.1857 1.84511 17.1598 1.84747 17.1365 1.85487C17.1595 1.8478 17.1841 1.84511 17.2112 1.84276V1.84242ZM17.1691 2.95432C17.1507 2.95533 17.1323 2.95667 17.1139 2.95802C17.1324 2.95667 17.1508 2.95566 17.1691 2.95432ZM17.0916 2.95936C17.078 2.96037 17.0642 2.96138 17.0505 2.96206C17.0644 2.96105 17.078 2.96004 17.0916 2.95936ZM17.0637 1.87069C17.0637 1.87069 17.0644 1.87069 17.0648 1.87069C16.5407 1.90939 16.2462 1.9178 15.9917 1.92319C16.2465 1.9178 16.5393 1.90939 17.0638 1.87069H17.0637ZM17.0505 2.96206C17.0462 2.96206 17.042 2.96273 17.0377 2.96307C17.042 2.96307 17.0462 2.96239 17.0505 2.96206ZM16.986 2.96677H16.9845C16.9845 2.96677 16.9854 2.96677 16.986 2.96677ZM16.8733 2.35563C16.8535 2.35697 16.8345 2.35832 16.8151 2.35933C16.8342 2.35798 16.8535 2.35697 16.8733 2.35563ZM16.7637 2.75172C16.762 2.75172 16.7603 2.75172 16.7586 2.75206C16.7603 2.75206 16.762 2.75206 16.7637 2.75172C16.7637 2.75172 16.7639 2.75172 16.764 2.75172C16.764 2.75172 16.7639 2.75172 16.7637 2.75172ZM16.7541 2.7524C16.5097 2.76922 16.2655 2.78571 16.0212 2.80187C16.0213 2.80187 16.0215 2.80187 16.0217 2.80187C16.0216 2.80187 16.0213 2.80187 16.0212 2.80187C16.0217 2.80187 16.0224 2.80187 16.0229 2.80187C16.0229 2.80187 16.0228 2.80187 16.0227 2.80187C16.2697 2.78538 16.5166 2.76855 16.7637 2.75172C16.7606 2.75172 16.7574 2.75206 16.7542 2.7524H16.7541ZM16.6737 2.98864C16.6777 2.98864 16.6814 2.98864 16.6856 2.98864C16.6827 2.98864 16.6799 2.98864 16.6773 2.98864C16.6774 2.98864 16.6777 2.98864 16.6778 2.98864C16.6763 2.98864 16.6752 2.98864 16.6738 2.98864H16.6737ZM16.6638 2.98864H16.664C16.6626 2.98864 16.661 2.98864 16.6597 2.98864C16.6609 2.98864 16.6624 2.98864 16.6638 2.98864ZM16.7099 2.98831C16.7077 2.98831 16.706 2.98831 16.704 2.98831C16.706 2.98831 16.7079 2.98831 16.7099 2.98831ZM16.7117 2.98831C16.7174 2.98831 16.7226 2.98831 16.7285 2.98797C16.7219 2.98797 16.7157 2.98831 16.7099 2.98831C16.7104 2.98831 16.711 2.98831 16.7116 2.98831H16.7117ZM15.9988 2.99907C15.99 2.99941 15.9811 3.00008 15.9723 3.00042C15.9749 3.00042 15.9774 3.00042 15.9799 3.00008C15.9757 3.00008 15.9716 3.00042 15.9673 3.00076C15.9686 3.00076 15.97 3.00076 15.9713 3.00076C15.9557 3.00177 15.9403 3.00244 15.9248 3.00311C15.9268 3.00311 15.9289 3.00311 15.931 3.00311C15.9214 3.00379 15.9117 3.00412 15.9024 3.00446C15.9374 3.00278 15.9725 3.00076 16.0077 2.99874C16.006 2.99874 16.004 2.99874 16.0023 2.99874C16.0062 2.99874 16.0102 2.9984 16.0142 2.99806C16.006 2.9984 15.9978 2.99907 15.9897 2.99941C15.9929 2.99941 15.9959 2.99907 15.9991 2.99874L15.9988 2.99907ZM15.8554 3.00648C15.8508 3.00648 15.846 3.00681 15.8414 3.00715C15.846 3.00715 15.8506 3.00681 15.8554 3.00648ZM15.8346 2.9311C15.7786 2.93379 15.7198 2.93614 15.6621 2.93884C15.7194 2.93614 15.7823 2.93345 15.8361 2.9311C15.8355 2.9311 15.8351 2.9311 15.8346 2.9311ZM15.817 3.00816C15.8153 3.00816 15.8137 3.00816 15.812 3.00816C15.8136 3.00816 15.8153 3.00816 15.817 3.00816ZM15.7872 2.91427C15.7872 2.91427 15.7859 2.91292 15.7851 2.91225C15.786 2.91292 15.7868 2.9136 15.7872 2.91427ZM15.7748 2.9072C15.7728 2.90653 15.7704 2.90586 15.7683 2.90518C15.7707 2.90586 15.7729 2.90653 15.7748 2.9072ZM15.4853 2.94658C15.5155 2.94523 15.5461 2.94388 15.577 2.94254C15.5769 2.94254 15.5768 2.94254 15.5766 2.94254H15.5772C15.5777 2.94254 15.5782 2.94254 15.5786 2.94254H15.5784C15.5784 2.94254 15.5786 2.94254 15.5788 2.94254C15.5782 2.94254 15.5777 2.94254 15.5772 2.94254C15.5773 2.94254 15.5776 2.94254 15.5777 2.94254C15.5649 2.94321 15.5523 2.94355 15.5396 2.94422C15.552 2.94355 15.5642 2.94321 15.5766 2.94254C15.5458 2.94388 15.5153 2.94523 15.4853 2.94658ZM15.579 2.94254C15.579 2.94254 15.5796 2.94254 15.5798 2.94254C15.5797 2.94254 15.5794 2.94254 15.5793 2.94254C15.5805 2.94254 15.5817 2.94254 15.5829 2.94254C15.5815 2.94254 15.5804 2.94254 15.579 2.94254ZM15.5778 3.01725C15.5731 3.01725 15.5683 3.01725 15.5637 3.01758C15.5684 3.01758 15.5731 3.01758 15.5778 3.01725ZM15.5687 2.40173C15.5745 2.40173 15.5802 2.40173 15.5859 2.40173C15.5801 2.40173 15.5745 2.40173 15.5687 2.40173ZM15.6349 3.01523C15.6221 3.01556 15.6094 3.01624 15.5965 3.01657C15.6092 3.01624 15.6219 3.0159 15.6349 3.01523ZM15.473 2.40375C15.5026 2.40308 15.5316 2.40241 15.5597 2.40207C15.5316 2.40274 15.5028 2.40308 15.473 2.40375ZM15.2951 2.81701C15.3008 2.81634 15.3064 2.81567 15.3124 2.81499C15.3119 2.81499 15.3115 2.81499 15.3109 2.81499C15.3295 2.81365 15.3483 2.81331 15.367 2.8123C15.3387 2.81432 15.3024 2.81297 15.2756 2.82071C15.2795 2.81937 15.2865 2.81768 15.2967 2.81667C15.2963 2.81667 15.2958 2.81667 15.2952 2.81667L15.2951 2.81701ZM15.3411 2.84158C15.3411 2.84158 15.3408 2.84158 15.3407 2.84158C15.3408 2.84158 15.3409 2.84158 15.3411 2.84158ZM15.4255 2.80961C15.4267 2.80961 15.4281 2.80961 15.4293 2.80961C15.4279 2.80961 15.4266 2.80961 15.4253 2.80961C15.4253 2.80961 15.4254 2.80961 15.4255 2.80961ZM15.3262 2.40745C15.3575 2.40644 15.3874 2.40577 15.4167 2.4051C15.3875 2.40577 15.3575 2.40644 15.3262 2.40745ZM15.2862 2.95533C15.258 2.95634 15.2299 2.95768 15.2025 2.95869C15.2301 2.95768 15.258 2.95634 15.2862 2.95533ZM15.2387 3.02802C15.2511 3.02768 15.2634 3.02701 15.2758 3.02667C15.2374 3.02802 15.1972 3.0297 15.1541 3.03172C15.1835 3.03037 15.2117 3.02903 15.2387 3.02802ZM15.6402 3.01523C15.6437 3.01523 15.6471 3.01523 15.6507 3.01489C15.6472 3.01489 15.6438 3.01489 15.6402 3.01523ZM15.6887 3.01388C15.6911 3.01388 15.6934 3.01388 15.696 3.01388C15.6936 3.01388 15.6911 3.01388 15.6887 3.01388ZM15.6997 3.01355C15.7019 3.01355 15.7043 3.01355 15.7067 3.01355C15.7043 3.01355 15.7021 3.01355 15.6997 3.01355ZM15.7549 3.01119C15.7562 3.01119 15.7577 3.01119 15.7591 3.01119C15.7577 3.01119 15.7564 3.01119 15.7549 3.01119ZM15.7922 2.99773C15.7922 2.99773 15.7926 2.99773 15.7929 2.99773C15.7928 2.99773 15.7925 2.99773 15.7922 2.99773ZM15.8268 2.39769C15.8268 2.39769 15.8279 2.39769 15.8284 2.39769C15.8279 2.39769 15.8273 2.39769 15.8268 2.39769ZM15.8941 3.0048C15.8861 3.00513 15.8785 3.00547 15.8706 3.00581C15.8783 3.00547 15.8861 3.00513 15.8941 3.0048ZM16.1085 2.91393C16.1099 2.91393 16.1113 2.91393 16.1127 2.9136C16.1113 2.9136 16.1099 2.9136 16.1085 2.91393ZM16.0933 2.79985C16.0933 2.79985 16.0934 2.79985 16.0935 2.79985C16.0935 2.79985 16.0934 2.79985 16.0933 2.79985ZM16.0938 2.79985C16.0787 2.80052 16.064 2.80119 16.049 2.80187C16.0641 2.80119 16.0788 2.80052 16.0941 2.79985C16.0941 2.79985 16.0939 2.79985 16.0938 2.79985ZM16.0658 2.9173C16.0658 2.9173 16.0652 2.9173 16.0649 2.9173C16.0652 2.9173 16.0656 2.9173 16.0658 2.9173ZM16.0146 2.921C16.0146 2.921 16.0159 2.921 16.0166 2.921C16.0159 2.921 16.0153 2.921 16.0146 2.921ZM15.9147 2.92739C15.9132 2.92739 15.9114 2.92739 15.9098 2.92739C15.9137 2.92739 15.9175 2.92706 15.9214 2.92672C15.9191 2.92672 15.917 2.92672 15.9147 2.92706V2.92739ZM16.0278 2.99773C16.0278 2.99773 16.0282 2.99773 16.0284 2.99773C16.0282 2.99773 16.028 2.99773 16.0278 2.99773C16.0339 2.99739 16.04 2.99706 16.0464 2.99672C16.0354 2.99739 16.0247 2.99806 16.0141 2.99874C16.0186 2.99874 16.0233 2.99806 16.0278 2.99806V2.99773ZM15.9142 2.98797C15.9142 2.98797 15.9137 2.98797 15.9134 2.98797C16.1151 2.98258 16.3171 2.98191 16.5188 2.97383C16.3173 2.98191 16.1156 2.98292 15.9141 2.98797H15.9142ZM15.929 2.92638C15.9308 2.92638 15.9325 2.92638 15.9341 2.92638C15.9324 2.92638 15.9306 2.92638 15.929 2.92638ZM16.3634 2.8897C16.3634 2.8897 16.3637 2.8897 16.3638 2.8897H16.3635C16.3716 2.88903 16.3797 2.88802 16.3879 2.88735C16.379 2.88836 16.3703 2.88903 16.3617 2.89004C16.3622 2.89004 16.3629 2.89004 16.3634 2.89004V2.8897ZM16.3883 2.88701C16.3984 2.886 16.409 2.88499 16.4193 2.88398C16.4087 2.88499 16.3985 2.886 16.3883 2.88701ZM16.3663 2.38423C16.4365 2.3812 16.5124 2.37784 16.596 2.37346C16.5124 2.37784 16.4365 2.38154 16.3663 2.38423ZM15.8834 1.92588C15.9012 1.92588 15.919 1.92521 15.9369 1.92521C15.6858 1.92891 15.4916 1.93093 15.1398 1.94237C15.4633 1.93194 15.6674 1.92924 15.8834 1.92622V1.92588ZM15.086 3.02768C15.078 3.02802 15.0701 3.02869 15.0624 3.02903C15.0702 3.02869 15.0779 3.02802 15.086 3.02768ZM14.9734 2.60231C14.9724 2.60231 14.9713 2.60231 14.9704 2.60231C14.9714 2.60231 14.9725 2.60231 14.9734 2.60231ZM14.9703 2.60231C14.9651 2.60264 14.9598 2.60298 14.9545 2.60365C14.9598 2.60331 14.9651 2.60298 14.9703 2.60231ZM13.4121 3.00614C13.417 3.00614 13.4219 3.00547 13.4268 3.00547C13.4217 3.00547 13.4168 3.00614 13.4121 3.00614ZM13.398 3.00681C13.398 3.00681 13.3976 3.00681 13.3974 3.00681C13.3976 3.00681 13.3978 3.00681 13.398 3.00681ZM14.2312 2.45558C14.2404 2.45558 14.25 2.4549 14.2592 2.45457C14.2433 2.45524 14.2272 2.45558 14.211 2.45625C14.2178 2.45625 14.2244 2.45591 14.2312 2.45558ZM14.1118 2.45928C14.0953 2.45995 14.0787 2.46029 14.0622 2.46063C14.0789 2.46029 14.0953 2.45962 14.1118 2.45928ZM14.0508 2.46096C14.0407 2.46096 14.0307 2.46164 14.0205 2.46197C14.0305 2.46197 14.0407 2.4613 14.0508 2.46096ZM13.6976 2.47039C13.6976 2.47039 13.6979 2.47039 13.698 2.47039C13.6964 2.47039 13.6947 2.47039 13.6931 2.47039C13.6946 2.47039 13.6961 2.47039 13.6977 2.47039H13.6976ZM13.4383 2.47611C13.4493 2.47611 13.4603 2.47577 13.4713 2.47543C13.4559 2.47577 13.4407 2.47611 13.4253 2.47644C13.4297 2.47644 13.4341 2.47644 13.4383 2.47644V2.47611ZM13.3624 2.62317C13.3743 2.6225 13.3863 2.62216 13.3983 2.62182C13.3863 2.62216 13.3742 2.62283 13.3624 2.62317ZM13.33 2.62452C13.3357 2.62452 13.3415 2.62384 13.3473 2.62384C13.3367 2.62418 13.3263 2.62485 13.3159 2.62519C13.3206 2.62519 13.3252 2.62485 13.33 2.62452ZM13.2987 2.62586C13.3011 2.62586 13.3036 2.62586 13.306 2.62586C13.292 2.62654 13.2781 2.62721 13.2646 2.62788C13.2757 2.62721 13.2872 2.62687 13.2987 2.6262V2.62586ZM13.1169 2.63596C13.1169 2.63596 13.1164 2.63596 13.1161 2.63596C13.1164 2.63596 13.1166 2.63596 13.1169 2.63596ZM13.0829 2.63831C13.0829 2.63831 13.0829 2.63831 13.0827 2.63831H13.0829ZM13.0797 2.63831C13.0774 2.63831 13.0753 2.63865 13.0732 2.63865C13.0752 2.63865 13.0774 2.63865 13.0797 2.63831ZM12.6895 2.64774C12.6061 2.65043 12.5178 2.65312 12.4392 2.65581C12.5178 2.65346 12.6019 2.65077 12.6895 2.64774ZM12.3089 3.10172C12.3089 3.10172 12.3089 3.10239 12.3085 3.10273C12.3088 3.10239 12.3089 3.10205 12.3089 3.10172ZM12.2997 3.14378C12.3477 3.14008 12.3962 3.13672 12.4435 3.13402C12.3963 3.13672 12.3479 3.14008 12.2998 3.14378H12.2997ZM12.7462 3.6156C12.6864 3.61694 12.6252 3.61863 12.5636 3.61997C12.6374 3.61795 12.7093 3.61627 12.7816 3.61459C12.7698 3.61459 12.758 3.61526 12.7462 3.6156ZM12.8416 3.65093C12.8416 3.65093 12.8408 3.65093 12.8402 3.65093H12.843C12.843 3.65093 12.8421 3.65093 12.8416 3.65093ZM13.3052 3.59843C13.213 3.67012 13.1121 3.62738 13.0083 3.64589C13.1123 3.62771 13.2132 3.66944 13.3057 3.59843C13.3056 3.59843 13.3053 3.59843 13.3052 3.59843ZM13.2121 3.05427C13.4027 3.04282 13.5931 3.03138 13.7837 3.0196C13.5932 3.03138 13.4027 3.04282 13.2121 3.05427ZM13.5252 3.04753C13.5682 3.04282 13.6114 3.03811 13.6544 3.03374C13.6114 3.03845 13.5682 3.04316 13.5252 3.04753ZM13.4417 3.12023C13.448 3.11989 13.4541 3.11955 13.4601 3.11888C13.4541 3.11922 13.448 3.11955 13.4417 3.12023ZM13.4329 3.1209C13.4252 3.12123 13.4175 3.12191 13.4096 3.12224C13.4098 3.12224 13.4101 3.12224 13.4104 3.12224C13.4186 3.12191 13.4265 3.12123 13.4345 3.1209C13.4339 3.1209 13.4334 3.1209 13.4329 3.1209ZM13.4351 3.1209C13.4366 3.1209 13.4382 3.1209 13.4396 3.1209C13.4376 3.1209 13.4355 3.1209 13.4335 3.12123C13.4341 3.12123 13.4346 3.12123 13.4351 3.12123V3.1209ZM13.4685 3.11854C13.4742 3.11821 13.4797 3.11787 13.4853 3.1172C13.4797 3.11753 13.4742 3.11787 13.4685 3.11854ZM13.5035 3.10441C13.5035 3.10441 13.5035 3.10441 13.5036 3.10441C13.5027 3.10441 13.5017 3.10441 13.5009 3.10441C13.5017 3.10441 13.5027 3.10441 13.5035 3.10441ZM13.5019 3.11518C13.5004 3.11518 13.4987 3.11585 13.4972 3.11585C13.4988 3.11585 13.5004 3.11518 13.5019 3.11518ZM13.5039 3.10441C13.5039 3.10441 13.5042 3.10441 13.5045 3.10441C13.5044 3.10441 13.5041 3.10441 13.5039 3.10441ZM13.7296 3.07008C13.6555 3.07176 13.5813 3.07378 13.5072 3.07547C13.6278 3.07244 13.7486 3.06941 13.8692 3.06638C13.8227 3.06773 13.7761 3.06874 13.7296 3.06975V3.07008ZM13.8792 3.07547C13.8792 3.07547 13.8794 3.07547 13.8797 3.07547C13.8796 3.07547 13.8794 3.07547 13.8792 3.07547ZM13.8807 3.07547C13.8818 3.07547 13.8829 3.07547 13.8838 3.07547C13.8827 3.07547 13.8817 3.07547 13.8807 3.07547ZM13.8843 3.07547C13.8835 3.07547 13.8826 3.07547 13.8818 3.07547C13.8834 3.07547 13.885 3.07547 13.8864 3.07547C13.8856 3.07547 13.885 3.07547 13.8842 3.07547C13.8921 3.07547 13.9 3.07547 13.9079 3.07547C13.9 3.07547 13.892 3.07547 13.8842 3.07547H13.8843ZM14.3186 3.11686H14.3159C14.3184 3.11686 14.3208 3.11686 14.3233 3.11686C14.3217 3.11686 14.3201 3.11686 14.3187 3.11686H14.3186ZM14.599 2.99941C14.599 2.99941 14.5992 2.99941 14.5993 2.99941C14.5993 2.99941 14.5992 2.99941 14.599 2.99941ZM14.6816 3.04484C14.6816 3.04484 14.6816 3.04484 14.6814 3.04484H14.6816ZM14.8568 3.01927C14.8579 3.01927 14.8591 3.01893 14.8605 3.01859C14.8591 3.01859 14.8579 3.01893 14.8568 3.01927ZM17.6919 3.41469C16.9449 3.46046 16.4006 3.48704 15.7982 3.51565C16.3988 3.49209 16.9505 3.4507 17.6921 3.4194C17.6921 3.41772 17.6921 3.41604 17.6921 3.41435L17.6919 3.41469ZM18.8581 3.36657C18.568 3.38541 18.1997 3.40459 17.6921 3.42411C18.2682 3.40156 18.5922 3.38474 18.9679 3.3595C18.9326 3.36185 18.896 3.36455 18.8581 3.3669V3.36657ZM19.0884 2.87893C19.1009 2.87792 19.1132 2.87691 19.1252 2.87624C19.1131 2.87725 19.1009 2.87826 19.0884 2.87893ZM18.6962 2.8786C18.8669 2.87052 19.0376 2.86211 19.2081 2.85369C19.0374 2.86211 18.8667 2.87018 18.6962 2.8786ZM19.2383 2.20385C19.2415 2.20352 19.2448 2.20318 19.248 2.20251C19.2448 2.20284 19.2415 2.20318 19.2383 2.20385ZM19.2732 2.84158C19.2703 2.84158 19.2672 2.84191 19.2644 2.84225C19.2679 2.84225 19.2716 2.84158 19.2752 2.84124C19.2745 2.84124 19.2738 2.84124 19.2732 2.84124V2.84158ZM19.3039 2.1601C19.3002 2.16044 19.2963 2.16078 19.2926 2.16111C19.3113 2.15943 19.3301 2.15775 19.3489 2.15607C19.334 2.15741 19.3189 2.15876 19.3039 2.1601ZM19.346 2.1564C19.3917 2.15203 19.4372 2.14765 19.4829 2.14361C19.4372 2.14799 19.3917 2.15236 19.346 2.1564ZM19.4947 2.14227C19.4898 2.1426 19.4849 2.14328 19.48 2.14361C19.4998 2.1416 19.5195 2.13991 19.5392 2.13789C19.5244 2.13958 19.5096 2.14092 19.4947 2.14227ZM19.7083 2.19174C19.7319 2.18972 19.7547 2.1877 19.7768 2.18568C19.7547 2.1877 19.732 2.18972 19.7083 2.19174ZM19.8132 2.18232C19.8277 2.18097 19.8416 2.17962 19.8553 2.17828C19.8416 2.17962 19.8275 2.18097 19.8132 2.18232ZM20.0397 2.77427C20.023 2.77528 20.007 2.77595 19.9909 2.77696C20.0079 2.77663 20.0254 2.77394 20.0428 2.77461C20.0419 2.77461 20.041 2.77461 20.0398 2.77427H20.0397ZM19.9978 2.16414C20.0011 2.16381 20.0043 2.16347 20.0075 2.16313C20.0043 2.16347 20.001 2.16381 19.9978 2.16414ZM20.032 2.16044C20.0365 2.1601 20.041 2.15943 20.0455 2.15909C20.041 2.15943 20.0366 2.1601 20.032 2.16044ZM20.1009 2.15304C20.112 2.15169 20.1231 2.15068 20.1341 2.14934C20.1231 2.15068 20.1121 2.15169 20.1009 2.15304ZM20.0668 2.15674C20.0717 2.15607 20.0768 2.15573 20.0817 2.15506C20.0768 2.15573 20.0719 2.15607 20.0668 2.15674ZM19.7189 1.64824C19.7189 1.64824 19.7179 1.64824 19.7173 1.64824C19.9282 1.63478 20.1391 1.62132 20.35 1.60752C20.1397 1.62132 19.9292 1.63478 19.7189 1.64791V1.64824ZM21.6529 1.52036H21.6536C21.6536 1.52036 21.6532 1.52036 21.6529 1.52036ZM21.4896 2.08977C21.4896 2.08977 21.4899 2.08943 21.4896 2.0891C21.4899 2.0891 21.4898 2.08943 21.4896 2.08977ZM21.4893 2.08977C21.4893 2.08977 21.4887 2.08977 21.4882 2.09011C21.4886 2.09011 21.489 2.09011 21.4893 2.08977ZM21.4846 2.09112C21.4846 2.09112 21.4851 2.09112 21.4854 2.09112C21.485 2.09112 21.4846 2.09112 21.4842 2.09112C21.4844 2.09112 21.4845 2.09112 21.4846 2.09112ZM21.4841 2.09112C21.4826 2.09112 21.4813 2.09145 21.4796 2.09179C21.4814 2.09179 21.4829 2.09145 21.4841 2.09112ZM21.4119 2.08439C21.4094 2.08439 21.4078 2.08405 21.4071 2.08371C21.4077 2.08371 21.4099 2.08439 21.4119 2.08439ZM21.3404 2.04602C21.3404 2.04602 21.3403 2.04602 21.3401 2.04602C21.3401 2.04602 21.3401 2.04602 21.3403 2.04602H21.3404ZM21.3412 2.04535C21.3412 2.04535 21.3407 2.04568 21.3404 2.04602C21.3407 2.04602 21.3409 2.04568 21.3412 2.04535ZM21.3403 2.04636C21.3403 2.04636 21.3399 2.04669 21.3395 2.04703C21.3397 2.04703 21.34 2.04669 21.3403 2.04636ZM21.3395 2.04703C21.3395 2.04703 21.3395 2.04703 21.3393 2.04703C21.3393 2.04703 21.3393 2.04703 21.3395 2.04703ZM21.3392 2.04703C21.3392 2.04703 21.3387 2.04703 21.3383 2.04737C21.3385 2.04737 21.3389 2.04737 21.3392 2.04703ZM21.3379 2.0477C21.3379 2.0477 21.3371 2.0477 21.3367 2.04804C21.3371 2.04804 21.3375 2.04804 21.3379 2.0477ZM21.336 2.04838C21.336 2.04838 21.335 2.04871 21.3344 2.04871C21.335 2.04871 21.3355 2.04871 21.336 2.04838ZM20.9369 2.01573C20.9447 2.0154 20.9524 2.01506 20.9602 2.01439C20.946 2.01506 20.9319 2.01607 20.9175 2.01674C20.924 2.01641 20.9305 2.01607 20.9369 2.01573ZM20.8348 2.02179C20.8531 2.02078 20.8712 2.01977 20.8893 2.01843C20.8712 2.01943 20.8531 2.02044 20.8345 2.02179C20.8345 2.02179 20.8346 2.02179 20.8348 2.02179ZM20.6968 1.61694C20.7171 1.61526 20.738 1.61324 20.7596 1.61156C20.7288 1.61291 20.7012 1.62367 20.672 1.60382C20.6806 1.60719 20.689 1.61122 20.6968 1.61694ZM20.6299 1.59675C20.6322 1.59675 20.6344 1.59675 20.6364 1.59675C20.6308 1.59675 20.6254 1.59675 20.6193 1.59642C20.623 1.59642 20.6266 1.59642 20.6298 1.59642L20.6299 1.59675ZM20.6138 1.59675C20.6151 1.59675 20.6164 1.59675 20.6176 1.59675C20.6147 1.59675 20.6116 1.59675 20.6085 1.59675C20.6102 1.59675 20.612 1.59675 20.6136 1.59675H20.6138ZM20.7966 2.09684C20.7966 2.09684 20.7969 2.09684 20.797 2.09684C20.7969 2.09684 20.7968 2.09684 20.7966 2.09684ZM20.8711 2.08943C20.878 2.08876 20.8844 2.08842 20.8912 2.08809C20.8844 2.08842 20.878 2.0891 20.8711 2.08943ZM21.1321 2.0578C20.8358 2.07496 20.6363 2.09347 20.4721 2.11131C20.6363 2.09347 20.8358 2.07463 21.1321 2.0578C21.1321 2.0578 21.1322 2.0578 21.1324 2.0578C21.1324 2.0578 21.1324 2.0578 21.1322 2.0578H21.1321ZM21.2339 2.06184C21.2392 2.0615 21.2441 2.06083 21.249 2.06049C21.2443 2.06083 21.2392 2.0615 21.2339 2.06184ZM21.2555 2.05982C21.2574 2.05982 21.2592 2.05948 21.2609 2.05915C21.2587 2.05915 21.2567 2.05948 21.2543 2.05982C21.2547 2.05982 21.255 2.05982 21.2554 2.05982H21.2555ZM21.3661 2.70124C21.3661 2.70124 21.366 2.70124 21.3658 2.70124C21.3665 2.70124 21.3671 2.70124 21.3679 2.70124C21.3674 2.70124 21.3668 2.70124 21.3661 2.70124ZM21.3857 3.17272C21.3837 3.17272 21.3817 3.17272 21.3799 3.17272C21.3824 3.17272 21.3849 3.17272 21.3875 3.17272C21.387 3.17272 21.3864 3.17272 21.3858 3.17272H21.3857ZM21.3021 2.10525C21.3494 2.10222 21.3871 2.09987 21.4197 2.09751C21.3915 2.09953 21.3531 2.10188 21.3021 2.10525ZM21.4331 2.03155C21.4323 2.03155 21.4316 2.03155 21.431 2.03155C21.4323 2.03155 21.4338 2.03155 21.4351 2.03155C21.4344 2.03155 21.4338 2.03155 21.4331 2.03155ZM21.4871 2.09078C21.4871 2.09078 21.4859 2.09078 21.4854 2.09112C21.4862 2.09112 21.4869 2.09112 21.4874 2.09078C21.4874 2.09078 21.4873 2.09078 21.4871 2.09078ZM21.4877 2.09078C21.4877 2.09078 21.4881 2.09078 21.4882 2.09078C21.4879 2.09078 21.4878 2.09078 21.4875 2.09078C21.4875 2.09078 21.4875 2.09078 21.4877 2.09078ZM21.6556 3.16095C21.6335 3.16229 21.6117 3.16364 21.5906 3.16465C21.6233 3.16128 21.6561 3.15893 21.6894 3.17407C21.6776 3.17171 21.6663 3.16768 21.6556 3.16095ZM25.1978 2.43034C25.2052 2.42899 25.2125 2.42765 25.2199 2.42664C25.2116 2.42798 25.2033 2.42967 25.1949 2.43101C25.196 2.43101 25.1969 2.43067 25.198 2.43034H25.1978ZM25.1948 2.43101C25.1948 2.43101 25.1936 2.43101 25.1929 2.43101C25.1936 2.43101 25.1941 2.43101 25.1948 2.43101ZM25.0661 1.93934C25.0766 1.939 25.0872 1.93833 25.0982 1.93799C25.0815 1.93867 25.0654 1.93934 25.0491 1.94001C25.0547 1.94001 25.0602 1.93968 25.0661 1.93934ZM25.136 2.33274C25.0902 2.33476 25.0443 2.33712 24.9984 2.33914C25.0442 2.33712 25.0903 2.33476 25.136 2.33274ZM24.7733 2.0689C24.7971 2.06689 24.8211 2.06554 24.845 2.06386C24.8205 2.06554 24.796 2.06722 24.7715 2.06924C24.7721 2.06924 24.7726 2.06924 24.7733 2.06924V2.0689ZM24.823 2.50135C24.822 2.50135 24.8208 2.50135 24.8197 2.50135C24.8257 2.50101 24.8315 2.50034 24.8373 2.5C24.8326 2.50034 24.8278 2.50067 24.823 2.50101V2.50135ZM24.7909 2.34856C24.744 2.35092 24.6972 2.35294 24.6502 2.35529C24.6971 2.35294 24.744 2.35092 24.7909 2.34856ZM24.754 2.50606C24.7486 2.50606 24.7431 2.50673 24.7376 2.50707C24.7441 2.50673 24.7505 2.50639 24.7567 2.50606C24.7558 2.50606 24.755 2.50606 24.754 2.50606ZM24.7376 2.50707C24.7343 2.50707 24.731 2.5074 24.7277 2.50774C24.731 2.50774 24.7343 2.5074 24.7376 2.50707ZM24.6261 2.5286C24.6015 2.53029 24.5767 2.53197 24.5514 2.53365C24.5767 2.53197 24.6016 2.53029 24.6261 2.5286ZM24.649 2.51144C24.649 2.51144 24.6494 2.51144 24.6497 2.51144C24.6494 2.51144 24.6493 2.51144 24.649 2.51144ZM24.6497 2.51144C24.6568 2.51144 24.664 2.51077 24.671 2.51043C24.664 2.51043 24.6568 2.51111 24.6497 2.51144ZM24.6799 2.3351C24.6431 2.33577 24.6068 2.33678 24.5717 2.33746C24.6074 2.33678 24.6429 2.33577 24.6799 2.3351ZM24.4459 1.49175C24.4914 1.48805 24.5369 1.48435 24.5824 1.48065C24.4844 1.48906 24.3866 1.49579 24.2886 1.50219C24.341 1.49849 24.3934 1.49512 24.4459 1.49142V1.49175ZM23.9747 2.55957C23.9728 2.55957 23.9709 2.55957 23.969 2.5599C24.1557 2.54981 24.3423 2.53534 24.529 2.5276C24.3443 2.53534 24.1594 2.54981 23.9747 2.55957ZM23.9693 2.55957C23.9693 2.55957 23.9693 2.55957 23.9691 2.55957C23.9691 2.55957 23.9691 2.55957 23.9693 2.55957ZM23.8832 2.49563H23.8833C23.8833 2.49563 23.8835 2.49563 23.8832 2.49563ZM23.8832 2.4963C23.8832 2.4963 23.8833 2.4963 23.8835 2.4963C23.8835 2.4963 23.8833 2.4963 23.8832 2.4963ZM23.7709 2.39736C23.755 2.39803 23.7391 2.39904 23.7232 2.39971C23.7788 2.39702 23.8345 2.39433 23.8901 2.39164C23.8503 2.39366 23.8106 2.39568 23.7709 2.39736ZM23.4287 2.3701C23.4226 2.37077 23.4164 2.37111 23.4103 2.37178C23.565 2.36202 23.7196 2.35361 23.8743 2.34654C23.7619 2.35092 23.6493 2.35866 23.5369 2.36438C23.6457 2.35832 23.7546 2.3526 23.8636 2.34654C23.7186 2.35428 23.5737 2.36236 23.4288 2.3701H23.4287ZM23.5081 2.58884C23.5081 2.58884 23.5084 2.58884 23.5085 2.58884C23.5084 2.58884 23.5083 2.58884 23.5081 2.58884ZM23.5207 2.57134C23.5178 2.57134 23.515 2.57134 23.5119 2.57134C23.5153 2.57134 23.5179 2.57134 23.5207 2.57134ZM23.4777 2.59187C23.4765 2.59187 23.4753 2.59187 23.4742 2.59187C23.475 2.59187 23.476 2.59187 23.4769 2.59187C23.4769 2.59187 23.4773 2.59187 23.4774 2.59187C23.4774 2.59187 23.4773 2.59187 23.4772 2.59187C23.4774 2.59187 23.4777 2.59187 23.478 2.59187C23.4777 2.59187 23.4776 2.59187 23.4774 2.59187C23.4774 2.59187 23.4776 2.59187 23.4777 2.59187ZM23.3949 2.59322C23.4066 2.59255 23.418 2.59221 23.4288 2.59154C23.418 2.59187 23.4066 2.59255 23.3949 2.59322ZM23.3961 2.60634C23.3953 2.60634 23.394 2.60601 23.3927 2.60601C23.3941 2.60601 23.3953 2.60601 23.3961 2.60634ZM23.6457 2.16549C23.6457 2.16549 23.6459 2.16549 23.646 2.16549C23.6459 2.16549 23.6457 2.16549 23.6455 2.16549C23.6455 2.16549 23.6456 2.16549 23.6457 2.16549ZM23.8759 2.34654H23.8756H23.8758H23.8755C23.8767 2.34654 23.878 2.34654 23.8792 2.34654C23.8782 2.34654 23.877 2.34654 23.8759 2.34654C23.8759 2.34654 23.8759 2.34654 23.876 2.34654H23.8759ZM24.0919 2.4825C24.0209 2.48688 23.9526 2.49125 23.888 2.49529C23.9524 2.49125 24.0209 2.48688 24.0919 2.4825ZM23.8951 2.34688C23.8962 2.34688 23.8972 2.34688 23.8983 2.34688C23.8972 2.34688 23.8963 2.34688 23.8952 2.34688C23.8958 2.34688 23.8963 2.34688 23.8968 2.34688C23.8959 2.34688 23.8951 2.34688 23.8943 2.34688C23.8946 2.34688 23.8948 2.34688 23.8951 2.34688C23.8951 2.34688 23.8951 2.34688 23.895 2.34688H23.8951ZM24.3565 2.34149C24.3803 2.34116 24.405 2.34048 24.4301 2.33981C24.405 2.34048 24.3809 2.34082 24.3565 2.34149ZM24.1904 2.12342C24.2337 2.11938 24.2768 2.11535 24.3201 2.11131C24.1825 2.12443 24.0451 2.13722 23.9081 2.15001C24.002 2.14126 24.0961 2.13217 24.1903 2.12342H24.1904ZM23.951 2.00732C23.962 2.00698 23.9731 2.00631 23.9842 2.00597C23.9731 2.00665 23.962 2.00698 23.951 2.00732ZM24.0041 2.00496C24.0161 2.00429 24.0285 2.00362 24.0408 2.00294C24.0286 2.00362 24.0163 2.00429 24.0041 2.00496ZM24.0581 2.00227C24.0752 2.00126 24.0926 2.00025 24.1102 1.99924C24.0928 2.00025 24.0753 2.00126 24.0581 2.00227ZM24.1137 1.99924C24.1137 1.99924 24.1135 1.99924 24.1133 1.99924C24.1135 1.99924 24.1136 1.99924 24.1137 1.99924ZM23.8637 2.15337C23.9176 2.14732 23.9714 2.14126 24.0253 2.1352C23.9705 2.14126 23.9155 2.14765 23.8607 2.15337C23.8617 2.15337 23.8627 2.15337 23.8637 2.15337ZM23.7131 1.53079C23.6912 1.53147 23.6702 1.5318 23.6504 1.53214C23.6702 1.5318 23.6913 1.53113 23.7131 1.53079ZM23.5003 1.57959C23.5015 1.57959 23.5027 1.57959 23.5039 1.57925C23.4974 1.57993 23.4897 1.58127 23.485 1.58228C23.4889 1.58127 23.4941 1.5806 23.5003 1.57959ZM23.4648 1.53248C23.4487 1.5318 23.441 1.53147 23.4382 1.53113C23.4411 1.53113 23.4487 1.53214 23.4648 1.53248ZM23.4366 1.53079C23.4422 1.53147 23.4479 1.53315 23.4536 1.53584C23.4479 1.53348 23.4422 1.5318 23.4366 1.53079ZM23.4184 1.52709C23.4192 1.54762 23.4201 1.56815 23.4209 1.58901C23.4201 1.56848 23.4192 1.54796 23.4184 1.52709ZM23.4799 2.01809C23.4799 2.01809 23.4806 2.01809 23.481 2.01809C23.4341 2.01842 23.3895 2.01876 23.3409 2.01943C23.3898 2.0191 23.4358 2.01842 23.4799 2.01809ZM23.3825 2.60567C23.3817 2.60567 23.3809 2.60567 23.38 2.60567C23.3817 2.60567 23.3834 2.60567 23.385 2.60567C23.3835 2.60567 23.3821 2.60567 23.3806 2.60567C23.3813 2.60567 23.3818 2.60567 23.3823 2.60567H23.3825ZM23.3254 2.63697C23.3088 2.63798 23.2918 2.63865 23.2749 2.63966C23.2919 2.63865 23.3088 2.63798 23.3254 2.63697ZM23.1763 2.02044C23.1779 2.02044 23.1795 2.02044 23.1809 2.02044C23.1752 2.02044 23.1697 2.02044 23.164 2.02044C23.1681 2.02044 23.1722 2.02044 23.1763 2.02044ZM23.0506 2.00799C23.0525 2.00799 23.0544 2.00799 23.0563 2.00799C23.0502 2.00799 23.0442 2.00799 23.0379 2.00833C23.0423 2.00833 23.0464 2.00833 23.0506 2.00799ZM22.9974 2.00934C22.9833 2.00934 22.9686 2.01001 22.9527 2.01035C22.9685 2.01035 22.9833 2.00968 22.9974 2.00934ZM22.9726 2.62654C22.9743 2.62654 22.9762 2.6262 22.9779 2.62586C22.9762 2.62586 22.9743 2.6262 22.9726 2.62654ZM22.9817 2.62553C22.9817 2.62553 22.9824 2.62553 22.9827 2.62553C22.9823 2.62553 22.982 2.62553 22.9817 2.62553C22.9835 2.62553 22.9852 2.62519 22.9869 2.62485C22.9845 2.62485 22.9823 2.62553 22.98 2.62553C22.9805 2.62553 22.9811 2.62553 22.9815 2.62553H22.9817ZM22.9868 2.62485C22.9868 2.62485 22.9869 2.62485 22.987 2.62485C22.987 2.62485 22.9869 2.62485 22.9868 2.62485ZM22.86 2.01102C22.8746 2.01102 22.8886 2.01102 22.9017 2.01102C22.8835 2.01102 22.8637 2.01136 22.8424 2.01136C22.8485 2.01136 22.8542 2.01136 22.86 2.01136V2.01102ZM22.9364 2.41486C22.951 2.41351 22.9657 2.41217 22.9804 2.41048C22.8537 2.42293 22.7326 2.43438 22.6258 2.44481C22.7202 2.43572 22.8257 2.42563 22.9364 2.41486ZM22.7702 2.45726C22.7794 2.45659 22.7889 2.45625 22.7982 2.45558C22.7847 2.45625 22.771 2.45692 22.7577 2.45793C22.7622 2.45793 22.7667 2.45726 22.7712 2.45726C22.7709 2.45726 22.7705 2.45726 22.7702 2.45726ZM22.7868 2.44716C22.7868 2.44716 22.7868 2.44716 22.7871 2.44716C22.7871 2.44716 22.7869 2.44716 22.7868 2.44716ZM22.8392 2.45356C22.8357 2.45356 22.832 2.4539 22.8284 2.45423C22.832 2.45423 22.8357 2.4539 22.8392 2.45356ZM22.7566 2.45827C22.7485 2.45861 22.7404 2.45928 22.7324 2.45962C22.7416 2.45894 22.7509 2.45861 22.7602 2.45793C22.759 2.45793 22.7578 2.45793 22.7565 2.45793L22.7566 2.45827ZM22.7683 2.66625C22.8251 2.66355 22.8802 2.66052 22.9337 2.65783C22.8784 2.66052 22.8247 2.66322 22.7683 2.66625ZM22.8516 2.45322C22.8678 2.45255 22.884 2.45154 22.9007 2.45087C22.884 2.45154 22.8677 2.45255 22.8516 2.45322ZM22.9301 2.63394C22.9301 2.63394 22.9302 2.63394 22.9304 2.63394C22.9304 2.63394 22.9302 2.63394 22.9301 2.63394ZM22.9308 2.63394C22.9308 2.63394 22.9319 2.6336 22.9327 2.63327C22.9321 2.63327 22.9314 2.6336 22.9308 2.63394ZM22.9334 2.63327C22.9345 2.63327 22.9358 2.63259 22.9371 2.63226C22.9359 2.63226 22.9346 2.63293 22.9334 2.63327ZM22.6847 2.04636C22.6847 2.04636 22.6846 2.04636 22.6844 2.04636C22.6844 2.04636 22.6846 2.04636 22.6847 2.04636ZM22.6581 2.04636C22.6667 2.04636 22.6754 2.04636 22.6843 2.04636C22.6843 2.04636 22.6843 2.04636 22.6844 2.04636C22.6844 2.04636 22.6844 2.04636 22.6843 2.04636C22.6717 2.04636 22.6595 2.04636 22.6475 2.04669C22.6509 2.04669 22.6545 2.04669 22.6579 2.04669L22.6581 2.04636ZM22.3376 2.04232C22.3171 2.04232 22.2965 2.04232 22.276 2.04198C22.2965 2.04198 22.3171 2.04198 22.3376 2.04232ZM22.2731 1.55401C22.2747 1.55401 22.2761 1.55368 22.2776 1.55334C22.2522 1.55704 22.2252 1.55839 22.1548 1.56108C22.2207 1.55872 22.2536 1.55637 22.2731 1.55368V1.55401ZM22.1012 2.04097C22.1589 2.04097 22.2167 2.04097 22.2744 2.04165C22.2167 2.04097 22.1589 2.04064 22.1012 2.04097ZM22.1012 2.04097C22.1012 2.04097 22.1004 2.04097 22.1 2.04097C22.1004 2.04097 22.1008 2.04097 22.1012 2.04097ZM21.9382 1.52675C21.9637 1.52978 21.9735 1.52911 22 1.53786C21.9618 1.52574 21.9369 1.52709 21.8977 1.52373C21.9129 1.52473 21.9264 1.52541 21.9382 1.52675ZM21.8292 1.99285C21.8292 1.99285 21.8287 1.99285 21.8284 1.99285C21.8333 1.99285 21.8382 1.99285 21.843 1.99319C21.8369 1.99319 21.8305 1.99319 21.8239 1.99285C21.8256 1.99285 21.8273 1.99285 21.8292 1.99285ZM21.7793 2.0753C21.7793 2.0753 21.7794 2.0753 21.7795 2.0753C21.7795 2.0753 21.7794 2.0753 21.7793 2.0753ZM21.7842 2.04299C21.8223 2.04299 21.8606 2.04299 21.8987 2.04299C21.8605 2.04299 21.8222 2.04299 21.7838 2.04299C21.7838 2.04299 21.7839 2.04299 21.784 2.04299H21.7842ZM21.8275 3.17945H21.8287C21.8287 3.17945 21.8279 3.17945 21.8275 3.17945ZM21.8959 2.71201C22.0041 2.70293 22.1122 2.69384 22.2203 2.68442C22.1122 2.6935 22.004 2.70293 21.8959 2.71201ZM22.2339 2.48654C22.2309 2.48654 22.2278 2.48654 22.2249 2.48654C22.233 2.48654 22.2413 2.48654 22.2498 2.48654C22.2444 2.48654 22.2392 2.48654 22.2339 2.48654ZM22.2689 2.48654C22.2663 2.48654 22.2638 2.48654 22.2613 2.48654C22.2679 2.48654 22.2744 2.48654 22.2813 2.48654C22.2771 2.48654 22.273 2.48654 22.2689 2.48654ZM22.2903 2.6787C22.2903 2.6787 22.2906 2.6787 22.2908 2.6787C22.2907 2.6787 22.2906 2.6787 22.2903 2.6787ZM22.2859 2.4862C22.2893 2.4862 22.2924 2.4862 22.2956 2.4862C22.2923 2.4862 22.2891 2.4862 22.2859 2.4862ZM22.2943 2.4862C22.3012 2.4862 22.3082 2.48587 22.3152 2.48553C22.3081 2.48553 22.3012 2.48587 22.2943 2.4862ZM22.3208 3.16196C22.3127 3.16229 22.3045 3.16263 22.2964 3.1633C22.3054 3.16296 22.3144 3.16229 22.3234 3.16196C22.3225 3.16196 22.3217 3.16196 22.3208 3.16196ZM22.2879 2.05073C22.2877 2.05073 22.2874 2.05073 22.2873 2.05073C22.2875 2.05073 22.2878 2.05073 22.2881 2.05073C22.3119 2.05073 22.3359 2.05073 22.3597 2.0504C22.3357 2.0504 22.3119 2.0504 22.2879 2.05073ZM22.3829 3.15859C22.2773 3.1808 22.4086 3.12494 22.4637 3.1246C22.4397 3.14176 22.3842 3.09499 22.3829 3.15859ZM22.5128 2.07328C22.5205 2.07328 22.528 2.07395 22.5356 2.07429C22.528 2.07395 22.5206 2.07362 22.5128 2.07328ZM22.3379 2.04232C22.4046 2.04299 22.4715 2.044 22.5381 2.04467C22.4714 2.044 22.4046 2.04299 22.3379 2.04232ZM22.5131 2.01775C22.479 2.02145 22.4621 2.02482 22.4437 2.02785C22.4621 2.02516 22.4792 2.02179 22.5131 2.01775C22.5127 2.01775 22.5123 2.01775 22.5119 2.01775C22.5331 2.01775 22.5539 2.01843 22.5745 2.01843C22.5544 2.01843 22.534 2.01775 22.5131 2.01775ZM22.6115 2.06991C22.6097 2.06991 22.6082 2.06991 22.6064 2.06991C22.6075 2.06991 22.6085 2.06991 22.6096 2.06991C22.5941 2.07025 22.5786 2.07092 22.5633 2.07126C22.5793 2.07059 22.5954 2.07025 22.6115 2.06958V2.06991ZM22.6978 3.10979C22.653 3.11215 22.6091 3.11484 22.5655 3.11753C22.6091 3.11484 22.6529 3.11215 22.6978 3.10979ZM22.6981 3.14075C23.5634 3.09768 24.0179 3.07076 24.4436 3.02633C24.018 3.07076 23.5634 3.09768 22.6981 3.14075ZM23.9615 2.57067C24.1961 2.5562 24.4205 2.54207 24.619 2.5286C24.4205 2.54207 24.1961 2.55586 23.9615 2.57067ZM24.7919 2.50337C24.7876 2.50337 24.7832 2.50404 24.7787 2.50437C24.7849 2.50404 24.7911 2.50337 24.7972 2.50303C24.7954 2.50303 24.7936 2.50303 24.7918 2.50337H24.7919ZM24.8334 3.00177C24.8534 3.00042 24.8726 2.99941 24.891 2.9984C24.8726 2.99941 24.8535 3.00042 24.8334 3.00177ZM25.2811 2.98427C25.2771 2.98427 25.2729 2.98427 25.2687 2.98427C25.273 2.98427 25.2773 2.98427 25.2814 2.98427C25.2814 2.98427 25.2813 2.98427 25.2811 2.98427ZM25.3881 1.9104C25.3881 1.9104 25.3888 1.9104 25.389 1.9104C25.3888 1.9104 25.3884 1.9104 25.3881 1.9104ZM25.3949 2.51582C25.3941 2.51582 25.3933 2.51582 25.3924 2.51582C25.3938 2.51582 25.3954 2.51582 25.3969 2.51582C25.3962 2.51582 25.3955 2.51582 25.3949 2.51582ZM25.5484 1.43656H25.5493C25.5481 1.43656 25.5468 1.43656 25.5456 1.43656C25.5465 1.43656 25.5474 1.43656 25.5482 1.43656H25.5484ZM25.5632 1.90771C25.5514 1.90771 25.5387 1.90804 25.5256 1.90838C25.5387 1.90838 25.5514 1.90804 25.5632 1.90771ZM25.4684 1.90872C25.4814 1.90872 25.4933 1.90804 25.5053 1.90804C25.4937 1.90804 25.4814 1.90838 25.4684 1.90872ZM25.5211 1.90838C25.5358 1.90838 25.5502 1.90804 25.5633 1.90771C25.5501 1.90771 25.5358 1.90804 25.5211 1.90838ZM37.8454 1.58901C37.8434 1.58901 37.8413 1.58901 37.8393 1.58901C37.8413 1.58901 37.8433 1.58901 37.8454 1.58901ZM37.3734 2.05881C37.4107 2.05881 37.4461 2.05881 37.3877 2.05881C37.3946 2.05881 37.4015 2.05881 37.4083 2.05881C37.3967 2.05881 37.3851 2.05881 37.3733 2.05881H37.3734ZM37.049 1.61089C37.1817 1.60584 37.3144 1.6018 37.4471 1.5981C37.3144 1.60146 37.1817 1.6055 37.049 1.61089ZM37.0173 2.06823C37.0232 2.06823 37.029 2.0679 37.0349 2.06756C37.0189 2.06823 37.0029 2.0689 36.9867 2.06958C36.9971 2.06924 37.0073 2.0689 37.0175 2.06823H37.0173ZM37.0074 2.05376C37.0074 2.05376 37.0077 2.05376 37.0078 2.05376H37.0074ZM37.0087 2.05342C37.0087 2.05342 37.009 2.05342 37.0091 2.05342C37.009 2.05342 37.0089 2.05342 37.0087 2.05342ZM37.0111 2.05309C37.0111 2.05309 37.0118 2.05309 37.0122 2.05309C37.0118 2.05309 37.0114 2.05309 37.0111 2.05309ZM37.0148 2.05275C37.0163 2.05275 37.018 2.05275 37.02 2.05241C37.018 2.05241 37.0164 2.05275 37.0148 2.05275ZM37.0255 2.05174C37.0274 2.05174 37.0297 2.05174 37.0318 2.05141C37.0295 2.05141 37.0274 2.0514 37.0255 2.05174ZM36.9609 1.61291C36.9616 1.61291 36.9622 1.61291 36.9629 1.61291C36.9617 1.61291 36.9605 1.61291 36.9593 1.61291C36.9616 1.61291 36.9637 1.61291 36.9658 1.61291C36.9648 1.61291 36.9638 1.61291 36.9628 1.61291C36.992 1.61223 37.0213 1.6119 37.0507 1.61156C37.0234 1.6119 36.9963 1.61223 36.969 1.61291C36.9961 1.61223 37.0234 1.6119 37.0507 1.61156C37.0206 1.6119 36.9907 1.61257 36.9608 1.61291H36.9609ZM36.9824 2.07025C36.9734 2.07059 36.9644 2.07092 36.9552 2.07126C36.9644 2.07126 36.9734 2.07059 36.9824 2.07025ZM37.0054 1.59675C37.0108 1.59675 37.016 1.59675 37.0214 1.59675C37.016 1.59675 37.0107 1.59675 37.0054 1.59675ZM37.0312 1.59608C37.0286 1.59608 37.0261 1.59608 37.0236 1.59608C37.0261 1.59608 37.0287 1.59608 37.0312 1.59608ZM37.0487 1.61122C37.0487 1.61122 37.0487 1.61122 37.0486 1.61122C37.0486 1.61122 37.0486 1.61122 37.0487 1.61122ZM37.1997 1.56714C37.2078 1.56714 37.2158 1.5668 37.2241 1.56646C37.2158 1.56646 37.2079 1.5668 37.1997 1.56714ZM37.2324 1.56646C37.2675 1.56579 37.3034 1.56478 37.3389 1.56445C37.3022 1.56512 37.2659 1.56579 37.23 1.5668C37.2308 1.5668 37.2316 1.5668 37.2324 1.5668V1.56646ZM37.226 1.09532C37.226 1.09532 37.2266 1.09532 37.227 1.09532C36.92 1.12527 36.6089 1.07311 36.4062 1.16027C36.6091 1.07311 36.9189 1.12527 37.2262 1.09532H37.226ZM36.9418 2.0716C36.935 2.0716 36.9281 2.07193 36.9209 2.07227C36.9279 2.07227 36.935 2.07193 36.9418 2.0716ZM36.8118 2.07496C36.8224 2.07496 36.8329 2.07463 36.8431 2.07429C36.8329 2.07429 36.8225 2.07463 36.8118 2.07496ZM36.7828 2.0753C36.7817 2.0753 36.7808 2.0753 36.7798 2.0753C36.7815 2.0753 36.7832 2.0753 36.7849 2.0753C36.7843 2.0753 36.7836 2.0753 36.7828 2.0753ZM36.7881 1.58497C36.7823 1.58531 36.7767 1.58565 36.7709 1.58598C36.7766 1.58565 36.7823 1.58531 36.788 1.58497H36.7877C36.8023 1.5843 36.8171 1.58363 36.8323 1.58262C36.8172 1.58329 36.8025 1.58396 36.788 1.58497H36.7881ZM36.804 2.07496C36.8069 2.07496 36.8099 2.07496 36.8129 2.07496C36.8062 2.07496 36.7995 2.07496 36.7927 2.07496C36.7966 2.07496 36.8003 2.07496 36.8041 2.07496H36.804ZM36.7384 2.0891C36.7255 2.0891 36.7126 2.0891 36.7002 2.0891C36.7127 2.0891 36.7255 2.0891 36.7384 2.0891ZM36.6227 1.59137C36.617 1.5917 36.6114 1.59204 36.6057 1.59238C36.6113 1.59204 36.617 1.5917 36.6227 1.59137ZM36.4785 1.6018C36.4565 1.60348 36.4349 1.6055 36.4137 1.60718C36.4349 1.60517 36.4569 1.60348 36.4785 1.6018ZM36.4136 1.60718C36.4136 1.60718 36.4132 1.60718 36.4129 1.60718C36.4132 1.60718 36.4133 1.60718 36.4136 1.60718ZM36.2572 2.09313C36.26 2.09313 36.2626 2.09313 36.2654 2.09313C36.2567 2.09313 36.2478 2.09313 36.239 2.09347C36.2451 2.09347 36.2512 2.09347 36.2573 2.09347L36.2572 2.09313ZM36.1563 1.17609C36.1539 1.17609 36.1514 1.17643 36.149 1.17676C36.1514 1.17676 36.1538 1.17643 36.1563 1.17609ZM35.9617 2.06049C35.9617 2.06049 35.9629 2.06049 35.9635 2.06049C35.9566 2.06049 35.9494 2.06049 35.9421 2.06083C35.9486 2.06083 35.955 2.06083 35.9612 2.06049H35.9609C35.9609 2.06049 35.9616 2.06049 35.962 2.06049C35.9617 2.06049 35.9615 2.06049 35.9613 2.06049H35.9617ZM35.96 2.06049C35.9465 2.06049 35.9321 2.06116 35.9171 2.0615C35.9321 2.06116 35.9465 2.06083 35.96 2.06049ZM35.2771 2.0504C35.2787 2.0504 35.2805 2.0504 35.2822 2.05006C35.2805 2.05006 35.2787 2.05006 35.2769 2.0504H35.2771ZM35.2735 2.05073C35.2719 2.05073 35.2703 2.05073 35.2689 2.05107C35.2703 2.05107 35.2719 2.05107 35.2735 2.05073ZM35.2686 2.05141C35.2686 2.05141 35.2681 2.05141 35.2678 2.05141C35.2681 2.05141 35.2683 2.05141 35.2686 2.05141ZM35.2658 2.05141C35.2642 2.05141 35.2628 2.05174 35.2613 2.05208C35.2628 2.05208 35.2642 2.05174 35.2658 2.05141ZM35.3136 1.67483C35.3136 1.67483 35.3128 1.67483 35.3124 1.67483C35.3148 1.67483 35.3173 1.67483 35.32 1.67449C35.3179 1.67449 35.3157 1.67449 35.3138 1.67483H35.3136ZM35.2875 2.04939C35.2912 2.04939 35.2949 2.04871 35.2989 2.04838C35.2959 2.04838 35.2931 2.04871 35.2902 2.04905C35.303 2.04804 35.3148 2.04737 35.3294 2.04636C35.3139 2.04737 35.3013 2.04804 35.2874 2.04905C35.2874 2.04905 35.2874 2.04905 35.2875 2.04905V2.04939ZM35.3012 1.70276C35.3021 1.70276 35.303 1.70276 35.3041 1.70276C35.3032 1.70276 35.3022 1.70276 35.3012 1.70276ZM35.51 1.6092C35.509 1.6092 35.508 1.6092 35.507 1.60954C35.5074 1.60954 35.5076 1.60954 35.508 1.60954C35.5047 1.60988 35.5015 1.61055 35.4982 1.61089C35.505 1.60988 35.5117 1.6092 35.5185 1.60819C35.5156 1.60853 35.5127 1.60887 35.5098 1.60954C35.5098 1.60954 35.5099 1.60954 35.51 1.60954V1.6092ZM35.5229 1.60752C35.5229 1.60752 35.5223 1.60752 35.5221 1.60752C35.5292 1.60651 35.5362 1.6055 35.543 1.60449C35.5365 1.6055 35.5299 1.60651 35.5231 1.60718C35.5231 1.60718 35.5233 1.60718 35.5234 1.60718C35.5233 1.60718 35.523 1.60718 35.5229 1.60718V1.60752ZM35.4954 1.61122C35.4911 1.6119 35.4866 1.61257 35.4821 1.61291C35.4866 1.61223 35.4909 1.61156 35.4954 1.61122ZM35.4679 2.13083H35.4678C35.4678 2.13083 35.4678 2.13083 35.4679 2.13083ZM35.4708 1.66137C35.4708 1.66137 35.4691 1.66137 35.468 1.66137C35.4692 1.66137 35.4702 1.66137 35.4708 1.66137ZM35.468 2.13083C35.4696 2.13083 35.4712 2.13083 35.4729 2.13083C35.4713 2.13083 35.4698 2.13083 35.468 2.13083ZM35.4728 1.61425C35.4728 1.61425 35.472 1.61425 35.4716 1.61425C35.4766 1.61358 35.4817 1.61291 35.4866 1.61223C35.4819 1.61291 35.4774 1.61358 35.4728 1.61392V1.61425ZM35.4745 1.6055C35.4539 1.60786 35.4333 1.61021 35.4127 1.61223C35.4376 1.60988 35.4623 1.60685 35.4872 1.60416C35.483 1.60449 35.4788 1.60517 35.4745 1.6055ZM35.4623 1.66103C35.461 1.66103 35.4596 1.66103 35.458 1.66103C35.4596 1.66103 35.4612 1.66103 35.4623 1.66103ZM35.4498 1.66103C35.4486 1.66103 35.4475 1.66103 35.4463 1.66103C35.4476 1.66103 35.4486 1.66103 35.4498 1.66103ZM35.4457 1.61795C35.4343 1.61964 35.4227 1.62098 35.411 1.62233C35.4227 1.62098 35.4344 1.61964 35.4457 1.61795ZM35.4446 2.03963C35.4446 2.03963 35.4445 2.03963 35.4443 2.03963C35.4443 2.03963 35.4445 2.03963 35.4446 2.03963ZM35.3568 1.69973C35.361 1.69973 35.3653 1.69939 35.3695 1.69906C35.3641 1.69906 35.3584 1.69973 35.3528 1.70007C35.3541 1.70007 35.3555 1.70007 35.3568 1.70007V1.69973ZM35.3843 2.04333C35.3878 2.04333 35.391 2.04299 35.3945 2.04266C35.3849 2.04333 35.3757 2.04366 35.3669 2.04434C35.3724 2.044 35.3784 2.04366 35.3842 2.04333H35.3843ZM35.4417 1.66069C35.4417 1.66069 35.4408 1.66069 35.4402 1.66069C35.4408 1.66069 35.4412 1.66069 35.4417 1.66069ZM35.4841 2.11232C35.593 2.11164 35.7022 2.11232 35.8113 2.11299C35.7022 2.11232 35.5929 2.11164 35.4839 2.11232C35.4839 2.11232 35.4839 2.11232 35.4841 2.11232ZM35.5754 1.67617C35.5843 1.6755 35.5936 1.67449 35.6023 1.67516C35.5936 1.67449 35.5844 1.67516 35.5754 1.67617ZM35.5483 1.59709C35.5483 1.59709 35.5482 1.59709 35.548 1.59709C35.593 1.5917 35.6382 1.58598 35.6832 1.57993C35.6382 1.58598 35.5932 1.5917 35.5483 1.59709ZM35.6733 1.10946C35.5764 1.12258 35.4766 1.13436 35.3737 1.14412C35.4766 1.13436 35.5762 1.12292 35.6733 1.10946ZM35.3383 1.61863C35.3318 1.6193 35.3253 1.61964 35.3188 1.62031C35.3271 1.61964 35.3355 1.61863 35.3437 1.61795C35.3418 1.61795 35.34 1.61829 35.3383 1.61829V1.61863ZM35.1321 1.65565C35.1321 1.65565 35.1321 1.65565 35.1319 1.65565C35.1319 1.65565 35.1319 1.65565 35.1321 1.65565ZM35.131 1.65565C35.053 1.6617 34.9749 1.66675 34.8969 1.67113C34.9749 1.66675 35.053 1.66204 35.131 1.65565ZM35.1062 2.09246C35.1107 2.09246 35.1154 2.09246 35.1201 2.0928C35.1058 2.09145 35.0918 2.09448 35.0776 2.09616C35.0872 2.09482 35.0967 2.09347 35.1064 2.09246H35.1062ZM35.079 1.73742C35.0802 1.73742 35.0812 1.73675 35.0825 1.73641C35.0812 1.73641 35.08 1.73709 35.079 1.73742ZM35.0827 1.73641C35.0827 1.73641 35.0835 1.73641 35.0837 1.73641C35.0833 1.73641 35.0829 1.73641 35.0827 1.73641ZM35.0849 1.73574C35.0865 1.7354 35.0884 1.73507 35.0901 1.73473C35.0882 1.73507 35.0865 1.7354 35.0849 1.73574ZM35.0605 1.92655C35.0567 1.92655 35.0529 1.92689 35.0489 1.92723C35.0578 1.92655 35.0666 1.92622 35.0758 1.92554C35.0758 1.92554 35.0758 1.92554 35.0756 1.92554C35.0706 1.92554 35.0656 1.92622 35.0605 1.92655ZM35.0507 1.91208C35.0507 1.91208 35.0509 1.91208 35.051 1.91208H35.0507ZM35.068 1.74348C35.068 1.74348 35.0682 1.74281 35.0685 1.74247C35.0682 1.74281 35.068 1.74314 35.068 1.74348ZM35.0685 1.74247C35.0685 1.74247 35.0686 1.74247 35.0688 1.74247C35.0688 1.74247 35.0686 1.74247 35.0685 1.74247ZM35.0689 1.74213C35.0689 1.74213 35.0696 1.74146 35.07 1.74112C35.0696 1.74112 35.0692 1.7418 35.0689 1.74213ZM35.0706 1.74079C35.0706 1.74079 35.0721 1.74011 35.0727 1.73978C35.0719 1.74011 35.0711 1.74045 35.0706 1.74079ZM35.0734 1.73944C35.0747 1.7391 35.0758 1.73843 35.0772 1.7381C35.0758 1.73843 35.0745 1.7391 35.0734 1.73944ZM34.9906 1.93564C34.9616 1.939 34.9326 1.94237 34.9037 1.9454C34.9328 1.94237 34.9618 1.93867 34.9906 1.93564ZM34.9428 1.73877C34.9384 1.73877 34.9338 1.73944 34.9294 1.73978C34.9475 1.73843 34.9653 1.73742 34.9829 1.73608C34.9697 1.73709 34.9563 1.73776 34.943 1.73877H34.9428ZM34.906 1.74112C34.8918 1.74213 34.8774 1.74314 34.863 1.74415C34.8775 1.74314 34.8917 1.74213 34.906 1.74112ZM34.8283 1.7418C34.8283 1.7418 34.8271 1.7418 34.8265 1.7418C34.8261 1.7418 34.8259 1.7418 34.8255 1.7418C34.8264 1.7418 34.8273 1.7418 34.8283 1.7418ZM34.8395 1.95045C34.7211 1.95886 34.6038 1.96996 34.4877 1.98242C34.6037 1.96996 34.7211 1.9592 34.8395 1.95045ZM34.2044 2.21092C34.1848 2.21328 34.1653 2.2153 34.1457 2.21765C34.2564 2.20486 34.3675 2.1914 34.4786 2.17828C34.3874 2.18905 34.2954 2.20015 34.2044 2.21092ZM34.3583 2.23818C34.3442 2.23953 34.3303 2.24054 34.3164 2.24188C34.3303 2.24054 34.3444 2.23919 34.3583 2.23818ZM33.8942 2.03895C34.0835 2.02717 34.2756 2.0053 34.4711 1.98444C34.2756 2.0053 34.0836 2.02684 33.8942 2.03895ZM33.7721 2.27183C33.7565 2.27251 33.7407 2.27284 33.7253 2.27351C33.7407 2.27318 33.7564 2.27251 33.7721 2.27183ZM34.5488 1.75694C34.5523 1.7566 34.5556 1.75627 34.5589 1.75593C34.5035 1.76165 34.4486 1.76737 34.3947 1.77309C34.4453 1.76771 34.4968 1.76266 34.5487 1.75728L34.5488 1.75694ZM34.5074 1.97198C34.4685 1.97602 34.4304 1.9804 34.3932 1.9841C34.4306 1.9804 34.4685 1.97602 34.5074 1.97198ZM34.2877 1.75425C34.164 1.77242 34.0414 1.77242 33.9177 1.76771C34.0966 1.77915 34.2731 1.75795 34.4523 1.73608C34.3967 1.74247 34.3419 1.74886 34.2877 1.75459V1.75425ZM34.1665 2.00732C34.1665 2.00732 34.1658 2.00732 34.1657 2.00732C34.1767 2.00597 34.1876 2.00496 34.1984 2.00362C34.1892 2.00463 34.18 2.00564 34.1706 2.00665C34.1825 2.0053 34.1942 2.00395 34.206 2.00261C34.1927 2.00395 34.1795 2.00564 34.1661 2.00698C34.1676 2.00698 34.169 2.00698 34.1706 2.00665C34.1693 2.00665 34.1678 2.00665 34.1665 2.00698V2.00732ZM34.4175 2.17592C34.3862 2.17962 34.355 2.18332 34.3237 2.18703C34.3548 2.18332 34.3861 2.17962 34.4175 2.17592ZM34.458 2.17121C34.4749 2.16919 34.4916 2.16717 34.5084 2.16515C34.4918 2.16717 34.4748 2.16919 34.458 2.17121ZM34.5606 1.77175C34.5653 1.77108 34.57 1.77074 34.5747 1.77007C34.57 1.77074 34.5653 1.77141 34.5606 1.77175ZM34.6366 1.71656C34.6075 1.71891 34.5786 1.72194 34.5499 1.72497C34.5786 1.72194 34.6076 1.71925 34.6369 1.71656H34.6366ZM34.6464 1.64925C34.6427 1.64925 34.639 1.64959 34.6353 1.64992C34.639 1.64992 34.6429 1.64959 34.6464 1.64925ZM34.4267 1.1845C34.5135 1.18383 34.5863 1.18114 34.6425 1.17845C34.578 1.18147 34.4647 1.18484 34.3751 1.18484C34.3924 1.18484 34.4098 1.18484 34.4267 1.1845ZM34.2872 1.6856C34.2872 1.6856 34.2883 1.6856 34.2889 1.6856C34.2883 1.6856 34.2877 1.6856 34.2872 1.6856ZM34.2731 1.68694C34.2687 1.68694 34.2637 1.68762 34.258 1.68795C34.2637 1.68795 34.2687 1.68728 34.2731 1.68694ZM34.2352 1.68896C34.2395 1.68896 34.2435 1.68896 34.2472 1.68863C34.2435 1.68863 34.2395 1.68896 34.2352 1.68896ZM33.95 1.17441C33.9566 1.19022 33.9763 1.17609 33.9879 1.18114C33.9763 1.17609 33.9565 1.19022 33.95 1.17441ZM33.9479 1.63983H33.9481C33.9477 1.63983 33.9473 1.63983 33.9469 1.63983C33.9472 1.63983 33.9475 1.63983 33.9479 1.63983ZM33.885 1.63815C33.9047 1.63848 33.925 1.63916 33.9459 1.63983C33.925 1.63916 33.9047 1.63882 33.885 1.63815ZM33.7061 1.68358C33.7051 1.68358 33.7042 1.68358 33.7033 1.68358C33.7043 1.68358 33.7053 1.68358 33.7063 1.68358C33.7063 1.68358 33.7063 1.68358 33.7062 1.68358H33.7061ZM33.6976 1.68358C33.696 1.68358 33.6945 1.68358 33.6929 1.68358H33.6976ZM33.3821 2.04636C33.3821 2.04636 33.3828 2.04636 33.3832 2.04636C33.3828 2.04636 33.3823 2.04636 33.3819 2.04636C33.3819 2.04636 33.3821 2.04636 33.3823 2.04636H33.3821ZM33.3828 2.04636C33.4608 2.04467 33.5388 2.04198 33.6168 2.03895C33.5388 2.04232 33.4608 2.04467 33.3828 2.04636ZM33.422 1.62872C33.4237 1.62872 33.4256 1.62872 33.4273 1.62872C33.4219 1.62872 33.4167 1.62872 33.4115 1.62872C33.415 1.62872 33.4185 1.62872 33.4221 1.62872H33.422ZM33.5029 1.6294C33.5091 1.6294 33.5152 1.6294 33.5216 1.6294C33.5152 1.6294 33.509 1.6294 33.5029 1.6294ZM33.6661 1.16128C33.6459 1.16095 33.6266 1.16061 33.6078 1.15994C33.6265 1.16027 33.6459 1.16061 33.6661 1.16128ZM33.3938 1.62771C33.3959 1.62771 33.3982 1.62771 33.4004 1.62771C33.3946 1.62771 33.3889 1.62771 33.3833 1.62771C33.3868 1.62771 33.3903 1.62771 33.3938 1.62771ZM33.3424 1.62738C33.3474 1.62738 33.3526 1.62738 33.3578 1.62738C33.3507 1.62738 33.344 1.62738 33.3375 1.62738C33.3391 1.62738 33.3407 1.62738 33.3423 1.62738H33.3424ZM33.3207 1.15623C33.3223 1.15623 33.324 1.15623 33.3257 1.15623H33.317C33.3183 1.15623 33.3194 1.15623 33.3207 1.15623ZM33.0003 1.64622C33.0027 1.64622 33.005 1.64622 33.0072 1.64622C33.0021 1.64622 32.9969 1.64656 32.9916 1.64656C32.9945 1.64656 32.9976 1.64656 33.0003 1.64656V1.64622ZM32.9442 2.21092C32.9418 2.21092 32.9392 2.21126 32.9364 2.21159C32.9392 2.21159 32.9418 2.21092 32.9442 2.21092ZM32.9636 2.20856C32.9636 2.20856 32.9637 2.20856 32.9635 2.20856C32.9635 2.20856 32.9635 2.20856 32.9636 2.20856ZM32.9602 2.20924C32.9602 2.20924 32.9595 2.20924 32.9591 2.20924C32.9595 2.20924 32.9598 2.20924 32.9602 2.20924ZM32.9558 2.20991C32.9549 2.20991 32.9538 2.20991 32.9528 2.21025C32.9538 2.21025 32.9549 2.21025 32.9558 2.20991ZM32.9505 2.21058C32.9487 2.21058 32.9466 2.21092 32.9443 2.21126C32.9466 2.21126 32.9486 2.21092 32.9505 2.21058ZM32.6816 2.24861C32.6698 2.24861 32.6584 2.24828 32.6473 2.24794C32.6584 2.24794 32.6698 2.24828 32.6816 2.24861ZM32.6025 1.64858C32.6277 1.64858 32.6531 1.64858 32.6777 1.64858C32.654 1.64858 32.629 1.64858 32.6025 1.64858ZM32.4729 1.64858C32.4729 1.64858 32.4722 1.64858 32.4718 1.64858C32.4726 1.64858 32.4734 1.64858 32.4742 1.64858C32.4738 1.64858 32.4733 1.64858 32.4729 1.64858ZM32.4711 1.64858C32.4604 1.64858 32.45 1.64858 32.4394 1.64858C32.447 1.64858 32.4549 1.64858 32.4627 1.64858C32.4566 1.64858 32.4505 1.64858 32.4445 1.64858C32.4533 1.64858 32.4621 1.64858 32.4711 1.64858ZM32.4533 2.2126C32.455 2.2126 32.4562 2.2126 32.4576 2.21294C32.4564 2.21294 32.455 2.21294 32.4531 2.2126C32.4531 2.2126 32.4531 2.2126 32.4533 2.2126ZM32.453 2.2126C32.453 2.2126 32.4526 2.2126 32.4525 2.2126C32.4527 2.2126 32.453 2.2126 32.4531 2.2126C32.4531 2.2126 32.4531 2.2126 32.453 2.2126ZM32.4588 2.21328C32.4588 2.21328 32.4599 2.21328 32.4603 2.21328C32.4598 2.21328 32.459 2.21328 32.4579 2.21328C32.4582 2.21328 32.4586 2.21328 32.4588 2.21328ZM32.4608 2.21328C32.4608 2.21328 32.4616 2.21328 32.4617 2.21328C32.4617 2.21328 32.4612 2.21328 32.4607 2.21328H32.4608ZM32.4605 2.21328C32.4605 2.21328 32.4605 2.21328 32.4607 2.21328C32.4607 2.21328 32.4607 2.21328 32.4605 2.21328ZM32.4726 2.24457C32.4974 2.24491 32.5225 2.24558 32.5484 2.24592C32.5101 2.24525 32.4762 2.24457 32.4455 2.2439C32.4542 2.2439 32.4633 2.24424 32.4726 2.24457ZM32.4967 1.64858C32.5007 1.64858 32.5049 1.64858 32.5092 1.64858C32.505 1.64858 32.5008 1.64858 32.4967 1.64858ZM32.5195 1.64858C32.5195 1.64858 32.5201 1.64858 32.5205 1.64858C32.5201 1.64858 32.5199 1.64858 32.5195 1.64858ZM32.5665 1.64858C32.5777 1.64858 32.5891 1.64858 32.6 1.64858C32.589 1.64858 32.5776 1.64858 32.5665 1.64858ZM32.6307 1.58834C32.6307 1.58834 32.6318 1.58834 32.6323 1.58834C32.6318 1.58834 32.6313 1.58834 32.6307 1.58834ZM32.3626 1.10643C32.4473 1.10845 32.522 1.11047 32.5844 1.11383C32.5211 1.11047 32.4412 1.10811 32.3561 1.10643C32.3582 1.10643 32.3604 1.10643 32.3626 1.10643ZM32.4007 1.73439C32.3979 1.73439 32.3953 1.73439 32.3925 1.73439C32.3962 1.73439 32.3998 1.73439 32.4035 1.73439C32.4025 1.73439 32.4016 1.73439 32.4007 1.73439ZM32.3914 2.22337C32.3914 2.22337 32.3912 2.22371 32.3912 2.22405C32.3912 2.22405 32.3914 2.22371 32.3914 2.22337ZM32.2839 1.62233C32.2918 1.62199 32.2998 1.62166 32.3079 1.62132C32.2889 1.62233 32.2701 1.623 32.2513 1.62401C32.2622 1.62367 32.273 1.623 32.2839 1.62267V1.62233ZM32.2607 1.57757C32.2607 1.57757 32.2611 1.57757 32.2612 1.57757C32.2611 1.57757 32.2608 1.57757 32.2607 1.57757ZM32.3276 1.73507C32.34 1.73507 32.3526 1.73507 32.3651 1.73507C32.3522 1.73507 32.3394 1.73507 32.3267 1.73507C32.3269 1.73507 32.3273 1.73507 32.3276 1.73507ZM31.9265 1.11282C32.0727 1.10609 32.1708 1.1071 32.3045 1.10643C32.0666 1.10542 31.8024 1.1145 31.5604 1.13335C31.6792 1.12494 31.8021 1.11619 31.9265 1.11282ZM32.1667 2.28967H32.1668C32.1668 2.28967 32.1668 2.28967 32.1667 2.28967ZM32.1667 2.28967C32.1667 2.28967 32.1658 2.28967 32.1648 2.29001C32.1658 2.29001 32.1662 2.29 32.1667 2.28967ZM32.1125 1.57858C32.1255 1.57858 32.1386 1.57858 32.1517 1.57858C32.1387 1.57858 32.1256 1.57858 32.1125 1.57858ZM32.1509 1.57824H32.1532C32.1524 1.57824 32.1517 1.57824 32.1509 1.57824ZM31.6717 2.044H31.6744C31.6537 2.044 31.633 2.044 31.6122 2.04434C31.6321 2.04434 31.6518 2.04434 31.6717 2.044ZM31.6493 2.04366C31.6511 2.04366 31.6531 2.04366 31.6552 2.04366C31.6531 2.04366 31.6513 2.04366 31.6493 2.04366ZM31.6288 2.04434C31.6472 2.04434 31.6654 2.04434 31.6838 2.04434C31.6821 2.04434 31.6804 2.04434 31.6787 2.04434C31.6825 2.04434 31.6865 2.04434 31.6903 2.04434C31.6698 2.04434 31.6493 2.04434 31.6288 2.04434ZM31.5649 2.30616C31.5612 2.30616 31.5572 2.3065 31.5537 2.30683C31.5572 2.30683 31.5611 2.3065 31.5649 2.30616ZM31.5518 2.30683C31.5496 2.30683 31.5473 2.30683 31.5452 2.30717C31.5473 2.30717 31.5496 2.30717 31.5518 2.30683ZM31.5791 2.30549C31.5779 2.30549 31.5768 2.30549 31.5758 2.30549C31.577 2.30549 31.578 2.30549 31.5791 2.30549ZM31.4677 2.23515C31.4737 2.23515 31.4798 2.23515 31.4859 2.23515C31.4774 2.23515 31.4688 2.23515 31.4603 2.23515C31.4628 2.23515 31.4652 2.23515 31.4677 2.23515ZM31.4512 1.69637C31.4673 1.69502 31.4832 1.693 31.4991 1.69199C31.4832 1.693 31.4673 1.69468 31.4512 1.69637ZM31.5065 2.3102C31.4773 2.31053 31.4534 2.31087 31.4345 2.31121C31.4534 2.31121 31.4773 2.31087 31.5065 2.3102ZM31.1296 1.22892C31.1296 1.2195 31.1294 1.21008 31.1294 1.20066C31.1312 1.2259 31.1287 1.23296 31.1186 1.22993C31.1223 1.2296 31.1261 1.22926 31.1296 1.22892ZM31.053 2.30178C31.053 2.30178 31.0527 2.30178 31.0526 2.30178C31.0527 2.30178 31.0528 2.30178 31.053 2.30178ZM31.0414 2.30448C31.0409 2.30448 31.0404 2.30481 31.0402 2.30515C31.0405 2.30515 31.0409 2.30481 31.0414 2.30448ZM31.0463 2.30313C31.0463 2.30313 31.0457 2.30313 31.0454 2.30313C31.0457 2.30313 31.0461 2.30313 31.0463 2.30313ZM31.02 2.27722C31.02 2.27722 31.0213 2.27722 31.022 2.27722C31.0167 2.27789 31.0115 2.27856 31.0065 2.27924C31.0108 2.27856 31.0153 2.27823 31.02 2.27755V2.27722ZM30.9462 1.74752C30.9687 1.74516 30.9908 1.74281 31.0128 1.74045C30.9812 1.74382 30.9487 1.74752 30.9165 1.74987C30.9265 1.74886 30.9364 1.74819 30.9462 1.74718V1.74752ZM30.9401 2.289C30.9401 2.289 30.9413 2.289 30.9418 2.289C30.9372 2.28967 30.9327 2.29034 30.9279 2.29101C30.932 2.29034 30.9361 2.28967 30.9401 2.289ZM30.7624 1.2619C30.6881 1.26763 30.6118 1.27267 30.5332 1.27772C30.6118 1.27301 30.6882 1.26763 30.7624 1.2619ZM30.4317 1.22623C30.4317 1.22623 30.4325 1.22623 30.4328 1.22623C30.4323 1.22623 30.4317 1.22623 30.4312 1.22623C30.4313 1.22623 30.4316 1.22623 30.4317 1.22623ZM30.4305 1.70074C30.4287 1.70074 30.4266 1.70141 30.4243 1.70175C30.4263 1.70175 30.4287 1.70108 30.4305 1.70074ZM30.4185 1.70242C30.3981 1.70478 30.3701 1.70747 30.3437 1.71016C30.3508 1.70949 30.358 1.70882 30.365 1.70814C30.361 1.70848 30.357 1.70882 30.3529 1.70949C30.3784 1.7068 30.3997 1.70478 30.4183 1.70242H30.4185ZM30.3999 1.75896C30.3981 1.75896 30.396 1.75963 30.3937 1.75997C30.396 1.75997 30.3981 1.7593 30.3999 1.75896ZM30.3227 1.72463C30.3227 1.72463 30.3229 1.72463 30.323 1.72463H30.3227ZM30.3059 1.72463C30.305 1.72463 30.3042 1.72463 30.3034 1.72463C30.3053 1.72463 30.3068 1.72463 30.3088 1.72463C30.3079 1.72463 30.3068 1.72463 30.306 1.72463H30.3059ZM30.3399 1.79059C30.325 1.7916 30.3092 1.79261 30.2939 1.79396C30.3096 1.79295 30.3249 1.79194 30.3399 1.79059ZM30.2664 1.23061C30.3113 1.22926 30.3561 1.22792 30.401 1.22657C30.234 1.23027 30.0589 1.24306 29.8972 1.24912C30.0166 1.24407 30.1397 1.23801 30.2664 1.23061ZM30.2653 1.71757C30.263 1.71757 30.2608 1.7179 30.2586 1.71824C30.2608 1.71824 30.263 1.71757 30.2653 1.71757ZM30.2551 1.71858C30.2551 1.71858 30.2537 1.71858 30.2532 1.71858C30.2539 1.71858 30.2545 1.71858 30.2551 1.71858ZM30.23 1.75223C30.2278 1.75223 30.2266 1.75189 30.2262 1.75156C30.2266 1.75156 30.2278 1.75223 30.23 1.75223ZM30.2235 1.78925C30.2235 1.78925 30.2243 1.78925 30.2247 1.78925C30.2197 1.78958 30.2147 1.78958 30.2099 1.78992C30.2139 1.78992 30.2178 1.78992 30.222 1.78958C30.2225 1.78958 30.223 1.78958 30.2235 1.78958V1.78925ZM29.9825 1.75156C29.9453 1.75324 29.9062 1.75526 29.8652 1.7566C29.9064 1.75526 29.9453 1.75358 29.9825 1.75156ZM30.0103 2.38154C29.9779 2.38289 29.9456 2.3839 29.9131 2.38491C29.9456 2.3839 29.9779 2.38322 30.0103 2.38154ZM29.7628 1.83232C29.7628 1.83232 29.7623 1.83232 29.762 1.83232C29.7623 1.83232 29.7626 1.83232 29.7628 1.83232ZM29.7288 1.82862C29.7288 1.82862 29.7281 1.82862 29.7279 1.82829C29.728 1.82829 29.7284 1.82829 29.7288 1.82862ZM29.7277 1.82829C29.7277 1.82829 29.7277 1.82829 29.7276 1.82829H29.7277ZM29.7277 1.82829C29.7277 1.82829 29.7275 1.82829 29.7275 1.82795C29.7275 1.82795 29.7275 1.82795 29.7277 1.82829ZM29.6312 2.34452C29.6185 2.34452 29.6059 2.34385 29.5934 2.34351C29.6059 2.34385 29.6186 2.34419 29.6312 2.34452ZM29.5099 2.34048C29.4728 2.33914 29.4358 2.33746 29.399 2.33577C29.4358 2.33746 29.4729 2.33914 29.5099 2.34048ZM29.3384 1.78588C29.3516 1.78454 29.3649 1.78319 29.3781 1.78184C29.3422 1.78555 29.3063 1.78925 29.2706 1.79295C29.2932 1.79059 29.3157 1.78824 29.3384 1.78588ZM29.1552 1.80136C29.1499 1.80136 29.1444 1.80136 29.1388 1.80136C29.1444 1.80136 29.1498 1.80136 29.1552 1.80136ZM29.1302 1.80103C29.1207 1.80103 29.1109 1.80103 29.1007 1.80069C29.111 1.80069 29.1207 1.80069 29.1302 1.80103ZM29.0813 1.82357C29.0858 1.82357 29.0905 1.82324 29.0954 1.8229C29.0905 1.8229 29.0857 1.82324 29.0813 1.82357ZM29.0648 1.8192C29.0648 1.8192 29.0646 1.8192 29.0645 1.8192C29.0645 1.8192 29.0646 1.8192 29.0648 1.8192ZM28.9821 1.79026C28.9881 1.79026 28.9943 1.79026 29.0003 1.79026C28.9927 1.79026 28.9852 1.79026 28.9776 1.79026C28.9791 1.79026 28.9807 1.79026 28.9821 1.79026ZM28.8546 1.2794C28.8807 1.27873 28.9071 1.27806 28.9335 1.27739C28.811 1.28075 28.6913 1.28378 28.5664 1.28782C28.6639 1.28479 28.7601 1.2821 28.8546 1.27974V1.2794ZM28.779 1.82458C28.779 1.82458 28.7795 1.82458 28.7798 1.82458C28.7795 1.82458 28.7793 1.82458 28.779 1.82458ZM28.5299 1.85824C28.5299 1.85824 28.5295 1.85824 28.5294 1.85824C28.5295 1.85824 28.5298 1.85824 28.5299 1.85824ZM28.5263 1.79295C28.4984 1.79329 28.4704 1.79396 28.4424 1.7943C28.4703 1.79396 28.4982 1.79329 28.5263 1.79295ZM28.5225 1.85622C28.5214 1.85622 28.5204 1.85588 28.519 1.85554C28.5204 1.85554 28.5216 1.85588 28.5227 1.85622C28.5217 1.85622 28.5205 1.85588 28.5192 1.85554C28.5205 1.85554 28.5214 1.85588 28.5225 1.85622ZM28.5184 1.85655C28.5186 1.85655 28.5186 1.85655 28.5188 1.85655C28.5188 1.85655 28.5186 1.85655 28.5184 1.85655ZM28.519 1.85554C28.519 1.85554 28.519 1.85588 28.519 1.85622C28.519 1.85622 28.519 1.85588 28.519 1.85554ZM28.5182 1.85655C28.5181 1.85655 28.5178 1.85655 28.5176 1.85655C28.5177 1.85655 28.518 1.85655 28.5181 1.85655H28.5182ZM28.5174 1.85655C28.5174 1.85655 28.5172 1.85655 28.5169 1.85655C28.5173 1.85655 28.5174 1.85655 28.5177 1.85655C28.5177 1.85655 28.5176 1.85655 28.5174 1.85655ZM28.5165 1.85655C28.5165 1.85655 28.5155 1.85655 28.5148 1.85689C28.5155 1.85689 28.516 1.85689 28.5165 1.85655ZM28.3968 1.83232C28.401 1.83232 28.4066 1.83232 28.4131 1.83165C28.4051 1.83165 28.3983 1.83232 28.3939 1.83232C28.3947 1.83232 28.3957 1.83232 28.3967 1.83232H28.3968ZM28.4044 1.83232C28.4167 1.83199 28.4341 1.83131 28.4519 1.83064C28.4343 1.83131 28.4167 1.83199 28.4044 1.83232ZM28.4026 1.79463C28.4116 1.79463 28.4205 1.79463 28.4295 1.7943C28.4205 1.7943 28.4116 1.7943 28.4026 1.79463ZM28.4688 1.82997C28.4707 1.82997 28.4727 1.82997 28.4744 1.82997C28.4634 1.8303 28.4514 1.83098 28.4397 1.83131C28.4494 1.83098 28.4593 1.83064 28.4687 1.8303L28.4688 1.82997ZM28.3797 1.79497C28.3735 1.79497 28.3673 1.79497 28.361 1.79531C28.3673 1.79531 28.3735 1.79531 28.3797 1.79497ZM28.3383 1.79564C28.3316 1.79564 28.3252 1.79564 28.3185 1.79598C28.3252 1.79598 28.3316 1.79598 28.3383 1.79564ZM28.2962 1.79665C28.2895 1.79665 28.2829 1.79665 28.2763 1.79699C28.2829 1.79699 28.2895 1.79699 28.2962 1.79665ZM28.2552 1.79766C28.2477 1.79766 28.24 1.79766 28.2325 1.79833C28.2401 1.79833 28.2477 1.798 28.2552 1.79766ZM27.9167 1.79396C27.9345 1.79329 27.9521 1.79261 27.9698 1.79228C27.9371 1.79329 27.9047 1.7943 27.8722 1.79564C27.8871 1.79497 27.9019 1.79463 27.9167 1.7943V1.79396ZM28.2178 1.79833C28.1158 1.80069 28.0097 1.80338 27.8954 1.80641C28.0098 1.80338 28.1159 1.80069 28.2178 1.79833ZM27.7933 1.80877C27.8977 1.80607 27.9947 1.80372 28.0873 1.80136C27.9945 1.80372 27.8969 1.80607 27.7924 1.80877C27.8085 1.80843 27.8243 1.80809 27.8401 1.80742C27.8246 1.80776 27.8089 1.80809 27.7931 1.80877H27.7932H27.7933ZM28.0378 2.35024C28.0362 2.35024 28.0347 2.35024 28.0331 2.35024C28.0346 2.35024 28.0362 2.35024 28.0378 2.35024ZM27.3989 2.3627C27.3989 2.3627 27.3989 2.3627 27.3991 2.3627C27.4058 2.3627 27.424 2.36169 27.452 2.36034C27.4233 2.36169 27.4052 2.36236 27.3987 2.3627C27.3987 2.3627 27.3989 2.3627 27.3991 2.3627H27.3989ZM27.0936 2.32198C27.269 2.31289 27.4444 2.3038 27.6198 2.29472C27.4445 2.3038 27.269 2.31289 27.0936 2.32198ZM27.1426 1.93227C27.1426 1.93227 27.1435 1.93227 27.144 1.93227C27.1406 1.93227 27.1371 1.93261 27.1337 1.93295C27.1366 1.93295 27.1396 1.93261 27.1426 1.93227ZM27.6147 1.89021C27.6102 1.88987 27.6063 1.89223 27.6021 1.89391C27.6063 1.89223 27.6102 1.88953 27.6147 1.89021ZM27.6476 1.87102C27.6662 1.86968 27.6849 1.86867 27.7034 1.86732C27.6849 1.86867 27.6662 1.86934 27.6476 1.87102ZM27.7207 2.34755C27.727 2.34755 27.7329 2.34688 27.7394 2.34654C27.6921 2.3489 27.6495 2.35058 27.6115 2.3526C27.6443 2.35092 27.6809 2.34923 27.7207 2.34755ZM27.7129 2.3139C27.7209 2.3139 27.7288 2.31457 27.7369 2.31491C27.7288 2.31491 27.7209 2.31424 27.7129 2.3139ZM27.8064 2.31726C27.8109 2.31726 27.8154 2.3176 27.8197 2.31794C27.8154 2.31794 27.8109 2.3176 27.8064 2.31726ZM27.7691 2.31592C27.7637 2.31592 27.7581 2.31558 27.7527 2.31524C27.7582 2.31524 27.7637 2.31558 27.7691 2.31592ZM27.7757 2.31592C27.7801 2.31592 27.7844 2.31592 27.7887 2.31625C27.7844 2.31625 27.7801 2.31625 27.7757 2.31592ZM27.7901 2.31625C27.7946 2.31625 27.7991 2.31625 27.8035 2.31659C27.7991 2.31659 27.7946 2.31659 27.7901 2.31625ZM27.6804 1.80204C27.728 1.80002 27.7761 1.79833 27.8246 1.79631C27.7761 1.798 27.7284 1.80002 27.6804 1.80204ZM27.4318 1.92992C27.4587 1.92554 27.4854 1.92083 27.5122 1.91646C27.4849 1.92083 27.4577 1.92588 27.4305 1.92992C27.4309 1.92992 27.4313 1.92992 27.4317 1.92992H27.4318ZM27.4257 1.93025C27.4256 1.93025 27.4254 1.93025 27.4253 1.93025C27.4253 1.93025 27.4254 1.93025 27.4256 1.93025C27.4241 1.93025 27.4241 1.93025 27.4256 1.93025H27.4257ZM27.337 1.92117C27.3293 1.92117 27.3219 1.92184 27.3143 1.92218C27.322 1.92184 27.3293 1.9215 27.337 1.92117ZM27.1538 1.93093C27.1538 1.93093 27.1533 1.93093 27.1529 1.93093C27.1598 1.93059 27.1667 1.92992 27.1735 1.92958C27.1669 1.92992 27.1604 1.93025 27.1538 1.93093ZM26.5886 1.39551C26.6961 1.38575 26.8037 1.37599 26.9113 1.36589C26.7343 1.38205 26.5571 1.3982 26.3799 1.41435C26.4494 1.40796 26.5191 1.40156 26.5886 1.39551ZM26.7875 1.95146C26.8005 1.95011 26.814 1.94876 26.8272 1.94708C26.8009 1.94977 26.7759 1.95247 26.7526 1.95516C26.7553 1.95516 26.7578 1.95448 26.7606 1.95415C26.7594 1.95415 26.7582 1.95415 26.7571 1.95448C26.7669 1.95347 26.777 1.95213 26.7874 1.95112L26.7875 1.95146ZM26.827 1.87708C26.8208 1.87742 26.8148 1.87776 26.8092 1.87809C26.8151 1.87776 26.8211 1.87742 26.8275 1.87708C26.8274 1.87708 26.8272 1.87708 26.8271 1.87708H26.827ZM26.827 2.34116C26.8247 2.34116 26.8225 2.34116 26.8201 2.34116C26.8206 2.34116 26.8213 2.34116 26.8219 2.34116H26.8217C26.8227 2.34116 26.8237 2.34116 26.8247 2.34116C26.8245 2.34116 26.8242 2.34116 26.8238 2.34116C26.8249 2.34116 26.8259 2.34116 26.827 2.34116ZM26.8611 2.39769C26.67 2.40846 26.479 2.41923 26.288 2.42967C26.4791 2.4189 26.6702 2.40846 26.8611 2.39769ZM26.838 2.34116C26.8397 2.34116 26.8411 2.34116 26.8426 2.34116C26.8411 2.34116 26.8394 2.34116 26.838 2.34116ZM26.3762 2.37346C26.3762 2.37346 26.3763 2.37346 26.3764 2.37346C26.3764 2.37346 26.3763 2.37346 26.3762 2.37346ZM26.3764 2.37346C26.3783 2.37346 26.3799 2.3738 26.3812 2.37414C26.38 2.37414 26.3783 2.37346 26.3764 2.37346ZM26.5915 2.34654C26.5968 2.34654 26.6017 2.34654 26.607 2.34621C26.602 2.34621 26.5968 2.34621 26.5915 2.34654ZM26.8029 2.34116C26.8004 2.34116 26.7977 2.34116 26.7952 2.34116C26.7978 2.34116 26.8004 2.34116 26.8029 2.34116ZM26.7548 2.34183C26.7614 2.34183 26.7676 2.34183 26.7736 2.34149C26.7676 2.34149 26.7614 2.34149 26.7548 2.34183ZM26.8193 2.34082C26.8193 2.34082 26.8206 2.34082 26.8213 2.34082C26.8206 2.34082 26.82 2.34082 26.8193 2.34082ZM26.3284 2.01102C26.2032 2.01607 26.078 2.02011 25.9527 2.02347C26.2426 2.0154 26.5325 2.0053 26.8222 1.98107C26.6579 1.9952 26.4931 2.00429 26.3284 2.01102ZM26.2206 2.48014C26.2182 2.48014 26.2158 2.48048 26.2134 2.48082C26.2158 2.48082 26.2182 2.48048 26.2206 2.48014ZM26.192 2.45087C26.1789 2.45154 26.1654 2.45221 26.1514 2.45289C26.1654 2.45221 26.1787 2.45154 26.192 2.45087ZM25.8649 1.91578C25.8511 1.91578 25.8393 1.91578 25.8291 1.91578C25.879 1.91578 25.9374 1.91275 25.9826 1.91141C25.9466 1.91275 25.9075 1.91444 25.8649 1.91578ZM25.9811 1.91141C26.008 1.9104 26.035 1.90905 26.061 1.90804C26.0352 1.90939 26.0078 1.9104 25.9811 1.91141ZM26.3229 1.89054C26.3206 1.89054 26.3182 1.89088 26.3157 1.89122C26.3186 1.89122 26.3216 1.89088 26.3245 1.89054C26.324 1.89054 26.3235 1.89054 26.3229 1.89054ZM26.3779 1.8855C26.3844 1.88482 26.391 1.88415 26.3975 1.88381C26.391 1.88449 26.3844 1.88516 26.3779 1.8855ZM26.3386 1.8892C26.3428 1.88886 26.347 1.88852 26.3512 1.88819C26.3502 1.88819 26.3494 1.88819 26.3485 1.88819C26.3498 1.88819 26.351 1.88819 26.3523 1.88785C26.3484 1.88819 26.3444 1.88852 26.3404 1.88886C26.3411 1.88886 26.3416 1.88886 26.3423 1.88886C26.338 1.8892 26.3338 1.88953 26.3297 1.88987C26.3333 1.88987 26.337 1.8892 26.3406 1.88886C26.3399 1.88886 26.3392 1.88886 26.3387 1.88886L26.3386 1.8892ZM26.311 1.89155C26.311 1.89155 26.3114 1.89155 26.3116 1.89155C26.3104 1.89155 26.3092 1.89155 26.3078 1.89155C26.3089 1.89155 26.31 1.89155 26.311 1.89155ZM26.0802 1.43555C26.0911 1.43488 26.1018 1.43454 26.1121 1.43387C26.1018 1.43454 26.0912 1.43488 26.0802 1.43555ZM25.8698 1.4443C25.9344 1.44229 25.9905 1.43993 26.0405 1.43757C25.9933 1.43118 25.9249 1.45911 25.8698 1.43555C25.8698 1.43858 25.8698 1.44128 25.8698 1.4443ZM25.8251 1.91612H25.8237C25.8237 1.91612 25.8246 1.91612 25.8251 1.91612ZM25.7518 2.01977C25.7734 2.01943 25.7949 2.01876 25.8165 2.01843C25.7951 2.01876 25.773 2.01943 25.7512 2.01977C25.7514 2.01977 25.7516 2.01977 25.7518 2.01977ZM25.714 2.02987C25.7155 2.02987 25.7171 2.02987 25.7185 2.02987C25.6754 2.03088 25.6322 2.03222 25.5889 2.03323C25.6306 2.03189 25.6723 2.03088 25.714 2.02987ZM26.8766 2.92807C26.5922 2.94254 26.3076 2.95667 26.0231 2.97013C26.3076 2.95634 26.5922 2.9422 26.8766 2.92807ZM26.8728 2.45692C26.8728 2.45692 26.8728 2.45692 26.8729 2.45692C26.8729 2.45692 26.8729 2.45692 26.8728 2.45692ZM26.6907 1.97097C26.8398 1.9565 26.9848 1.94136 27.1347 1.9316C27.0506 1.93631 26.9655 1.94472 26.8833 1.95213C26.9435 1.94641 27.0043 1.94136 27.0665 1.93598C26.9391 1.94641 26.8176 1.95785 26.6906 1.97064L26.6907 1.97097ZM27.0999 2.91461C27.0699 2.90619 27.0254 2.93177 27.0024 2.90518C27.0977 2.93547 27.2143 2.89812 27.3167 2.90215C27.2445 2.90653 27.1722 2.91057 27.1 2.91494L27.0999 2.91461ZM27.6053 2.87052C27.5952 2.87119 27.5851 2.87153 27.5751 2.8722C27.6492 2.86783 27.7435 2.86177 27.7807 2.85874C27.743 2.86177 27.6857 2.86547 27.6051 2.87052H27.6053ZM27.7927 2.3802C27.7927 2.3802 27.7923 2.3802 27.792 2.3802C27.7923 2.3802 27.7925 2.3802 27.7928 2.3802C27.7928 2.3802 27.7928 2.3802 27.7927 2.3802ZM27.8236 2.8547C27.8271 2.85437 27.83 2.85369 27.8324 2.85336C27.83 2.85369 27.8271 2.85403 27.8236 2.8547ZM27.8716 2.32198C27.8716 2.32198 27.872 2.32198 27.8721 2.32231C27.8721 2.32231 27.8717 2.32231 27.8716 2.32198ZM27.8697 2.3213C27.8697 2.3213 27.8697 2.3213 27.8699 2.3213C27.8699 2.3213 27.8699 2.3213 27.8697 2.3213ZM27.9333 2.80826C27.9146 2.80591 27.8977 2.81163 27.8805 2.83115C27.9003 2.80893 27.9212 2.8022 27.9427 2.81196C27.9395 2.81062 27.9363 2.80961 27.9333 2.80792V2.80826ZM27.9655 1.87405C27.9509 1.87506 27.9424 1.87574 27.942 1.87675C27.943 1.87473 27.9759 1.87338 28.0256 1.8717C28.0007 1.87271 27.98 1.87338 27.9655 1.87439V1.87405ZM27.997 2.33847C27.9981 2.33847 27.9992 2.33847 28.0003 2.33813C27.9992 2.33813 27.9981 2.33813 27.997 2.33847ZM28.0002 2.33813C28.0024 2.33813 28.0048 2.33746 28.0073 2.33712C28.0073 2.33712 28.0073 2.33712 28.0072 2.33712C28.009 2.33712 28.0112 2.33678 28.0132 2.33645C28.0088 2.33712 28.0044 2.33746 28.0002 2.33813ZM28.0114 2.82038C28.0214 2.82038 28.0337 2.82038 28.0448 2.82071C28.0337 2.82071 28.0212 2.82071 28.0114 2.82038ZM28.0522 2.82071C28.05 2.82071 28.048 2.82071 28.0459 2.82071H28.0566C28.0551 2.82071 28.0535 2.82071 28.0522 2.82071ZM28.0533 2.33207C28.0554 2.33207 28.0574 2.33173 28.0595 2.3314C28.0574 2.3314 28.0554 2.33173 28.0533 2.33207ZM28.1063 2.82071C28.1029 2.82071 28.0999 2.82071 28.0966 2.82071C28.0999 2.82071 28.1031 2.82071 28.1064 2.82071C28.1064 2.82071 28.1064 2.82071 28.1063 2.82071ZM28.0877 1.80103C28.1017 1.80069 28.1158 1.80035 28.1297 1.80002C28.1158 1.80035 28.1019 1.80069 28.0877 1.80103ZM28.2097 1.798C28.2032 1.798 28.1967 1.798 28.1902 1.79833C28.1967 1.79833 28.2032 1.79833 28.2097 1.798ZM28.1703 1.79901C28.1595 1.79901 28.1488 1.79968 28.1378 1.79968C28.1486 1.79968 28.1595 1.79901 28.1703 1.79901ZM28.1721 2.33073C28.1786 2.33073 28.1848 2.33039 28.1915 2.33005C28.1848 2.33005 28.1783 2.33039 28.1721 2.33073ZM28.2044 2.32972C28.2 2.32972 28.1956 2.32972 28.1915 2.33005C28.1984 2.33005 28.2056 2.32972 28.213 2.32938C28.2101 2.32938 28.2073 2.32938 28.2044 2.32938V2.32972ZM28.2849 2.32736C28.2983 2.32736 28.3077 2.32534 28.3229 2.32366C28.3138 2.32467 28.306 2.32568 28.2999 2.32669C28.3028 2.32601 28.3061 2.32568 28.3098 2.32534C28.3011 2.32702 28.2934 2.32702 28.2849 2.32736ZM28.3359 2.32265C28.3323 2.32298 28.3289 2.32332 28.3257 2.32366C28.329 2.32332 28.3323 2.32298 28.3359 2.32265ZM28.3397 2.32231C28.3449 2.32198 28.3499 2.3213 28.3555 2.32097C28.3499 2.3213 28.3448 2.32198 28.3397 2.32231ZM28.3793 2.31895C28.3757 2.31895 28.3724 2.31962 28.369 2.31962C28.373 2.31928 28.3768 2.31928 28.3809 2.31861C28.3804 2.31861 28.38 2.31861 28.3793 2.31861V2.31895ZM28.4061 2.31524C28.4034 2.31558 28.4009 2.31592 28.3984 2.31625C28.4013 2.31592 28.4042 2.31558 28.4074 2.31491C28.4069 2.31491 28.4065 2.31491 28.4061 2.31491V2.31524ZM28.6242 1.87708C28.6242 1.87708 28.6235 1.87708 28.6231 1.87708C28.4753 1.88011 28.3277 1.8828 28.1799 1.8855C28.3277 1.8828 28.4755 1.87977 28.6233 1.87708C28.6237 1.87708 28.6239 1.87708 28.6243 1.87708H28.6242ZM28.6339 1.87708C28.6373 1.87708 28.6407 1.87708 28.6444 1.87708C28.6409 1.87708 28.6373 1.87708 28.6339 1.87708ZM28.65 1.87675C28.6483 1.87675 28.6464 1.87675 28.6448 1.87675C28.646 1.87675 28.6474 1.87675 28.6486 1.87675C28.6464 1.87675 28.6443 1.87675 28.6423 1.87675C28.6569 1.87641 28.6717 1.87607 28.6897 1.87574C28.6764 1.87574 28.6631 1.87607 28.6501 1.87641L28.65 1.87675ZM28.6852 1.87607C28.6803 1.87607 28.6756 1.87607 28.6707 1.87607C28.6783 1.87607 28.6859 1.87607 28.6936 1.87574H28.6852V1.87607ZM28.7071 1.82458C28.7121 1.82458 28.7173 1.82458 28.7223 1.82458C28.713 1.82458 28.7036 1.82458 28.6944 1.82492C28.6986 1.82492 28.7028 1.82492 28.7071 1.82492V1.82458ZM28.7169 1.8754H28.7168C28.7168 1.8754 28.7175 1.8754 28.7179 1.8754C28.7175 1.8754 28.7173 1.8754 28.7169 1.8754ZM28.8672 1.83939C28.8672 1.83939 28.8682 1.83939 28.8688 1.83939C28.8682 1.83939 28.8677 1.83939 28.8672 1.83939ZM29.0253 1.82593C29.0235 1.82593 29.0212 1.82559 29.0188 1.82526C29.0213 1.82526 29.0235 1.82559 29.0253 1.82593ZM29.0395 1.82492C29.0523 1.82425 29.0714 1.82324 29.0874 1.82256C29.0669 1.82324 29.0505 1.82425 29.0395 1.82492ZM29.1922 1.80136C29.1989 1.80136 29.2057 1.80136 29.2119 1.8017C29.2057 1.8017 29.1989 1.8017 29.1922 1.80136ZM29.1669 1.27099C29.1669 1.27099 29.1658 1.27099 29.1653 1.27099C29.187 1.27032 29.2087 1.26998 29.2308 1.26931C29.2094 1.26998 29.1879 1.27032 29.1669 1.27099ZM29.2802 2.32972C29.2802 2.32972 29.2793 2.32972 29.2789 2.32972C29.2798 2.32972 29.2808 2.32972 29.2816 2.32972C29.2812 2.32972 29.2806 2.32972 29.2802 2.32972ZM29.5234 2.86042C29.517 2.86042 29.5108 2.86042 29.5044 2.86042C29.5157 2.86042 29.5271 2.86042 29.5385 2.86042C29.5334 2.86042 29.5284 2.86042 29.5234 2.86042ZM29.5632 2.38894C29.5011 2.38894 29.4392 2.38894 29.3772 2.38894C29.4423 2.38894 29.5076 2.38894 29.5729 2.38894C29.5697 2.38894 29.5664 2.38894 29.5632 2.38894ZM29.6405 2.38894C29.6389 2.38894 29.6373 2.38894 29.6358 2.38894C29.7092 2.38861 29.7825 2.38794 29.8559 2.38625C29.784 2.38794 29.7122 2.38861 29.6405 2.38894ZM29.8621 2.34822C29.8684 2.34822 29.8745 2.34822 29.8808 2.34822C29.8794 2.34822 29.8779 2.34822 29.8766 2.34822C29.8775 2.34822 29.8784 2.34822 29.8794 2.34822C29.8745 2.34822 29.8694 2.34822 29.8645 2.34822C29.8662 2.34822 29.868 2.34822 29.8697 2.34822C29.8653 2.34822 29.8609 2.34822 29.8567 2.34822C29.8594 2.34822 29.862 2.34822 29.8647 2.34822C29.8639 2.34822 29.8631 2.34822 29.8623 2.34822H29.8621ZM30.3014 2.3627H30.3007C30.3096 2.36202 30.3185 2.36135 30.3274 2.36068C30.3188 2.36135 30.31 2.36202 30.3014 2.3627ZM30.3656 2.32669C30.3009 2.33476 30.2363 2.34149 30.1716 2.34722C30.2363 2.34149 30.301 2.33476 30.3658 2.32669H30.3656ZM30.3744 1.78723C30.3789 1.78689 30.3834 1.78656 30.3879 1.78622C30.3835 1.78656 30.379 1.78689 30.3744 1.78723ZM30.3904 1.75896C30.3904 1.75896 30.3892 1.75896 30.3887 1.75896C30.3897 1.75896 30.3908 1.75896 30.3917 1.75862C30.3913 1.75862 30.3908 1.75862 30.3904 1.75862V1.75896ZM30.4123 1.75459C30.4123 1.75459 30.4121 1.75459 30.412 1.75459C30.5389 1.74718 30.6659 1.73944 30.7927 1.72935C30.7289 1.73439 30.6652 1.73877 30.6014 1.74314C30.6611 1.7391 30.7209 1.73507 30.7807 1.73036C30.6579 1.73978 30.535 1.74785 30.4121 1.75459H30.4123ZM30.479 2.36135C30.4828 2.36068 30.4864 2.36034 30.4897 2.35967C30.4858 2.36034 30.4822 2.36101 30.4781 2.36135C30.4785 2.36135 30.4787 2.36135 30.479 2.36135ZM30.4865 2.82509C30.4835 2.82509 30.4803 2.82542 30.4771 2.82576C30.4803 2.82576 30.4834 2.82509 30.4865 2.82509ZM30.4991 2.35832C30.4983 2.35832 30.4977 2.35832 30.4969 2.35866C30.4985 2.35866 30.5003 2.35798 30.5018 2.35798C30.501 2.35798 30.5001 2.35798 30.4991 2.35832ZM30.5991 2.3001C30.5599 2.30481 30.5228 2.30952 30.4871 2.31356C30.5267 2.30885 30.5677 2.30347 30.6116 2.29842C30.6073 2.29875 30.6032 2.29943 30.599 2.29976L30.5991 2.3001ZM30.8085 2.31996C30.8095 2.31996 30.8103 2.31996 30.8114 2.31996C30.8105 2.31996 30.8097 2.31996 30.8085 2.31996ZM30.7416 2.27251H30.7404C30.7721 2.2688 30.8037 2.26477 30.8352 2.26106C30.804 2.26477 30.7727 2.2688 30.7416 2.27251ZM30.846 2.06991C30.846 2.06991 30.8473 2.06991 30.8479 2.06991C30.8473 2.06991 30.8466 2.06991 30.846 2.06991ZM30.8486 2.06991C30.8486 2.06991 30.8481 2.06991 30.8478 2.06991C30.8481 2.06991 30.8483 2.06991 30.8487 2.06991H30.8486ZM31.1306 2.76384C31.0318 2.79615 30.9531 2.73355 30.8572 2.7773C30.9621 2.73725 31.0535 2.79379 31.1619 2.76148C31.1509 2.76216 31.1405 2.76317 31.1306 2.76418V2.76384ZM31.136 1.6405C31.136 1.6405 31.1365 1.6405 31.1368 1.6405C31.1365 1.6405 31.1362 1.6405 31.136 1.6405ZM31.2341 1.71555C31.219 1.71723 31.2038 1.71891 31.1883 1.72026C31.2233 1.71656 31.2585 1.71286 31.293 1.70983C31.2736 1.71185 31.254 1.71353 31.234 1.71555H31.2341ZM31.2086 1.63411C31.2177 1.63343 31.227 1.63242 31.2365 1.63142C31.227 1.63242 31.2176 1.6331 31.2086 1.63411ZM31.2258 1.65093C31.2258 1.65093 31.2254 1.65093 31.2251 1.65093C31.2254 1.65093 31.2255 1.65093 31.2258 1.65093ZM31.3191 2.27419C31.3191 2.27419 31.3191 2.27419 31.319 2.27419C31.3336 2.27318 31.3479 2.27251 31.3628 2.2715C31.3479 2.27251 31.3333 2.27351 31.3193 2.27419H31.3191ZM31.4387 1.65228C31.4387 1.65228 31.4392 1.65228 31.4396 1.65228C31.4228 1.65497 31.406 1.65733 31.3892 1.66002C31.4057 1.65733 31.4223 1.65497 31.4387 1.65262V1.65228ZM31.4171 2.30952C31.4159 2.30952 31.4151 2.30952 31.414 2.30952C31.415 2.30952 31.4161 2.30952 31.4171 2.30952ZM31.5114 2.77966C31.4675 2.78033 31.437 2.78067 31.4096 2.78067C31.437 2.78067 31.472 2.78067 31.5153 2.77932C31.5139 2.77932 31.5127 2.77932 31.5114 2.77966ZM31.5292 2.77797C31.5692 2.77495 31.6531 2.77259 31.7436 2.77023C31.6531 2.77225 31.5692 2.77461 31.5292 2.77797ZM31.8918 1.63478C31.8959 1.63478 31.8997 1.63478 31.9038 1.63444C31.8998 1.63444 31.8957 1.63444 31.8918 1.63478ZM31.9092 1.63411C31.9222 1.63343 31.9352 1.6331 31.9479 1.63242C31.9351 1.6331 31.9222 1.63343 31.9092 1.63411ZM31.9197 2.27924C31.9197 2.27924 31.9196 2.27924 31.9194 2.27924C31.9265 2.27924 31.9336 2.27924 31.9408 2.27924C31.9337 2.27924 31.9266 2.27924 31.9197 2.27924ZM31.9276 1.63343C31.949 1.63242 31.9703 1.63175 31.9915 1.63074C31.9706 1.63175 31.949 1.63242 31.9276 1.63343ZM31.7687 1.63983C31.845 1.6331 31.9213 1.62704 31.9976 1.62199C31.9213 1.62738 31.845 1.6331 31.7687 1.63983ZM32.1696 2.7598C32.1654 2.76014 32.1591 2.76081 32.1512 2.76115C32.1684 2.76014 32.1793 2.75946 32.1945 2.75307C32.1864 2.75644 32.1782 2.75879 32.1695 2.7598H32.1696ZM32.1764 1.62536C32.1977 1.62468 32.2191 1.62401 32.2406 1.623C32.2191 1.62367 32.1978 1.62468 32.1764 1.62536ZM32.4249 2.21395C32.4269 2.21395 32.4289 2.21328 32.4309 2.21328C32.4288 2.21328 32.4269 2.21395 32.4249 2.21395ZM32.4121 2.21597C32.4121 2.21597 32.4126 2.21597 32.4129 2.21597C32.4126 2.21597 32.4123 2.21597 32.4121 2.21597ZM32.418 2.21496C32.418 2.21496 32.4192 2.21496 32.4199 2.21496C32.4192 2.21496 32.4186 2.21496 32.418 2.21496ZM32.6707 2.74769C32.6497 2.74769 32.6289 2.74769 32.6083 2.74735C32.6328 2.75038 32.6585 2.74028 32.6829 2.75475C32.6788 2.7524 32.6747 2.75072 32.6707 2.74769ZM32.6939 2.76081C32.6939 2.76081 32.6934 2.76081 32.6931 2.76047C32.6935 2.76047 32.6939 2.76081 32.6943 2.76115C32.6942 2.76115 32.694 2.76115 32.6939 2.76115V2.76081ZM32.6947 2.76115C32.6947 2.76115 32.6942 2.76115 32.694 2.76081C32.6943 2.76081 32.6946 2.76081 32.6948 2.76115H32.6947ZM32.7045 2.77999V2.76418C32.7045 2.76956 32.7045 2.77461 32.7045 2.77999ZM32.7171 2.30851C32.7123 2.30851 32.7077 2.30851 32.7028 2.30885C32.7114 2.30885 32.7196 2.30851 32.7278 2.30818C32.7243 2.30818 32.7208 2.30818 32.7172 2.30818L32.7171 2.30851ZM32.782 2.19813C32.7653 2.19813 32.7481 2.19746 32.7304 2.19712C32.7504 2.19746 32.7694 2.1978 32.7884 2.19813C32.7863 2.19813 32.7842 2.19813 32.782 2.19813ZM32.7686 1.65228C32.765 1.65228 32.7614 1.65228 32.758 1.65194C32.7637 1.65194 32.7695 1.65228 32.7752 1.65228C32.7731 1.65228 32.7708 1.65228 32.7687 1.65228C32.7779 1.65228 32.7871 1.65228 32.7963 1.65262C32.7871 1.65262 32.778 1.65262 32.7687 1.65228H32.7686ZM32.6992 1.17643C32.6936 1.17643 32.6882 1.17643 32.6826 1.17643C32.7263 1.17643 32.773 1.17643 32.8095 1.17643C32.7767 1.17643 32.7401 1.17643 32.6992 1.17643ZM32.8266 2.19914C32.8266 2.19914 32.8271 2.19914 32.8275 2.19914C32.8272 2.19914 32.8269 2.19914 32.8266 2.19914ZM32.8415 2.19948C32.8475 2.19948 32.8532 2.19948 32.859 2.19981C32.8533 2.19981 32.8475 2.19981 32.8415 2.19948ZM32.9479 2.27991C32.9221 2.27924 32.8958 2.2789 32.8695 2.27856C32.896 2.2789 32.9223 2.27957 32.9482 2.27991C32.9482 2.27991 32.9482 2.27991 32.9479 2.27991ZM32.978 1.65766C32.996 1.65834 33.0145 1.65901 33.032 1.66002C33.0149 1.65935 32.9968 1.65834 32.978 1.65766ZM33.034 1.66002C33.034 1.66002 33.033 1.66002 33.0325 1.66002C33.0333 1.66002 33.034 1.66002 33.0348 1.66002C33.0345 1.66002 33.0342 1.66002 33.034 1.66002ZM33.0352 1.66002C33.0451 1.66036 33.0549 1.66103 33.0642 1.66137C33.0549 1.66103 33.0452 1.66036 33.0352 1.66002ZM33.1177 1.16566C33.1019 1.16801 33.0865 1.17003 33.0598 1.17205C33.0895 1.17003 33.1031 1.16768 33.1226 1.16498C33.1208 1.16498 33.1193 1.16532 33.1175 1.16566H33.1177ZM33.1929 1.67247C33.1912 1.67146 33.1836 1.67045 33.1712 1.66911C33.1836 1.67045 33.1913 1.67146 33.1929 1.67247C33.1926 1.67247 33.1924 1.67247 33.192 1.67214C33.1925 1.67214 33.1928 1.67247 33.1931 1.67247H33.1929ZM33.1512 1.66709C33.1512 1.66709 33.1509 1.66709 33.1508 1.66709C33.1509 1.66709 33.151 1.66709 33.1513 1.66709H33.1512ZM33.163 1.6681C33.1599 1.6681 33.1565 1.66742 33.153 1.66709C33.1579 1.66742 33.1626 1.66776 33.1667 1.66843C33.1655 1.66843 33.1642 1.66843 33.163 1.6681ZM33.2374 2.05208C33.34 2.05006 33.4472 2.0477 33.5613 2.044C33.4473 2.0477 33.34 2.05006 33.2374 2.05208ZM33.516 2.27789C33.5173 2.27789 33.5187 2.27789 33.5199 2.27789C33.5168 2.27789 33.5139 2.27789 33.5109 2.27789C33.5126 2.27789 33.5143 2.27789 33.516 2.27789ZM33.4554 2.27654C33.4531 2.27654 33.451 2.27654 33.4489 2.27654C33.4522 2.27654 33.4554 2.27654 33.4587 2.27654H33.4554ZM33.4673 2.27654C33.4694 2.27654 33.4714 2.27654 33.4735 2.27654C33.4702 2.27654 33.4668 2.27654 33.4634 2.27654C33.4648 2.27654 33.466 2.27654 33.4673 2.27654ZM33.5115 2.74903C33.4973 2.74903 33.4829 2.74903 33.4683 2.74903C33.5783 2.74836 33.6915 2.74668 33.7919 2.74365C33.7035 2.74634 33.6107 2.74802 33.5115 2.7487V2.74903ZM33.786 2.27015C33.7852 2.27015 33.7845 2.27015 33.7837 2.27015C33.7927 2.27015 33.8019 2.26948 33.8109 2.26914C33.8026 2.26914 33.7943 2.26981 33.786 2.27015ZM33.953 2.22068C33.953 2.22068 33.9522 2.22068 33.9518 2.22068C33.9607 2.22001 33.9699 2.21967 33.9791 2.219C33.961 2.22034 33.9424 2.22135 33.9251 2.22236C33.934 2.22203 33.9434 2.22135 33.953 2.22068ZM33.9989 2.25803C34.0261 2.25602 34.0536 2.25433 34.0815 2.25265C34.0536 2.25433 34.026 2.25635 33.9989 2.25803ZM34.0095 2.23044C34.0095 2.23044 34.0089 2.23044 34.0087 2.23044C34.0088 2.23044 34.0091 2.23044 34.0092 2.23044C34.0087 2.23044 34.008 2.23044 34.0075 2.23044C34.0398 2.22808 34.0722 2.22472 34.1048 2.22135C34.0729 2.22472 34.0411 2.22808 34.0095 2.23044ZM34.1056 2.22135C34.1202 2.21967 34.1347 2.21799 34.1493 2.2163C34.1345 2.21799 34.1195 2.22001 34.1047 2.22135C34.1049 2.22135 34.1053 2.22135 34.1056 2.22135ZM34.3323 2.711C34.2707 2.71673 34.209 2.72177 34.1461 2.72648C34.3121 2.71471 34.4465 2.69956 34.6239 2.68509C34.5175 2.69418 34.4191 2.70326 34.3323 2.711ZM34.7912 2.18299C34.6662 2.19308 34.5455 2.20486 34.4255 2.21832C34.5445 2.20486 34.6671 2.19308 34.7921 2.18299C34.7917 2.18299 34.7915 2.18299 34.7911 2.18299H34.7912ZM34.8504 2.12679C34.8484 2.12679 34.8461 2.12712 34.8442 2.12746C34.8558 2.12611 34.8675 2.12443 34.8791 2.12275C34.8696 2.1241 34.8601 2.12544 34.8504 2.12679ZM34.9081 2.19207C34.9081 2.19207 34.9079 2.19207 34.9077 2.19207C34.9476 2.18905 34.9882 2.18635 35.0301 2.18366C34.9885 2.18635 34.9478 2.18938 34.9081 2.19207ZM35.2056 1.62906C35.1903 1.63007 35.1752 1.63142 35.16 1.63242C35.1755 1.63142 35.191 1.63007 35.2066 1.62906C35.2062 1.62906 35.206 1.62906 35.2056 1.62906ZM35.2095 1.62906C35.232 1.62738 35.2547 1.62569 35.2772 1.62401C35.2543 1.62603 35.2312 1.62738 35.2083 1.62906C35.2087 1.62906 35.2091 1.62906 35.2095 1.62906ZM35.2442 2.05477C35.2392 2.05511 35.2342 2.05578 35.2291 2.05612C35.2342 2.05578 35.2391 2.05511 35.2442 2.05477ZM35.2442 2.05477C35.2442 2.05477 35.245 2.05443 35.2456 2.0541C35.2449 2.0541 35.2445 2.05443 35.2442 2.05477ZM35.2456 2.0541C35.2456 2.0541 35.2456 2.0541 35.2457 2.0541C35.2457 2.0541 35.2457 2.0541 35.2456 2.0541ZM35.2467 2.05376C35.2467 2.05376 35.2478 2.05376 35.2482 2.05342C35.2474 2.05342 35.2467 2.05376 35.2462 2.05376C35.2463 2.05376 35.2465 2.05376 35.2466 2.05376H35.2467ZM35.2483 2.05746C35.2483 2.05746 35.2473 2.05746 35.2467 2.05746C35.2473 2.05746 35.2481 2.05746 35.2489 2.05746C35.2489 2.05746 35.2487 2.05746 35.2486 2.05746C35.3119 2.05208 35.3751 2.04535 35.4384 2.03963C35.3751 2.04535 35.3118 2.05241 35.2483 2.05746ZM35.655 2.149C35.655 2.149 35.655 2.149 35.6552 2.149C35.6552 2.149 35.6552 2.149 35.655 2.149ZM35.6985 2.60668C35.6851 2.61476 35.6708 2.61947 35.6557 2.62014C35.675 2.62149 35.6916 2.60567 35.7097 2.60634C35.706 2.60634 35.7023 2.60634 35.6985 2.60634V2.60668ZM35.6132 2.12477C35.7342 2.12107 35.8554 2.11703 35.9766 2.11366C35.9354 2.11467 35.8943 2.11602 35.8531 2.11737C35.8929 2.11602 35.9327 2.11467 35.9725 2.11366C35.8527 2.11636 35.7329 2.12039 35.6132 2.12443V2.12477ZM36.1834 2.6087C36.1201 2.60769 36.058 2.60668 35.9954 2.60601C36.1302 2.60769 36.2585 2.61038 36.396 2.61173C36.3225 2.61105 36.2526 2.60971 36.1834 2.6087ZM36.3631 2.02852C36.3928 2.02886 36.4223 2.02919 36.4515 2.02953C36.4223 2.02953 36.3929 2.02886 36.3631 2.02852ZM36.4885 2.07294C36.4846 2.07294 36.4805 2.07294 36.4764 2.07294C36.4814 2.07294 36.4866 2.07294 36.4915 2.07294C36.4905 2.07294 36.4895 2.07294 36.4885 2.07294ZM36.5166 2.07328C36.5144 2.07328 36.512 2.07328 36.5096 2.07328C36.5125 2.07328 36.5154 2.07328 36.5183 2.07328C36.5177 2.07328 36.5171 2.07328 36.5165 2.07328H36.5166ZM36.4828 1.60012C36.5022 1.59844 36.5219 1.59709 36.5414 1.59574C36.5215 1.59709 36.5021 1.59877 36.4828 1.60012ZM36.5704 1.59372C36.5826 1.59271 36.595 1.59204 36.6073 1.59103C36.5921 1.59204 36.577 1.59305 36.562 1.59406C36.5648 1.59406 36.5676 1.59372 36.5704 1.59339V1.59372ZM36.5806 2.61274C36.5787 2.61274 36.577 2.61274 36.5751 2.61274C36.601 2.61274 36.6273 2.61274 36.6543 2.61274C36.6292 2.61274 36.6045 2.61274 36.5806 2.61274ZM36.6657 2.11938C36.6219 2.11467 36.7294 2.12645 36.75 2.12847C36.7219 2.12544 36.6938 2.12241 36.6657 2.11938ZM37.6731 2.57538C37.4018 2.5912 37.112 2.5599 36.8495 2.59793C37.1209 2.56125 37.4185 2.5875 37.699 2.57673C37.6882 2.57606 37.6796 2.57572 37.6733 2.57505L37.6731 2.57538ZM37.4696 1.59642C37.595 1.59305 37.7204 1.59036 37.8457 1.58767C37.7203 1.59036 37.5949 1.59305 37.4696 1.59642ZM37.9424 2.13116C37.953 2.13116 37.963 2.13049 37.9733 2.13015C37.9635 2.13015 37.9534 2.13083 37.9425 2.13116H37.9424ZM42.053 1.04383C41.9841 1.04316 41.9109 1.04215 41.8358 1.04181C41.911 1.04215 41.9841 1.04282 42.053 1.04383ZM41.63 1.98746C41.63 1.98746 41.6297 1.9878 41.6293 1.9878C41.6299 1.9878 41.63 1.9878 41.63 1.98746ZM41.6292 1.9878C41.6291 1.9878 41.6288 1.9878 41.6287 1.9878C41.6288 1.9878 41.6291 1.9878 41.6291 1.9878H41.6292ZM41.6285 1.9878C41.6285 1.9878 41.6275 1.9878 41.627 1.9878C41.6276 1.9878 41.6282 1.9878 41.6285 1.9878ZM41.5776 1.9915C41.5731 1.9915 41.5686 1.99184 41.5637 1.99218C41.569 1.99218 41.5744 1.99184 41.5794 1.9915C41.5788 1.9915 41.5782 1.9915 41.5776 1.9915ZM41.5075 1.5106C41.541 1.5106 41.575 1.51127 41.6099 1.51127C41.561 1.51094 41.5132 1.5106 41.4672 1.51026C41.4805 1.51026 41.494 1.51026 41.5075 1.51026V1.5106ZM41.2174 1.03677C41.2863 1.03744 41.3555 1.03811 41.4245 1.03845C41.3155 1.03744 41.1371 1.03677 41.0465 1.03475C41.0836 1.03542 41.1379 1.03643 41.2172 1.03677H41.2174ZM41.0657 1.52272C41.0633 1.52272 41.061 1.52305 41.0583 1.52339C41.0608 1.52339 41.0633 1.52305 41.0657 1.52272ZM41.046 2.05881C41.0494 2.05881 41.0529 2.05881 41.0564 2.05881C41.0357 2.05881 41.0147 2.05881 40.9939 2.05881C41.0113 2.05881 41.0286 2.05881 41.0461 2.05881H41.046ZM40.9826 1.50387C40.9794 1.50387 40.9766 1.50353 40.9738 1.5032C40.9738 1.5032 40.9738 1.5032 40.9739 1.5032C40.9739 1.5032 40.9738 1.5032 40.9737 1.5032C40.9763 1.5032 40.9792 1.50353 40.9826 1.50387ZM40.9716 1.5032C40.97 1.5032 40.9684 1.5032 40.9669 1.50286C40.9684 1.50286 40.97 1.50286 40.9718 1.5032C40.9718 1.5032 40.9718 1.5032 40.9717 1.5032H40.9716ZM40.9647 1.50252C40.963 1.50252 40.9616 1.50219 40.9603 1.50185C40.9616 1.50185 40.9631 1.50219 40.9648 1.50252H40.9647ZM40.9661 1.50252C40.9661 1.50252 40.9656 1.50252 40.9653 1.50252C40.9656 1.50252 40.9659 1.50252 40.9661 1.50252ZM40.5046 1.05023C40.6438 1.02061 40.8058 1.03542 40.9685 1.03071C40.8056 1.03542 40.6439 1.02061 40.5046 1.05023ZM40.9594 1.50185C40.9578 1.50185 40.9566 1.50151 40.9557 1.50118C40.957 1.50118 40.9578 1.50151 40.9594 1.50185ZM40.8811 1.50185C40.8742 1.50185 40.8673 1.50185 40.8607 1.50185C40.8785 1.50185 40.8971 1.50151 40.9166 1.50118C40.9044 1.50118 40.8926 1.50118 40.8811 1.50151V1.50185ZM40.9555 1.50084C40.9418 1.50084 40.9287 1.50084 40.9157 1.50118C40.9287 1.50118 40.9419 1.50118 40.9555 1.50084ZM40.6562 1.50488C40.6562 1.50488 40.6562 1.50488 40.6561 1.50488C40.6561 1.50488 40.6561 1.50488 40.6562 1.50488ZM40.1325 1.05931C40.2566 1.05864 40.3807 1.0583 40.5047 1.05763C40.373 1.0509 40.2403 1.07446 40.1092 1.04955C40.1173 1.05191 40.1249 1.05494 40.1325 1.05931ZM40.09 1.51733C40.09 1.51733 40.0897 1.51733 40.0896 1.51733C40.0897 1.51733 40.0898 1.51733 40.09 1.51733ZM40.084 1.04619C40.084 1.04619 40.0849 1.04619 40.0855 1.04619C40.0822 1.04619 40.0793 1.04619 40.0746 1.04619C40.0785 1.04619 40.0816 1.04619 40.084 1.04619ZM40.0469 1.04686C40.0492 1.04686 40.0516 1.04686 40.0538 1.04686C40.0513 1.04686 40.0488 1.04686 40.0463 1.04686C40.0465 1.04686 40.0467 1.04686 40.0469 1.04686ZM39.8916 1.53113C40.1791 1.53012 40.382 1.52911 40.6662 1.52776C40.6446 1.52776 40.6233 1.52776 40.6026 1.5281C40.7291 1.52743 40.8726 1.52642 41.006 1.52574C41.006 1.52574 41.0059 1.52574 41.0057 1.52574C41.0174 1.52507 41.031 1.5244 41.0415 1.52373C40.6087 1.53147 40.3159 1.5281 39.8915 1.53113H39.8916ZM40.4813 2.07799C40.4787 2.07799 40.4763 2.07799 40.474 2.07833C40.5226 2.07496 40.6788 2.07193 40.7715 2.06857C40.6831 2.0716 40.5368 2.07463 40.4813 2.07799ZM40.3584 1.98915C40.2775 1.99083 40.1939 1.99251 40.1114 1.99419C40.1951 1.99251 40.276 1.99083 40.3584 1.98915ZM40.4904 1.99689C40.5589 1.99924 40.603 2.00093 40.629 2.00294C40.603 2.00126 40.5589 1.99924 40.4904 1.99689ZM40.4532 2.02213C40.4702 2.0191 40.4881 2.01943 40.518 2.01742C40.4881 2.0191 40.4702 2.0191 40.4532 2.02213ZM40.7814 2.05915C40.7753 2.05915 40.7692 2.05915 40.7633 2.05915C40.8397 2.05847 40.9161 2.05814 40.9925 2.05814C40.9222 2.05814 40.8518 2.05814 40.7814 2.05915ZM40.8424 2.06419C40.8411 2.0652 40.8389 2.0652 40.8371 2.06554C40.8405 2.0652 40.8424 2.06487 40.8424 2.06419ZM40.8346 2.06588C40.8346 2.06588 40.8333 2.06588 40.8326 2.06588C40.8333 2.06588 40.834 2.06588 40.8346 2.06588ZM40.8295 2.06621C40.8276 2.06621 40.8255 2.06621 40.8231 2.06655C40.8254 2.06655 40.8275 2.06655 40.8295 2.06621ZM40.8215 2.06689C40.8197 2.06689 40.8177 2.06689 40.8156 2.06722C40.8177 2.06722 40.8197 2.06722 40.8215 2.06689ZM40.7934 2.06823C40.7907 2.06823 40.7878 2.06823 40.7847 2.06857C40.7878 2.06857 40.7907 2.06857 40.7934 2.06823ZM40.7834 2.06857C40.7798 2.06857 40.7761 2.06857 40.7723 2.0689C40.7761 2.0689 40.7798 2.0689 40.7834 2.06857ZM40.4177 1.52911C40.4177 1.52911 40.4165 1.52911 40.416 1.52911C40.4165 1.52911 40.4172 1.52911 40.4177 1.52911ZM39.663 1.99756C39.663 1.99756 39.663 1.99756 39.6628 1.99756C39.6629 1.99756 39.6632 1.99756 39.663 1.99756ZM39.2018 1.06537C39.3521 1.06167 39.5023 1.05797 39.6526 1.05427C39.4763 1.05864 39.3002 1.06302 39.1239 1.06739C39.1499 1.06672 39.1758 1.06604 39.2018 1.06537ZM39.6602 1.99857C39.6581 1.99857 39.6547 1.99924 39.6499 1.99958C39.6547 1.99958 39.658 1.99891 39.6602 1.99857ZM39.2036 1.53651C39.1896 1.53685 39.1754 1.53719 39.1614 1.53752C39.2143 1.53618 39.268 1.53483 39.3204 1.53382C39.2819 1.53483 39.2431 1.53584 39.2038 1.53651C39.263 1.53517 39.3204 1.53382 39.378 1.53214C39.321 1.53348 39.2628 1.53483 39.2038 1.53651H39.2036ZM39.3376 2.04198C39.3376 2.04198 39.3374 2.04198 39.3371 2.04198C39.3372 2.04198 39.3374 2.04198 39.3376 2.04198ZM38.0449 1.08388C38.3516 1.08321 38.6666 1.07883 38.9453 1.07177C38.6669 1.07883 38.3513 1.08321 38.0449 1.08388ZM38.2112 1.55401C38.1745 1.55401 38.1378 1.55435 38.1011 1.55469C38.1316 1.55469 38.1622 1.55435 38.1928 1.55401C38.1899 1.55401 38.1868 1.55401 38.1839 1.55401C38.1931 1.55401 38.2022 1.55401 38.2113 1.55401H38.2112ZM38.2194 1.55401C38.2181 1.55401 38.2169 1.55401 38.2156 1.55401C38.2634 1.55401 38.3113 1.55368 38.3591 1.553C38.3125 1.55334 38.266 1.55368 38.2194 1.55401ZM38.2732 2.05107C38.2692 2.05107 38.2654 2.05107 38.2615 2.05107C38.2655 2.05107 38.2693 2.05107 38.2732 2.05107ZM38.0623 2.05275C38.092 2.05275 38.1217 2.05208 38.1513 2.05208C38.1217 2.05208 38.092 2.05241 38.0623 2.05275ZM38.2077 2.05141C38.2003 2.05141 38.193 2.05141 38.1856 2.05141C38.1929 2.05141 38.2003 2.05141 38.2077 2.05141ZM38.3641 2.12511C38.3619 2.12511 38.3595 2.12511 38.3573 2.12511C38.3639 2.12511 38.3705 2.12511 38.3771 2.12477C38.3729 2.12477 38.3685 2.12477 38.3643 2.12477L38.3641 2.12511ZM38.5052 2.05006C38.5184 2.05006 38.5317 2.05006 38.545 2.05006C38.5315 2.05006 38.5184 2.05006 38.5052 2.05006ZM39.1076 2.56428C39.0264 2.56933 38.9471 2.57404 38.8616 2.57841C38.9533 2.5737 39.0377 2.56865 39.1254 2.56327C39.1194 2.5636 39.1136 2.56394 39.1077 2.56428H39.1076ZM39.1647 2.08977C39.1509 2.09044 39.1373 2.09112 39.1236 2.09179C39.1545 2.09011 39.1857 2.08842 39.2175 2.08708C39.1998 2.08809 39.1823 2.08876 39.1647 2.08977ZM39.2239 2.08674C39.231 2.0864 39.2382 2.08607 39.2453 2.08573C39.2382 2.08607 39.2309 2.0864 39.2239 2.08674ZM39.2776 2.08405C39.2835 2.08405 39.2893 2.08338 39.2953 2.08304C39.2893 2.08304 39.2835 2.08371 39.2776 2.08405ZM39.2953 2.55452C39.3538 2.55183 39.4155 2.5488 39.483 2.5461C39.4155 2.5488 39.3537 2.55149 39.2953 2.55452ZM39.6033 2.06049C39.4925 2.0615 39.3929 2.06251 39.2441 2.06386C39.3351 2.06318 39.4117 2.06217 39.4808 2.0615C39.4001 2.06217 39.3094 2.06318 39.1975 2.06419C39.2134 2.06419 39.2289 2.06419 39.244 2.06386C39.2379 2.06386 39.2316 2.06386 39.2253 2.06386C39.4072 2.06217 39.5328 2.06116 39.6523 2.05982C39.6361 2.05982 39.6199 2.05982 39.6033 2.06015V2.06049ZM39.6655 2.53971C39.7051 2.53836 39.7465 2.53735 39.7902 2.53635C39.7465 2.53735 39.705 2.5387 39.6655 2.53971ZM39.9468 2.0578C39.9385 2.0578 39.9303 2.0578 39.9222 2.0578C39.9353 2.0578 39.9485 2.0578 39.9623 2.0578C39.9571 2.0578 39.952 2.0578 39.9468 2.0578ZM40.0052 2.05107C40.0165 2.05107 40.0275 2.0504 40.0379 2.05006C40.0275 2.05006 40.0166 2.05073 40.0052 2.05107ZM40.0573 2.00463C39.9292 2.00867 39.8013 2.01304 39.6732 2.01674C39.786 2.01338 39.899 2.00968 40.0118 2.00597C39.9634 2.00766 39.9149 2.009 39.8663 2.01068C40.0579 2.00395 40.2496 2.00025 40.4412 1.99554C40.3131 1.99857 40.1852 2.0016 40.0571 2.00463H40.0573ZM40.4381 2.05073C40.4614 2.05073 40.485 2.05073 40.5087 2.05073C40.471 2.05073 40.4338 2.05073 40.3969 2.05073C40.4106 2.05073 40.4244 2.05073 40.4381 2.05073ZM40.4339 2.5313C40.4277 2.5313 40.4214 2.5313 40.4152 2.5313C40.4211 2.52726 40.434 2.54173 40.4339 2.52221C40.4339 2.52524 40.4339 2.52827 40.4339 2.53163V2.5313ZM41.0154 2.54913C40.8315 2.54981 40.6476 2.55048 40.4637 2.55082C40.6814 2.55014 41.0248 2.54846 41.2857 2.55014C41.1956 2.54981 41.1056 2.54947 41.0155 2.5488L41.0154 2.54913ZM41.0702 2.05847C41.0666 2.05847 41.0632 2.05847 41.0596 2.05847C41.1482 2.05847 41.2368 2.05881 41.3256 2.05915C41.2404 2.05915 41.1554 2.05847 41.0702 2.05847ZM41.3245 2.05915C41.4339 2.0615 41.5442 2.05645 41.6532 2.06184C41.6481 2.0578 41.6407 2.06116 41.635 2.06015C41.636 2.06015 41.6369 2.06015 41.638 2.06015C41.5335 2.06015 41.4291 2.05982 41.3246 2.05915H41.3245ZM41.6325 2.55889C41.6824 2.56125 41.7585 2.56327 41.8645 2.56529C41.7583 2.5636 41.6823 2.56158 41.6325 2.55889ZM41.8183 2.09313C41.8256 2.09313 41.8332 2.09313 41.841 2.09347C41.8332 2.09347 41.8259 2.09347 41.8183 2.09313ZM41.8685 2.09414C41.8753 2.09414 41.8822 2.09482 41.8892 2.09414C41.8822 2.09448 41.8753 2.09414 41.8685 2.09414ZM41.8917 2.56562C41.8898 2.56562 41.8881 2.56562 41.8863 2.56562C41.8898 2.56562 41.8935 2.56562 41.8971 2.56495C41.8953 2.56495 41.8935 2.56529 41.8917 2.56562ZM42.1723 2.08405C41.9707 2.08304 41.7692 2.08169 41.5676 2.08035C41.5675 2.08035 41.5674 2.08001 41.5675 2.07967C41.7687 2.08304 41.9709 2.08237 42.1723 2.08405ZM42.109 1.39113C42.1128 1.39113 42.1167 1.39147 42.1204 1.39181C42.1127 1.39147 42.1046 1.39113 42.0968 1.39046C42.1007 1.39046 42.1042 1.3908 42.1079 1.39113C42.1073 1.39113 42.1066 1.39113 42.1058 1.39113C42.1069 1.39113 42.1078 1.39113 42.1089 1.39113H42.109ZM42.0718 1.38911C42.0706 1.38911 42.0694 1.38911 42.0682 1.38911C42.0768 1.38945 42.0852 1.39012 42.0931 1.39046C42.0862 1.39012 42.0791 1.38979 42.0718 1.38945V1.38911ZM42.1728 2.08405H42.1726C42.2028 2.08338 42.2331 2.08304 42.2643 2.08237C42.2331 2.08304 42.2029 2.08338 42.1727 2.08405H42.1728ZM42.2428 2.08472C42.2428 2.08472 42.2422 2.08506 42.2421 2.08539C42.2421 2.08539 42.2422 2.08506 42.2428 2.08472ZM42.2263 2.55586C42.2087 2.55519 42.191 2.55553 42.1734 2.55519C42.1984 2.55586 42.2201 2.55384 42.2457 2.55957C42.2377 2.55856 42.2318 2.55721 42.2263 2.55586ZM42.3004 2.56529C42.2939 2.56461 42.2869 2.56428 42.281 2.5636C42.2874 2.56394 42.2949 2.56495 42.302 2.56529C42.3014 2.56529 42.3009 2.56529 42.3004 2.56529ZM42.301 2.08102C42.2993 2.08102 42.2975 2.08102 42.2957 2.08102C42.2992 2.08102 42.3027 2.08102 42.3063 2.08102C42.3045 2.08102 42.3027 2.08102 42.3009 2.08102H42.301ZM42.3127 1.39719C42.3127 1.39719 42.3129 1.39719 42.3131 1.39719C42.3129 1.39719 42.3128 1.39719 42.3127 1.39719ZM42.3152 1.04686C42.3416 0.845953 42.064 0.873885 42.0534 0.980902C42.0636 0.874222 42.3418 0.845617 42.3152 1.04686ZM48.6267 1.07614C48.6818 1.07816 48.7378 1.08051 48.7946 1.08253C48.6754 1.07782 48.5597 1.07345 48.4411 1.06907C48.503 1.07143 48.5648 1.07378 48.6267 1.07614ZM48.4781 1.66238C48.5145 1.66372 48.5503 1.6654 48.5851 1.66709C48.5503 1.6654 48.5146 1.66372 48.4781 1.66238ZM48.5659 2.12948C48.5823 2.12982 48.5987 2.13015 48.6153 2.13049C48.5949 2.13015 48.5745 2.12948 48.5544 2.12914C48.5582 2.12914 48.5621 2.12914 48.5659 2.12914V2.12948ZM48.6966 1.67281C48.7038 1.67314 48.7106 1.67382 48.7177 1.67415C48.7106 1.67382 48.7036 1.67314 48.6966 1.67281ZM48.273 1.65464C48.2641 1.65464 48.2552 1.65396 48.2463 1.65363C48.2552 1.65363 48.2641 1.6543 48.273 1.65464ZM48.4083 1.65935C48.4009 1.65935 48.3933 1.65867 48.3858 1.65834C48.3933 1.65834 48.4009 1.65901 48.4083 1.65935ZM48.342 1.65699C48.3328 1.65699 48.3237 1.65632 48.3145 1.65598C48.3237 1.65598 48.333 1.65665 48.342 1.65699ZM46.8456 1.01388C46.9828 1.11282 47.3412 0.834175 47.432 1.15623C47.5404 0.837203 47.922 1.14748 48.1228 1.05729C47.6678 1.03811 47.1286 1.02566 46.8458 1.01388H46.8456ZM48.0314 1.52507C48.0203 1.52473 48.0093 1.5244 47.9983 1.52373C48.0093 1.52406 48.0204 1.5244 48.0314 1.52507ZM46.6071 2.18568C47.0238 2.20183 47.4404 2.219 47.857 2.23582C47.3711 2.21698 46.8854 2.19477 46.3995 2.17895C46.4687 2.18131 46.538 2.18366 46.6073 2.18568H46.6071ZM46.885 2.09549C46.8904 2.09549 46.896 2.09549 46.9014 2.09583C46.896 2.09583 46.8904 2.09583 46.885 2.09549ZM46.9397 2.09684C46.9558 2.09717 46.972 2.09751 46.9879 2.09785C46.9718 2.09751 46.9558 2.09717 46.9397 2.09684ZM46.9936 2.13823C46.97 2.13756 46.9453 2.13655 46.9194 2.13554C46.9442 2.13655 46.9695 2.13756 46.9936 2.13823ZM46.9182 2.1352C46.9085 2.13486 46.8989 2.13419 46.8888 2.13385C46.8987 2.13419 46.9085 2.13486 46.9182 2.1352ZM47.0324 2.12241C47.0316 2.12241 47.0306 2.12241 47.0298 2.12241C47.0325 2.12241 47.0351 2.12241 47.0378 2.12241C47.0359 2.12241 47.0342 2.12241 47.0324 2.12241ZM47.4299 2.10727C47.4398 2.10727 47.4496 2.10761 47.4596 2.10794C47.4496 2.10794 47.4398 2.10761 47.4299 2.10727ZM47.3773 2.10626C47.3624 2.10626 47.3474 2.10559 47.3324 2.10525C47.3328 2.10525 47.3332 2.10525 47.3336 2.10525C47.3331 2.10525 47.3324 2.10525 47.3319 2.10525C47.3535 2.10559 47.375 2.10626 47.3965 2.1066C47.3877 2.1066 47.3787 2.10626 47.3698 2.10592C47.3723 2.10592 47.3748 2.10592 47.3773 2.10592V2.10626ZM47.2759 2.10424C47.2429 2.10357 47.2101 2.10289 47.1768 2.10222C47.2136 2.10289 47.2502 2.1039 47.2866 2.10458C47.283 2.10458 47.2796 2.10458 47.276 2.10458L47.2759 2.10424ZM47.2273 2.14227C47.2103 2.14227 47.1931 2.14227 47.1759 2.14193C47.1931 2.14193 47.2102 2.14193 47.2273 2.14227ZM47.1665 1.59844C47.1649 1.59844 47.1633 1.59844 47.1617 1.59844C47.1635 1.59844 47.1652 1.59844 47.1669 1.59844C47.1669 1.59844 47.1666 1.59844 47.1665 1.59844ZM47.1658 1.59844C47.1374 1.59743 47.1085 1.59608 47.0798 1.59507C47.1085 1.59608 47.1372 1.59743 47.1658 1.59844ZM47.1364 2.1416C47.1272 2.1416 47.1178 2.1416 47.1084 2.14126C47.1179 2.14126 47.1272 2.14126 47.1364 2.1416ZM47.4719 2.15775C47.6049 2.15909 47.7379 2.16078 47.8709 2.16179C47.7379 2.16044 47.6049 2.15909 47.4719 2.15775ZM47.4597 2.10761C47.4674 2.10761 47.4751 2.10761 47.4826 2.10794C47.4749 2.10794 47.4674 2.10794 47.4597 2.10761ZM47.7007 1.51363C47.705 1.51363 47.7093 1.51363 47.7136 1.51397C47.7093 1.51397 47.705 1.51397 47.7007 1.51363ZM46.7177 2.09145C46.6973 2.09078 46.6768 2.09044 46.6563 2.08977C46.6769 2.09044 46.6973 2.09078 46.7177 2.09145ZM46.5342 2.0864C46.5146 2.08573 46.4947 2.08539 46.4748 2.08472C46.496 2.08539 46.5171 2.08607 46.538 2.0864C46.5367 2.0864 46.5355 2.0864 46.5342 2.0864ZM46.4591 2.08439C46.4562 2.08439 46.4531 2.08439 46.4501 2.08439C46.4531 2.08439 46.456 2.08439 46.4591 2.08439ZM46.4344 2.08371C46.4113 2.08304 46.388 2.08237 46.3645 2.08169C46.3905 2.08237 46.4163 2.08338 46.4418 2.08405C46.4393 2.08405 46.437 2.08405 46.4344 2.08405V2.08371ZM46.3535 2.08136C46.3261 2.08068 46.2982 2.07967 46.2704 2.07866C46.2983 2.07967 46.3261 2.08035 46.3535 2.08136ZM45.946 2.06789C45.946 2.06789 45.9459 2.06789 45.9458 2.06789C45.9458 2.06789 45.9459 2.06789 45.946 2.06789ZM45.2501 2.09717C45.2501 2.09717 45.2501 2.09717 45.25 2.09717C45.25 2.09717 45.25 2.09717 45.2501 2.09717ZM45.2488 2.09717C45.2488 2.09717 45.2484 2.09717 45.2481 2.09717C45.2485 2.09717 45.2489 2.09717 45.2493 2.09717C45.2491 2.09717 45.2489 2.09717 45.2488 2.09717ZM45.2488 2.09717C45.2488 2.09717 45.2479 2.09717 45.2475 2.09717C45.248 2.09717 45.2484 2.09717 45.2488 2.09717ZM45.1809 2.02886H45.1807C45.1807 2.02886 45.1807 2.02886 45.1809 2.02886ZM44.9112 2.08573C44.9104 2.08573 44.9096 2.08573 44.9087 2.08573C44.9088 2.08573 44.9091 2.08573 44.9092 2.08573C44.9088 2.08573 44.9083 2.08573 44.9079 2.08573C44.9091 2.08573 44.9102 2.08573 44.9111 2.08573H44.9112ZM44.9078 2.08573C44.9051 2.08573 44.9018 2.08573 44.8986 2.08573C44.902 2.08573 44.9051 2.08573 44.9078 2.08573ZM44.8955 2.08573C44.8928 2.08573 44.8902 2.08573 44.8875 2.08573C44.8903 2.08573 44.8929 2.08573 44.8955 2.08573ZM44.854 2.08607C44.7799 2.08607 44.6962 2.08539 44.6209 2.08607C44.686 2.08539 44.7869 2.08607 44.854 2.08607ZM44.6039 2.0053C44.6286 2.00597 44.6513 2.00698 44.6721 2.00766C44.6513 2.00698 44.6285 2.00631 44.6039 2.0053C44.6902 2.00799 44.751 2.01001 44.7952 2.01136C44.7511 2.01001 44.6903 2.00799 44.6039 2.0053ZM44.6529 1.5419C44.6756 1.5419 44.6987 1.54223 44.7217 1.54257C44.6987 1.54257 44.6756 1.54223 44.6529 1.5419ZM44.8004 2.01169C44.8004 2.01169 44.8006 2.01169 44.8008 2.01169C44.7969 2.01169 44.7931 2.01169 44.789 2.01136C44.793 2.01136 44.7967 2.01136 44.8004 2.01169ZM44.8156 2.01237C44.8184 2.01237 44.821 2.01237 44.8236 2.01237C44.8187 2.01237 44.8134 2.01237 44.8082 2.01169C44.8107 2.01169 44.8131 2.01169 44.8155 2.01169L44.8156 2.01237ZM43.9581 1.04282C43.9581 1.04282 43.9587 1.04282 43.9588 1.04282C43.9583 1.04282 43.9579 1.04282 43.9573 1.04282C43.9576 1.04282 43.9579 1.04282 43.958 1.04282H43.9581ZM43.7032 1.50824C43.7032 1.50824 43.7024 1.50824 43.702 1.50824C43.7068 1.50824 43.7115 1.50824 43.7164 1.50824C43.7119 1.50824 43.7076 1.50824 43.7032 1.50824ZM43.7062 1.99453C43.7107 1.99419 43.7156 1.99386 43.7207 1.99352C43.7142 1.99386 43.7084 1.99419 43.7023 1.99487C43.7036 1.99487 43.7049 1.99487 43.7062 1.99487V1.99453ZM43.6889 1.50791C43.6911 1.50791 43.6935 1.50791 43.6958 1.50791C43.6919 1.50791 43.6881 1.50791 43.6843 1.50791C43.6858 1.50791 43.6873 1.50791 43.6889 1.50791ZM43.6749 1.50791C43.6709 1.50791 43.6668 1.50791 43.6628 1.50791C43.6668 1.50791 43.6707 1.50791 43.6749 1.50791ZM43.6546 1.50757C43.6485 1.50757 43.6423 1.50757 43.6362 1.50757C43.6421 1.50757 43.6484 1.50757 43.6546 1.50757ZM43.615 2.00025C43.615 2.00025 43.6153 2.00025 43.6154 2.00025C43.6153 2.00025 43.6151 2.00025 43.6149 2.00025H43.615ZM43.6147 2.00025C43.6124 2.00025 43.6098 2.00025 43.6075 2.00025C43.61 2.00025 43.6124 2.00025 43.6147 2.00025ZM43.5313 2.00194C43.5231 2.00194 43.5142 2.00194 43.505 2.00194C43.5142 2.00194 43.523 2.00194 43.5313 2.00194ZM43.4134 1.5244C43.4122 1.52373 43.4104 1.52305 43.4079 1.52238C43.4104 1.52305 43.4124 1.52373 43.4134 1.5244ZM43.3813 1.50623C43.3791 1.50623 43.3769 1.50623 43.3749 1.50623C43.3769 1.50623 43.379 1.50623 43.3813 1.50623ZM43.3733 1.50623C43.3744 1.50623 43.3757 1.50623 43.3769 1.50623C43.3754 1.50623 43.3738 1.50623 43.3725 1.50623C43.3728 1.50623 43.373 1.50623 43.3733 1.50623ZM43.343 1.0371C43.3279 1.03879 43.3136 1.04417 43.3003 1.05258C43.3137 1.04417 43.3279 1.03879 43.343 1.0371ZM43.4006 2.07092C43.3948 2.07092 43.3888 2.07092 43.383 2.07092C43.3944 2.07092 43.4056 2.07126 43.4169 2.0716C43.4113 2.0716 43.4059 2.0716 43.4003 2.0716C43.4003 2.0716 43.4005 2.0716 43.4006 2.0716V2.07092ZM43.3511 2.04198C43.3426 2.04198 43.3341 2.04165 43.3255 2.04131C43.3341 2.04131 43.3427 2.04165 43.3511 2.04198ZM43.2717 2.03996C43.2772 2.03996 43.2826 2.03996 43.288 2.03996C43.2794 2.03996 43.2707 2.03963 43.2619 2.03929C43.2653 2.03929 43.2686 2.03929 43.2719 2.03929L43.2717 2.03996ZM43.2585 2.03996C43.2592 2.03996 43.26 2.03996 43.2606 2.03996C43.2589 2.03996 43.2572 2.03996 43.2556 2.03996C43.2565 2.03996 43.2576 2.03996 43.2585 2.03996ZM43.0826 2.0366C43.0836 2.0366 43.0846 2.0366 43.0855 2.0366C43.0826 2.0366 43.0798 2.0366 43.0768 2.0366C43.0787 2.0366 43.0806 2.0366 43.0825 2.0366H43.0826ZM42.9491 2.06318C42.98 2.06386 43.0106 2.06419 43.0412 2.06487C43.0106 2.06419 42.9799 2.06386 42.9491 2.06318ZM42.5013 2.02179C42.5062 2.02179 42.5111 2.02179 42.516 2.02145C42.5111 2.02145 42.5062 2.02179 42.5013 2.02179ZM42.6439 2.01607C42.6439 2.01607 42.6432 2.01607 42.6428 2.01607C42.6432 2.01607 42.6436 2.01607 42.644 2.01607C42.6398 2.01607 42.6352 2.01641 42.6306 2.01674C42.635 2.01674 42.6395 2.01641 42.6438 2.01607H42.6439ZM42.6244 1.52541C42.6305 1.52541 42.6365 1.52574 42.6424 1.52608C42.6365 1.52608 42.6306 1.52574 42.6244 1.52541ZM42.6541 1.52642C42.6623 1.52642 42.6702 1.52709 42.6781 1.52743C42.6702 1.52743 42.6623 1.52675 42.6541 1.52642ZM42.6921 1.52776C42.6958 1.52776 42.6996 1.52776 42.7032 1.5281C42.6996 1.5281 42.6958 1.5281 42.6921 1.52776ZM42.9604 2.10458C42.9367 2.1039 42.9126 2.10289 42.8881 2.10222C42.9125 2.10289 42.9367 2.10357 42.9604 2.10458ZM43.027 1.06302C42.9995 1.06302 42.9703 1.06302 42.9397 1.06234C42.9705 1.06234 42.9995 1.06268 43.027 1.06302ZM42.7816 1.53248C42.7751 1.53214 42.7684 1.5318 42.7611 1.53113C42.7682 1.53147 42.7751 1.5318 42.7816 1.53248ZM42.7157 1.52911C42.72 1.52911 42.7241 1.52945 42.7284 1.52978C42.7243 1.52978 42.72 1.52945 42.7157 1.52911ZM42.7384 1.53012C42.7419 1.53012 42.7451 1.53046 42.7484 1.53079C42.7451 1.53079 42.7419 1.53046 42.7384 1.53012ZM42.5822 1.5244C42.5717 1.5244 42.5611 1.52373 42.5503 1.52339C42.5611 1.52339 42.5717 1.52406 42.5822 1.5244ZM42.6129 1.52541C42.6063 1.52541 42.5995 1.52507 42.5928 1.52473C42.5997 1.52473 42.6063 1.52507 42.6129 1.52541ZM42.359 1.04821C42.4235 1.04955 42.4814 1.05056 42.5329 1.05191C42.4748 1.05023 42.3998 1.04888 42.3303 1.04753C42.3401 1.04753 42.3498 1.04787 42.359 1.04821ZM42.4842 2.05814C42.4842 2.05814 42.4839 2.05814 42.4838 2.05814C42.4838 2.05814 42.484 2.05814 42.4842 2.05814ZM42.4225 1.52036C42.41 1.52036 42.3973 1.51969 42.3845 1.51969C42.3972 1.51969 42.41 1.52002 42.4225 1.52036ZM42.3517 2.08068C42.3695 2.08068 42.3883 2.08035 42.406 2.08001C42.3884 2.08001 42.3695 2.08068 42.3517 2.08068ZM42.466 2.07866C42.465 2.07866 42.4639 2.07866 42.4629 2.07866C42.4639 2.07866 42.4648 2.07866 42.4659 2.07866C42.4578 2.07866 42.4493 2.07866 42.4409 2.079C42.4569 2.079 42.4733 2.07833 42.4892 2.07799C42.4815 2.07799 42.474 2.07799 42.466 2.07833V2.07866ZM42.5816 2.07597C42.5803 2.07597 42.579 2.07597 42.5777 2.07597C42.5843 2.07597 42.5908 2.07564 42.5969 2.0753C42.592 2.0753 42.5868 2.0753 42.5816 2.07564V2.07597ZM42.6828 2.09785C42.6828 2.09785 42.6836 2.09785 42.6841 2.09785C42.6643 2.09751 42.6446 2.09717 42.6243 2.09684C42.6442 2.09684 42.6634 2.09751 42.6828 2.09785ZM43.4843 2.59288C43.2156 2.58783 42.913 2.57134 42.6351 2.56798C42.9127 2.57101 43.216 2.58851 43.4843 2.59255C43.4843 2.59255 43.4843 2.59255 43.4843 2.59288ZM43.4852 2.12174C43.4852 2.12174 43.4855 2.12174 43.4856 2.12174C43.4856 2.12174 43.4853 2.12174 43.4852 2.12174ZM43.5787 2.10727C43.5774 2.10727 43.5762 2.10727 43.575 2.10727H43.5761C43.571 2.10727 43.566 2.10727 43.5612 2.10727C43.5663 2.10727 43.5714 2.10727 43.5767 2.10727H43.5761C43.577 2.10727 43.5778 2.10727 43.5787 2.10727ZM43.5637 2.0504C43.5512 2.04972 43.5385 2.04939 43.5253 2.04871C43.5472 2.04972 43.5682 2.0504 43.5885 2.05141C43.5804 2.05107 43.5721 2.05073 43.5637 2.0504ZM43.346 2.04165C43.5428 2.044 43.7076 2.04602 43.8544 2.0477C43.7993 2.04703 43.7416 2.04636 43.6807 2.04568C43.7416 2.04636 43.7992 2.04703 43.8544 2.0477C43.7074 2.04602 43.543 2.04434 43.346 2.04165ZM43.7926 1.99251C43.7964 1.99251 43.8001 1.99251 43.804 1.99251C43.7999 1.99251 43.7963 1.99251 43.7926 1.99251ZM43.8376 1.99251C43.8257 1.99251 43.8147 1.99251 43.8048 1.99251C43.8147 1.99251 43.8256 1.99251 43.8376 1.99251ZM44.0404 2.08136C44.0404 2.08136 44.039 2.08136 44.0384 2.08136C44.0406 2.08136 44.043 2.08136 44.0454 2.08169C44.0437 2.08169 44.042 2.08169 44.0404 2.08136ZM44.051 2.08203C44.0539 2.08203 44.057 2.08237 44.0601 2.0827C44.0569 2.0827 44.0539 2.08237 44.051 2.08203ZM43.9735 2.04871C44.0196 2.04939 44.0641 2.04972 44.1076 2.05006C44.0641 2.04972 44.0194 2.04905 43.9735 2.04871ZM43.9657 1.51531C43.8699 1.51161 43.78 1.51094 43.7097 1.50892C43.7452 1.50959 43.7868 1.5106 43.8248 1.51127C43.8211 1.51127 43.8175 1.51127 43.8138 1.51127C43.8611 1.51228 43.9083 1.51329 43.956 1.51464C43.9556 1.51464 43.9553 1.51464 43.9549 1.51464C44.0895 1.52339 44.2242 1.5318 44.3587 1.54022C44.2278 1.53214 44.0966 1.52373 43.9657 1.51531ZM44.2911 2.05208C44.4281 2.05342 44.5635 2.05477 44.7162 2.05645C44.5668 2.05511 44.4273 2.05376 44.2911 2.05208ZM44.8262 2.13453C44.8114 2.13419 44.7959 2.13385 44.78 2.13352C44.7956 2.13385 44.811 2.13419 44.8257 2.13453C44.7444 2.13251 44.6605 2.13083 44.577 2.12881C44.5874 2.12881 44.598 2.12914 44.6082 2.12948C44.6023 2.12948 44.5962 2.12948 44.5902 2.12914C44.7192 2.13217 44.8343 2.13486 44.9184 2.13688C44.8908 2.13621 44.8598 2.13554 44.8261 2.13486L44.8262 2.13453ZM44.9536 2.00294C44.9433 2.00294 44.9333 2.00294 44.9234 2.00261C44.947 2.00261 44.9706 2.00328 44.9947 2.00362C44.9808 2.00362 44.967 2.00328 44.9537 2.00294H44.9536ZM44.9549 2.00294C45.0213 2.00395 45.0946 2.0053 45.1726 2.00732C45.0945 2.0053 45.0213 2.00395 44.9549 2.00294ZM45.15 2.02953C45.1467 2.02953 45.1432 2.02953 45.1399 2.02953C45.1434 2.02953 45.1468 2.02953 45.15 2.02953ZM45.384 2.63057C45.304 2.63057 45.3052 2.63057 45.3844 2.63057C45.3843 2.63057 45.3841 2.63057 45.384 2.63057ZM45.4172 2.14799C45.2643 2.14462 45.1113 2.14126 44.9584 2.13789C45.1406 2.14227 45.3229 2.1453 45.5052 2.15034C45.4759 2.14967 45.4465 2.14866 45.4172 2.14799ZM45.5445 2.12107C45.5445 2.12107 45.5454 2.12107 45.5458 2.12107C45.5454 2.12107 45.5449 2.12107 45.5445 2.12107ZM45.5938 2.15607C45.5927 2.15607 45.5917 2.15607 45.5903 2.1564C45.5918 2.1564 45.5931 2.1564 45.5943 2.15607C45.5942 2.15607 45.594 2.15607 45.5939 2.15607H45.5938ZM45.5967 2.15573C45.5967 2.15573 45.5954 2.15573 45.5944 2.15607C45.5954 2.15607 45.5962 2.15607 45.5968 2.15573C45.5968 2.15573 45.5968 2.15573 45.5967 2.15573ZM45.5983 2.15539C45.5983 2.15539 45.5976 2.15539 45.5973 2.15539C45.5977 2.15539 45.598 2.15539 45.5983 2.15539ZM45.5985 2.15539C45.5985 2.15539 45.5988 2.15539 45.5987 2.15539C45.5987 2.15539 45.5987 2.15539 45.5985 2.15539ZM45.6802 2.04669C45.7728 2.05174 45.8609 2.05612 45.9442 2.0615C45.8796 2.05746 45.7745 2.05208 45.6802 2.04669ZM45.9822 2.06419C45.9798 2.06419 45.9774 2.06386 45.9748 2.06352C45.9774 2.06352 45.9798 2.06386 45.9822 2.06419ZM45.9707 2.06318C45.9679 2.06318 45.965 2.06285 45.9618 2.06251C45.9648 2.06251 45.9679 2.06285 45.9707 2.06318ZM45.8766 2.64202C45.8972 2.64269 45.9173 2.64303 45.9366 2.64336C45.9173 2.64303 45.8972 2.64235 45.8766 2.64202ZM45.9374 2.64336C45.9556 2.6437 45.9732 2.64437 45.9901 2.64471C45.9733 2.64437 45.9557 2.64404 45.9374 2.64336ZM45.9713 2.17289C45.9781 2.17289 45.9848 2.17289 45.9916 2.17323C45.985 2.17323 45.9782 2.17323 45.9713 2.17289ZM46.0018 2.17357C46.0084 2.17357 46.0148 2.17357 46.0213 2.1739C46.0149 2.1739 46.0084 2.1739 46.0018 2.17357ZM46.0305 2.0716C46.0028 2.07059 45.9748 2.06958 45.947 2.06857C45.9797 2.06958 46.0119 2.07092 46.0438 2.07193C46.0394 2.07193 46.0349 2.07193 46.0305 2.0716ZM46.1383 2.0753C46.1259 2.07496 46.1133 2.07463 46.1007 2.07395C46.1159 2.07463 46.1314 2.07496 46.1465 2.07564C46.1438 2.07564 46.1411 2.07564 46.1383 2.07564V2.0753ZM46.1545 2.6474C46.1565 2.6474 46.1582 2.6474 46.16 2.6474C46.1582 2.6474 46.1565 2.6474 46.1546 2.6474H46.1545ZM46.1844 2.17592C46.1844 2.17592 46.1847 2.17592 46.1848 2.17592C46.1847 2.17592 46.1845 2.17592 46.1844 2.17592ZM46.1851 2.17592H46.1848C46.1848 2.17592 46.1851 2.17592 46.1853 2.17592C46.1853 2.17592 46.1852 2.17592 46.1851 2.17592ZM46.1718 2.07664C46.1697 2.07664 46.1676 2.07664 46.1655 2.07664C46.1937 2.07765 46.2215 2.07833 46.2492 2.07934C46.2235 2.07866 46.1979 2.07765 46.1718 2.07698V2.07664ZM47.8498 2.70764C47.2988 2.68778 46.7476 2.65851 46.1966 2.64605C46.774 2.66187 47.3542 2.68543 47.9313 2.7137C47.9082 2.71168 47.8815 2.70999 47.8498 2.70764ZM47.9578 2.24424C47.957 2.24424 47.9563 2.24424 47.9555 2.24424C47.9604 2.24457 47.9652 2.24491 47.9698 2.24558C47.9659 2.24525 47.9619 2.24491 47.9578 2.24457V2.24424ZM47.9693 2.24525C47.9719 2.24525 47.9745 2.24558 47.977 2.24592C47.9745 2.24592 47.9718 2.24558 47.9693 2.24525ZM47.9791 2.24626C47.9782 2.24626 47.9772 2.24626 47.9762 2.24626C47.9811 2.24659 47.9857 2.24727 47.9904 2.2476C47.9866 2.24727 47.9829 2.24693 47.979 2.24659L47.9791 2.24626ZM48.0149 2.71908H48.0137C48.0147 2.71908 48.0158 2.71908 48.0168 2.71908C48.0162 2.71908 48.0155 2.71908 48.0149 2.71908ZM48.0468 2.2476C48.0468 2.2476 48.0464 2.2476 48.0461 2.2476C48.0472 2.2476 48.0481 2.2476 48.049 2.2476C48.0484 2.2476 48.0476 2.2476 48.0468 2.2476ZM47.9823 1.64622C48.0068 1.6469 48.0311 1.64757 48.0552 1.64858C48.0135 1.64723 47.971 1.64589 47.9281 1.64454C47.9461 1.64521 47.9645 1.64555 47.9824 1.64622C47.9432 1.64488 47.903 1.64387 47.8632 1.64252C47.9812 1.64622 48.0948 1.64959 48.2037 1.65295C48.1321 1.6506 48.0583 1.64824 47.9824 1.64622H47.9823ZM48.1376 2.1214C48.1511 2.1214 48.1645 2.12208 48.178 2.12208C48.1645 2.12208 48.151 2.1214 48.1376 2.1214ZM48.2903 2.12443C48.2903 2.12443 48.29 2.12443 48.2899 2.12443C48.294 2.12443 48.2981 2.12443 48.3022 2.12443C48.2983 2.12443 48.2943 2.12443 48.2903 2.12443ZM48.3024 2.12443C48.3208 2.12477 48.339 2.12511 48.3575 2.12544C48.339 2.12511 48.3206 2.12477 48.3024 2.12443ZM48.3784 2.12611C48.3772 2.12611 48.376 2.12611 48.3748 2.12611C48.3782 2.12611 48.3818 2.12611 48.3853 2.12611C48.383 2.12611 48.3808 2.12611 48.3784 2.12611ZM48.398 2.12645C48.4004 2.12645 48.4027 2.12645 48.4051 2.12645C48.4008 2.12645 48.3964 2.12645 48.3921 2.12645C48.3941 2.12645 48.396 2.12645 48.398 2.12645ZM48.4671 2.1278C48.4631 2.1278 48.4593 2.1278 48.4553 2.1278C48.4601 2.1278 48.4647 2.1278 48.4695 2.1278C48.4687 2.1278 48.4679 2.1278 48.4671 2.1278ZM48.4794 2.1278C48.4986 2.12813 48.5178 2.12881 48.5373 2.12914C48.518 2.12881 48.4986 2.12813 48.4794 2.1278ZM48.5368 2.12914C48.5394 2.12914 48.5421 2.12914 48.5446 2.12914C48.5419 2.12914 48.5393 2.12914 48.5368 2.12914ZM48.746 1.67617C48.7542 1.67685 48.7622 1.67718 48.7702 1.67786C48.7622 1.67718 48.7541 1.67685 48.746 1.67617ZM48.8382 1.68257C48.8408 1.68257 48.8433 1.6829 48.846 1.68324C48.8435 1.68324 48.8408 1.6829 48.8382 1.68257ZM48.8481 1.68324C48.8473 1.68324 48.8465 1.68324 48.8457 1.68324C48.8604 1.68425 48.875 1.6856 48.8892 1.68661C48.8756 1.6856 48.862 1.68425 48.8481 1.68324ZM48.9517 1.56007C48.9544 1.56007 48.9571 1.56007 48.9597 1.56007C48.9571 1.56007 48.9543 1.56007 48.9517 1.56007ZM49.3312 1.22489C49.3312 1.20436 49.3315 1.18383 49.3316 1.1633C49.3316 1.18383 49.3313 1.20436 49.3312 1.22489ZM60.3406 3.07277C60.3406 3.07277 60.3406 3.07479 60.3406 3.07614C60.3406 3.07345 60.3406 3.07076 60.3405 3.06806C60.3405 3.06975 60.3405 3.07143 60.3405 3.07311L60.3406 3.07277ZM60.1552 3.09768C60.1552 3.09768 60.1552 3.097 60.1552 3.09667C60.1552 3.097 60.1552 3.09734 60.1552 3.09768ZM60.1552 3.13167C60.1552 3.13167 60.1552 3.13099 60.1552 3.13066C60.155 3.14143 60.1548 3.15186 60.1547 3.16229C60.155 3.15186 60.1551 3.1421 60.1552 3.13167ZM60.1461 3.17508C60.1456 3.18349 60.1452 3.19224 60.1446 3.20066C60.145 3.19224 60.1456 3.18383 60.1461 3.17508ZM60.1443 3.2084C60.1443 3.20671 60.1445 3.20469 60.1446 3.20301C60.1445 3.20537 60.1444 3.20739 60.1443 3.20974C60.1443 3.20941 60.1443 3.20907 60.1443 3.20873V3.2084ZM60.1429 3.30363C60.1429 3.30363 60.1431 3.30262 60.1432 3.30195C60.1423 3.30801 60.1413 3.31373 60.1404 3.31945C60.1412 3.3144 60.142 3.30902 60.1429 3.30363ZM60.1307 2.28832C60.1196 2.27553 60.1084 2.26376 60.0967 2.254C60.1084 2.26376 60.1196 2.27587 60.1307 2.28832ZM60.1208 3.132C60.1208 3.13705 60.1207 3.1421 60.1205 3.14715C60.1205 3.1421 60.1207 3.13705 60.1208 3.132ZM60.1205 3.08556C60.1201 3.07479 60.1198 3.06369 60.1191 3.05258C60.1205 3.07446 60.1208 3.09566 60.1211 3.11753C60.1209 3.10676 60.1207 3.09633 60.1205 3.08556ZM60.1031 2.82307C60.1077 2.83485 60.1122 2.84797 60.1164 2.86211C60.1122 2.84831 60.1078 2.83485 60.1031 2.82307ZM60.1178 3.2084C60.1168 3.21917 60.1158 3.23061 60.1146 3.24205C60.1159 3.23061 60.117 3.21917 60.1178 3.2084ZM60.1178 3.2084C60.118 3.20402 60.1183 3.19965 60.1186 3.19493C60.1183 3.19931 60.118 3.20368 60.1178 3.2084ZM60.1066 3.29488C60.1016 3.32282 60.0943 3.35277 60.0852 3.37532C60.0942 3.35243 60.1016 3.32282 60.1066 3.29488ZM60.1069 3.29488C60.1036 3.31272 60.0995 3.33089 60.0943 3.34873C60.0995 3.33089 60.1036 3.31306 60.1069 3.29488ZM60.0382 3.45305C60.039 3.45238 60.0396 3.45204 60.0404 3.45103C60.038 3.45339 60.0355 3.45507 60.0331 3.45709C60.0347 3.45575 60.0364 3.4544 60.0382 3.45305ZM60.0086 3.5244C60.0073 3.52507 60.006 3.52541 60.0047 3.52574C60.006 3.52541 60.0073 3.52473 60.0086 3.5244ZM59.9855 3.47796C59.9855 3.47796 59.9852 3.47796 59.9851 3.47796C59.9853 3.47796 59.9855 3.47796 59.9857 3.47796C59.9855 3.47796 59.9851 3.47796 59.9848 3.47796C59.9848 3.47796 59.9849 3.47796 59.9851 3.47796C59.9803 3.47796 59.9758 3.47796 59.9712 3.47796C59.9759 3.47796 59.9806 3.47863 59.9855 3.47796ZM59.9786 3.54392C59.9771 3.54392 59.9757 3.54392 59.9742 3.54392C59.9755 3.54392 59.9771 3.54392 59.9786 3.54392ZM59.9638 2.19073C59.9638 2.19073 59.9641 2.19073 59.9643 2.19073C59.964 2.19073 59.9637 2.19073 59.9635 2.19073C59.9635 2.19073 59.9636 2.19073 59.9638 2.19073ZM59.9656 2.66355C59.9677 2.66389 59.9698 2.66423 59.9721 2.6649C59.9688 2.66423 59.9656 2.66355 59.9624 2.66288C59.9635 2.66288 59.9645 2.66322 59.9656 2.66355ZM59.946 2.66019C59.9426 2.65985 59.9391 2.65952 59.9358 2.65918C59.9391 2.65918 59.9426 2.65985 59.946 2.66019ZM59.9359 2.65918C59.9359 2.65918 59.9359 2.65918 59.9358 2.65918C59.9358 2.65918 59.9358 2.65918 59.9359 2.65918ZM59.92 2.1877C59.9211 2.1877 59.9222 2.1877 59.9234 2.1877C59.9212 2.1877 59.919 2.1877 59.9169 2.1877C59.9179 2.1877 59.919 2.1877 59.92 2.1877ZM59.8861 2.66086C59.8934 2.66019 59.901 2.65985 59.9085 2.65952C59.8997 2.65985 59.8906 2.66019 59.8822 2.6612C59.8835 2.6612 59.8848 2.6612 59.8861 2.66086ZM59.9079 2.70158C59.9007 2.70158 59.8957 2.70158 59.8922 2.70091C59.8954 2.70091 59.8999 2.70091 59.9035 2.70124C59.9024 2.70124 59.9011 2.70124 59.9002 2.70124C59.9024 2.70124 59.9049 2.70124 59.9079 2.70124V2.70158ZM59.9064 2.7487C59.9064 2.7487 59.9067 2.7487 59.9068 2.7487C59.9068 2.7487 59.9068 2.7487 59.9067 2.7487C59.9067 2.7487 59.9069 2.7487 59.9071 2.7487C59.9057 2.7487 59.9044 2.7487 59.9032 2.7487C59.9044 2.7487 59.9055 2.7487 59.9067 2.7487H59.9064ZM59.8872 2.69855C59.8872 2.69855 59.8879 2.69855 59.8883 2.69822C59.8879 2.69822 59.8875 2.69822 59.8872 2.69855ZM59.8869 2.69855C59.8869 2.69855 59.8867 2.69855 59.8864 2.69855C59.8865 2.69855 59.8867 2.69855 59.8869 2.69855ZM59.8857 2.69956C59.8857 2.69956 59.8857 2.69956 59.886 2.69923C59.8859 2.69923 59.8859 2.69923 59.8857 2.69956ZM59.8861 2.70024C59.8861 2.70024 59.8861 2.70024 59.8859 2.70024C59.8859 2.70024 59.8859 2.70024 59.8861 2.70024ZM59.8861 2.69923C59.8861 2.69923 59.8864 2.69923 59.8865 2.69923C59.8864 2.69923 59.8863 2.69923 59.8861 2.69923ZM59.8246 2.19813C59.8305 2.19712 59.8369 2.19611 59.8434 2.1951C59.8256 2.1978 59.8031 2.20217 59.788 2.20352C59.7978 2.20284 59.8108 2.20049 59.8244 2.19813H59.8246ZM59.8304 2.76115C59.8304 2.76115 59.8307 2.76115 59.8308 2.76115C59.8305 2.76115 59.8301 2.76115 59.8299 2.76115C59.83 2.76115 59.8301 2.76115 59.8303 2.76115H59.8304ZM59.8209 2.76317C59.8193 2.7635 59.8175 2.76384 59.8161 2.76418C59.8175 2.76418 59.8193 2.7635 59.8209 2.76317ZM59.803 2.71471C59.7979 2.71538 59.7928 2.71605 59.7878 2.71673C59.7928 2.71673 59.7978 2.71572 59.803 2.71471ZM59.768 2.67365C59.7621 2.67298 59.756 2.67163 59.75 2.67096C59.756 2.67197 59.7622 2.67298 59.768 2.67365ZM58.9304 2.02818C59.0935 2.06251 59.2568 2.0965 59.4201 2.13049C59.2567 2.0965 59.0933 2.06251 58.9299 2.02818C58.93 2.02818 58.9303 2.02818 58.9304 2.02818ZM58.9157 2.49798C59.166 2.54981 59.4164 2.60264 59.6666 2.65682C59.2533 2.56663 58.8399 2.48149 58.4264 2.40308C58.5895 2.43471 58.7525 2.46635 58.9157 2.49798ZM58.8658 3.23734C58.8776 3.23969 58.8893 3.24205 58.9013 3.24407C58.8895 3.24171 58.8776 3.23936 58.8658 3.23734ZM58.9708 3.2582C59.0158 3.26729 59.061 3.27671 59.1063 3.28647C59.0611 3.27671 59.0159 3.26729 58.9708 3.2582ZM58.9205 3.24811C58.9259 3.24912 58.9312 3.25013 58.9366 3.25147C58.9312 3.25046 58.9259 3.24945 58.9205 3.24811ZM59.1788 3.3107C59.2763 3.33224 59.3736 3.35647 59.4708 3.38205C59.3735 3.35613 59.2762 3.33224 59.1787 3.3107H59.1788ZM59.2979 3.10273C59.2972 3.10273 59.2966 3.10273 59.2959 3.10239C59.3023 3.10374 59.3088 3.10542 59.315 3.10676C59.3093 3.10542 59.3036 3.10407 59.2979 3.10273ZM59.315 3.10676C59.3127 3.1071 59.3106 3.10744 59.3081 3.10777C59.3106 3.10777 59.3129 3.10744 59.315 3.10676ZM59.4267 2.65144C59.4147 2.64908 59.4028 2.64639 59.3905 2.6437C59.4041 2.64639 59.4173 2.64942 59.4307 2.65211C59.4287 2.65178 59.4267 2.65144 59.4248 2.65077C59.4254 2.65077 59.4261 2.65077 59.4267 2.6511V2.65144ZM59.4287 3.32383C59.4287 3.32383 59.4297 3.32416 59.4302 3.3245C59.4297 3.3245 59.4293 3.32416 59.4287 3.32383ZM59.4477 3.33897C59.482 3.34839 59.5177 3.35849 59.5551 3.36959C59.5177 3.35883 59.482 3.34839 59.4477 3.33897ZM59.4462 3.33022C59.4493 3.33123 59.4526 3.33258 59.4557 3.33359C59.4524 3.33224 59.4493 3.33123 59.4462 3.33022ZM59.5159 3.35815C59.5288 3.36185 59.5418 3.36556 59.5551 3.36959C59.5417 3.36556 59.5288 3.36185 59.5159 3.35815ZM59.528 2.7285C59.4956 2.72211 59.4628 2.71572 59.4293 2.70932C59.4711 2.7174 59.5122 2.72548 59.5524 2.73322C59.5328 2.72951 59.5131 2.72548 59.4931 2.72177C59.5049 2.72413 59.5164 2.72615 59.528 2.7285ZM59.5389 2.67567C59.5491 2.67802 59.5592 2.68004 59.5692 2.68206C59.5593 2.68004 59.5491 2.67769 59.5389 2.67567ZM58.549 3.08725C58.5437 3.08624 58.5384 3.08556 58.5331 3.08455C58.5385 3.08556 58.5441 3.08624 58.5495 3.08725C58.5499 3.08725 58.5502 3.08725 58.5506 3.08725C58.572 3.09095 58.5938 3.09465 58.6153 3.09835C58.5931 3.09465 58.5711 3.09061 58.5491 3.08725H58.549ZM58.6037 3.16263C58.6037 3.16263 58.6025 3.16263 58.6018 3.16263C58.6054 3.16296 58.609 3.16364 58.6127 3.16397C58.6097 3.16364 58.6067 3.1633 58.6037 3.16263ZM58.616 3.09869C58.6177 3.09869 58.6196 3.09936 58.6213 3.0997C58.6209 3.0997 58.6204 3.0997 58.62 3.0997C58.6204 3.0997 58.6208 3.0997 58.621 3.0997C58.6193 3.0997 58.6176 3.09902 58.6159 3.09869H58.616ZM58.3453 2.51582C58.3811 2.52187 58.4171 2.52793 58.4531 2.53433C58.4121 2.5276 58.3714 2.51986 58.3306 2.51346C58.3355 2.51413 58.3404 2.51514 58.3453 2.51582ZM58.306 3.15186C58.306 3.15186 58.3052 3.15186 58.3049 3.15186C58.3053 3.15186 58.3057 3.15186 58.306 3.15186ZM58.0041 2.99201C58.0041 2.99201 58.0039 2.99167 58.0034 2.99133C58.004 2.99133 58.0043 2.99201 58.0041 2.99201ZM58.0003 2.99032C58.0003 2.99032 58.0002 2.99032 58.0001 2.99032C58.0001 2.99032 58.0002 2.99032 58.0003 2.99032ZM57.9942 2.98864C57.9929 2.98864 57.9915 2.98797 57.9899 2.98763C57.9915 2.98797 57.9929 2.98831 57.9942 2.98864ZM57.9871 2.98696C57.9858 2.98696 57.9845 2.98629 57.9831 2.98595C57.9845 2.98595 57.9859 2.98662 57.9871 2.98696ZM58.09 3.01691C58.0917 3.01691 58.0934 3.01725 58.0952 3.01758C58.0936 3.01758 58.0921 3.01725 58.0905 3.01725C58.0905 3.01725 58.0907 3.01725 58.0908 3.01725C58.0905 3.01725 58.0903 3.01725 58.0899 3.01725L58.09 3.01691ZM58.1757 3.02667C58.1757 3.02667 58.1745 3.02667 58.174 3.02667C58.1762 3.02667 58.1786 3.02734 58.1808 3.02734C58.1796 3.02734 58.1786 3.02734 58.1774 3.02701C58.1824 3.02768 58.1876 3.02835 58.1928 3.02869C58.1898 3.02835 58.1868 3.02802 58.1839 3.02768C58.2143 3.03138 58.2449 3.03508 58.2754 3.03878C58.2281 3.03306 58.1806 3.02734 58.1333 3.02196C58.1366 3.02229 58.1399 3.02263 58.1432 3.02297C58.1431 3.02297 58.143 3.02297 58.1428 3.02297C58.1537 3.02431 58.1647 3.02532 58.1758 3.02667H58.1757ZM58.1134 3.02297C58.1182 3.02364 58.1232 3.02431 58.128 3.02499C58.1116 3.02297 58.0953 3.02095 58.0793 3.01893C58.0907 3.02028 58.1019 3.02162 58.1134 3.0233V3.02297ZM58.1974 3.12258C58.2117 3.12494 58.2263 3.12696 58.2411 3.12931C58.2253 3.12696 58.21 3.12426 58.195 3.12224C58.1958 3.12224 58.1966 3.12224 58.1974 3.12258ZM58.1895 3.03306C58.1741 3.03104 58.159 3.02903 58.1439 3.02701C58.1591 3.02903 58.1742 3.03104 58.1895 3.03306ZM58.1905 3.12157C58.1767 3.11955 58.1631 3.1172 58.1499 3.11518C58.163 3.1172 58.177 3.11955 58.1905 3.12157ZM58.2063 3.03542C58.2227 3.03744 58.239 3.03979 58.2554 3.04215C58.2388 3.03979 58.2226 3.03744 58.2063 3.03542ZM58.1309 3.02162C58.1309 3.02162 58.1308 3.02162 58.1306 3.02162C58.1308 3.02162 58.131 3.02162 58.1312 3.02162C58.1312 3.02162 58.1309 3.02162 58.1308 3.02162H58.1309ZM58.1303 3.02162C58.1303 3.02162 58.1305 3.02162 58.1306 3.02162C58.121 3.02061 58.1112 3.01927 58.1016 3.01826C58.1112 3.01927 58.1207 3.02028 58.1304 3.02162H58.1303ZM58.1301 2.3913C58.1864 2.40173 58.2436 2.4125 58.3012 2.42327C58.2154 2.40712 58.1312 2.3913 58.0463 2.37582C58.074 2.38087 58.1021 2.38625 58.1301 2.3913ZM58.0234 2.465C58.0222 2.465 58.021 2.46466 58.0198 2.46433C58.0201 2.46433 58.0203 2.46433 58.0206 2.46433C58.0215 2.46433 58.0225 2.46433 58.0235 2.46466L58.0234 2.465ZM57.9381 2.45221C57.9388 2.45221 57.9396 2.45221 57.9402 2.45221C57.9332 2.4512 57.9263 2.45019 57.9193 2.44918C57.9255 2.45019 57.9319 2.4512 57.9381 2.45188V2.45221ZM57.8108 2.97653C57.8079 2.97619 57.805 2.97585 57.8021 2.97552C57.8213 2.97787 57.8413 2.97989 57.8617 2.98225C57.8443 2.98023 57.8273 2.97821 57.8108 2.97653ZM57.8226 2.9523C57.8226 2.9523 57.8226 2.9523 57.8225 2.9523C57.8225 2.9523 57.8225 2.9523 57.8226 2.9523ZM57.8524 2.3213C57.8237 2.31491 57.7918 2.30784 57.7637 2.30145C57.7912 2.30784 57.8229 2.31457 57.8524 2.3213ZM57.6912 2.28159C57.6912 2.28159 57.691 2.28159 57.6908 2.28159C57.691 2.28159 57.691 2.28159 57.6911 2.28159H57.6912ZM57.6828 2.96105C57.6738 2.9597 57.6648 2.95869 57.6558 2.95734C57.6645 2.95869 57.6735 2.9597 57.6828 2.96105ZM57.6479 2.95634C57.6385 2.95499 57.6291 2.95364 57.6199 2.9523C57.6289 2.95364 57.6383 2.95499 57.6479 2.95634ZM57.6175 2.95196C57.6097 2.95061 57.6019 2.9496 57.594 2.94826C57.6016 2.9496 57.6094 2.95061 57.6175 2.95196ZM57.5899 2.94759C57.5899 2.94759 57.5902 2.94759 57.5903 2.94759C57.5894 2.94759 57.5885 2.94759 57.5876 2.94725C57.5884 2.94725 57.5891 2.94725 57.5901 2.94759H57.5899ZM57.5872 2.94725C57.5792 2.9459 57.5715 2.94456 57.5639 2.94287C57.5713 2.94422 57.5791 2.94557 57.5872 2.94725ZM57.5617 2.94254C57.5552 2.94119 57.5486 2.93985 57.5424 2.9385C57.5486 2.93985 57.555 2.94119 57.5617 2.94254ZM57.5366 2.93715C57.5305 2.93581 57.5247 2.93446 57.519 2.93278C57.5245 2.93412 57.5305 2.93581 57.5366 2.93715ZM57.1944 2.90182C57.1749 2.90013 57.1552 2.89845 57.1353 2.89643C57.1552 2.89812 57.1746 2.90013 57.1944 2.90182ZM57.1369 2.89677C57.1176 2.89509 57.0978 2.89307 57.0782 2.89105C57.098 2.89307 57.1176 2.89475 57.1369 2.89677ZM57.011 2.88465C57.0021 2.88364 56.9932 2.88297 56.9843 2.88196C56.9932 2.88297 57.0022 2.88398 57.011 2.88465ZM56.9728 2.86278C56.972 2.86278 56.9714 2.86278 56.9706 2.86278C56.9714 2.86278 56.9722 2.86278 56.9728 2.86278ZM56.9666 2.87994C56.9613 2.87927 56.9561 2.87893 56.9507 2.87826C56.956 2.87893 56.9613 2.87927 56.9666 2.87994ZM56.9502 2.87826C56.9441 2.87759 56.9379 2.87691 56.9318 2.87624C56.9381 2.87691 56.9446 2.87759 56.9508 2.87826C56.9506 2.87826 56.9504 2.87826 56.9502 2.87826ZM56.9243 2.87557C56.9185 2.87489 56.9126 2.87422 56.9066 2.87355C56.9124 2.87422 56.9184 2.87489 56.9243 2.87557ZM56.8258 2.8648C56.8162 2.86379 56.8065 2.86244 56.7968 2.86143C56.807 2.86244 56.8173 2.86379 56.8275 2.8648C56.827 2.8648 56.8265 2.8648 56.8258 2.8648ZM56.829 2.86514C56.8322 2.86547 56.8352 2.86581 56.8384 2.86614C56.8347 2.86581 56.8311 2.86547 56.8274 2.8648C56.8279 2.8648 56.8285 2.8648 56.829 2.8648V2.86514ZM56.481 1.64555C56.9565 1.70545 56.8494 1.69132 56.4436 1.6405C56.4561 1.64218 56.4685 1.64387 56.481 1.64555ZM56.4726 2.11636C56.6035 2.12376 56.7338 2.14866 56.8641 2.17424C56.6043 2.12006 56.3435 2.10424 56.0833 2.06251C56.2131 2.08068 56.3428 2.09852 56.4726 2.11636ZM56.2593 2.87893C56.256 2.87826 56.2528 2.87759 56.2496 2.87691C56.2529 2.87759 56.256 2.87826 56.2593 2.87893ZM56.0781 2.06049C56.0798 2.06116 56.0816 2.06184 56.0833 2.06217C56.0828 2.06217 56.0821 2.06184 56.0816 2.0615H56.0818C56.074 2.05881 56.0658 2.05578 56.0565 2.05309C56.0643 2.05544 56.0714 2.0578 56.0781 2.06015V2.06049ZM55.6836 2.81365C55.6787 2.81297 55.6737 2.8123 55.6689 2.81163C55.6882 2.81432 55.7076 2.81735 55.7268 2.82004C55.7138 2.81802 55.701 2.81634 55.688 2.81432C55.6901 2.81432 55.6922 2.81499 55.6943 2.81533L55.6835 2.81365H55.6836ZM55.6753 2.10491C55.6857 2.10626 55.6958 2.10727 55.706 2.10862C55.6958 2.10727 55.6856 2.10626 55.6753 2.10491ZM55.7563 2.1241C55.7778 2.12544 55.7991 2.12645 55.8205 2.1278C55.7991 2.12645 55.7776 2.12544 55.7563 2.1241ZM55.8764 2.13015C55.8644 2.12847 55.8519 2.12679 55.8396 2.12544C55.8521 2.12712 55.8644 2.12881 55.8764 2.13015ZM55.3927 1.48132C55.4774 1.49108 55.5518 1.49983 55.6175 1.50791C55.552 1.49983 55.4774 1.49108 55.3927 1.48132ZM55.6117 2.09717C55.6104 2.09717 55.6092 2.09717 55.6079 2.09684C55.6092 2.09684 55.6104 2.09684 55.6117 2.09717ZM55.3924 1.49142C55.3921 1.49849 55.3924 1.49478 55.3924 1.49142C55.3921 1.49849 55.3924 1.49512 55.3924 1.49142ZM55.2906 2.75644C55.2906 2.75644 55.2912 2.75644 55.2915 2.75644C55.2894 2.75644 55.2872 2.75576 55.2853 2.75543C55.2871 2.75543 55.2888 2.75576 55.2906 2.7561V2.75644ZM55.2829 2.75543C55.2837 2.75543 55.2845 2.75543 55.2851 2.75543C55.2753 2.75408 55.2654 2.75273 55.2556 2.75139C55.2647 2.75273 55.2737 2.75408 55.2827 2.75509L55.2829 2.75543ZM54.3849 2.51144C54.3849 2.51144 54.3857 2.51144 54.3862 2.51144C54.3841 2.51144 54.3821 2.51077 54.38 2.51077C54.3817 2.51077 54.3833 2.51111 54.385 2.51144H54.3849ZM54.213 2.5074C54.2127 2.5074 54.2124 2.5074 54.2123 2.5074C54.2123 2.5074 54.2126 2.5074 54.2128 2.5074H54.213ZM54.1196 2.48216C54.1178 2.48216 54.1159 2.48183 54.1141 2.48149C54.1166 2.48149 54.1191 2.48183 54.1215 2.48216C54.1039 2.48048 54.0858 2.4788 54.0677 2.47712C54.0853 2.4788 54.1027 2.48048 54.1196 2.48183V2.48216ZM54.0669 2.47745C54.0511 2.47611 54.0353 2.47442 54.019 2.47308C54.0351 2.47442 54.0511 2.47611 54.0669 2.47745ZM53.2044 2.40207C53.1068 2.395 53.0089 2.38894 52.9123 2.38289C53.0089 2.38861 53.1068 2.395 53.2044 2.40207ZM52.9039 2.3351C52.9099 2.33577 52.9149 2.33678 52.9191 2.33746C52.9149 2.33678 52.9099 2.33611 52.9039 2.3351ZM53.0424 1.85453C53.0545 1.85554 53.066 1.85622 53.0773 1.85723C53.0659 1.85655 53.0545 1.85554 53.0424 1.85453ZM53.0643 1.8616C53.0643 1.8616 53.0639 1.8616 53.0636 1.8616C53.0639 1.8616 53.064 1.8616 53.0643 1.8616ZM53.0634 1.8616C53.0634 1.8616 53.062 1.8616 53.0614 1.8616C53.0622 1.8616 53.0627 1.8616 53.0634 1.8616ZM53.115 1.85992C53.1184 1.85992 53.1216 1.86059 53.1249 1.86059C53.1216 1.86059 53.1183 1.85992 53.115 1.85992ZM53.4516 1.77747C53.4516 1.77747 53.4519 1.77814 53.4516 1.77848C53.452 1.77814 53.4516 1.77781 53.4515 1.77747H53.4516ZM53.4507 1.30397C53.4459 1.3033 53.4404 1.30262 53.4339 1.30162C53.4404 1.30229 53.4459 1.3033 53.4507 1.30397ZM53.4036 1.89189C53.4011 1.89155 53.3987 1.89122 53.3961 1.89088C53.4001 1.89155 53.4042 1.89189 53.4082 1.89256C53.4066 1.89256 53.405 1.89223 53.4036 1.89189ZM53.0193 1.37363C53.0031 1.15388 53.2891 1.3383 53.3898 1.29724C53.164 1.22691 53.0369 1.34772 52.8823 1.36421C52.928 1.36724 52.9737 1.3706 53.0193 1.37363ZM53.0169 2.50639C52.8781 2.49832 52.7394 2.49024 52.6008 2.48216C52.7394 2.49024 52.8782 2.49832 53.0169 2.50639ZM52.582 2.4401C52.5789 2.4401 52.5759 2.43976 52.5728 2.43942C52.5759 2.43942 52.5789 2.43976 52.582 2.4401ZM52.5764 2.41991C52.5779 2.41991 52.5793 2.41991 52.5808 2.42024C52.5795 2.42024 52.578 2.42024 52.5764 2.41991ZM52.594 2.42192C52.5952 2.42192 52.5964 2.42192 52.5976 2.4226C52.5965 2.4226 52.5953 2.42226 52.594 2.42192ZM52.6034 2.42361C52.6034 2.42361 52.6046 2.42361 52.6051 2.42428C52.6047 2.42428 52.6041 2.42394 52.6034 2.42361ZM52.6057 2.42428C52.6057 2.42428 52.6063 2.42462 52.6063 2.42495C52.6063 2.42495 52.6061 2.42462 52.6057 2.42428ZM52.6053 2.42428H52.6054C52.6054 2.42428 52.6054 2.42428 52.6053 2.42428ZM52.6348 2.44346C52.6348 2.44346 52.6361 2.44346 52.6368 2.44346C52.6351 2.44346 52.6334 2.44346 52.6318 2.44346C52.6328 2.44346 52.6339 2.44346 52.6349 2.44346H52.6348ZM52.7103 2.44784C52.7103 2.44784 52.7115 2.44784 52.7122 2.44784C52.7114 2.44784 52.7107 2.44784 52.7099 2.44784C52.71 2.44784 52.7102 2.44784 52.7103 2.44784ZM52.7084 2.44784C52.7062 2.44784 52.7038 2.44784 52.7016 2.4475C52.7038 2.4475 52.7062 2.4475 52.7084 2.44784ZM52.6751 2.44582C52.6639 2.44515 52.653 2.44447 52.6414 2.4438C52.6414 2.4438 52.6416 2.4438 52.6417 2.4438C52.653 2.44447 52.6639 2.44515 52.6751 2.44582ZM52.6361 2.44346C52.6371 2.44346 52.6381 2.44346 52.6392 2.44346C52.6381 2.44346 52.6372 2.44346 52.6361 2.44346ZM52.7985 2.35361C52.7704 2.35226 52.7418 2.35058 52.7124 2.3489C52.7443 2.35058 52.7756 2.35226 52.806 2.35395C52.8035 2.35395 52.801 2.35395 52.7985 2.35361ZM52.5432 2.41721C52.5389 2.41688 52.5343 2.41654 52.5297 2.4162C52.5342 2.4162 52.5388 2.41688 52.5432 2.41721ZM52.5702 2.43942C52.5702 2.43942 52.571 2.43942 52.5712 2.43942C52.5612 2.43875 52.551 2.43808 52.5406 2.43741C52.5506 2.43808 52.5604 2.43875 52.57 2.43942H52.5702ZM52.3535 2.32837C52.3623 2.32871 52.3709 2.32938 52.3795 2.32972C52.3709 2.32938 52.3621 2.32871 52.3535 2.32837ZM52.1014 2.33443C52.0908 2.33443 52.0793 2.33375 52.0667 2.33342C52.0791 2.33375 52.0909 2.33409 52.1014 2.33443ZM52.1065 1.71622C52.113 1.71689 52.1198 1.71757 52.1269 1.71858C52.1174 1.71757 52.1083 1.71656 52.0998 1.71555C52.1019 1.71555 52.1043 1.71588 52.1065 1.71622ZM52.0994 1.71555C52.0957 1.71521 52.0922 1.71487 52.0888 1.7142C52.0922 1.71454 52.0957 1.71487 52.0994 1.71555ZM52.0774 2.33678C52.102 2.33779 52.1273 2.3388 52.1522 2.34015C52.1513 2.34015 52.1504 2.34015 52.1495 2.34015C52.1694 2.34116 52.1896 2.34217 52.2102 2.34318C52.1526 2.34015 52.0922 2.33746 52.0357 2.33577C52.063 2.33678 52.0913 2.33779 52.1206 2.33914C52.1059 2.33847 52.0916 2.33779 52.0774 2.33746V2.33678ZM52.2721 1.8303H52.2723C52.2713 1.8303 52.2701 1.8303 52.2693 1.8303C52.27 1.8303 52.271 1.8303 52.2719 1.8303H52.2721ZM52.3613 1.80776C52.359 1.80776 52.3566 1.80742 52.3543 1.80708C52.3578 1.80708 52.3615 1.80776 52.365 1.80809C52.3639 1.80809 52.3625 1.80809 52.3613 1.80809V1.80776ZM52.3759 1.74045C52.3845 1.74079 52.3926 1.74112 52.3992 1.74146C52.3915 1.74112 52.3845 1.74079 52.3759 1.74045ZM52.3399 1.80607C52.3372 1.80607 52.3346 1.80574 52.3321 1.8054C52.3384 1.80607 52.3451 1.80675 52.3521 1.80708C52.348 1.80675 52.344 1.80641 52.3399 1.80607ZM52.3326 1.8054C52.3326 1.8054 52.3315 1.8054 52.3309 1.8054C52.3314 1.8054 52.3319 1.8054 52.3326 1.8054ZM52.4134 1.83232C52.4134 1.83232 52.413 1.83232 52.4127 1.83232C52.4129 1.83232 52.4131 1.83232 52.4134 1.83232ZM52.5711 1.83434C52.5711 1.83434 52.5711 1.83434 52.571 1.83434C52.571 1.83434 52.571 1.83434 52.5711 1.83434ZM52.6451 1.83434C52.6451 1.83434 52.6447 1.83434 52.6445 1.83434C52.6447 1.83434 52.645 1.83434 52.6451 1.83434ZM52.6442 1.83401C52.6442 1.83401 52.6432 1.83401 52.6424 1.83367C52.6432 1.83367 52.6438 1.83367 52.6442 1.83401ZM52.6389 1.833C52.6365 1.83266 52.6334 1.83232 52.6296 1.83165C52.6334 1.83199 52.6364 1.83232 52.6389 1.833ZM52.6081 1.82963C52.6 1.82896 52.5908 1.82795 52.5809 1.82728C52.5908 1.82829 52.6 1.82896 52.6081 1.82963ZM52.4707 1.81785C52.444 1.81583 52.4168 1.81348 52.3914 1.81146C52.4167 1.81348 52.4438 1.81583 52.4707 1.81785ZM52.0909 1.22421C52.0916 1.22421 52.0924 1.22421 52.093 1.22421C52.0896 1.22421 52.0865 1.22421 52.0832 1.22421C52.0858 1.22421 52.0883 1.22421 52.0909 1.22421ZM52.0728 1.71319C52.0691 1.71286 52.0658 1.71218 52.0622 1.71185C52.0655 1.71218 52.0691 1.71286 52.0728 1.71319ZM51.968 1.24407C51.9728 1.24104 51.9778 1.23835 51.9829 1.23599C51.9622 1.25046 51.9357 1.23902 51.919 1.23936C51.9327 1.2407 51.9486 1.24239 51.968 1.24407ZM51.9411 1.79127H51.9414C51.9414 1.79127 51.9407 1.79127 51.9403 1.79127C51.9417 1.79127 51.9431 1.79127 51.9443 1.79127C51.9437 1.79127 51.9431 1.79127 51.9423 1.79127C51.9429 1.79127 51.9433 1.79127 51.9435 1.79127C51.9427 1.79127 51.9419 1.79127 51.941 1.79127H51.9411ZM51.881 1.7068C51.8841 1.70713 51.8871 1.70747 51.8904 1.70781C51.8736 1.70579 51.8606 1.70377 51.8483 1.70209C51.8581 1.70343 51.8686 1.70478 51.881 1.70646V1.7068ZM51.8149 1.81348C51.8136 1.81348 51.8126 1.81348 51.8116 1.81381C51.8124 1.81381 51.8135 1.81381 51.8144 1.81348C51.8143 1.81348 51.8141 1.81348 51.814 1.81348C51.8143 1.81348 51.8145 1.81348 51.8148 1.81348H51.8149ZM51.7682 1.69569C51.771 1.69569 51.7737 1.69569 51.7763 1.69569C51.7736 1.69569 51.771 1.69569 51.7682 1.69569ZM50.4438 1.6405C50.4438 1.6405 50.4441 1.6405 50.4444 1.6405C50.444 1.6405 50.4436 1.6405 50.4438 1.6405ZM50.4465 1.64016C50.4465 1.64016 50.4471 1.64016 50.4473 1.64016C50.4467 1.64016 50.4459 1.64016 50.4453 1.64016C50.4457 1.64016 50.4463 1.64016 50.4468 1.64016C50.4468 1.64016 50.4467 1.64016 50.4465 1.64016ZM51.3796 1.77545C51.4021 1.77612 51.4239 1.77713 51.4459 1.77781C51.1744 1.76805 50.8538 1.75593 50.6147 1.74886C50.8597 1.75593 51.124 1.76636 51.3796 1.77545ZM50.9408 1.66641C50.9408 1.66641 50.9409 1.66641 50.941 1.66641C50.941 1.66641 50.9409 1.66641 50.9408 1.66641ZM51.1872 1.78083C51.1754 1.78016 51.1639 1.77982 51.1525 1.77949C51.1639 1.77982 51.1756 1.7805 51.1872 1.78083ZM50.6066 2.30145C50.6552 2.30347 50.7028 2.30549 50.7486 2.3075C50.7028 2.30582 50.6546 2.30347 50.6066 2.30145ZM51.6716 1.69401C51.6666 1.69401 51.6614 1.69401 51.6562 1.69401C51.6613 1.69401 51.6666 1.69401 51.6716 1.69401ZM51.6558 1.69401C51.638 1.69401 51.6216 1.69401 51.6029 1.69435C51.6087 1.69435 51.6144 1.69435 51.6199 1.69435C51.6135 1.69435 51.607 1.69435 51.6003 1.69435C51.6218 1.69435 51.6412 1.69435 51.6587 1.69401C51.6577 1.69401 51.6567 1.69401 51.6556 1.69401H51.6558ZM51.6719 1.69401C51.6761 1.69401 51.6805 1.69401 51.6848 1.69401C51.6805 1.69401 51.6763 1.69401 51.6719 1.69401ZM51.6789 1.69401C51.6817 1.69401 51.6844 1.69401 51.6869 1.69401C51.6842 1.69401 51.6816 1.69401 51.6789 1.69401ZM51.6881 1.69401H51.6878C51.691 1.69401 51.6942 1.69401 51.6973 1.69401C51.6946 1.69401 51.6918 1.69401 51.6889 1.69401C51.6895 1.69401 51.6902 1.69401 51.6908 1.69401C51.6899 1.69401 51.6889 1.69401 51.6879 1.69401H51.6881ZM51.7024 1.69401H51.7021C51.705 1.69401 51.7081 1.69401 51.711 1.69401C51.7086 1.69401 51.7061 1.69401 51.7036 1.69401C51.7044 1.69401 51.7053 1.69401 51.7062 1.69401C51.705 1.69401 51.7037 1.69401 51.7025 1.69401H51.7024ZM51.7439 1.69468C51.7418 1.69468 51.7397 1.69468 51.7376 1.69468C51.7397 1.69468 51.742 1.69468 51.7439 1.69468ZM51.7303 1.2232C51.7344 1.2232 51.7385 1.2232 51.7424 1.2232C51.7385 1.2232 51.7346 1.2232 51.7303 1.2232ZM51.7447 1.69468C51.75 1.69468 51.7552 1.69468 51.76 1.69502C51.7551 1.69502 51.7498 1.69502 51.7447 1.69468ZM51.8084 1.81449C51.8082 1.81449 51.8079 1.81482 51.808 1.81516C51.808 1.81516 51.808 1.81482 51.8084 1.81449ZM51.809 1.81449C51.809 1.81449 51.8088 1.81449 51.8087 1.81449C51.8087 1.81449 51.8088 1.81449 51.809 1.81449ZM51.809 1.81449C51.809 1.81449 51.8099 1.81449 51.8104 1.81415C51.8098 1.81415 51.8092 1.81415 51.809 1.81449ZM51.816 1.81314C51.816 1.81314 51.8161 1.81314 51.8163 1.81314C51.8163 1.81314 51.8163 1.81314 51.8161 1.81314C51.8185 1.81314 51.8253 1.81247 51.8193 1.81314C51.8204 1.81314 51.8212 1.81314 51.8223 1.81314C51.8197 1.81314 51.8176 1.81348 51.8156 1.81381C51.8157 1.81381 51.816 1.81381 51.8161 1.81381L51.816 1.81314ZM51.8201 1.71353C51.819 1.71353 51.818 1.71353 51.8171 1.71353C51.82 1.71353 51.8231 1.71387 51.8261 1.7142C51.8241 1.7142 51.8221 1.7142 51.8201 1.71387V1.71353ZM51.6768 1.2232C51.6971 1.2232 51.7146 1.2232 51.7299 1.22354C51.7073 1.22354 51.68 1.2232 51.6464 1.22354C51.6571 1.22354 51.6673 1.22354 51.6767 1.22354L51.6768 1.2232ZM50.5521 1.15556C50.9169 1.17239 51.2816 1.18888 51.6465 1.20469C51.2804 1.18888 50.9143 1.17239 50.5482 1.15522C50.5496 1.15522 50.5509 1.15522 50.5521 1.15522V1.15556ZM50.5647 2.3001C50.5504 2.29943 50.5358 2.29875 50.5214 2.29808C50.5359 2.29875 50.5504 2.29943 50.5647 2.3001ZM50.469 1.63983C50.477 1.63983 50.4869 1.63983 50.4984 1.63983C50.4886 1.63983 50.4792 1.63983 50.4696 1.63983C50.4702 1.63983 50.471 1.63983 50.4717 1.63983C50.4708 1.63983 50.4697 1.63983 50.4689 1.63983H50.469ZM50.4679 1.63983C50.4663 1.63983 50.4645 1.64016 50.463 1.6405C50.4645 1.6405 50.4661 1.64016 50.4679 1.63983ZM50.442 1.16902C50.4456 1.16902 50.4528 1.16902 50.4627 1.16869C50.4157 1.16431 50.3732 1.19056 50.3374 1.2545C50.3669 1.20234 50.4028 1.17138 50.442 1.16936V1.16902ZM50.2949 1.76502C50.3028 1.76535 50.3105 1.76569 50.3183 1.76603C50.3093 1.76569 50.3003 1.76535 50.2912 1.76468C50.2924 1.76468 50.2936 1.76468 50.2948 1.76468L50.2949 1.76502ZM50.2354 1.19628C50.2264 1.28344 50.2638 1.24373 50.2863 1.25282C50.2638 1.24373 50.2266 1.28344 50.2354 1.19628ZM50.107 2.2789C50.1038 2.2789 50.1005 2.2789 50.0973 2.27856C50.1451 2.28092 50.1931 2.28294 50.241 2.28529C50.1964 2.28327 50.1516 2.28126 50.1071 2.27924L50.107 2.2789ZM50.1711 1.7593C50.1847 1.75997 50.1978 1.76064 50.2112 1.76132C50.198 1.76064 50.1847 1.75997 50.1711 1.7593ZM50.2303 1.76233C50.2405 1.76266 50.2507 1.76334 50.2609 1.76367C50.2507 1.76334 50.2406 1.76266 50.2303 1.76233ZM49.3554 1.10676C49.3519 1.10676 49.3483 1.10676 49.3447 1.10643C49.641 1.11787 49.9373 1.12965 50.2337 1.14143C49.9409 1.12965 49.6482 1.11821 49.3554 1.10676ZM50.3509 2.35798C50.3509 2.35798 50.3517 2.35798 50.3521 2.35798C50.2025 2.35024 50.053 2.34217 49.9033 2.33443C50.0526 2.34217 50.2017 2.35024 50.3509 2.35798ZM53.0291 2.97989C52.1751 2.93042 51.292 2.87826 50.4461 2.8335C51.3684 2.88331 52.3278 2.93614 53.2574 2.9947C53.1823 2.98932 53.106 2.98427 53.0291 2.97956V2.97989ZM53.5094 1.33258C53.703 1.52541 53.9484 1.39887 54.1115 1.45743C53.9484 1.39887 53.7029 1.52507 53.5094 1.33258ZM54.0938 2.57471C54.1064 2.57606 54.1188 2.57774 54.1314 2.57908C54.119 2.57774 54.1064 2.57606 54.0938 2.57471ZM54.1852 2.58548C54.1807 2.58481 54.1762 2.58447 54.1717 2.5838C54.1894 2.58582 54.2077 2.58817 54.225 2.59053C54.2121 2.58884 54.1987 2.58716 54.1852 2.58548ZM54.2589 2.60702C54.2589 2.60702 54.2589 2.60702 54.2588 2.60702C54.2588 2.60702 54.2588 2.60702 54.2589 2.60702ZM54.2608 2.4963C54.2608 2.4963 54.26 2.4963 54.2595 2.4963C54.2599 2.4963 54.2603 2.4963 54.2608 2.4963C54.2568 2.49596 54.2526 2.49563 54.2486 2.49529C54.2522 2.49563 54.2559 2.49596 54.2596 2.4963C54.256 2.4963 54.2524 2.49563 54.2489 2.49529C54.2984 2.50067 54.3491 2.50808 54.3843 2.51245C54.3507 2.50808 54.3099 2.50269 54.2609 2.4963H54.2608ZM54.4547 2.57471C54.4461 2.57336 54.4376 2.57235 54.429 2.57101C54.4374 2.57202 54.4461 2.57336 54.4547 2.57471ZM54.4973 1.87574C54.5198 1.87809 54.5422 1.88045 54.5647 1.8828C54.5414 1.88045 54.5181 1.87809 54.4948 1.8754C54.4956 1.8754 54.4965 1.8754 54.4973 1.8754V1.87574ZM54.6288 2.61913C54.6304 2.61947 54.6319 2.6198 54.6334 2.62014C54.632 2.6198 54.6304 2.61947 54.6288 2.61913ZM54.6362 2.62081C54.6362 2.62081 54.6353 2.62081 54.6349 2.62081C54.6357 2.62081 54.6364 2.62115 54.6371 2.62149C54.6369 2.62149 54.6365 2.62149 54.6362 2.62149V2.62081ZM54.6379 2.62115C54.6387 2.62115 54.6394 2.62149 54.6401 2.62182C54.6391 2.62182 54.6382 2.62149 54.6373 2.62115C54.6375 2.62115 54.6378 2.62115 54.6379 2.62115ZM54.6415 2.62216C54.6423 2.62216 54.6431 2.6225 54.6439 2.62283C54.6431 2.62283 54.6423 2.6225 54.6415 2.62216ZM54.6528 2.63057C54.6533 2.63057 54.6537 2.63057 54.6541 2.63057C54.6537 2.63057 54.6533 2.63057 54.6529 2.63057H54.6528ZM54.6533 2.63057C54.6533 2.63057 54.6541 2.63057 54.6546 2.63057C54.6541 2.63057 54.6538 2.63057 54.6533 2.63057ZM54.6546 1.89189C54.7353 1.9003 54.8105 1.90804 54.8819 1.91578C54.8106 1.90804 54.7308 1.89963 54.6546 1.89189ZM54.8923 1.91713C54.9029 1.91814 54.9134 1.91949 54.9237 1.92049C54.9176 1.91982 54.9115 1.91915 54.9055 1.91848C54.9229 1.92049 54.9401 1.92251 54.9572 1.9242C54.9529 1.92386 54.9484 1.92319 54.944 1.92285C54.9527 1.92386 54.9615 1.92487 54.9702 1.92588C54.9672 1.92554 54.9641 1.92521 54.9611 1.92487C54.9778 1.92689 54.9942 1.92857 55.0103 1.93059C55.0054 1.92992 55.0005 1.92958 54.9956 1.92891C55.0029 1.92992 55.0102 1.93059 55.0175 1.9316C55.0159 1.9316 55.0144 1.93126 55.0129 1.93093C55.0299 1.93295 55.0469 1.93497 55.0637 1.93698C54.9921 1.92823 54.9245 1.92049 54.8494 1.91242C54.8682 1.91444 54.8868 1.91646 54.9051 1.91848C54.9008 1.91814 54.8966 1.91747 54.8923 1.91713ZM55.7894 3.28815C55.5688 3.29556 55.3227 3.22017 55.092 3.20133C55.4966 3.26695 55.8861 3.29926 56.2886 3.35883C56.1221 3.33527 55.9558 3.31171 55.7893 3.28815H55.7894ZM56.657 2.921C56.6619 2.92201 56.6662 2.92268 56.6705 2.92369C56.6664 2.92302 56.6619 2.92201 56.657 2.921ZM56.6726 2.92403C56.6762 2.9247 56.6795 2.92537 56.6827 2.92605C56.6796 2.92537 56.6762 2.9247 56.6726 2.92403ZM56.5501 2.83316C56.5501 2.83316 56.5488 2.83316 56.5482 2.83316C56.5998 2.83956 56.6506 2.84562 56.7008 2.85167C56.7008 2.85167 56.7007 2.85167 56.7005 2.85167C56.7012 2.85167 56.7019 2.85167 56.7027 2.85167C56.6523 2.84562 56.6016 2.83956 56.5501 2.83316ZM56.7393 2.85605C56.7372 2.85605 56.7351 2.85571 56.733 2.85538C56.7436 2.85672 56.7543 2.85773 56.7648 2.85908C56.7563 2.85807 56.7478 2.85706 56.7393 2.85605ZM56.7658 2.85908C56.7768 2.86042 56.7877 2.86143 56.7987 2.86278C56.7872 2.86143 56.7756 2.86009 56.764 2.85874C56.7646 2.85874 56.7653 2.85874 56.7658 2.85874V2.85908ZM57.1342 3.47627C57.0037 3.45777 56.9157 3.4443 56.8547 3.43421C56.9157 3.4443 57.0043 3.45777 57.1346 3.47627H57.1342ZM57.136 3.47627C57.136 3.47627 57.1357 3.47627 57.1356 3.47627C57.1536 3.47829 57.1717 3.48065 57.1897 3.48267C57.1719 3.48065 57.1538 3.47829 57.136 3.47627ZM57.7144 2.96643C57.705 2.96508 57.6956 2.96408 57.6863 2.96273C57.6971 2.96408 57.7082 2.96542 57.7195 2.96677C57.7177 2.96677 57.716 2.96643 57.7144 2.96609V2.96643ZM57.7334 2.96879C57.7308 2.96879 57.7285 2.96811 57.7261 2.96778C57.7373 2.96912 57.7487 2.97047 57.7606 2.97182C57.7515 2.97081 57.7424 2.9698 57.7334 2.96845V2.96879ZM57.7608 2.97215C57.7739 2.97383 57.7874 2.97518 57.8013 2.97686C57.7877 2.97518 57.7743 2.97383 57.7608 2.97215ZM57.7904 2.98898C57.7904 2.98898 57.7902 2.98898 57.7899 2.98898C57.8059 2.99066 57.8226 2.99201 57.8392 2.99369C57.8225 2.99201 57.8062 2.99066 57.7904 2.98898ZM57.8487 2.99436C57.8624 2.99571 57.8761 2.99706 57.8899 2.9984C57.876 2.99706 57.8622 2.99571 57.8487 2.99436ZM57.9029 2.99975C57.9164 3.00109 57.93 3.00278 57.9437 3.00412C57.9299 3.00244 57.9162 3.00109 57.9029 2.99975ZM57.9615 3.57723C58.0418 3.58767 58.122 3.59877 58.2019 3.61021C58.1219 3.59877 58.0418 3.588 57.9615 3.57723ZM58.3719 3.63545C58.3391 3.63209 58.2941 3.62704 58.2019 3.61358C58.2966 3.62738 58.3383 3.63175 58.3747 3.63545C58.3738 3.63545 58.3729 3.63545 58.3719 3.63545ZM58.338 3.05527C58.3575 3.0583 58.3772 3.061 58.3967 3.06402C58.377 3.061 58.3574 3.05797 58.338 3.05527ZM58.3952 3.06402C58.3979 3.06436 58.4005 3.0647 58.4033 3.06537C58.4007 3.06503 58.398 3.0647 58.3952 3.06402ZM58.4148 3.06705C58.4306 3.06941 58.4465 3.0721 58.4623 3.07446C58.4464 3.07176 58.4306 3.06941 58.4148 3.06705ZM58.4832 3.07782C58.4991 3.08051 58.5151 3.08287 58.5311 3.08556C58.5151 3.08287 58.4991 3.08018 58.4832 3.07782ZM58.651 3.19897C58.645 3.19796 58.6391 3.19695 58.6331 3.19594C58.6498 3.19897 58.6666 3.202 58.6834 3.20503C58.6724 3.20301 58.6617 3.20133 58.6508 3.19931L58.651 3.19897ZM58.734 3.21378C58.719 3.21109 58.7039 3.2084 58.689 3.2057C58.7039 3.2084 58.7189 3.21109 58.734 3.21378ZM59.5816 3.88785C59.3766 3.82795 59.1774 3.78151 58.9679 3.7391C59.1775 3.78151 59.3768 3.82829 59.5821 3.88785C59.582 3.88785 59.5818 3.88785 59.5816 3.88785ZM59.7275 3.40156C59.7108 3.39416 59.6947 3.38979 59.678 3.38507C59.6947 3.38979 59.7107 3.3945 59.7275 3.40156ZM59.6725 3.9141C59.6676 3.91275 59.6627 3.91141 59.6578 3.90973C59.6651 3.91174 59.6727 3.91376 59.68 3.91646C59.6776 3.91545 59.6752 3.91477 59.6725 3.9141ZM59.6945 3.44632C59.6643 3.43757 59.634 3.42882 59.6038 3.42007C59.6369 3.42983 59.6702 3.43858 59.7031 3.44935C59.7003 3.44834 59.6976 3.44733 59.6945 3.44632ZM59.7101 3.44161C59.7072 3.4406 59.7043 3.43959 59.7013 3.43892C59.7101 3.44128 59.7189 3.44531 59.7276 3.44935C59.7218 3.447 59.7158 3.44397 59.71 3.44195L59.7101 3.44161ZM59.7365 3.43589C59.7454 3.43959 59.7544 3.44363 59.7635 3.44834C59.7544 3.44397 59.7454 3.43959 59.7365 3.43589ZM59.7727 2.71807C59.7727 2.71807 59.7726 2.71807 59.7725 2.71807C59.7725 2.71807 59.7725 2.71807 59.7727 2.71807C59.756 2.71673 59.7374 2.71403 59.7176 2.711C59.7399 2.71403 59.7591 2.71774 59.7787 2.71774C59.7768 2.71774 59.7746 2.71774 59.7728 2.71774L59.7727 2.71807ZM59.7787 2.20453C59.7787 2.20453 59.7781 2.20453 59.7777 2.20453C59.7782 2.20453 59.7787 2.20453 59.7793 2.20453C59.7791 2.20453 59.7789 2.20453 59.7787 2.20453ZM59.7953 3.97703C59.7912 3.97468 59.7872 3.97232 59.7831 3.96996C59.8048 3.98242 59.8242 3.99352 59.8492 4.0053C59.8293 3.99588 59.8113 3.98578 59.7953 3.9767V3.97703ZM59.8509 3.49344C59.8443 3.49007 59.8379 3.48671 59.8313 3.48334C59.8387 3.48738 59.8462 3.49142 59.8537 3.49512C59.8528 3.49478 59.8518 3.49411 59.8509 3.49377V3.49344ZM59.8855 2.75206C59.8672 2.75442 59.8524 2.75745 59.8383 2.76047C59.8518 2.75745 59.868 2.75442 59.8863 2.75206C59.8865 2.75206 59.8868 2.75206 59.8871 2.75206C59.8865 2.75206 59.8861 2.75206 59.8856 2.75206H59.8855ZM59.8869 2.70158C59.8873 2.70158 59.8879 2.70158 59.8884 2.70192C59.8877 2.70192 59.8872 2.70192 59.8869 2.70158ZM59.8893 2.70225C59.8893 2.70225 59.8889 2.70225 59.8888 2.70225C59.8889 2.70225 59.8892 2.70225 59.8893 2.70225ZM59.8945 3.5355C59.8945 3.5355 59.8941 3.5355 59.894 3.5355C59.899 3.53752 59.9042 3.53954 59.9092 3.54156C59.9043 3.53954 59.8994 3.53752 59.8945 3.5355ZM59.9102 2.70326C59.9087 2.70326 59.9072 2.70326 59.9057 2.70326C59.9151 2.70326 59.9244 2.7036 59.9353 2.70495C59.9264 2.70427 59.9183 2.7036 59.9102 2.7036V2.70326ZM59.921 3.53483C59.9243 3.53618 59.9276 3.53685 59.931 3.53786C59.9277 3.53685 59.9243 3.53584 59.921 3.53483ZM59.9404 3.54089C59.9463 3.54223 59.9521 3.54358 59.9582 3.54459C59.9521 3.54358 59.9461 3.54257 59.9404 3.54089ZM59.9775 3.56882C59.9803 3.56882 59.9833 3.56882 59.9863 3.56815C59.9833 3.56815 59.9803 3.56848 59.9775 3.56882C59.9802 3.56882 59.9828 3.56882 59.9856 3.56848C59.9771 3.56949 59.9685 3.56848 59.9604 3.56781C59.9659 3.56848 59.9716 3.56882 59.9775 3.56882ZM59.9785 4.03996C59.9769 4.03996 59.9753 4.03996 59.9738 4.03996C59.9795 4.03996 59.9851 4.03996 59.9909 4.03963C59.9867 4.03996 59.9826 4.03996 59.9786 4.0403L59.9785 4.03996ZM59.9908 3.53147C59.9954 3.53079 60.0003 3.52945 60.0052 3.52776C60.0002 3.52945 59.9953 3.53079 59.9908 3.53147ZM60.0183 3.53719C60.0224 3.53517 60.0265 3.53281 60.0308 3.53012C60.0199 3.53719 60.0085 3.54122 59.9978 3.54358C60.0158 3.54022 60.0323 3.53147 60.0505 3.5143C60.0392 3.52507 60.0285 3.53214 60.0183 3.53719ZM60.0386 3.50925C60.0423 3.50656 60.046 3.50286 60.0498 3.49882C60.0416 3.50791 60.0333 3.51363 60.0248 3.51868C60.0248 3.51868 60.0248 3.51868 60.0249 3.51868C60.0249 3.51868 60.0248 3.51868 60.0247 3.51868C60.0194 3.52204 60.0142 3.5244 60.0092 3.52642C60.0274 3.51901 60.0444 3.50757 60.0615 3.48469C60.0537 3.49478 60.0457 3.50353 60.0384 3.50925H60.0386ZM60.0617 3.52642C60.0643 3.52339 60.0667 3.52036 60.0692 3.51699C60.0667 3.52002 60.0643 3.52339 60.0617 3.52642ZM60.0713 3.49041C60.0725 3.48873 60.0737 3.48637 60.0749 3.48435C60.0737 3.48603 60.0726 3.48839 60.0714 3.49007L60.0713 3.49041ZM60.0655 2.75374C60.0686 2.75812 60.0719 2.76317 60.0751 2.76821C60.0719 2.76283 60.0686 2.75778 60.0655 2.75374ZM60.0877 3.48974C60.0929 3.48065 60.0979 3.47055 60.1027 3.45945C60.0959 3.47493 60.0889 3.48873 60.0811 3.49983C60.0833 3.49647 60.0855 3.49344 60.0877 3.4894V3.48974ZM60.1939 3.87607C60.1608 3.93463 60.1229 3.97905 60.0833 4.00597C60.1649 3.95146 60.2373 3.82223 60.2834 3.64319C60.2599 3.73406 60.2291 3.81482 60.1939 3.87641V3.87607ZM60.3167 3.47695C60.3163 3.4793 60.316 3.48132 60.3156 3.48368C60.3161 3.48031 60.3167 3.47695 60.3172 3.47358L60.3167 3.47695ZM60.3206 3.45036C60.3199 3.45608 60.3189 3.4618 60.3181 3.46752C60.3197 3.45676 60.3213 3.44565 60.3229 3.43488C60.3221 3.43993 60.3214 3.44531 60.3206 3.45036ZM60.3396 3.00816C60.3402 3.02162 60.3406 3.03374 60.3409 3.04417C60.3402 3.02028 60.3389 2.99032 60.3372 2.96542C60.3381 2.97956 60.3389 2.99403 60.3396 3.00816ZM60.3414 3.16835C60.3412 3.18753 60.3405 3.21883 60.3384 3.25686C60.3408 3.21277 60.3412 3.18652 60.3416 3.1596C60.3416 3.16263 60.3416 3.16532 60.3414 3.16835ZM32.949 2.28126H32.9491C32.9491 2.28126 32.948 2.28126 32.9475 2.28126C32.948 2.28126 32.9484 2.28126 32.949 2.28126ZM58.6167 3.10037C58.6167 3.10037 58.6169 3.10037 58.6172 3.10037C58.6169 3.10037 58.6168 3.10037 58.6165 3.10037H58.6167ZM15.9806 3.00008C15.9837 3.00008 15.9869 2.99975 15.9902 2.99941C15.9869 2.99941 15.9837 2.99975 15.9806 3.00008ZM52.1538 2.34082C52.1538 2.34082 52.1532 2.34082 52.1528 2.34082C52.1532 2.34082 52.1534 2.34082 52.1538 2.34082ZM28.9933 1.79093C28.9933 1.79093 28.9945 1.79093 28.995 1.79093C28.9945 1.79093 28.9938 1.79093 28.9933 1.79093ZM35.3017 2.04838C35.3017 2.04838 35.3005 2.04838 35.3 2.04838C35.3005 2.04838 35.3012 2.04838 35.3017 2.04838ZM35.5091 1.60954C35.5091 1.60954 35.5103 1.60954 35.5108 1.60954C35.5103 1.60954 35.5096 1.60954 35.5091 1.60954ZM4.48047 3.50993C4.48047 3.50993 4.48073 3.50993 4.48099 3.50993C4.48033 3.50993 4.4798 3.50993 4.47914 3.50993C4.47954 3.50993 4.48007 3.50993 4.48047 3.50993ZM16.0458 2.98629C16.0458 2.98629 16.0456 2.98629 16.0453 2.98629C16.0454 2.98629 16.0456 2.98629 16.0458 2.98629ZM5.50018 2.73355C5.50018 2.73355 5.5011 2.73355 5.5015 2.73355C5.5011 2.73355 5.50071 2.73355 5.50031 2.73355H5.50018ZM16.0453 2.98629C16.0394 2.98662 16.0337 2.98696 16.0278 2.9873C16.0337 2.9873 16.0394 2.98662 16.0453 2.98629ZM26.2105 2.00732C26.2105 2.00732 26.2102 2.00732 26.21 2.00732C26.2428 2.00631 26.2757 2.00496 26.3084 2.00395C26.2758 2.0053 26.2431 2.00631 26.2104 2.00732H26.2105ZM19.1108 2.20924C19.112 2.20924 19.1132 2.20924 19.1143 2.2089C19.1131 2.2089 19.1119 2.2089 19.1108 2.20924ZM4.62349 2.74735C4.62508 2.74735 4.62693 2.74735 4.62852 2.74701C4.62667 2.74701 4.62468 2.74701 4.62283 2.74735C4.62309 2.74735 4.62322 2.74735 4.62349 2.74735ZM41.5691 1.98309C41.5676 1.98309 41.5662 1.98309 41.5646 1.98309C41.5687 1.98309 41.5724 1.98309 41.5762 1.98275C41.574 1.98275 41.5715 1.98275 41.5691 1.98275V1.98309ZM30.7817 1.72127C30.7817 1.72127 30.7805 1.72127 30.78 1.72127C30.7805 1.72127 30.7812 1.72127 30.7817 1.72127ZM26.141 2.00968C26.1362 2.00968 26.1315 2.01001 26.1267 2.01035C26.1315 2.01035 26.1362 2.01001 26.141 2.00968ZM42.4613 2.07059C42.4613 2.07059 42.4615 2.07059 42.4618 2.07059C42.4617 2.07059 42.4615 2.07059 42.4613 2.07059ZM15.2959 2.80658C15.2975 2.80658 15.2992 2.80624 15.3009 2.80591C15.2992 2.80591 15.2975 2.80624 15.2959 2.80658ZM26.3719 2.00059C26.3571 2.00126 26.3423 2.00194 26.3274 2.00261C26.3424 2.00194 26.3574 2.00126 26.3723 2.00059C26.3723 2.00059 26.3721 2.00059 26.3719 2.00059ZM25.3934 2.50538C25.3934 2.50538 25.3938 2.50538 25.3939 2.50538C25.3938 2.50538 25.3936 2.50538 25.3934 2.50538ZM15.5763 2.93244C15.5763 2.93244 15.5764 2.93244 15.5765 2.93244C15.5765 2.93244 15.5764 2.93244 15.5763 2.93244ZM56.6987 2.84091C56.698 2.84091 56.6975 2.84091 56.6968 2.84091C56.6974 2.84091 56.698 2.84091 56.6986 2.84091H56.6987ZM26.5176 1.99352C26.4845 1.9952 26.4515 1.99655 26.4184 1.99823C26.4515 1.99655 26.4846 1.9952 26.5176 1.99352ZM6.45566 2.7524C6.46228 2.7524 6.46877 2.75206 6.47539 2.75172C6.46877 2.75172 6.46228 2.75206 6.45566 2.7524ZM22.5223 2.06318C22.5192 2.06318 22.5158 2.06318 22.5125 2.06285C22.5158 2.06285 22.519 2.06285 22.5223 2.06318ZM54.9035 1.90804H54.9039C54.9039 1.90804 54.9036 1.90804 54.9035 1.90804ZM54.9556 1.9141C54.957 1.9141 54.9582 1.9141 54.9595 1.91444C54.9582 1.91444 54.957 1.91444 54.9556 1.9141ZM19.7229 2.10862C19.7229 2.10862 19.7226 2.10862 19.7225 2.10862C19.7225 2.10862 19.7226 2.10862 19.7228 2.10862H19.7229ZM26.3273 2.00294C26.321 2.00294 26.3147 2.00328 26.3084 2.00362C26.3147 2.00362 26.321 2.00328 26.3273 2.00294ZM55.0106 1.92049C55.0106 1.92049 55.011 1.92049 55.0113 1.92049C55.0105 1.92049 55.0095 1.92049 55.0087 1.92049C55.0094 1.92049 55.0099 1.92049 55.0106 1.92049ZM26.4184 1.99857C26.4031 1.99924 26.3877 1.99992 26.3722 2.00059C26.3876 1.99992 26.4029 1.99924 26.4184 1.99857ZM11.5087 3.01355C11.5087 3.01355 11.5089 3.01355 11.5091 3.01355C11.5085 3.01355 11.508 3.01355 11.5075 3.01355C11.5079 3.01355 11.5083 3.01355 11.5088 3.01355H11.5087ZM59.8982 2.69283C59.8982 2.69283 59.8986 2.69283 59.8987 2.69283C59.8985 2.69283 59.8983 2.69283 59.8982 2.69283ZM11.4428 3.20268C11.4489 3.20268 11.4549 3.20234 11.4609 3.202C11.4548 3.202 11.4488 3.20234 11.4428 3.20268ZM18.5351 2.8611C18.5351 2.8611 18.5351 2.8611 18.535 2.8611H18.5351ZM2.89541 3.36825C2.89541 3.36825 2.89475 3.36825 2.89448 3.36825C2.89475 3.36825 2.89515 3.36825 2.89541 3.36825ZM40.2199 1.98343C40.2142 1.98343 40.2086 1.98343 40.2029 1.98376C40.2142 1.98376 40.2249 1.98343 40.236 1.98309C40.2308 1.98309 40.2253 1.98309 40.2199 1.98309V1.98343ZM40.236 1.98343C40.2497 1.98343 40.2632 1.98275 40.2767 1.98275C40.2633 1.98275 40.2497 1.98343 40.236 1.98343ZM5.40628 2.78201C5.40456 2.78201 5.40297 2.78201 5.40138 2.78201C5.40297 2.78201 5.40469 2.78201 5.40628 2.78201ZM16.6769 2.97922H16.6767C16.6767 2.97922 16.6771 2.97922 16.6774 2.97922C16.6773 2.97922 16.677 2.97922 16.6769 2.97922ZM47.3685 2.09852C47.3685 2.09852 47.3687 2.09852 47.3689 2.09852C47.3689 2.09852 47.3686 2.09852 47.3685 2.09852ZM1.43325 3.46618C1.43325 3.46618 1.43325 3.46618 1.43312 3.46618C1.43312 3.46618 1.43312 3.46618 1.43325 3.46618ZM15.3012 2.80624C15.3034 2.80624 15.3058 2.80591 15.3082 2.80557C15.3057 2.80557 15.3033 2.80591 15.3012 2.80624ZM30.221 1.77949C30.221 1.77949 30.2212 1.77949 30.2213 1.77949C30.2213 1.77949 30.2212 1.77949 30.221 1.77949ZM41.0051 1.518C41.0051 1.518 41.0047 1.518 41.0044 1.518C41.0047 1.518 41.0048 1.518 41.0051 1.518ZM55.701 2.80725C55.6983 2.80692 55.6957 2.80658 55.693 2.80624C55.6979 2.80692 55.7028 2.80759 55.7076 2.80826C55.7053 2.80826 55.7031 2.80759 55.701 2.80725ZM15.3085 2.80557C15.3085 2.80557 15.3095 2.80557 15.3101 2.80557C15.3094 2.80557 15.3089 2.80557 15.3083 2.80557H15.3085ZM15.5766 2.93278C15.5766 2.93278 15.5766 2.93278 15.5765 2.93278C15.5765 2.93278 15.5765 2.93278 15.5766 2.93278ZM8.94071 2.61476C8.94654 2.61442 8.95223 2.61408 8.95806 2.61375C8.94614 2.61442 8.93422 2.61543 8.9223 2.6161C8.92839 2.61577 8.93462 2.61543 8.94071 2.61509V2.61476ZM15.3011 2.80624C15.3011 2.80624 15.3009 2.80624 15.3008 2.80624C15.3008 2.80624 15.3008 2.80624 15.3009 2.80624H15.3011ZM15.2959 2.80692C15.2959 2.80692 15.2959 2.80692 15.2958 2.80692C15.2958 2.80692 15.2958 2.80692 15.2959 2.80692ZM23.4762 2.58178C23.4753 2.58178 23.4744 2.58178 23.4737 2.58178C23.4745 2.58178 23.4753 2.58178 23.4762 2.58178Z' fill='%23990000'/%3E%3Cpath d='M15.9461 2.99167H15.9463C15.9529 2.99133 15.9595 2.991 15.9663 2.99066M55.4936 1.9777C55.4948 1.97804 55.4958 1.97838 55.497 1.97871M1.49602 2.90182C1.47179 2.89643 1.44755 2.89071 1.42345 2.88398C1.44769 2.89038 1.47179 2.89643 1.49602 2.90182ZM1.49602 2.90182C1.49761 2.90215 1.49907 2.90249 1.50066 2.90283M23.5361 2.35428C23.5076 2.35596 23.479 2.35731 23.4505 2.35899M40.011 1.99823C40.0246 1.9979 40.0382 1.99722 40.0517 1.99689M35.8523 2.10862C35.8337 2.10929 35.815 2.10962 35.7963 2.1103M32.7677 1.64387H32.7678M2.70392 2.99201C2.70405 2.99201 2.70405 2.99201 2.70405 2.99201C2.70392 2.99201 2.70378 2.99201 2.70378 2.99201H2.70392ZM2.70392 2.99201C2.70392 2.99201 2.70312 2.99201 2.70286 2.99201C2.70325 2.99201 2.70352 2.99201 2.70392 2.99201ZM2.70392 2.99201C2.69928 2.99201 2.69451 2.99234 2.68988 2.99268C2.69451 2.99268 2.69915 2.99234 2.70392 2.99201ZM2.68511 3.37902C2.68418 3.37902 2.68339 3.37902 2.68246 3.37902M2.5601 2.97552C2.55493 2.97552 2.54964 2.97552 2.54447 2.97552M1.77863 2.76519C1.77757 2.76519 1.77651 2.76485 1.77545 2.76485M1.36134 3.48873C1.34836 3.48603 1.33525 3.48301 1.32201 3.48031M1.38769 2.82677C1.38915 2.82711 1.39061 2.82744 1.39206 2.82778M1.46252 2.74836C1.44212 2.74331 1.42093 2.73725 1.39988 2.73153M1.42292 2.67836C1.41445 2.67601 1.40584 2.67365 1.39749 2.67129M1.12323 3.28412C1.1186 3.28243 1.11409 3.28075 1.10946 3.27873M1.1819 3.48772C1.17647 3.48637 1.17104 3.48502 1.16561 3.48334M1.22163 2.65783C1.21885 2.65682 1.21593 2.65548 1.21302 2.65447C1.21567 2.65548 1.21818 2.65649 1.2207 2.6575H1.22057C1.22096 2.65783 1.22123 2.65783 1.22163 2.65783ZM1.22163 2.65783C1.23341 2.66254 1.24507 2.66726 1.25646 2.67264C1.24533 2.66759 1.23408 2.66288 1.22255 2.65817C1.22229 2.65783 1.22189 2.65783 1.22163 2.65783ZM1.30863 2.79884C1.31314 2.80086 1.31764 2.80288 1.32214 2.8049M0.946438 3.29219C0.950146 3.29758 0.953854 3.30262 0.957562 3.30734M0.874528 2.7349C0.877574 2.72413 0.881017 2.7137 0.884593 2.70394M0.884593 2.70394C0.885387 2.70158 0.886182 2.69956 0.886976 2.69721C0.886182 2.69923 0.885387 2.70158 0.884593 2.70394ZM0.884328 3.22522C0.884328 3.22522 0.884725 3.22623 0.88499 3.22691C0.884858 3.22623 0.884593 3.2259 0.884328 3.22522ZM0.884328 3.22522C0.885917 3.2296 0.887639 3.23364 0.88936 3.23801C0.884725 3.22691 0.880885 3.21479 0.877177 3.20234C0.87956 3.21008 0.881944 3.21782 0.884328 3.22522ZM0.916508 3.00008C0.916244 2.99605 0.916111 2.99167 0.915846 2.98763M0.916641 2.93682C0.916906 2.93143 0.917038 2.92605 0.917568 2.92066M0.9422 3.12023C0.944054 3.12494 0.945908 3.12864 0.947762 3.13268C0.945908 3.12864 0.944054 3.12426 0.9422 3.12023ZM0.9422 3.12023C0.941538 3.11854 0.940875 3.11686 0.940213 3.11518M0.941273 3.03508C0.941802 3.03778 0.942332 3.04047 0.942862 3.04316M0.987756 2.74634C0.999939 2.73692 1.01226 2.73153 1.0247 2.72749M0.927897 2.66456C0.930149 2.6612 0.932268 2.65783 0.934519 2.6548C0.9324 2.65783 0.930149 2.66086 0.92803 2.66423L0.927897 2.66456ZM0.927897 2.66456C0.927632 2.6649 0.9275 2.66524 0.927235 2.66557C0.927368 2.66524 0.927765 2.66456 0.927765 2.66456H0.927897ZM0.845261 2.98393C0.845261 2.98057 0.845261 2.97787 0.845261 2.97484C0.845261 2.97754 0.845261 2.98057 0.845261 2.98393ZM0.845261 2.98393C0.845261 2.98528 0.845261 2.98831 0.845261 2.98831C0.845261 2.98696 0.845261 2.98528 0.845261 2.98393ZM0.9226 3.30767C0.921806 3.30633 0.921011 3.30498 0.920216 3.30363M0.985769 3.8791C1.00828 3.89425 1.0296 3.90602 1.04947 3.91545M1.10681 3.46248C1.10655 3.46248 1.10615 3.46248 1.10615 3.46248V3.46214C1.11131 3.4645 1.11635 3.46618 1.12151 3.4682C1.11661 3.46618 1.11171 3.4645 1.10681 3.46248ZM1.10681 3.46248C1.10549 3.4618 1.10416 3.46113 1.10284 3.46079C1.11939 3.4682 1.13594 3.47392 1.15223 3.47897C1.13727 3.47426 1.12217 3.46887 1.10681 3.46248ZM1.28069 3.47459C1.25937 3.47224 1.23672 3.46954 1.21315 3.46517C1.23672 3.46954 1.25937 3.47257 1.28069 3.47459ZM1.28069 3.47459C1.28056 3.47459 1.28029 3.47459 1.28016 3.47459C1.28029 3.47459 1.28043 3.47459 1.28069 3.47459ZM1.26679 3.43286C1.26943 3.4332 1.27195 3.43354 1.2746 3.43387M1.58541 2.92369C1.59442 2.92537 1.60356 2.92739 1.61256 2.92908M3.3466 2.77057C3.34435 2.77057 3.3421 2.77057 3.33985 2.77057M3.32607 4.00093C3.30224 4.00227 3.27694 4.00328 3.25112 4.00463M11.5541 3.21412C11.5612 3.21412 11.569 3.21412 11.5773 3.21412C11.5692 3.21412 11.5612 3.21412 11.5541 3.21412ZM11.5541 3.21412C11.5648 3.21412 11.5777 3.21412 11.5897 3.21378C11.5767 3.21378 11.5649 3.21412 11.5541 3.21412ZM11.2916 3.21344C11.2976 3.21344 11.3038 3.21277 11.31 3.21277M11.4035 3.13772C11.4035 3.13772 11.4039 3.13772 11.404 3.13772M11.4035 3.13772C11.4036 3.13772 11.4039 3.13772 11.404 3.13772M11.4035 3.13772C11.2994 3.14143 11.1956 3.14547 11.0916 3.14917C11.1955 3.14547 11.2993 3.14143 11.4035 3.13772ZM11.404 3.13772H11.4038M11.1975 3.03306C11.1866 3.03374 11.1759 3.03407 11.165 3.03475M11.1737 3.21984C11.1618 3.22051 11.1503 3.22118 11.1393 3.22186M11.8942 2.97653C11.8747 2.97653 11.8554 2.97653 11.8359 2.97653M11.7882 2.9772C11.6493 2.98561 11.5104 2.99403 11.3715 3.00244M11.3035 2.51649C11.306 2.51649 11.3086 2.51649 11.3109 2.51615C11.3084 2.51615 11.306 2.51615 11.3035 2.51649ZM11.3035 2.51649C11.3099 2.51649 11.3162 2.51582 11.3226 2.51548C11.2977 2.51683 11.2744 2.51784 11.2483 2.51918C11.2676 2.51817 11.2858 2.5175 11.3035 2.51649ZM11.3035 2.51649C11.2306 2.51986 11.1502 2.52389 11.0118 2.53062C11.1502 2.52389 11.2306 2.52019 11.3035 2.51649ZM10.1719 3.24912C10.1653 3.24979 10.1587 3.25013 10.1519 3.2508M10.3598 3.22421C10.3686 3.22388 10.3772 3.2232 10.3858 3.22287M10.2628 3.24138C10.2585 3.24171 10.2542 3.24205 10.2499 3.24239M10.6475 2.68038C10.6313 2.68173 10.6072 2.68341 10.5729 2.68476M10.0748 2.1002C9.97896 2.10121 9.88944 2.10323 9.80309 2.10559M9.85911 2.57505C9.84852 2.57505 9.83806 2.57572 9.82759 2.57572M9.85143 2.61139C9.85818 2.61105 9.86481 2.61072 9.87116 2.61038M9.75767 2.61644C9.75608 2.61644 9.75462 2.61644 9.75304 2.61644M9.37097 3.23936C9.36992 3.23936 9.36872 3.23936 9.36766 3.23936M8.9954 3.14109C9.00044 3.14109 9.0052 3.14042 9.00957 3.14042M8.97488 3.1421C8.96945 3.1421 8.96388 3.14277 8.95793 3.14277M8.94865 3.26561C8.94839 3.26561 8.94746 3.26561 8.94746 3.26561C8.94879 3.26561 8.94985 3.26561 8.95091 3.26561M8.94865 3.26561C8.94852 3.26561 8.94839 3.26561 8.94826 3.26561C8.94919 3.26561 8.95011 3.26561 8.95091 3.26561M8.94865 3.26561C8.94945 3.26561 8.95024 3.26561 8.95091 3.26561M8.94865 3.26561C8.94945 3.26561 8.95011 3.26561 8.95091 3.26561M8.67943 2.66086C8.67837 2.66086 8.67731 2.66086 8.67598 2.66086C8.67717 2.66086 8.67837 2.66086 8.67943 2.66086ZM8.67943 2.66086C8.6785 2.66086 8.6777 2.66086 8.67678 2.66086M8.57639 2.67735C8.55256 2.67802 8.52872 2.6787 8.50488 2.67937M8.28955 2.60365C8.24413 2.60197 8.19884 2.60062 8.15341 2.59894M8.33656 2.60533C8.36636 2.60634 8.39629 2.60735 8.42609 2.60836M8.12229 2.149C8.10574 2.1601 8.08945 2.17727 8.07409 2.2015M7.7593 2.14631C7.7593 2.15034 7.7593 2.15438 7.7593 2.15842M7.50596 2.219C7.5159 2.20991 7.52636 2.20251 7.53748 2.19746M7.44041 2.69586C7.44107 2.69586 7.44173 2.69586 7.4424 2.69586M7.20535 2.73221C7.20455 2.73221 7.20362 2.73221 7.20283 2.73221M7.0316 3.29623C7.0308 3.29623 7.03014 3.29623 7.02935 3.29623M7.0218 3.29623C7.02431 3.29623 7.02696 3.29623 7.02948 3.29623M5.86131 3.41536C5.86052 3.41536 5.85972 3.41536 5.85893 3.41536M6.55895 3.38339C6.55816 3.38339 6.55737 3.38339 6.5567 3.38339M5.93389 2.88331C5.93799 2.88331 5.94236 2.88263 5.9466 2.88263M5.97666 3.41099C5.97812 3.41099 5.97971 3.41099 5.98116 3.41099M6.01043 3.4093C6.00315 3.40964 5.99586 3.40998 5.98845 3.41031M5.42045 2.78706C5.42218 2.78706 5.4239 2.78706 5.42562 2.78706M5.94037 2.22034C5.92528 2.22102 5.90992 2.22203 5.89442 2.2227M5.20433 2.75543C5.32683 2.74802 5.44932 2.74028 5.57182 2.73254C5.44932 2.74028 5.32683 2.74769 5.20433 2.75543ZM5.20433 2.75543C5.20433 2.75543 5.20393 2.75543 5.2038 2.75543C5.20393 2.75543 5.2042 2.75543 5.20433 2.75543ZM4.97787 2.74466C4.98661 2.74398 4.99562 2.74365 5.00476 2.74297M4.97787 2.74466C4.97787 2.74466 4.97814 2.74466 4.97827 2.74466C4.97814 2.74466 4.978 2.74466 4.97774 2.74466H4.97787ZM4.74056 3.45608C4.73169 3.45777 4.72268 3.45911 4.71381 3.46079M4.71805 2.74701C4.70825 2.74769 4.69884 2.74836 4.68984 2.74903M3.65927 2.78168C3.73356 2.78033 3.80799 2.77898 3.88228 2.77764M3.87407 2.93581C3.91327 2.9348 3.95233 2.93412 3.991 2.93345M3.89446 3.52709C3.88532 3.52776 3.87619 3.52844 3.86718 3.52911M3.86453 3.52911C3.85672 3.52978 3.84904 3.53012 3.84136 3.53079M3.83182 3.53147C3.82547 3.5318 3.81924 3.53247 3.81302 3.53281M3.8052 3.53348C3.79911 3.53382 3.79315 3.53449 3.78719 3.53483M3.77819 3.5355C3.77276 3.53584 3.76746 3.53618 3.76217 3.53651M3.57703 3.55199C3.57226 3.55233 3.56763 3.553 3.56326 3.55334M4.3381 3.97569C4.35161 3.98376 4.36605 3.98847 4.38141 3.98948M5.20592 3.48974C5.22419 3.48671 5.2426 3.48334 5.26088 3.48031M5.24485 3.48099C5.24737 3.48099 5.24988 3.48099 5.2524 3.48099M7.32453 3.21378C7.35128 3.21243 7.3779 3.21109 7.40465 3.20974M7.2803 3.1734C7.40757 3.16768 7.5347 3.16196 7.66196 3.1559M7.68037 3.21782C7.68117 3.21782 7.68209 3.21782 7.68289 3.21782M7.68143 3.21782C7.67971 3.21782 7.67812 3.21782 7.6764 3.21782M7.59072 3.202C7.58873 3.202 7.58674 3.20234 7.58489 3.20234M8.38278 3.3208C8.35312 3.32315 8.32359 3.32517 8.29392 3.32753M8.15831 3.19763C8.15937 3.19763 8.16043 3.19763 8.16149 3.19763M8.16149 3.19763C8.20109 3.19493 8.24108 3.19157 8.28055 3.1882C8.24201 3.19157 8.20321 3.1946 8.16149 3.19763ZM8.29366 3.79867C8.24519 3.79833 8.22214 3.79833 8.18798 3.79497C8.19394 3.79564 8.20069 3.79631 8.20903 3.79665C8.2289 3.798 8.25658 3.79867 8.29366 3.79867ZM8.29366 3.79867C8.29419 3.79867 8.29551 3.79867 8.29551 3.79867H8.29564C8.29591 3.79867 8.2963 3.79867 8.29657 3.79867C8.29551 3.79867 8.29458 3.79867 8.29366 3.79867ZM8.3502 3.82189C8.3502 3.8128 8.34994 3.80405 8.34994 3.79497M8.87675 3.33392C8.87979 3.33089 8.88297 3.32753 8.88602 3.3245M9.92784 3.28984C9.94095 3.28883 9.95393 3.28815 9.96665 3.28714M10.1136 3.27739C10.0931 3.27873 10.0726 3.27974 10.0521 3.28109C10.0421 3.2821 10.0321 3.28277 10.022 3.28344C10.0323 3.28243 10.0425 3.28176 10.0526 3.28109C10.0755 3.27974 10.0985 3.27839 10.1215 3.27705C10.1188 3.27738 10.1163 3.27739 10.1136 3.27739ZM10.1136 3.27739C10.0991 3.27806 10.0846 3.27907 10.0701 3.28008C10.0872 3.27907 10.1042 3.27806 10.1213 3.27705C10.1188 3.27705 10.1162 3.27705 10.1136 3.27739ZM10.3314 3.73035C10.3314 3.73406 10.3314 3.73809 10.3314 3.7418M10.4965 3.27436C10.4966 3.27436 10.4966 3.27436 10.4966 3.27436C10.4965 3.27436 10.4962 3.27436 10.4962 3.27436C10.4964 3.27436 10.4965 3.27436 10.4965 3.27436ZM10.4965 3.27436C10.4976 3.27436 10.4985 3.27436 10.4995 3.27436C10.4985 3.27436 10.4974 3.27436 10.4964 3.27436C10.4964 3.27436 10.4964 3.27436 10.4965 3.27436ZM10.6222 3.2683C10.6362 3.26729 10.6495 3.26662 10.6622 3.26561M19.1312 2.23448C19.1402 2.2338 19.1491 2.23313 19.158 2.23279C19.1491 2.23347 19.1402 2.23414 19.1312 2.23448ZM19.1312 2.23448C19.1368 2.23414 19.1422 2.2338 19.1476 2.23347M19.041 2.20621C19.0423 2.20587 19.0438 2.2052 19.0449 2.2052C19.0438 2.20554 19.0425 2.20621 19.041 2.20621ZM19.041 2.20621C19.041 2.20621 19.041 2.20621 19.0409 2.20621C19.0409 2.20621 19.0409 2.20621 19.041 2.20621ZM17.7505 2.87792C17.7492 2.87792 17.748 2.87792 17.7466 2.87792M18.0159 2.28159C18.0225 2.28092 18.0291 2.28058 18.0356 2.27991C18.0291 2.28058 18.0226 2.28092 18.0159 2.28159ZM18.0159 2.28159C18.0131 2.28159 18.0104 2.28193 18.0077 2.28226C18.0104 2.28226 18.0131 2.28193 18.0159 2.28159ZM18.1176 2.81365C18.0996 2.81499 18.0814 2.81634 18.0634 2.81768M18.0765 2.27654C18.0816 2.27621 18.0866 2.27553 18.0915 2.2752M18.1655 2.26813C18.1713 2.26746 18.1772 2.26712 18.1829 2.26645M18.0923 2.93581C18.0779 2.93648 18.0632 2.93715 18.0485 2.93783M18.0408 2.93816C17.9956 2.94018 17.9493 2.9422 17.9015 2.94422M18.5847 2.91124C18.4648 2.91797 18.333 2.9247 18.1867 2.93143M18.18 2.93177C18.1676 2.93244 18.1552 2.93278 18.1426 2.93345M18.5358 2.87086C18.5369 2.87086 18.5379 2.87086 18.539 2.87086M18.5414 2.87052C18.5423 2.87052 18.5431 2.87052 18.544 2.87052M18.6335 2.90821C18.6176 2.90922 18.6015 2.90989 18.5852 2.9109M18.6162 2.20217C18.6182 2.20217 18.6203 2.20183 18.6224 2.2015C18.6204 2.2015 18.6183 2.20183 18.6163 2.20217M18.6162 2.20217H18.6163M18.6162 2.20217C18.6221 2.2015 18.628 2.20082 18.6339 2.20015C18.6278 2.20082 18.6219 2.2015 18.6162 2.20217ZM18.6162 2.20217C18.6162 2.20217 18.6162 2.20217 18.616 2.20217C18.616 2.20217 18.6162 2.20217 18.6163 2.20217M17.7697 2.93783C17.7367 2.93984 17.7041 2.94186 17.6718 2.94388M17.0505 2.96206C17.0642 2.96138 17.078 2.96037 17.0916 2.95936C17.078 2.96004 17.0644 2.96105 17.0505 2.96206ZM17.0505 2.96206C17.0462 2.96206 17.042 2.96273 17.0377 2.96307C17.042 2.96307 17.0462 2.96239 17.0505 2.96206ZM16.7637 2.75172C16.762 2.75172 16.7603 2.75172 16.7586 2.75206C16.7603 2.75206 16.762 2.75206 16.7637 2.75172ZM16.7637 2.75172C16.7637 2.75172 16.7639 2.75172 16.764 2.75172C16.764 2.75172 16.7639 2.75172 16.7637 2.75172ZM16.7637 2.75172C16.5166 2.76855 16.2697 2.78538 16.0227 2.80187C16.0228 2.80187 16.0229 2.80187 16.0229 2.80187C16.0224 2.80187 16.0217 2.80187 16.0212 2.80187M16.7637 2.75172C16.7606 2.75172 16.7574 2.75206 16.7542 2.7524H16.7541C16.5097 2.76922 16.2655 2.78571 16.0212 2.80187M16.0212 2.80187C16.0213 2.80187 16.0215 2.80187 16.0217 2.80187C16.0216 2.80187 16.0213 2.80187 16.0212 2.80187ZM16.7567 2.98494C16.7513 2.98528 16.7457 2.98595 16.7403 2.98629M16.6586 2.98864C16.6594 2.98864 16.6602 2.98864 16.661 2.98864M16.6953 2.98831C16.692 2.98831 16.6888 2.98831 16.6857 2.98831M16.7099 2.98831C16.7077 2.98831 16.706 2.98831 16.704 2.98831C16.706 2.98831 16.7079 2.98831 16.7099 2.98831ZM16.7099 2.98831C16.7157 2.98831 16.7219 2.98797 16.7285 2.98797C16.7226 2.98831 16.7174 2.98831 16.7117 2.98831H16.7116C16.711 2.98831 16.7104 2.98831 16.7099 2.98831ZM15.8397 3.00715C15.8383 3.00715 15.837 3.00715 15.8357 3.00715M15.8084 3.0085C15.8059 3.0085 15.8034 3.0085 15.8009 3.0085M15.5766 2.94254C15.5768 2.94254 15.5769 2.94254 15.577 2.94254C15.5461 2.94388 15.5155 2.94523 15.4853 2.94658C15.5153 2.94523 15.5458 2.94388 15.5766 2.94254ZM15.5766 2.94254H15.5772M15.5766 2.94254C15.5642 2.94321 15.552 2.94355 15.5396 2.94422C15.5523 2.94355 15.5649 2.94321 15.5777 2.94254C15.5776 2.94254 15.5773 2.94254 15.5772 2.94254M15.5772 2.94254C15.5777 2.94254 15.5782 2.94254 15.5786 2.94254H15.5784C15.5784 2.94254 15.5786 2.94254 15.5788 2.94254C15.5782 2.94254 15.5777 2.94254 15.5772 2.94254ZM15.4318 2.80961C15.4302 2.80961 15.4286 2.80961 15.427 2.80961M15.6837 3.01388C15.685 3.01388 15.6862 3.01388 15.6875 3.01388M15.7277 3.01254C15.7293 3.01254 15.7309 3.01254 15.7325 3.01254M15.7423 3.01186C15.7438 3.01186 15.7454 3.01186 15.7468 3.01186M15.7718 3.01052C15.7738 3.01052 15.776 3.01052 15.7779 3.01052M15.874 2.92941C15.8747 2.92941 15.8757 2.92941 15.8765 2.92941M16.0278 2.99773C16.0278 2.99773 16.0282 2.99773 16.0284 2.99773C16.0282 2.99773 16.028 2.99773 16.0278 2.99773ZM16.0278 2.99773C16.0339 2.99739 16.04 2.99706 16.0464 2.99672C16.0354 2.99739 16.0247 2.99806 16.0141 2.99874C16.0186 2.99874 16.0233 2.99806 16.0278 2.99806V2.99773ZM15.9922 2.92235C15.9908 2.92235 15.9893 2.92235 15.9878 2.92235M13.8925 3.0758C13.8917 3.0758 13.8909 3.0758 13.8901 3.0758M13.8329 2.61442C13.8065 2.61846 13.7801 2.62216 13.7536 2.6262M12.784 2.97686C12.7858 2.97686 12.7878 2.97686 12.7897 2.97686M13.528 3.04753C13.527 3.04753 13.5262 3.04753 13.5253 3.04753M13.3367 3.60685C13.3367 3.60382 13.3367 3.60079 13.3367 3.59776M13.8842 3.07547C13.885 3.07547 13.8856 3.07547 13.8864 3.07547C13.885 3.07547 13.8834 3.07547 13.8818 3.07547C13.8826 3.07547 13.8835 3.07547 13.8843 3.07547H13.8842ZM13.8842 3.07547C13.8921 3.07547 13.8999 3.07547 13.9079 3.07547C13.8999 3.07547 13.892 3.07547 13.8842 3.07547ZM19.8952 2.17458C19.8915 2.17491 19.8876 2.17525 19.8839 2.17558M21.4854 2.09112C21.4851 2.09112 21.4846 2.09112 21.4846 2.09112C21.4845 2.09112 21.4844 2.09112 21.4842 2.09112C21.4846 2.09112 21.485 2.09112 21.4854 2.09112ZM21.4854 2.09112C21.4859 2.09078 21.4871 2.09078 21.4871 2.09078C21.4873 2.09078 21.4874 2.09078 21.4874 2.09078C21.4869 2.09112 21.4862 2.09112 21.4854 2.09112ZM21.3404 2.04602C21.3404 2.04602 21.3403 2.04602 21.3401 2.04602C21.3401 2.04602 21.3401 2.04602 21.3403 2.04602H21.3404ZM21.3404 2.04602C21.3407 2.04568 21.3412 2.04535 21.3412 2.04535C21.3409 2.04568 21.3407 2.04602 21.3404 2.04602ZM21.3395 2.04703C21.3399 2.04669 21.3403 2.04636 21.3403 2.04636C21.34 2.04669 21.3397 2.04703 21.3395 2.04703ZM21.3395 2.04703C21.3395 2.04703 21.3395 2.04703 21.3393 2.04703C21.3393 2.04703 21.3393 2.04703 21.3395 2.04703ZM20.9187 2.01674C20.9072 2.01742 20.8957 2.01809 20.8842 2.01876M21.1321 2.0578C20.8358 2.07496 20.6363 2.09347 20.4721 2.11131C20.6363 2.09347 20.8358 2.07463 21.1321 2.0578ZM21.1321 2.0578C21.1321 2.0578 21.1322 2.0578 21.1324 2.0578C21.1324 2.0578 21.1324 2.0578 21.1322 2.0578H21.1321ZM25.2476 2.47712C25.2375 2.47712 25.2277 2.47712 25.218 2.47712M24.7376 2.50707C24.7431 2.50673 24.7486 2.50606 24.754 2.50606C24.755 2.50606 24.7558 2.50606 24.7567 2.50606C24.7505 2.50639 24.7441 2.50673 24.7376 2.50707ZM24.7376 2.50707C24.7343 2.50707 24.731 2.5074 24.7277 2.50774C24.731 2.50774 24.7343 2.5074 24.7376 2.50707ZM24.6289 2.50976C24.6154 2.51111 24.602 2.51212 24.5888 2.51346M24.6497 2.51144C24.6494 2.51144 24.649 2.51144 24.649 2.51144C24.6493 2.51144 24.6494 2.51144 24.6497 2.51144ZM24.6497 2.51144C24.6568 2.51144 24.664 2.51077 24.671 2.51043C24.664 2.51043 24.6568 2.51111 24.6497 2.51144ZM23.5087 2.58918C23.506 2.58952 23.4991 2.59019 23.4871 2.5912M23.4774 2.59187C23.4773 2.59187 23.4769 2.59187 23.4769 2.59187C23.476 2.59187 23.475 2.59187 23.4742 2.59187C23.4753 2.59187 23.4765 2.59187 23.4777 2.59187C23.4776 2.59187 23.4774 2.59187 23.4774 2.59187ZM23.4774 2.59187C23.4774 2.59187 23.4773 2.59187 23.4772 2.59187C23.4774 2.59187 23.4777 2.59187 23.478 2.59187C23.4777 2.59187 23.4776 2.59187 23.4774 2.59187ZM23.8759 2.34654H23.8756H23.8758H23.8755C23.8767 2.34654 23.878 2.34654 23.8792 2.34654C23.8782 2.34654 23.877 2.34654 23.8759 2.34654ZM23.8759 2.34654C23.8759 2.34654 23.8759 2.34654 23.876 2.34654H23.8759ZM23.8951 2.34688C23.8962 2.34688 23.8972 2.34688 23.8983 2.34688C23.8972 2.34688 23.8963 2.34688 23.8952 2.34688C23.8958 2.34688 23.8963 2.34688 23.8968 2.34688C23.8959 2.34688 23.8951 2.34688 23.8943 2.34688C23.8946 2.34688 23.8948 2.34688 23.8951 2.34688ZM23.8951 2.34688C23.8951 2.34688 23.8951 2.34688 23.895 2.34688H23.8951ZM24.3132 2.46938C24.1997 2.47577 24.0883 2.4825 23.9844 2.48889M24.0587 2.00227C24.0519 2.00261 24.0452 2.00294 24.0384 2.00328M23.2302 2.60803C23.2286 2.60803 23.2271 2.60803 23.2257 2.60803M22.9817 2.62553C22.9817 2.62553 22.9824 2.62553 22.9827 2.62553C22.9823 2.62553 22.982 2.62553 22.9817 2.62553ZM22.9817 2.62553C22.9835 2.62553 22.9852 2.62519 22.9869 2.62485C22.9845 2.62485 22.9823 2.62553 22.98 2.62553C22.9805 2.62553 22.9811 2.62553 22.9815 2.62553H22.9817ZM22.699 2.66995C22.6975 2.66995 22.696 2.66995 22.6945 2.66995M22.6844 2.04636C22.6846 2.04636 22.6847 2.04636 22.6847 2.04636C22.6846 2.04636 22.6844 2.04636 22.6844 2.04636ZM22.6844 2.04636C22.6843 2.04636 22.6843 2.04636 22.6843 2.04636M22.6844 2.04636C22.6844 2.04636 22.6844 2.04636 22.6843 2.04636M22.6843 2.04636C22.6754 2.04636 22.6667 2.04636 22.6581 2.04636L22.6579 2.04669C22.6545 2.04669 22.6509 2.04669 22.6475 2.04669C22.6595 2.04636 22.6717 2.04636 22.6843 2.04636ZM22.1012 2.04097C22.1589 2.04097 22.2167 2.04097 22.2744 2.04165C22.2167 2.04097 22.1589 2.04064 22.1012 2.04097ZM22.1012 2.04097C22.1012 2.04097 22.1004 2.04097 22.1 2.04097C22.1004 2.04097 22.1008 2.04097 22.1012 2.04097ZM21.8995 3.1734C21.8995 3.17542 21.8995 3.17744 21.8995 3.17945M22.2498 2.48654C22.2413 2.48654 22.233 2.48654 22.2249 2.48654C22.2278 2.48654 22.2309 2.48654 22.2339 2.48654C22.2392 2.48654 22.2444 2.48654 22.2498 2.48654ZM22.2498 2.48654C22.2539 2.48654 22.258 2.48654 22.2621 2.48654M22.3312 3.16128C22.334 3.16128 22.3375 3.1633 22.3364 3.15321M22.5131 2.01775C22.479 2.02145 22.4621 2.02482 22.4437 2.02785C22.4621 2.02516 22.4792 2.02179 22.5131 2.01775ZM22.5131 2.01775C22.5127 2.01775 22.5123 2.01775 22.5119 2.01775C22.5331 2.01775 22.5539 2.01843 22.5745 2.01843C22.5544 2.01843 22.534 2.01775 22.5131 2.01775ZM24.6941 2.50909C24.7009 2.50875 24.7077 2.50841 24.7145 2.50808M25.332 2.51413C25.3297 2.51413 25.3275 2.51413 25.3252 2.51413M37.3623 2.05881C37.3526 2.05881 37.343 2.05881 37.3333 2.05881M37.0507 1.61156C37.0213 1.6119 36.992 1.61223 36.9628 1.61291C36.9638 1.61291 36.9648 1.61291 36.9658 1.61291C36.9637 1.61291 36.9616 1.61291 36.9593 1.61291C36.9605 1.61291 36.9617 1.61291 36.9629 1.61291C36.9622 1.61291 36.9616 1.61291 36.9609 1.61291H36.9608C36.9907 1.61257 37.0206 1.6119 37.0507 1.61156ZM37.0507 1.61156C37.0234 1.6119 36.9963 1.61223 36.969 1.61291C36.9961 1.61223 37.0234 1.6119 37.0507 1.61156ZM37.0364 1.59608C37.0377 1.59608 37.0391 1.59608 37.0404 1.59608M37.3419 1.56411C37.3405 1.56411 37.3389 1.56411 37.3374 1.56411M36.788 1.58497C36.7823 1.58531 36.7766 1.58565 36.7709 1.58598C36.7767 1.58565 36.7823 1.58531 36.7881 1.58497H36.788ZM36.788 1.58497H36.7877C36.8023 1.5843 36.8171 1.58363 36.8323 1.58262C36.8172 1.58329 36.8025 1.58396 36.788 1.58497ZM36.3732 2.07227C36.3659 2.07227 36.3588 2.07227 36.3523 2.07227M35.2771 2.0504C35.2787 2.0504 35.2805 2.0504 35.2822 2.05006M35.2771 2.0504H35.2769C35.2787 2.05006 35.2805 2.05006 35.2822 2.05006M35.2771 2.0504C35.2763 2.0504 35.2755 2.0504 35.2747 2.0504M35.2822 2.05006C35.2834 2.05006 35.2848 2.05006 35.2859 2.05006M35.6256 1.69367C35.6411 1.69334 35.6565 1.693 35.672 1.69266M35.0266 1.92891C35.0227 1.92891 35.0188 1.92958 35.0149 1.92958M35.0685 1.74247C35.0682 1.74281 35.068 1.74348 35.068 1.74348C35.068 1.74314 35.0682 1.74281 35.0685 1.74247ZM35.0685 1.74247C35.0685 1.74247 35.0686 1.74247 35.0688 1.74247C35.0688 1.74247 35.0686 1.74247 35.0685 1.74247ZM35.0699 1.74112C35.0696 1.74146 35.0689 1.74213 35.0689 1.74213C35.0692 1.7418 35.0696 1.74112 35.0699 1.74112ZM35.0699 1.74112H35.0702M34.0958 2.21227C34.0951 2.21227 34.0943 2.21227 34.0937 2.21227M34.1706 2.00665C34.18 2.00564 34.1892 2.00463 34.1984 2.00362C34.1876 2.00496 34.1767 2.00597 34.1657 2.00732C34.1658 2.00732 34.1665 2.00732 34.1665 2.00732V2.00698C34.1678 2.00665 34.1693 2.00665 34.1706 2.00665ZM34.1706 2.00665C34.1825 2.0053 34.1942 2.00395 34.206 2.00261C34.1927 2.00395 34.1795 2.00564 34.1661 2.00698C34.1676 2.00698 34.169 2.00698 34.1706 2.00665ZM34.6366 1.71656C34.6075 1.71891 34.5786 1.72194 34.5499 1.72497C34.5786 1.72194 34.6076 1.71925 34.6369 1.71656H34.6366ZM34.6366 1.71656C34.6507 1.71521 34.665 1.71387 34.6791 1.71252M34.3335 1.68997C34.2633 1.69098 34.193 1.69165 34.1228 1.69165M33.3599 1.62805C33.3662 1.62805 33.3729 1.62805 33.3796 1.62805M33.4436 1.62872C33.4481 1.62872 33.4524 1.62872 33.4571 1.62872M33.4711 1.62906C33.4772 1.62906 33.4833 1.62906 33.4897 1.62906M32.4531 2.2126C32.455 2.21294 32.4564 2.21294 32.4576 2.21294C32.4562 2.2126 32.455 2.2126 32.4533 2.2126C32.4531 2.2126 32.4531 2.2126 32.4531 2.2126ZM32.4531 2.2126C32.453 2.2126 32.4527 2.2126 32.4525 2.2126C32.4526 2.2126 32.453 2.2126 32.453 2.2126C32.4531 2.2126 32.4531 2.2126 32.4531 2.2126ZM32.4607 2.21328C32.4612 2.21328 32.4617 2.21328 32.4617 2.21328C32.4616 2.21328 32.4608 2.21328 32.4608 2.21328H32.4607ZM32.4607 2.21328C32.4605 2.21328 32.4605 2.21328 32.4605 2.21328C32.4607 2.21328 32.4607 2.21328 32.4607 2.21328ZM32.516 1.64858H32.5164M32.6613 1.59103C32.6657 1.59137 32.6701 1.59204 32.6742 1.59238M32.6515 1.59002C32.6506 1.59002 32.6497 1.59002 32.6487 1.59002M32.2643 1.57757C32.274 1.57757 32.2836 1.57757 32.2932 1.57757M32.1667 2.28967H32.1668C32.1668 2.28967 32.1668 2.28967 32.1667 2.28967ZM32.1667 2.28967C32.1667 2.28967 32.1658 2.28967 32.1648 2.29001C32.1658 2.29001 32.1662 2.29 32.1667 2.28967ZM32.1438 2.25029C32.1409 2.25029 32.138 2.25029 32.135 2.25029M32.1234 2.25029C32.1223 2.25029 32.1214 2.25029 32.1203 2.25029M31.6444 1.62569C31.6073 1.62973 31.5702 1.63478 31.5331 1.63983M30.5252 1.27806C30.4961 1.2407 30.4684 1.23061 30.4496 1.22758M30.1165 1.79127C30.1176 1.79127 30.1187 1.79127 30.1197 1.79127M29.7277 1.82829C29.7277 1.82829 29.7277 1.82829 29.7276 1.82829H29.7277ZM29.7277 1.82829C29.7277 1.82829 29.7275 1.82829 29.7275 1.82795C29.7275 1.82795 29.7275 1.82795 29.7277 1.82829ZM29.4814 1.77108C29.447 1.77478 29.4125 1.77814 29.3781 1.78184M29.3781 1.78184C29.3649 1.78319 29.3516 1.78454 29.3384 1.78588C29.3157 1.78824 29.2932 1.79059 29.2706 1.79295C29.3063 1.78925 29.3422 1.78555 29.3781 1.78184ZM29.0379 1.82559C29.0364 1.82559 29.0351 1.82559 29.0339 1.82559M28.519 1.85554C28.5204 1.85588 28.5214 1.85622 28.5225 1.85622C28.5214 1.85588 28.5205 1.85554 28.5192 1.85554C28.5205 1.85588 28.5217 1.85622 28.5227 1.85622C28.5216 1.85588 28.5204 1.85554 28.519 1.85554ZM28.519 1.85554C28.519 1.85554 28.519 1.85588 28.519 1.85622C28.519 1.85622 28.519 1.85588 28.519 1.85554ZM27.3991 2.3627C27.3989 2.3627 27.3989 2.3627 27.3989 2.3627H27.3991ZM27.3991 2.3627C27.4058 2.3627 27.424 2.36169 27.452 2.36034C27.4233 2.36169 27.4052 2.36236 27.3987 2.3627C27.3987 2.3627 27.3989 2.3627 27.3991 2.3627ZM27.6021 1.89391C27.6063 1.89223 27.6102 1.88987 27.6147 1.89021C27.6102 1.88953 27.6063 1.89223 27.6021 1.89391ZM27.6021 1.89391C27.6119 1.89223 27.6216 1.89088 27.6314 1.8892M27.6318 1.87876C27.6363 1.87641 27.6409 1.87372 27.6454 1.87136M27.6752 1.38541C27.6176 1.38743 27.5625 1.38911 27.51 1.3908M27.4256 1.93025C27.4254 1.93025 27.4253 1.93025 27.4253 1.93025C27.4254 1.93025 27.4256 1.93025 27.4257 1.93025H27.4256ZM27.4256 1.93025C27.4241 1.93025 27.4241 1.93025 27.4256 1.93025ZM26.8393 2.34116C26.8385 2.34116 26.8378 2.34116 26.837 2.34116M26.8439 2.34116C26.8447 2.34116 26.8456 2.34116 26.8464 2.34116M26.8333 2.45726C26.7529 2.45726 26.6727 2.45726 26.5923 2.45726M26.3764 2.37346C26.3763 2.37346 26.3762 2.37346 26.3762 2.37346C26.3763 2.37346 26.3764 2.37346 26.3764 2.37346ZM26.3764 2.37346C26.3783 2.37346 26.3799 2.3738 26.3812 2.37414C26.38 2.37414 26.3783 2.37346 26.3764 2.37346ZM26.634 2.3452C26.6363 2.3452 26.6384 2.3452 26.6406 2.3452M26.79 2.34116C26.7861 2.34116 26.7818 2.34116 26.7774 2.34116M26.1844 2.42731C26.2154 2.42798 26.2463 2.42832 26.2773 2.42899M26.6683 1.96458C26.669 1.96458 26.6698 1.96458 26.6704 1.96458M25.8729 1.9067C25.8568 1.90771 25.8405 1.90838 25.8243 1.90939M25.8066 2.02751C25.8442 2.0265 25.882 2.02549 25.9196 2.02448M26.0195 2.49933C26.0734 2.49428 26.1273 2.48923 26.1812 2.48418M27.0492 2.44346C27.0569 2.44346 27.0647 2.44346 27.0724 2.44346M27.5392 2.41755C27.3603 2.41587 27.1815 2.43539 27.0026 2.44346M28.1915 2.33005C28.1848 2.33039 28.1786 2.33073 28.1721 2.33073C28.1783 2.33039 28.1848 2.33005 28.1915 2.33005ZM28.1915 2.33005C28.1956 2.32972 28.2 2.32972 28.2044 2.32972V2.32938C28.2073 2.32938 28.2101 2.32938 28.213 2.32938C28.2056 2.32972 28.1984 2.33005 28.1915 2.33005ZM28.3216 2.32399C28.3184 2.32433 28.3154 2.32467 28.3126 2.325M28.6244 1.87708H28.6246M29.1658 1.80103C29.172 1.80103 29.178 1.80103 29.1838 1.80103M29.377 2.38894C29.3789 2.38894 29.3808 2.38894 29.3826 2.38894M29.617 2.38894C29.6236 2.38894 29.6301 2.38894 29.6367 2.38894M31.2611 1.62906C31.2672 1.62839 31.2734 1.62805 31.2798 1.62738M31.129 1.17003C31.246 1.15926 31.3631 1.14816 31.4802 1.13739M32.094 2.76317C32.1176 2.76249 32.1368 2.76182 32.1503 2.76115M32.7687 1.65228C32.7708 1.65228 32.7731 1.65228 32.7752 1.65228C32.7695 1.65228 32.7637 1.65194 32.758 1.65194C32.7614 1.65228 32.765 1.65228 32.7686 1.65228H32.7687ZM32.7687 1.65228C32.7779 1.65228 32.7871 1.65228 32.7963 1.65262C32.7871 1.65262 32.778 1.65262 32.7687 1.65228ZM33.2394 1.15623C33.1843 1.15758 33.1549 1.16027 33.1289 1.16397M33.1929 1.67247C33.1912 1.67146 33.1836 1.67045 33.1712 1.66911C33.1836 1.67045 33.1913 1.67146 33.1929 1.67247ZM33.1929 1.67247C33.1926 1.67247 33.1924 1.67247 33.192 1.67214C33.1925 1.67214 33.1928 1.67247 33.1932 1.67247H33.1929ZM33.2374 2.05208C33.34 2.05006 33.4472 2.0477 33.5613 2.044C33.4473 2.0477 33.34 2.05006 33.2374 2.05208ZM33.2374 2.05208C33.2888 2.05107 33.3412 2.05006 33.3951 2.04871M33.5112 2.27789C33.5077 2.27789 33.504 2.27789 33.5004 2.27789M34.9173 2.66288C34.984 2.65817 35.0534 2.65346 35.1266 2.64875M35.2479 1.70545C35.2422 1.70579 35.2364 1.70612 35.2307 1.70646M35.2442 2.05477C35.2392 2.05511 35.2342 2.05578 35.2291 2.05612C35.2342 2.05578 35.2391 2.05511 35.2442 2.05477ZM35.2442 2.05477C35.2442 2.05477 35.245 2.05443 35.2456 2.0541M35.2442 2.05477C35.2445 2.05443 35.2449 2.0541 35.2456 2.0541M35.2456 2.0541C35.2456 2.0541 35.2456 2.0541 35.2457 2.0541C35.2457 2.0541 35.2457 2.0541 35.2456 2.0541ZM36.5499 1.59507C36.5549 1.59473 36.5598 1.5944 36.5648 1.59406M36.8482 2.13924C36.8186 2.13587 36.7889 2.13285 36.7592 2.12948M37.9424 2.60231C37.9424 2.59591 37.9424 2.58952 37.9424 2.58312M41.6254 1.98847C41.6244 1.98847 41.6235 1.98847 41.6225 1.98847M41.5168 2.04501H41.5166M41.4892 2.04602C41.4875 2.04602 41.4859 2.04602 41.4842 2.04602M40.6613 1.50488C40.6597 1.50488 40.6581 1.50488 40.6565 1.50488M40.8124 2.06756C40.8104 2.06756 40.8085 2.06756 40.8064 2.06756M40.8036 2.06789C40.8014 2.06789 40.799 2.06789 40.7966 2.06789M39.2038 1.53651C39.2431 1.53584 39.2819 1.53483 39.3204 1.53382C39.268 1.53483 39.2143 1.53618 39.1614 1.53752C39.1754 1.53719 39.1896 1.53685 39.2036 1.53651H39.2038ZM39.2038 1.53651C39.263 1.53517 39.3204 1.53382 39.378 1.53214C39.321 1.53348 39.2628 1.53483 39.2038 1.53651ZM38.545 2.05006C38.5317 2.05006 38.5184 2.05006 38.5052 2.05006C38.5184 2.05006 38.5315 2.05006 38.545 2.05006ZM38.545 2.05006C38.5725 2.05006 38.6005 2.05006 38.6294 2.05006M41.7947 2.0928C41.7999 2.0928 41.8053 2.0928 41.8108 2.0928M42.3127 1.39719C42.2255 1.39416 42.1383 1.39113 42.0511 1.3881M42.3127 1.39719C42.3127 1.39719 42.3129 1.39719 42.3131 1.39719C42.3129 1.39719 42.3128 1.39719 42.3127 1.39719ZM47.0415 2.12241C47.0403 2.12241 47.0391 2.12241 47.0379 2.12241M47.1628 2.1416C47.1563 2.1416 47.1497 2.1416 47.1431 2.1416M47.5222 2.10895C47.5276 2.10895 47.5329 2.10895 47.5384 2.10895M46.6329 2.0891C46.6082 2.08842 46.5832 2.08775 46.558 2.08708M46.5556 2.08708C46.5519 2.08708 46.5481 2.08708 46.5443 2.08708M46.3522 2.08136C46.3542 2.08136 46.3563 2.08136 46.3583 2.08136M45.9454 2.06049C45.9497 2.06049 45.954 2.06116 45.958 2.06116M45.2488 2.09717C45.2488 2.09717 45.2484 2.09717 45.2481 2.09717C45.2485 2.09717 45.2489 2.09717 45.2493 2.09717C45.2491 2.09717 45.2489 2.09717 45.2488 2.09717ZM45.2488 2.09717C45.2488 2.09717 45.2479 2.09717 45.2475 2.09717C45.248 2.09717 45.2484 2.09717 45.2488 2.09717ZM44.6039 2.0053C44.6286 2.00597 44.6513 2.00698 44.6721 2.00766C44.6513 2.00698 44.6285 2.00631 44.6039 2.0053ZM44.6039 2.0053C44.6902 2.00799 44.751 2.01001 44.7952 2.01136C44.7511 2.01001 44.6903 2.00799 44.6039 2.0053ZM43.5313 2.00194H43.5314M43.5313 2.00194C43.5231 2.00194 43.5142 2.00194 43.505 2.00194C43.5142 2.00194 43.523 2.00194 43.5313 2.00194ZM42.7121 2.06049C42.6342 2.05948 42.5579 2.05881 42.4852 2.0578M42.8493 2.10155C42.8387 2.10155 42.8281 2.10088 42.8174 2.10088M42.7629 2.09953C42.758 2.09953 42.7531 2.09953 42.7482 2.09953M42.6349 2.07395C42.6285 2.07395 42.6216 2.07463 42.6142 2.07463M43.5761 2.10727H43.575C43.5762 2.10727 43.5774 2.10727 43.5787 2.10727C43.5778 2.10727 43.577 2.10727 43.5761 2.10727ZM43.5761 2.10727C43.571 2.10727 43.566 2.10727 43.5612 2.10727C43.5663 2.10727 43.5714 2.10727 43.5767 2.10727H43.5761ZM43.8544 2.0477C43.7076 2.04602 43.5428 2.044 43.346 2.04165C43.543 2.04434 43.7074 2.04602 43.8544 2.0477ZM43.8544 2.0477C43.7993 2.04703 43.7416 2.04636 43.6807 2.04568C43.7416 2.04636 43.7992 2.04703 43.8544 2.0477ZM43.8568 2.06689H43.8571M44.2911 2.05208C44.4281 2.05342 44.5635 2.05477 44.7162 2.05645C44.5668 2.05511 44.4273 2.05376 44.2911 2.05208ZM44.2911 2.05208C44.3426 2.05275 44.3938 2.05309 44.4459 2.05376M44.6605 2.13083C44.6629 2.13083 44.6653 2.13083 44.6677 2.13083M45.1097 2.02953C45.1081 2.02953 45.1066 2.02953 45.105 2.02953M45.3456 2.15943C45.359 2.15943 45.3718 2.15943 45.384 2.15943M45.9938 2.0652C45.9913 2.0652 45.9885 2.06453 45.9854 2.06453M46.1848 2.17592C46.1847 2.17592 46.1844 2.17592 46.1844 2.17592C46.1845 2.17592 46.1847 2.17592 46.1848 2.17592ZM46.1848 2.17592H46.1851C46.1852 2.17592 46.1853 2.17592 46.1853 2.17592C46.1851 2.17592 46.1848 2.17592 46.1848 2.17592ZM47.9521 2.2439C47.9531 2.2439 47.9543 2.2439 47.9554 2.2439M47.995 2.71908C47.9933 2.71908 47.9914 2.71908 47.9897 2.71908M47.9824 1.64622C47.9645 1.64555 47.9461 1.64521 47.9281 1.64454C47.971 1.64589 48.0135 1.64723 48.0552 1.64858C48.0311 1.64757 48.0068 1.6469 47.9823 1.64622H47.9824ZM47.9824 1.64622C47.9432 1.64488 47.903 1.64387 47.8632 1.64252C47.9812 1.64622 48.0948 1.64959 48.2037 1.65295C48.1321 1.6506 48.0583 1.64824 47.9824 1.64622ZM48.2177 2.12309C48.236 2.12342 48.2544 2.12376 48.2728 2.1241M48.6363 2.1315C48.6623 2.13217 48.6885 2.13285 48.7149 2.13352M60.1489 3.12965C60.1489 3.13167 60.1489 3.13369 60.1489 3.13571M60.1485 3.15758C60.1484 3.16667 60.1481 3.17575 60.1476 3.18585M60.1457 3.28378C60.1448 3.29017 60.1439 3.29623 60.1429 3.30262M60.1443 3.20941C60.1437 3.21816 60.1432 3.22691 60.1423 3.23633M60.1178 3.2084C60.1168 3.21917 60.1158 3.23061 60.1146 3.24205C60.1159 3.23061 60.117 3.21917 60.1178 3.2084ZM60.1178 3.2084C60.118 3.20402 60.1183 3.19965 60.1186 3.19493C60.1183 3.19931 60.118 3.20368 60.1178 3.2084ZM59.9851 3.47796C59.9852 3.47796 59.9855 3.47796 59.9855 3.47796C59.9806 3.47863 59.9759 3.47796 59.9712 3.47796C59.9758 3.47796 59.9803 3.47796 59.9851 3.47796ZM59.9851 3.47796C59.9853 3.47796 59.9855 3.47796 59.9857 3.47796C59.9855 3.47796 59.9851 3.47796 59.9848 3.47796C59.9848 3.47796 59.9849 3.47796 59.9851 3.47796ZM59.9358 2.65918C59.9391 2.65952 59.9426 2.65985 59.946 2.66019C59.9426 2.65985 59.9391 2.65918 59.9358 2.65918ZM59.9358 2.65918C59.9359 2.65918 59.9359 2.65918 59.9359 2.65918C59.9358 2.65918 59.9358 2.65918 59.9358 2.65918ZM59.934 2.65918C59.9325 2.65918 59.9312 2.65918 59.9297 2.65918M59.9294 2.65918C59.926 2.65918 59.9224 2.65918 59.919 2.65918M59.9067 2.7487C59.9068 2.7487 59.9068 2.7487 59.9068 2.7487C59.9067 2.7487 59.9064 2.7487 59.9064 2.7487H59.9067ZM59.9067 2.7487C59.9067 2.7487 59.9069 2.7487 59.9071 2.7487C59.9057 2.7487 59.9044 2.7487 59.9032 2.7487C59.9044 2.7487 59.9055 2.7487 59.9067 2.7487ZM59.6589 2.75307C59.6441 2.75071 59.6291 2.74802 59.614 2.74533M59.315 3.10676C59.3087 3.10542 59.3023 3.10374 59.2959 3.10239C59.2966 3.10273 59.2972 3.10273 59.2979 3.10273C59.3036 3.10407 59.3093 3.10542 59.315 3.10676ZM59.315 3.10676C59.3127 3.1071 59.3106 3.10744 59.3081 3.10777C59.3106 3.10777 59.3129 3.10744 59.315 3.10676ZM59.5551 3.36959C59.5177 3.35849 59.482 3.34839 59.4477 3.33897C59.482 3.34839 59.5177 3.35883 59.5551 3.36959ZM59.5551 3.36959C59.5418 3.36556 59.5288 3.36185 59.5159 3.35815C59.5288 3.36185 59.5417 3.36556 59.5551 3.36959ZM58.1306 3.02162C58.1308 3.02162 58.1309 3.02162 58.1309 3.02162H58.1308C58.1309 3.02162 58.1312 3.02162 58.1312 3.02162C58.131 3.02162 58.1308 3.02162 58.1306 3.02162ZM58.1306 3.02162C58.1305 3.02162 58.1303 3.02162 58.1303 3.02162H58.1304C58.1207 3.02028 58.1112 3.01927 58.1016 3.01826C58.1112 3.01927 58.121 3.02061 58.1306 3.02162ZM58.2816 3.03946C58.2864 3.04013 58.291 3.04047 58.2958 3.04114M57.9872 2.45962C57.9715 2.45726 57.9557 2.4549 57.9401 2.45255M57.7461 2.29741C57.7445 2.29707 57.7428 2.29674 57.7412 2.2964M56.8898 2.87187C56.8828 2.87119 56.8757 2.87018 56.8687 2.86951M56.2719 2.88163C56.2699 2.88129 56.2679 2.88062 56.2659 2.88028M55.7379 2.11232C55.735 2.11198 55.7321 2.11164 55.7292 2.11131M55.5079 1.99083C55.5034 1.98948 55.499 1.98814 55.4945 1.98679M55.3924 1.49142C55.3921 1.49849 55.3924 1.49478 55.3924 1.49142ZM55.3924 1.49142C55.3921 1.49849 55.3924 1.49512 55.3924 1.49142ZM53.0795 1.85723C53.0845 1.85756 53.0894 1.8579 53.0943 1.85824M52.781 2.32467C52.5949 2.31693 52.4089 2.31121 52.2228 2.3038M52.3804 2.32972C52.3849 2.32972 52.3893 2.33039 52.3938 2.33039M52.4118 1.83232C52.4111 1.83232 52.4102 1.83232 52.4091 1.83232M52.275 1.22825C52.2542 1.22758 52.2346 1.22691 52.2161 1.22623M51.883 1.71723C51.8745 1.71689 51.8663 1.71622 51.858 1.71588M51.7226 1.69468C51.7254 1.69468 51.7282 1.69468 51.7308 1.69468M50.3635 1.74415C50.3851 1.74516 50.4067 1.74617 50.4283 1.74718M51.6003 1.69435C51.607 1.69435 51.6135 1.69435 51.6199 1.69435C51.6144 1.69435 51.6087 1.69435 51.6029 1.69435C51.6216 1.69401 51.638 1.69401 51.6558 1.69401H51.6556C51.6567 1.69401 51.6577 1.69401 51.6587 1.69401C51.6412 1.69435 51.6218 1.69435 51.6003 1.69435ZM51.6003 1.69435C51.6011 1.69435 51.602 1.69435 51.6028 1.69435M51.7441 1.22354C51.7474 1.22354 51.7506 1.22354 51.7536 1.22354M51.7604 1.69502C51.7629 1.69502 51.7651 1.69502 51.7675 1.69502M51.809 1.81449C51.809 1.81449 51.8088 1.81449 51.8087 1.81449C51.8087 1.81449 51.8088 1.81449 51.809 1.81449ZM51.809 1.81449C51.809 1.81449 51.8099 1.81449 51.8104 1.81415C51.8098 1.81415 51.8092 1.81415 51.809 1.81449ZM51.756 1.22421C51.7596 1.22421 51.763 1.22421 51.7663 1.22421M50.5443 1.15522C50.5416 1.15556 50.5391 1.15623 50.5365 1.15657M49.368 2.24457C49.3687 2.24457 49.3695 2.24457 49.3701 2.24457M53.9877 2.47106C53.9788 2.47039 53.9701 2.46938 53.9611 2.4687M54.2589 2.60702C54.2589 2.60702 54.2589 2.60702 54.2588 2.60702C54.2588 2.60702 54.2588 2.60702 54.2589 2.60702ZM54.2589 2.60702C54.2663 2.60803 54.2735 2.60904 54.2809 2.61005M54.2608 2.4963C54.2608 2.4963 54.26 2.4963 54.2595 2.4963C54.2599 2.4963 54.2603 2.4963 54.2608 2.4963ZM54.2608 2.4963C54.2568 2.49596 54.2526 2.49563 54.2486 2.49529C54.2522 2.49563 54.2559 2.49596 54.2596 2.4963C54.256 2.4963 54.2524 2.49563 54.2489 2.49529C54.2984 2.50067 54.3491 2.50808 54.3843 2.51245C54.3507 2.50808 54.3099 2.50269 54.2609 2.4963H54.2608ZM55.0687 3.19796C55.0065 3.18921 54.9433 3.18046 54.8791 3.17171M56.5234 2.89912C56.5332 2.90081 56.5424 2.90215 56.5512 2.9035M56.6839 2.92638C56.6874 2.92706 56.6907 2.92773 56.6938 2.9284M57.1447 3.00581C57.3291 3.02768 57.5131 3.04955 57.6972 3.0721M58.5716 3.18518C58.5744 3.18551 58.5771 3.18619 58.5799 3.18652M59.554 3.17037C59.6057 3.18484 59.657 3.19998 59.7076 3.21546M59.7727 2.71807C59.7727 2.71807 59.7726 2.71807 59.7725 2.71807C59.7725 2.71807 59.7725 2.71807 59.7727 2.71807ZM59.7727 2.71807C59.756 2.71673 59.7374 2.71403 59.7176 2.711C59.7399 2.71403 59.7591 2.71774 59.7787 2.71774C59.7768 2.71774 59.7746 2.71774 59.7728 2.71774L59.7727 2.71807ZM59.9775 3.56882C59.9803 3.56882 59.9833 3.56882 59.9863 3.56815C59.9833 3.56815 59.9803 3.56848 59.9775 3.56882ZM59.9775 3.56882C59.9802 3.56882 59.9828 3.56882 59.9856 3.56848C59.9771 3.56949 59.9685 3.56848 59.9604 3.56781C59.9659 3.56848 59.9716 3.56882 59.9775 3.56882ZM59.9849 3.5456C59.9872 3.5456 59.9896 3.54493 59.992 3.54459M60.0272 3.55536C60.0297 3.55401 60.0325 3.55199 60.0351 3.55031M28.9857 1.79127C28.9882 1.79127 28.9909 1.79127 28.9934 1.79127M41.6511 2.06217C41.647 2.06217 41.6428 2.06217 41.6387 2.06217M28.9856 1.79093H28.9848M16.0453 2.98629C16.0456 2.98629 16.0458 2.98629 16.0458 2.98629C16.0456 2.98629 16.0454 2.98629 16.0453 2.98629ZM16.0453 2.98629C16.0394 2.98662 16.0337 2.98696 16.0278 2.9873C16.0337 2.9873 16.0394 2.98662 16.0453 2.98629ZM26.2101 2.00698C26.1871 2.00766 26.164 2.00867 26.141 2.00934M56.0798 2.05208C56.0788 2.05174 56.0777 2.0514 56.0767 2.05107M1.97012 4.48216H1.96972M44.9086 2.07833H44.9088M5.19161 2.74769C5.19161 2.74769 5.19281 2.74769 5.19334 2.74769C5.19267 2.74769 5.19228 2.74769 5.19161 2.74769ZM1.89874 3.53113C1.89874 3.53113 1.89954 3.53113 1.89993 3.53113C1.89874 3.53113 1.89768 3.53113 1.89649 3.53113C1.89729 3.53113 1.89795 3.53113 1.89861 3.53113H1.89874ZM6.85613 3.4019C6.85613 3.4019 6.85639 3.4019 6.85653 3.4019C6.85653 3.4019 6.85626 3.4019 6.85613 3.4019ZM15.946 2.99201C15.9406 2.99201 15.9353 2.99268 15.93 2.99302C15.9353 2.99302 15.9407 2.99234 15.946 2.99201ZM58.1407 3.01455C58.1407 3.01455 58.141 3.01455 58.1411 3.01455C58.1407 3.01455 58.1403 3.01455 58.1399 3.01455C58.1402 3.01455 58.1404 3.01455 58.1406 3.01455H58.1407ZM58.2175 3.02364C58.2182 3.02364 58.219 3.02364 58.2196 3.02364C58.2189 3.02364 58.2179 3.02364 58.2171 3.02364C58.2173 3.02364 58.2174 3.02364 58.2175 3.02364ZM28.6439 1.868C28.6439 1.868 28.644 1.868 28.6442 1.868C28.6442 1.868 28.644 1.868 28.6439 1.868ZM58.1917 3.02061C58.1917 3.02061 58.1913 3.02061 58.1912 3.02061C58.1913 3.02061 58.1916 3.02061 58.1917 3.02061ZM26.8222 2.33308C26.8222 2.33308 26.8229 2.33308 26.8233 2.33308C26.8229 2.33308 26.8226 2.33308 26.8222 2.33308ZM58.1758 3.01859C58.1758 3.01859 58.1746 3.01859 58.1741 3.01859C58.1746 3.01859 58.1753 3.01859 58.1758 3.01859ZM25.7667 2.01136C25.7686 2.01136 25.7704 2.01136 25.7723 2.01136C25.7671 2.01136 25.762 2.01136 25.7567 2.01169C25.7601 2.01169 25.7633 2.01169 25.7667 2.01169V2.01136ZM58.5483 3.07917C58.5483 3.07917 58.5481 3.07917 58.5479 3.07917C58.5482 3.07917 58.5485 3.07917 58.5487 3.07917C58.5486 3.07917 58.5485 3.07917 58.5482 3.07917H58.5483ZM34.6358 1.70646C34.6336 1.70646 34.6313 1.7068 34.6291 1.70713C34.6313 1.70713 34.6336 1.7068 34.6358 1.70646ZM16.0215 2.79244C16.0215 2.79244 16.0208 2.79244 16.0206 2.79244C16.0208 2.79244 16.0212 2.79244 16.0215 2.79244ZM50.4455 1.62973C50.4455 1.62973 50.4453 1.62973 50.4452 1.62973C50.4452 1.62973 50.4453 1.62973 50.4455 1.62973ZM2.88323 3.37094C2.88323 3.37094 2.88323 3.37094 2.88309 3.37094H2.88323ZM43.9549 1.5069C43.958 1.5069 43.9612 1.50724 43.9642 1.50757C43.9612 1.50757 43.958 1.50724 43.9549 1.5069ZM22.7712 2.44716C22.7712 2.44716 22.7706 2.44716 22.7704 2.44716C22.7706 2.44716 22.7709 2.44716 22.7712 2.44716ZM6.76025 3.37733C6.76025 3.37733 6.75985 3.37733 6.75972 3.37733C6.7621 3.37733 6.76422 3.37733 6.76661 3.37733C6.76435 3.37733 6.76237 3.37733 6.76025 3.37733ZM35.2481 2.04838C35.2481 2.04838 35.2489 2.04838 35.2494 2.04838C35.2489 2.04838 35.2486 2.04838 35.2481 2.04838ZM60.4985 3.05662C60.4985 3.05292 60.4984 3.04686 60.4982 3.04316V3.04417C60.4589 1.56983 59.8391 1.81785 59.4306 1.71959C58.9403 1.61493 58.449 1.51969 57.9584 1.43387C57.6375 1.41503 57.7253 1.31811 57.5309 1.49512C56.5456 1.20032 55.5868 1.07143 54.5068 0.991334C54.463 1.01556 54.3257 0.888019 54.3466 1.08018C54.0008 1.061 53.6617 0.977537 53.2968 0.877587C51.2483 0.797829 49.0159 0.651102 46.8467 0.602642C45.7865 0.842588 44.3845 0.53298 43.2645 0.651439C43.1213 0.580094 42.4904 0.808598 42.4752 0.521538C42.3508 0.515817 42.181 0.509759 42.0551 0.505721L41.8967 0.5L41.8958 0.629901C41.6733 0.628555 41.4398 0.626872 41.2167 0.624853C40.7341 0.593555 40.481 0.669948 40.0431 0.635622H40.0438C37.4193 0.642016 34.8338 0.864799 32.2622 0.692495C30.1692 0.841578 28.1037 0.901817 26.0247 1.01691C23.6961 1.15018 21.4973 1.03912 19.1599 1.28748C16.253 1.56646 13.4289 1.56041 10.4776 1.67651C9.50976 1.74987 8.4927 1.71117 7.53364 1.74954C6.28482 1.75761 4.78929 1.92689 3.4977 1.88583C2.84893 1.90737 2.1105 1.97299 1.45206 1.78992C1.2358 1.70814 1.01676 1.55199 0.797983 1.8017C0.557623 2.06419 0.435125 2.79783 0.534845 3.42916V3.42781C0.562523 3.59844 0.590995 3.7068 0.637611 3.83434C0.96074 4.64706 1.8414 4.41318 2.29047 4.5H2.28981C10.6606 4.11602 19.1973 3.74684 27.5467 3.28378C28.4831 3.09364 29.3663 3.30801 30.3072 3.22859C30.4985 3.25215 30.7523 3.19393 30.9503 3.15321C31.2719 3.1845 31.5383 3.16364 31.9157 3.16162C35.3886 3.09499 38.8149 2.86446 42.294 2.96071C47.5055 3.04821 52.7843 3.17104 58.034 3.98376C58.5769 4.05713 59.0995 4.14193 59.5633 4.27957C59.7431 4.31323 59.9109 4.51279 60.0979 4.40039C60.338 4.28765 60.5176 3.66507 60.4986 3.05595L60.4985 3.05662ZM0.661978 3.07883C0.658402 3.01018 0.658402 2.95802 0.660654 2.89576C0.658402 2.95835 0.658402 3.01186 0.66211 3.08085C0.66211 3.08018 0.66211 3.07951 0.66211 3.07883H0.661978ZM0.683829 3.28849C0.680915 3.27099 0.678796 3.25248 0.676413 3.23431C0.679988 3.26359 0.684358 3.29488 0.689656 3.32181C0.687802 3.31137 0.685815 3.30061 0.683829 3.28849ZM0.702501 3.38541C0.701045 3.37868 0.69972 3.37229 0.698131 3.36522C0.699985 3.37397 0.701707 3.38205 0.703693 3.3908C0.703296 3.38911 0.702899 3.38743 0.702501 3.38541ZM0.708726 3.412C0.708063 3.4093 0.707534 3.40661 0.706872 3.40392C0.707666 3.40729 0.708461 3.41065 0.709255 3.41402C0.709123 3.41334 0.70899 3.41267 0.708726 3.412ZM0.721306 2.46433C0.710977 2.50202 0.69641 2.55957 0.685021 2.63259C0.696674 2.55889 0.711109 2.50168 0.721571 2.46332C0.721571 2.46332 0.721439 2.46399 0.721306 2.46433ZM0.722631 2.45962C0.726471 2.44616 0.730312 2.43303 0.734549 2.42024C0.730444 2.43337 0.726471 2.44649 0.722631 2.45962ZM0.724352 3.47089C0.724352 3.47089 0.724088 3.47022 0.723955 3.46988C0.724088 3.47055 0.72422 3.47089 0.724485 3.47156C0.724485 3.47156 0.724485 3.47156 0.724352 3.47123V3.47089ZM0.741966 3.52675C0.736139 3.50925 0.730444 3.49108 0.725015 3.47291C0.730841 3.49243 0.736933 3.51161 0.743157 3.53012C0.74276 3.52911 0.742363 3.52776 0.741966 3.52675ZM0.75309 3.55738C0.751765 3.55368 0.750309 3.55031 0.748984 3.54695C0.752163 3.55502 0.755076 3.56243 0.758387 3.57118C0.756533 3.56646 0.754679 3.56175 0.75309 3.55738ZM0.773351 2.31726C0.771762 2.32097 0.770306 2.32467 0.768716 2.32837C0.770438 2.32433 0.772027 2.31996 0.773881 2.31592C0.773749 2.31625 0.773484 2.31659 0.773351 2.31726ZM2.62565 2.97417C2.63161 2.97417 2.63757 2.97417 2.64353 2.97383C2.63757 2.97383 2.63161 2.97383 2.62565 2.97417ZM2.66511 2.97316C2.65863 2.97316 2.65214 2.9735 2.64565 2.97383C2.65214 2.97383 2.65863 2.97383 2.66511 2.97316ZM2.7014 3.54425C2.72232 3.54425 2.74139 3.54425 2.75835 3.54493C2.74153 3.54459 2.72246 3.54425 2.7014 3.54425ZM2.70445 2.97182C2.70246 2.97182 2.70047 2.97182 2.69849 2.97182C2.70418 2.97182 2.70974 2.97148 2.71544 2.97114C2.71173 2.97114 2.70815 2.97114 2.70445 2.97148V2.97182ZM2.61347 3.59036C2.61929 3.59036 2.62499 3.59036 2.63082 3.59002C2.59744 3.59137 2.55136 3.5917 2.51957 3.5917C2.54606 3.5917 2.58433 3.5917 2.6136 3.59069L2.61347 3.59036ZM2.48594 3.59137H2.48633C2.48461 3.59137 2.48302 3.59137 2.4813 3.59137C2.48289 3.59137 2.48422 3.59137 2.48594 3.59137ZM2.56407 2.97518C2.565 2.97518 2.56606 2.97518 2.56698 2.97518C2.56526 2.97518 2.56354 2.97518 2.56195 2.97518C2.56261 2.97518 2.56341 2.97518 2.5642 2.97518H2.56407ZM2.53268 2.97585C2.53613 2.97585 2.5397 2.97585 2.54328 2.97585C2.53984 2.97585 2.53626 2.97585 2.53268 2.97585ZM2.51282 3.5917C2.51573 3.5917 2.51865 3.5917 2.52169 3.5917C2.51878 3.5917 2.51573 3.5917 2.51282 3.5917ZM2.50249 3.5917C2.49865 3.5917 2.49521 3.5917 2.49176 3.5917C2.49521 3.5917 2.49878 3.5917 2.50249 3.5917ZM2.61267 2.97451C2.60671 2.97451 2.60075 2.97451 2.59493 2.97484C2.60089 2.97484 2.60671 2.97484 2.61267 2.97451ZM2.61241 2.8436C2.61241 2.8436 2.61267 2.8436 2.6128 2.8436C2.6128 2.8436 2.61254 2.8436 2.61241 2.8436ZM2.47256 2.83889C2.47362 2.83889 2.47455 2.83889 2.47561 2.83889C2.47018 2.83889 2.46488 2.83889 2.45919 2.83889C2.46382 2.83889 2.46819 2.83889 2.47256 2.83889ZM2.3637 2.83788C2.35774 2.83788 2.35179 2.83788 2.34583 2.83788C2.35192 2.83788 2.35788 2.83788 2.3637 2.83788ZM2.2857 3.62569C2.28279 3.62569 2.28001 3.62569 2.27696 3.62569C2.27988 3.62569 2.28266 3.62569 2.2857 3.62569ZM2.17949 2.97047C2.17406 2.97047 2.16863 2.9698 2.16334 2.96946C2.16877 2.96946 2.17406 2.97013 2.17949 2.97047ZM2.12851 2.83653C2.12851 2.83653 2.12811 2.83653 2.12798 2.83653C2.12811 2.83653 2.12838 2.83653 2.12851 2.83653ZM1.80525 2.74197C1.84921 2.74836 1.89305 2.75374 1.93662 2.75846C1.86378 2.75038 1.79015 2.74062 1.71705 2.72749C1.74645 2.73254 1.77598 2.73759 1.80525 2.74197ZM1.90682 3.37498C1.88815 3.3733 1.86947 3.37195 1.8508 3.37027C1.87636 3.37262 1.90192 3.37498 1.92735 3.37666C1.92483 3.37666 1.92245 3.37633 1.92006 3.37633C1.92152 3.37633 1.92284 3.37633 1.9243 3.37633C1.91847 3.37599 1.91265 3.37532 1.90682 3.37498ZM1.90709 3.53248C1.90285 3.53248 1.89874 3.5318 1.8945 3.53147C1.89874 3.5318 1.90285 3.53214 1.90709 3.53248ZM1.82074 2.79547C1.8214 2.79547 1.82246 2.79581 1.82326 2.79615C1.82233 2.79615 1.8214 2.79581 1.82074 2.79547ZM1.77995 2.92268C1.77995 2.92268 1.78101 2.92268 1.78154 2.92302C1.78101 2.92302 1.78022 2.92302 1.78008 2.92302L1.77995 2.92268ZM1.76803 3.52036C1.76803 3.52036 1.7675 3.52036 1.76737 3.52036C1.76817 3.52036 1.76909 3.52036 1.76989 3.52036C1.76923 3.52036 1.7687 3.52036 1.76803 3.52036ZM1.67984 2.79345C1.7042 2.79749 1.72804 2.80086 1.75161 2.80422C1.71228 2.79884 1.67229 2.79244 1.63243 2.7847C1.64845 2.78773 1.66421 2.79043 1.67984 2.79345ZM1.50874 2.90586C1.48026 2.89912 1.45179 2.89273 1.42332 2.88499C1.42279 2.88499 1.42226 2.88499 1.42173 2.88465C1.45815 2.89441 1.49457 2.90283 1.53098 2.91057C1.52092 2.90855 1.51085 2.90619 1.50066 2.90384C1.50331 2.90451 1.50609 2.90518 1.50874 2.90586ZM1.34836 3.44801C1.39233 3.45945 1.4363 3.4682 1.48026 3.47661C1.4363 3.4682 1.39233 3.45911 1.34836 3.44801ZM1.37127 2.72312C1.37127 2.72312 1.37246 2.72379 1.37313 2.72379C1.37246 2.72379 1.37194 2.72312 1.37127 2.72312ZM1.43325 3.35647C1.43563 3.35714 1.43802 3.35748 1.4404 3.35782C1.4204 3.35378 1.40054 3.3494 1.38068 3.34435C1.39816 3.34873 1.41577 3.35277 1.43338 3.35613L1.43325 3.35647ZM1.46212 2.74836C1.46291 2.74836 1.46384 2.7487 1.46464 2.74903C1.46384 2.74903 1.46291 2.7487 1.46212 2.74836ZM1.58316 2.70326C1.58872 2.70427 1.59442 2.70528 1.59998 2.70663C1.59217 2.70495 1.58449 2.70394 1.57667 2.70192C1.57879 2.70259 1.58104 2.70293 1.58316 2.7036V2.70326ZM1.5727 2.71572C1.5727 2.71572 1.57283 2.71572 1.57296 2.71572C1.57137 2.71538 1.56992 2.71504 1.56846 2.71471C1.56992 2.71504 1.57124 2.71538 1.5727 2.71572ZM1.4355 2.19275C1.47563 2.20419 1.51589 2.21429 1.55615 2.22371C1.51165 2.21361 1.46715 2.20183 1.42279 2.18938C1.42703 2.19039 1.43126 2.19174 1.4355 2.19275ZM1.4155 2.6612C1.41617 2.6612 1.41683 2.66153 1.41749 2.66187C1.41643 2.66187 1.4155 2.6612 1.41445 2.6612C1.41484 2.6612 1.41511 2.6612 1.4155 2.6612ZM1.39736 2.82946C1.41776 2.83451 1.43828 2.83922 1.45868 2.84427C1.43789 2.83922 1.41723 2.83417 1.39643 2.82913C1.3967 2.82913 1.39696 2.82913 1.39736 2.82913V2.82946ZM1.38359 2.66759C1.3869 2.6686 1.39034 2.66961 1.39379 2.67028C1.38849 2.66894 1.38319 2.66759 1.37803 2.66557C1.37988 2.66625 1.38174 2.66692 1.38372 2.66759H1.38359ZM1.37578 2.64976H1.37657C1.37379 2.64908 1.37114 2.64774 1.36836 2.64673C1.37088 2.64774 1.37339 2.64875 1.37578 2.64976ZM1.36081 2.8685C1.35935 2.86816 1.3579 2.86715 1.35631 2.86682C1.35777 2.86749 1.35922 2.86816 1.36081 2.8685ZM1.34373 2.81264C1.33658 2.80994 1.32956 2.80725 1.32227 2.80389C1.32943 2.80692 1.33658 2.80961 1.34373 2.81264ZM1.23831 2.6188C1.25116 2.62519 1.26414 2.63125 1.27698 2.63764C1.26414 2.63125 1.25129 2.62519 1.23845 2.6188H1.23831ZM1.27632 3.27166C1.27632 3.27166 1.27566 3.27166 1.27539 3.27166C1.27566 3.27166 1.27606 3.27166 1.27632 3.27166ZM1.08734 2.54375C1.08999 2.54375 1.09264 2.54442 1.09529 2.54476C1.08549 2.54375 1.07556 2.54308 1.06536 2.54308C1.07463 2.54308 1.08416 2.54375 1.0933 2.54442C1.09132 2.54442 1.08933 2.54375 1.08734 2.54375ZM1.10376 2.57976C1.11846 2.5811 1.1333 2.58447 1.14773 2.58783C1.12734 2.58279 1.10694 2.57908 1.08628 2.57807C1.0888 2.57807 1.09145 2.57807 1.09396 2.57807C1.09171 2.57807 1.08946 2.57807 1.08734 2.57807C1.09291 2.57807 1.09833 2.57908 1.10376 2.57942V2.57976ZM1.10284 2.54577C1.11224 2.54711 1.12151 2.5488 1.13052 2.55082C1.12138 2.5488 1.11211 2.54711 1.10284 2.54577ZM1.14296 2.73019C1.14296 2.73019 1.14296 2.73019 1.14283 2.73019C1.14283 2.73019 1.14283 2.73019 1.14296 2.73019ZM1.14045 3.23969C1.13952 3.23936 1.13846 3.23902 1.13753 3.23868C1.13873 3.23902 1.13992 3.23969 1.14098 3.24003C1.14084 3.24003 1.14058 3.24003 1.14045 3.24003V3.23969ZM1.12005 3.23195C1.12376 3.2333 1.1276 3.23532 1.13131 3.23666C1.1276 3.23498 1.12376 3.2333 1.12005 3.23195ZM1.11767 2.72447C1.1235 2.72548 1.12932 2.72682 1.13502 2.72817C1.12919 2.72682 1.1235 2.72548 1.11767 2.72447ZM1.10098 2.72413C1.10098 2.72413 1.09966 2.72413 1.099 2.72413C1.09966 2.72413 1.10032 2.72413 1.10098 2.72413ZM1.09728 2.72413C1.09728 2.72413 1.09728 2.72413 1.09714 2.72413C1.09714 2.72413 1.09714 2.72413 1.09728 2.72413ZM1.08668 2.62014C1.08668 2.62014 1.08761 2.62014 1.08801 2.62014C1.08721 2.62014 1.08655 2.62014 1.08589 2.62014C1.08642 2.62014 1.08681 2.62014 1.08734 2.62014C1.08708 2.62014 1.08681 2.62014 1.08668 2.62014ZM1.08205 2.77057C1.08205 2.77057 1.08085 2.77057 1.08019 2.77057C1.08814 2.77057 1.09622 2.77158 1.10416 2.77293C1.09582 2.77158 1.08748 2.77091 1.079 2.77057C1.07993 2.77057 1.08099 2.77057 1.08191 2.77057H1.08205ZM1.1333 3.23767C1.1333 3.23767 1.13224 3.23767 1.13144 3.23767C1.13436 3.23767 1.13714 3.23936 1.14005 3.24037C1.1378 3.23969 1.13555 3.23868 1.13316 3.23801L1.1333 3.23767ZM1.1676 3.30027C1.16031 3.29791 1.15316 3.29556 1.14588 3.2932C1.15316 3.29556 1.16031 3.29825 1.1676 3.30027ZM1.14641 3.24239C1.14641 3.24239 1.1468 3.24239 1.14694 3.24239C1.1468 3.24239 1.14654 3.24239 1.14641 3.24239ZM1.17329 3.45642C1.17594 3.45709 1.17872 3.45777 1.18124 3.45844C1.17859 3.45777 1.17594 3.45709 1.17329 3.45642ZM1.19832 3.46214C1.19368 3.46113 1.18892 3.46046 1.18415 3.45911C1.19236 3.46079 1.20044 3.46248 1.20838 3.46416C1.20507 3.46349 1.20163 3.46281 1.19832 3.46214ZM1.21858 3.49647C1.21064 3.49478 1.20269 3.4931 1.19461 3.49108C1.20256 3.4931 1.21064 3.49478 1.21858 3.49647ZM1.17038 2.78908C1.16111 2.78605 1.15184 2.78336 1.14257 2.781C1.16614 2.78706 1.18971 2.79547 1.21315 2.80523C1.19898 2.79951 1.18468 2.79413 1.17038 2.78942V2.78908ZM1.15607 2.55856C1.16283 2.56058 1.16985 2.56226 1.1766 2.56461C1.16985 2.56226 1.16296 2.56058 1.15607 2.55856ZM1.16905 2.63831C1.16905 2.63831 1.16826 2.63831 1.16773 2.63798C1.16813 2.63798 1.16852 2.63798 1.16905 2.63831ZM1.17726 2.64134C1.18786 2.64504 1.19832 2.64875 1.20865 2.65278C1.19845 2.64875 1.18786 2.64504 1.17726 2.64134ZM1.23235 2.81264C1.24335 2.81735 1.25434 2.82206 1.26533 2.82711C1.25169 2.82105 1.23805 2.81499 1.22454 2.80927C1.22719 2.81028 1.22984 2.81129 1.23235 2.81264ZM1.29791 3.27537C1.2987 3.27537 1.29976 3.27537 1.30042 3.2757C1.2934 3.27436 1.28705 3.27368 1.27645 3.27234C1.28559 3.27368 1.29287 3.27469 1.29791 3.27537ZM1.2995 2.84292C1.30678 2.84629 1.31406 2.84965 1.32135 2.85268C1.31406 2.84932 1.30678 2.84595 1.2995 2.84292ZM1.31631 2.69149C1.31631 2.69149 1.31578 2.69149 1.31552 2.69115C1.31578 2.69115 1.31605 2.69115 1.31631 2.69149ZM1.06973 2.07294C1.1517 2.07294 1.24123 2.10996 1.31565 2.1453C1.23964 2.10929 1.14786 2.0716 1.0643 2.07294C1.06602 2.07294 1.06788 2.07294 1.06973 2.07294ZM1.0639 2.61913C1.06152 2.61913 1.05927 2.6198 1.05755 2.62014C1.05927 2.6198 1.06139 2.61947 1.0639 2.61913ZM1.04788 2.54509C1.04271 2.54577 1.03755 2.54644 1.03212 2.54745C1.03742 2.54644 1.04258 2.54577 1.04788 2.54509ZM1.04497 2.77259C1.04351 2.77259 1.04205 2.77259 1.0406 2.77326C1.04205 2.77293 1.04351 2.77259 1.04497 2.77259ZM1.03689 2.58481C1.03689 2.58481 1.03649 2.58481 1.03636 2.58481C1.03649 2.58481 1.03675 2.58481 1.03689 2.58481ZM0.971334 3.3245C0.971334 3.3245 0.970937 3.32383 0.970672 3.32383C0.970937 3.32383 0.97107 3.3245 0.971334 3.3245ZM0.936373 2.93985C0.9373 2.92874 0.937962 2.91696 0.939684 2.90619C0.938889 2.91158 0.938227 2.9173 0.937697 2.92302C0.939021 2.90787 0.941405 2.89374 0.944583 2.88062C0.940081 2.89812 0.93783 2.91864 0.936373 2.93951V2.93985ZM0.936903 3.0048C0.936903 3.0048 0.936903 3.00244 0.936638 3.00109C0.936638 3.00244 0.936638 3.00345 0.936903 3.0048ZM0.920084 2.89912C0.92366 2.86917 0.930016 2.8399 0.938889 2.81768C0.938227 2.81937 0.937432 2.82105 0.93677 2.82307C0.93677 2.82307 0.937035 2.8224 0.937167 2.82206C0.936108 2.82475 0.935181 2.82845 0.934254 2.83148C0.935181 2.82879 0.935976 2.82576 0.936903 2.82307C0.929222 2.84461 0.923527 2.87153 0.920216 2.89912H0.920084ZM0.896114 3.15388C0.89969 3.16599 0.903265 3.17676 0.906973 3.18686C0.903265 3.17676 0.899557 3.16599 0.896114 3.15388ZM0.870688 3.0896C0.869893 3.08388 0.869231 3.07782 0.868436 3.0721C0.870555 3.09128 0.873866 3.10979 0.877574 3.12662C0.875058 3.11484 0.872806 3.10239 0.870688 3.0896ZM0.871747 3.14479C0.87135 3.14277 0.87082 3.14075 0.87029 3.13873C0.870688 3.14075 0.871217 3.14277 0.871747 3.14479ZM0.883931 2.73523C0.888168 2.72211 0.892936 2.70999 0.897571 2.69754C0.886447 2.72514 0.876912 2.75644 0.869893 2.79177C0.873733 2.77192 0.878766 2.75341 0.883931 2.73557V2.73523ZM0.884195 3.10475C0.884195 3.10475 0.884858 3.10777 0.885122 3.10912C0.880223 3.08657 0.877044 3.061 0.874793 3.03475C0.876912 3.05931 0.879958 3.08321 0.884195 3.10441V3.10475ZM0.884328 2.82643C0.88499 2.82307 0.88552 2.8197 0.886182 2.816C0.88552 2.81937 0.88499 2.82273 0.884328 2.82643ZM0.882209 3.18484C0.882209 3.18484 0.881547 3.18248 0.88115 3.18147C0.881547 3.18282 0.881812 3.18383 0.882209 3.18484ZM0.88115 3.18114C0.880487 3.17912 0.879958 3.17676 0.879428 3.17474C0.879958 3.17676 0.88062 3.17912 0.88115 3.18114ZM0.872542 2.99571C0.872806 3.00278 0.873204 3.00984 0.873601 3.01691C0.872939 3.00715 0.872409 2.99638 0.872277 2.98662C0.872277 2.98965 0.872277 2.99234 0.872542 2.99571ZM0.872409 2.9597C0.872409 2.94893 0.872806 2.9385 0.873071 2.92773C0.872806 2.9385 0.872542 2.94893 0.872409 2.9597ZM0.879296 2.79278C0.877706 2.80018 0.876382 2.80793 0.875058 2.81533C0.878633 2.79244 0.884328 2.77158 0.890022 2.75172C0.886182 2.76485 0.882606 2.77831 0.879296 2.79244V2.79278ZM0.879693 2.78639C0.884725 2.76451 0.890022 2.74432 0.896909 2.72648C0.890155 2.74432 0.884725 2.76451 0.879693 2.78639ZM0.894525 2.78033C0.897836 2.76687 0.901941 2.75543 0.906311 2.74432C0.899955 2.76014 0.89479 2.77797 0.890287 2.79749C0.891744 2.79177 0.893068 2.78605 0.894525 2.78033ZM0.904722 3.27436C0.907371 3.27974 0.909887 3.28479 0.912535 3.2895C0.909887 3.28479 0.907238 3.27974 0.90459 3.27436H0.904722ZM0.915714 2.97282C0.915581 2.97686 0.915714 2.98157 0.915846 2.98629C0.915316 2.97484 0.915846 2.96441 0.915979 2.95331C0.915979 2.9597 0.915714 2.96609 0.915714 2.97282ZM0.919157 3.02936C0.920216 3.03878 0.921673 3.04753 0.923262 3.05595C0.921673 3.04753 0.920216 3.03845 0.919157 3.02936ZM0.920216 3.3033C0.920216 3.3033 0.919157 3.30128 0.918627 3.30061C0.919157 3.30162 0.919687 3.30262 0.920216 3.3033ZM0.924851 2.70259C0.926441 2.69923 0.928162 2.69586 0.930016 2.69317C0.928162 2.69586 0.926573 2.69923 0.924851 2.70259ZM0.934784 2.65447C0.934784 2.65447 0.935313 2.65379 0.935578 2.65346C0.935313 2.65379 0.935049 2.65413 0.934784 2.65447ZM1.0161 2.55183C1.00643 2.55485 0.995966 2.55889 0.985902 2.56461C0.995834 2.55889 1.00643 2.55485 1.0161 2.55183ZM0.956502 3.27907C0.962594 3.28714 0.968553 3.29421 0.974513 3.30061C0.964978 3.28984 0.95531 3.27806 0.94604 3.26392C0.949616 3.26931 0.953191 3.27436 0.956635 3.27873L0.956502 3.27907ZM0.970142 2.76317C0.971467 2.76182 0.972659 2.76047 0.973983 2.75913C0.966832 2.7662 0.96021 2.77528 0.953456 2.78639C0.958886 2.7773 0.964448 2.76956 0.970142 2.76317ZM0.962726 2.62216C0.964713 2.62048 0.966434 2.61947 0.968288 2.61779C0.966434 2.61947 0.96458 2.62048 0.962726 2.62216ZM0.973188 3.17575C0.969878 3.17138 0.966699 3.16633 0.963389 3.16128C0.966567 3.16633 0.969878 3.17138 0.973188 3.17575ZM0.959681 3.09162C0.957297 3.08657 0.954781 3.08152 0.952662 3.0758C0.954913 3.08152 0.957297 3.08624 0.959681 3.09162ZM0.958489 2.605C0.95637 2.60702 0.954251 2.60836 0.952 2.61072C0.959151 2.60331 0.966037 2.59759 0.972791 2.59288C0.968156 2.59658 0.963389 2.60062 0.958489 2.605ZM0.954251 2.63125C0.952 2.6336 0.949748 2.63596 0.947497 2.63831C0.949748 2.63562 0.952 2.6336 0.954251 2.63125ZM0.959681 3.31137C0.962991 3.31541 0.96617 3.31945 0.969348 3.32315C0.96617 3.31945 0.962991 3.31575 0.959681 3.31137ZM0.957826 3.30902C0.957826 3.30902 0.958621 3.31003 0.959151 3.3107C0.958753 3.31003 0.958224 3.30969 0.957826 3.30902ZM0.975175 3.32988C0.975175 3.32988 0.974513 3.32887 0.974115 3.32854C0.974513 3.32887 0.97491 3.32955 0.975175 3.32988ZM0.989345 3.34469C0.988153 3.34334 0.986829 3.342 0.985637 3.34099C0.986829 3.34234 0.988153 3.34368 0.989345 3.34469ZM0.950675 2.10188C0.983783 2.08405 1.01636 2.07698 1.04139 2.07463C1.01596 2.07698 0.981134 2.08472 0.947894 2.10323C0.948821 2.10289 0.949748 2.10222 0.950675 2.10155V2.10188ZM0.935313 2.60769C0.941802 2.60062 0.948556 2.59255 0.955045 2.58716C0.946438 2.59524 0.937565 2.60432 0.929486 2.61577C0.93134 2.61307 0.933327 2.61038 0.935181 2.60769H0.935313ZM0.91876 2.68038C0.921011 2.67567 0.923262 2.6723 0.925514 2.6686C0.918098 2.68038 0.911211 2.69485 0.90459 2.71067C0.909225 2.6999 0.91386 2.68947 0.91876 2.68038ZM0.908695 2.67365C0.909357 2.6723 0.910019 2.67062 0.910814 2.66927C0.90949 2.67163 0.908298 2.67466 0.907106 2.67735C0.907636 2.67634 0.908165 2.675 0.908827 2.67399L0.908695 2.67365ZM0.897703 2.67096C0.893995 2.67937 0.890287 2.68846 0.886712 2.69822C0.892803 2.68173 0.898895 2.66726 0.906046 2.65413C0.903265 2.65952 0.900484 2.66524 0.897703 2.67096ZM0.873469 2.16246C0.884328 2.15034 0.893863 2.14193 0.902073 2.1352C0.892406 2.14294 0.878633 2.1564 0.867112 2.16953C0.869231 2.16717 0.87135 2.16482 0.873469 2.16246ZM0.867244 2.86581C0.868171 2.8584 0.869363 2.851 0.870423 2.8436C0.868966 2.85403 0.867377 2.86379 0.866582 2.87456C0.866847 2.87153 0.867112 2.86884 0.867377 2.86581H0.867244ZM0.870158 3.13907C0.868834 3.13268 0.867509 3.12628 0.866185 3.11989C0.867377 3.12662 0.868701 3.13301 0.870158 3.13907ZM0.866847 3.16667C0.865126 3.1596 0.863536 3.1522 0.861947 3.14446C0.863536 3.15186 0.865126 3.15926 0.866847 3.16667ZM0.863801 3.02701C0.863801 3.02701 0.863934 3.03004 0.864066 3.03172C0.863934 3.02936 0.863801 3.02667 0.863669 3.02431C0.863669 3.02532 0.863669 3.02633 0.863801 3.02701ZM0.862477 2.93581C0.862477 2.93076 0.862742 2.92537 0.863007 2.91965C0.862742 2.92537 0.862477 2.9311 0.862344 2.93614C0.862344 2.93614 0.862344 2.93614 0.862344 2.93581H0.862477ZM0.861947 2.96946C0.861947 2.96273 0.862212 2.956 0.862212 2.94927C0.861947 2.96744 0.86155 2.98561 0.862477 3.00379C0.861947 2.99234 0.861682 2.9809 0.861815 2.96946H0.861947ZM0.861815 3.00816C0.861682 3.00412 0.861417 3.00008 0.861285 2.99571C0.861417 2.99975 0.861682 3.00379 0.861815 3.00816ZM0.860888 2.97619C0.860888 2.97619 0.860888 2.97821 0.860888 2.97956C0.860888 2.97855 0.860888 2.97754 0.860888 2.97619ZM0.860888 2.9809C0.860888 2.9809 0.860888 2.97956 0.860888 2.97855C0.860755 2.9846 0.860888 2.99066 0.861285 2.99672C0.86102 2.99133 0.860623 2.98595 0.860755 2.98057L0.860888 2.9809ZM0.861417 3.0896C0.862212 3.09566 0.863139 3.10071 0.864066 3.10643C0.86208 3.09532 0.860623 3.08287 0.859166 3.07109C0.859961 3.07715 0.860755 3.08354 0.86155 3.0896H0.861417ZM0.853472 2.97888C0.853472 2.97888 0.853472 2.97821 0.853472 2.97787C0.853472 2.97922 0.853472 2.98157 0.853472 2.98359C0.853472 2.97754 0.853472 2.97182 0.853472 2.96576C0.853472 2.97013 0.853472 2.97451 0.853472 2.97888ZM0.856385 3.11518C0.857312 3.1209 0.858372 3.12628 0.859431 3.13167C0.854266 3.10407 0.850293 3.07446 0.848042 3.04451C0.849631 3.06874 0.853074 3.09229 0.856518 3.11518H0.856385ZM0.853737 2.94624C0.853737 2.94624 0.853737 2.94287 0.853737 2.94153C0.853737 2.94321 0.853737 2.94489 0.853737 2.94624ZM0.853737 2.94119C0.853737 2.9385 0.853737 2.93581 0.854001 2.93311C0.854001 2.93581 0.854001 2.9385 0.853737 2.94119ZM0.854796 3.02061C0.855193 3.03205 0.85612 3.04282 0.85718 3.05393C0.855988 3.04316 0.855326 3.03172 0.854796 3.02061ZM0.849101 2.19073C0.852015 2.18703 0.854796 2.18265 0.857709 2.17962C0.853472 2.184 0.849499 2.19006 0.845526 2.19544C0.846718 2.19376 0.84791 2.19207 0.849101 2.19039V2.19073ZM0.847777 3.04383C0.847115 3.0334 0.846585 3.0233 0.846056 3.01254C0.846585 3.02297 0.847115 3.0334 0.847777 3.04383ZM0.845658 3.00109C0.845658 3.00109 0.845658 2.99773 0.845526 2.99605C0.845526 2.99773 0.845526 2.99941 0.845658 3.00109ZM0.845261 2.98932C0.845261 2.98932 0.845261 2.99167 0.845261 2.99268C0.845261 2.99133 0.845261 2.98999 0.845261 2.98864C0.845261 2.98864 0.845261 2.98898 0.845261 2.98932ZM0.780635 2.30515C0.780635 2.30515 0.779443 2.3075 0.778914 2.30885C0.786065 2.29404 0.793348 2.27957 0.801294 2.26477C0.794011 2.27823 0.787124 2.29169 0.780768 2.30515H0.780635ZM0.912933 3.82021C0.879825 3.78689 0.843804 3.74584 0.802751 3.66944C0.847777 3.75189 0.882739 3.79127 0.921143 3.82761C0.918362 3.82492 0.915714 3.8229 0.912933 3.82021ZM0.925911 3.26392C0.924322 3.26123 0.922865 3.25787 0.921276 3.25517C0.923924 3.26022 0.926441 3.26527 0.929354 3.26931C0.928162 3.26763 0.927103 3.26594 0.925911 3.26392ZM0.939684 3.28277C0.935446 3.27604 0.931076 3.26897 0.926838 3.26157C0.932003 3.27032 0.936903 3.27873 0.942067 3.28613C0.941273 3.28513 0.940478 3.28378 0.939684 3.28277ZM0.94604 3.29186C0.94604 3.29186 0.945775 3.29152 0.945643 3.29118C0.945643 3.29118 0.945908 3.29152 0.94604 3.29186ZM0.982591 3.38306C0.973321 3.37464 0.964448 3.36455 0.954913 3.35344C0.96511 3.36556 0.974513 3.37599 0.984577 3.38507C0.982723 3.38339 0.980869 3.38171 0.978883 3.38003C0.980075 3.38104 0.981267 3.38205 0.982458 3.38339L0.982591 3.38306ZM1.06986 3.4194C1.06033 3.41469 1.05066 3.4093 1.0406 3.40291C1.05066 3.4093 1.06046 3.41469 1.06999 3.4194C1.06999 3.4194 1.06999 3.4194 1.06986 3.4194ZM1.07648 3.92756C1.07648 3.92756 1.07595 3.92756 1.07569 3.92723C1.07874 3.92857 1.08178 3.92958 1.08483 3.93093C1.08205 3.92992 1.07913 3.92891 1.07635 3.92756H1.07648ZM1.15435 3.47998C1.14839 3.47796 1.14243 3.47627 1.13634 3.47426C1.1423 3.47627 1.14826 3.47829 1.15435 3.47998ZM1.21156 3.96795C1.1966 3.96492 1.1823 3.96155 1.16826 3.95785C1.18786 3.9629 1.20891 3.96761 1.22918 3.97097C1.22335 3.96996 1.21752 3.96895 1.21169 3.96795H1.21156ZM1.2791 3.97939C1.27672 3.97905 1.27433 3.97871 1.27195 3.97838C1.27566 3.97905 1.2795 3.97939 1.28321 3.98073C1.28188 3.9804 1.28043 3.98006 1.2791 3.97972V3.97939ZM1.23752 3.3171C1.27685 3.32248 1.31605 3.32921 1.35512 3.34032C1.31605 3.32921 1.27685 3.32282 1.23752 3.3171ZM1.29738 3.43724C1.29738 3.43724 1.29724 3.44027 1.29711 3.44195C1.29711 3.44027 1.29724 3.43892 1.29738 3.43724ZM1.29539 3.49276C1.29552 3.48772 1.29605 3.47459 1.29671 3.45945C1.29605 3.47459 1.29566 3.48637 1.29539 3.49276ZM1.29897 3.47695C1.29195 3.47526 1.30757 3.47897 1.31062 3.47964C1.30678 3.47897 1.30281 3.47796 1.29897 3.47695ZM1.31605 3.98881C1.31194 3.9878 1.30771 3.98679 1.3036 3.98544C1.37763 4.00496 1.45219 4.02179 1.52794 4.03592C1.45643 4.02246 1.38558 4.00665 1.31605 3.98847V3.98881ZM1.54939 2.91629C1.54939 2.91629 1.55045 2.91629 1.55098 2.91662C1.55045 2.91662 1.54992 2.91662 1.54939 2.91629ZM1.68328 3.40156C1.68765 3.40224 1.69215 3.40291 1.69652 3.40358C1.66116 3.39887 1.62594 3.39349 1.59058 3.38777C1.62143 3.39281 1.65242 3.39753 1.68328 3.40156ZM1.70659 3.5143C1.69215 3.51228 1.67785 3.51094 1.66341 3.50892C1.67798 3.51094 1.69215 3.51262 1.70659 3.5143ZM1.66328 3.50892C1.65825 3.50824 1.65308 3.50757 1.64805 3.50656C1.65308 3.50724 1.65825 3.50791 1.66328 3.50892ZM1.64487 3.56041C1.64487 3.56041 1.64474 3.56041 1.64461 3.56041C1.68169 3.57286 1.71877 3.58464 1.75585 3.59642C1.71877 3.5843 1.68182 3.57286 1.64474 3.56074L1.64487 3.56041ZM1.7344 3.58935C1.74631 3.59305 1.75837 3.59709 1.77028 3.60079C1.75823 3.59709 1.74631 3.59305 1.7344 3.58935ZM1.87795 4.05578C1.70804 4.04097 1.78962 4.04905 1.91053 4.05814C1.9002 4.05746 1.88934 4.05679 1.87795 4.05578ZM1.91119 4.05814C1.92099 4.05881 1.93026 4.05948 1.939 4.05982C1.93026 4.05915 1.92099 4.05881 1.91119 4.05814ZM1.81664 2.27419C1.81491 2.27419 1.81319 2.27352 1.81147 2.27352C1.90338 2.28698 1.99926 2.29741 2.09871 2.30515C2.00138 2.29775 1.90642 2.28731 1.81664 2.27452V2.27419ZM2.10242 2.96845C2.09871 2.96845 2.09514 2.96778 2.09143 2.96778C2.09514 2.96811 2.09871 2.96845 2.10242 2.96845ZM2.02587 2.8197C2.02429 2.8197 2.0227 2.8197 2.02097 2.81937C2.0321 2.82038 2.04322 2.82105 2.05435 2.82172C2.04481 2.82105 2.03528 2.82038 2.02574 2.8197H2.02587ZM2.04998 3.59574C2.04614 3.59574 2.04243 3.59507 2.03806 3.59473C2.04243 3.59473 2.04614 3.59541 2.04998 3.59574ZM2.03766 3.59473C2.03435 3.59473 2.03117 3.5944 2.0276 3.59406C2.03117 3.59406 2.03448 3.5944 2.03766 3.59473ZM2.05435 3.60315C2.057 3.60315 2.05951 3.60247 2.0619 3.60247C2.05938 3.60247 2.057 3.60315 2.05435 3.60315ZM2.06348 3.62132C2.05911 3.62098 2.05448 3.62065 2.05051 3.62031C2.05461 3.62065 2.05898 3.62098 2.06348 3.62132ZM1.97608 2.78874C1.97754 2.78874 1.97913 2.78874 1.98058 2.78908C1.97913 2.78908 1.97754 2.78908 1.97608 2.78874ZM1.98244 2.78942C1.98244 2.78942 1.98297 2.78942 1.98323 2.78942C1.98217 2.78942 1.98125 2.78942 1.98019 2.78942C1.98191 2.78942 1.98363 2.78942 1.98535 2.78975C1.98442 2.78975 1.98336 2.78975 1.98244 2.78975V2.78942ZM1.9925 3.59204C1.99118 3.59204 1.98985 3.59204 1.9884 3.59204C1.9925 3.59204 1.99634 3.59238 2.00005 3.59271C1.99753 3.59271 1.99502 3.59271 1.9925 3.59238V3.59204ZM2.04468 3.60416C2.04759 3.60416 2.05037 3.60348 2.05316 3.60315C2.04177 3.60416 2.02892 3.6055 2.01793 3.60651C2.02627 3.6055 2.03581 3.60483 2.04468 3.60382V3.60416ZM2.03779 4.09044C2.07355 4.09381 2.10467 4.09515 2.14758 4.09684C2.10467 4.09515 2.07355 4.09347 2.03779 4.09044ZM2.28822 4.09987C2.27511 4.09987 2.26187 4.09987 2.24928 4.09953C2.36927 4.09953 2.48183 4.08708 2.62168 4.0753C2.49852 4.08674 2.3894 4.09482 2.28809 4.09987H2.28822ZM2.67333 4.07496C2.67213 4.07496 2.67107 4.07496 2.66988 4.0753C2.67942 4.07429 2.68882 4.07362 2.69835 4.07261C2.69001 4.07328 2.68154 4.07429 2.67319 4.07496H2.67333ZM2.66657 3.60416C2.62565 3.60281 2.58486 3.60685 2.54394 3.61055C2.67915 3.60247 2.81436 3.5917 2.94971 3.57791C2.85528 3.58666 2.76099 3.59541 2.66657 3.60416ZM2.87224 3.38339C2.86032 3.38743 2.84615 3.38575 2.8333 3.38777C2.84615 3.38575 2.86045 3.38709 2.87224 3.38339ZM2.87912 3.37532C2.87912 3.37532 2.87992 3.37532 2.88031 3.37532C2.87992 3.37532 2.87952 3.37532 2.87912 3.37532ZM2.88429 3.37431C2.88309 3.37431 2.88177 3.37464 2.88058 3.37498C2.88164 3.37498 2.8827 3.37464 2.88376 3.37431H2.88349C2.88376 3.37431 2.88402 3.37431 2.88429 3.37431ZM2.89488 3.37262C2.89488 3.37262 2.89594 3.37262 2.89647 3.37262C2.89621 3.37262 2.89607 3.37262 2.89581 3.37262C2.8974 3.37262 2.89912 3.37229 2.90084 3.37195C2.89713 3.37229 2.89395 3.37296 2.89051 3.3733C2.89183 3.3733 2.89342 3.37296 2.89488 3.37262ZM2.90071 3.37195C2.90071 3.37195 2.90111 3.37195 2.90124 3.37195C2.90111 3.37195 2.90097 3.37195 2.90071 3.37195ZM2.89117 3.3733C2.88972 3.3733 2.88839 3.37363 2.88707 3.37397C2.88839 3.37397 2.88972 3.37363 2.89117 3.3733ZM2.87647 3.37599C2.87621 3.37599 2.87581 3.37599 2.87555 3.37599C2.87581 3.37599 2.87621 3.37599 2.87661 3.37599H2.87647ZM3.18596 3.55469C3.19589 3.55401 3.20609 3.55334 3.21682 3.553C3.20609 3.55368 3.19589 3.55435 3.18596 3.55469ZM3.21841 3.55267C3.20463 3.55334 3.19205 3.55435 3.17921 3.55502C3.18027 3.55502 3.18146 3.55502 3.18252 3.55502C3.17934 3.55502 3.17629 3.55536 3.17325 3.5557C3.17524 3.5557 3.17709 3.5557 3.17921 3.55536C3.17325 3.5557 3.16729 3.55603 3.16133 3.55637C3.17894 3.55536 3.19788 3.55401 3.21841 3.553C3.21841 3.553 3.21841 3.553 3.21854 3.553C3.21854 3.553 3.21841 3.553 3.21827 3.553L3.21841 3.55267ZM3.22556 4.02347C3.22556 4.01742 3.22543 4.01169 3.22529 4.00564C3.22529 4.01169 3.22543 4.01742 3.22556 4.02347ZM2.64883 2.32063C2.63519 2.32063 2.62062 2.32063 2.60565 2.32063C2.85992 2.36606 3.17934 2.21563 3.34422 2.34755C3.18742 2.2153 2.89766 2.36438 2.64883 2.32029V2.32063ZM3.32621 4.01338C3.32621 4.01338 3.32621 4.01001 3.32621 4.00833C3.32621 4.01001 3.32621 4.01169 3.32621 4.01338ZM3.33269 2.8197C3.32832 2.8197 3.32435 2.8197 3.32011 2.8197C3.32435 2.8197 3.32859 2.8197 3.33296 2.8197H3.33269ZM3.33336 2.8197C3.34488 2.8197 3.35587 2.81937 3.3666 2.81903C3.356 2.81903 3.34488 2.81937 3.33336 2.8197ZM3.36289 2.81903C3.37335 2.81903 3.38394 2.81869 3.39388 2.81836C3.38394 2.81836 3.37362 2.81869 3.36289 2.81903ZM11.981 2.02011C11.9896 2.02112 11.9979 2.02549 12.0059 2.02751C11.9975 2.02516 11.989 2.02078 11.98 2.01977C11.9802 2.01977 11.9806 2.01977 11.981 2.01977V2.02011ZM11.9579 2.01708C11.964 2.01775 11.9693 2.01843 11.9738 2.01876C11.9634 2.01742 11.9516 2.01641 11.94 2.0154C11.9465 2.01573 11.9526 2.01641 11.9579 2.01708ZM12.1329 2.64336C12.0568 2.64538 11.9886 2.6474 11.9261 2.64908C11.9886 2.6474 12.0569 2.64538 12.1329 2.64336ZM12.0057 3.01321C12.0177 3.01254 12.0298 3.01186 12.042 3.01153C12.0299 3.0122 12.0135 3.01287 12.0042 3.01355C12.0039 3.01355 12.0037 3.01355 12.0034 3.01355C12.0042 3.01355 12.0049 3.01355 12.0057 3.01355V3.01321ZM12.1023 3.20032C12.0802 3.20133 12.0577 3.20234 12.036 3.20335C12.0576 3.20234 12.0797 3.20133 12.1023 3.20032ZM11.9458 2.65851C11.9448 2.65851 11.9438 2.65851 11.9429 2.65851C11.9459 2.65851 11.9491 2.65851 11.9524 2.65884C11.9506 2.65884 11.9485 2.65884 11.9466 2.65884C11.9469 2.65884 11.947 2.65884 11.9473 2.65884C11.9467 2.65884 11.9462 2.65884 11.9458 2.65884V2.65851ZM11.9405 2.65851C11.9369 2.65851 11.9331 2.65783 11.9297 2.65783C11.933 2.65783 11.9365 2.65851 11.9405 2.65851ZM11.9482 2.99975C11.9658 3.00412 11.9836 3.00883 12.0012 3.01321C11.9569 2.99706 11.9122 3.00008 11.8679 3.00278C11.8947 3.00177 11.9214 3.00076 11.9483 2.99975H11.9482ZM11.9109 3.00109C11.8838 3.0021 11.857 3.00311 11.8299 3.00412C11.8567 3.00311 11.8838 3.0021 11.9109 3.00109ZM11.5483 3.18854C11.5504 3.18854 11.5526 3.1882 11.5547 3.18787C11.5526 3.18787 11.5504 3.1882 11.5483 3.18854ZM11.5359 3.01691C11.5628 3.01556 11.5898 3.01455 11.6169 3.01321C11.5897 3.01455 11.5628 3.01556 11.5359 3.01691ZM11.4337 3.02162C11.4591 3.02028 11.4847 3.01927 11.5101 3.01792C11.5099 3.01792 11.5096 3.01792 11.5092 3.01792C11.5306 3.01691 11.5522 3.0159 11.5739 3.01489C11.5272 3.01691 11.4803 3.01927 11.4336 3.02129L11.4337 3.02162ZM11.5056 3.19258C11.5043 3.19258 11.5028 3.19258 11.5015 3.19292C11.5028 3.19292 11.5043 3.19292 11.5056 3.19258ZM11.3427 3.21143C11.3805 3.20974 11.4217 3.2084 11.4665 3.20671C11.4243 3.2084 11.3802 3.20974 11.3427 3.21143ZM11.316 3.21243C11.3237 3.21243 11.3315 3.21176 11.3394 3.21143C11.3315 3.21143 11.3237 3.2121 11.316 3.21243ZM11.2425 3.2158C11.249 3.2158 11.2556 3.21513 11.2622 3.21479C11.2556 3.21479 11.249 3.21546 11.2425 3.2158ZM11.3149 2.5424C11.2957 2.54308 11.2768 2.54375 11.2578 2.54409C11.2768 2.54341 11.2958 2.54274 11.3149 2.5424ZM11.3631 3.14176C11.3704 3.14109 11.3776 3.14042 11.3843 3.13974C11.3774 3.14042 11.3704 3.14109 11.3631 3.14176ZM11.3835 3.19393C11.3825 3.19393 11.3814 3.19393 11.3802 3.19393C11.3813 3.19393 11.3823 3.19393 11.3835 3.19393ZM11.4076 3.13739C11.4062 3.13739 11.4048 3.13739 11.4034 3.13739C11.4047 3.13739 11.406 3.13739 11.4074 3.13739H11.4076ZM11.3969 3.19325C11.4014 3.19325 11.4059 3.19292 11.4104 3.19258C11.404 3.19258 11.3977 3.19292 11.3915 3.19325C11.3933 3.19325 11.3952 3.19325 11.397 3.19325H11.3969ZM11.4051 3.02263C11.3811 3.02364 11.3574 3.02499 11.3336 3.026C11.3573 3.02499 11.3813 3.02364 11.4051 3.02263ZM11.3572 3.00345C11.3572 3.00345 11.3572 3.00345 11.3573 3.00345C11.357 3.00345 11.3568 3.00345 11.3566 3.00345C11.3568 3.00345 11.357 3.00345 11.3572 3.00345ZM11.2776 3.02903C11.2855 3.02869 11.2933 3.02835 11.3014 3.02802C11.2823 3.02903 11.2635 3.03004 11.2446 3.03071C11.2556 3.03004 11.2666 3.0297 11.2776 3.02903ZM11.2254 3.03172C11.2168 3.03205 11.208 3.03273 11.1993 3.03306C11.2079 3.03273 11.2167 3.03205 11.2254 3.03172ZM11.1232 2.54913C11.1232 2.54913 11.1236 2.54913 11.1237 2.54913C11.1236 2.54913 11.1233 2.54913 11.1232 2.54913ZM11.0748 2.55115C11.0885 2.55048 11.1021 2.55014 11.1159 2.54947C11.0935 2.55048 11.0712 2.55115 11.0493 2.55216C11.0577 2.55183 11.0663 2.55149 11.075 2.55115H11.0748ZM11.2205 3.21715C11.2253 3.21715 11.2302 3.21681 11.2351 3.21647C11.2302 3.21647 11.2253 3.21681 11.2205 3.21715ZM11.2807 3.21445C11.2758 3.21445 11.2708 3.21479 11.266 3.21513C11.2708 3.21513 11.2758 3.21479 11.2807 3.21445ZM11.205 3.21816C11.2031 3.21816 11.2012 3.21816 11.1992 3.21816C11.201 3.21816 11.203 3.21816 11.205 3.21816ZM11.1871 3.21917C11.1841 3.21917 11.1809 3.21917 11.1778 3.2195C11.1809 3.2195 11.1839 3.2195 11.1871 3.21917ZM11.5483 3.18888C11.5457 3.18888 11.5434 3.18921 11.5408 3.18955C11.5434 3.18955 11.5457 3.18921 11.5483 3.18888ZM11.6465 3.0122C11.6723 3.01119 11.6984 3.00984 11.7243 3.00883C11.6992 3.00984 11.6746 3.01085 11.6498 3.0122C11.6602 3.01186 11.6704 3.01119 11.6807 3.01085C11.6692 3.01119 11.6578 3.01186 11.6464 3.0122H11.6465ZM11.7342 3.21075C11.7416 3.21075 11.749 3.21042 11.7568 3.21008C11.7334 3.21075 11.7115 3.21142 11.6913 3.21176C11.7048 3.21142 11.7194 3.21109 11.7342 3.21075ZM11.7256 3.00883C11.7244 3.00883 11.7232 3.00883 11.7219 3.00883C11.7261 3.00883 11.7306 3.0085 11.7349 3.00816C11.7317 3.00816 11.7286 3.00816 11.7254 3.0085L11.7256 3.00883ZM11.7801 3.00648C11.7839 3.00648 11.7877 3.00648 11.7914 3.00614C11.7894 3.00614 11.7874 3.00614 11.7854 3.00614C11.8016 3.00547 11.8178 3.0048 11.834 3.00412C11.809 3.00513 11.7842 3.00614 11.7595 3.00715C11.7664 3.00715 11.7733 3.00648 11.7801 3.00614V3.00648ZM11.802 2.97653C11.802 2.97653 11.8023 2.97653 11.8025 2.97653C11.8024 2.97653 11.8023 2.97653 11.802 2.97653ZM11.667 2.02145C11.7257 2.01742 11.7845 2.01304 11.8432 2.009C11.7838 2.01304 11.7245 2.01742 11.6652 2.02145C11.6659 2.02145 11.6664 2.02145 11.667 2.02145ZM11.3826 2.51212C11.3793 2.51212 11.376 2.51245 11.3727 2.51279C11.376 2.51279 11.3793 2.51245 11.3826 2.51212ZM10.9587 2.53298C10.9766 2.53197 10.9936 2.5313 11.0099 2.53062C10.9727 2.53231 10.9314 2.53433 10.8848 2.53668C10.911 2.53534 10.9355 2.53433 10.9587 2.53332V2.53298ZM10.9942 2.55418C10.9762 2.55485 10.958 2.55586 10.94 2.55654C10.9579 2.55586 10.9762 2.55485 10.9942 2.55418ZM10.7041 3.02499C10.7041 3.02499 10.7048 3.02499 10.7051 3.02499C10.7036 3.02499 10.7019 3.02499 10.7002 3.02499C10.7008 3.02499 10.7018 3.02499 10.7023 3.02499C10.7022 3.02499 10.7019 3.02499 10.7018 3.02499C10.7026 3.02499 10.7034 3.02499 10.7041 3.02499ZM10.5439 3.21412C10.5366 3.21445 10.5293 3.21479 10.5222 3.21546C10.5295 3.21513 10.5368 3.21479 10.5439 3.21412ZM10.5148 3.2158C10.5104 3.2158 10.5059 3.21614 10.5015 3.21647C10.5059 3.21647 10.5104 3.21614 10.5148 3.2158ZM10.4166 3.17441C10.441 3.1734 10.4652 3.17239 10.4896 3.17171C10.4652 3.17272 10.441 3.17373 10.4166 3.17441ZM10.4622 3.21883C10.4561 3.21883 10.4501 3.2195 10.4441 3.21984C10.4501 3.21984 10.4562 3.21917 10.4622 3.21883ZM10.4393 3.22017C10.4316 3.22051 10.4239 3.22085 10.4162 3.22152C10.4239 3.22118 10.4316 3.22085 10.4393 3.22017ZM10.4923 3.21748C10.485 3.21782 10.4776 3.21816 10.4703 3.21883C10.4777 3.21849 10.485 3.21816 10.4923 3.21748ZM10.0966 3.04552C10.0978 3.04552 10.0989 3.04552 10.1001 3.04552C10.0989 3.04552 10.0979 3.04552 10.0966 3.04552ZM10.0554 3.04686C10.0543 3.04686 10.0533 3.04686 10.0522 3.04686C10.067 3.04653 10.0819 3.04585 10.0964 3.04552C10.0829 3.04552 10.0691 3.04619 10.0554 3.04686ZM10.1461 3.18518C10.1564 3.18484 10.1669 3.1845 10.1772 3.18383C10.1669 3.18417 10.1564 3.1845 10.1461 3.18518ZM10.3153 3.22657C10.3212 3.22657 10.327 3.2259 10.3328 3.22556C10.327 3.22556 10.3212 3.22623 10.3153 3.22657ZM10.3488 3.23431C10.3471 3.23431 10.3454 3.23431 10.3435 3.23465C10.3453 3.23465 10.347 3.23465 10.3488 3.23431ZM10.334 3.22556C10.342 3.22522 10.3499 3.22489 10.3577 3.22421C10.3498 3.22455 10.342 3.22489 10.334 3.22556ZM10.39 3.22253C10.3928 3.22253 10.3955 3.22253 10.3982 3.22219C10.3955 3.22219 10.3928 3.22219 10.39 3.22253ZM10.3944 3.17542C10.3229 3.17811 10.2516 3.1808 10.1804 3.18383C10.2584 3.1808 10.3364 3.17777 10.4147 3.17474C10.4079 3.17474 10.4011 3.17542 10.3944 3.17542ZM10.6683 2.67836C10.6643 2.6787 10.6582 2.67937 10.6499 2.68038C10.6582 2.67971 10.6644 2.67903 10.6684 2.67836H10.6683ZM10.062 2.57168C10.0665 2.57168 10.071 2.57168 10.0755 2.57168C10.0709 2.57168 10.0665 2.57168 10.062 2.57168ZM10.0621 2.57168C10.0441 2.57168 10.0261 2.57202 10.0085 2.57235C10.0262 2.57235 10.0442 2.57202 10.0621 2.57168ZM9.98863 2.60197C9.98585 2.60197 9.9824 2.60264 9.97909 2.60298C9.98254 2.60298 9.98571 2.60231 9.98863 2.60197ZM9.97658 2.60298C9.973 2.60331 9.96956 2.60365 9.96572 2.60399C9.96956 2.60399 9.97313 2.60331 9.97658 2.60298ZM9.7925 2.61408C9.78906 2.61408 9.78548 2.61442 9.78191 2.61476C9.78469 2.61476 9.78747 2.61476 9.79012 2.61442C9.78773 2.61442 9.78535 2.61442 9.78296 2.61476C9.79859 2.61408 9.81356 2.61307 9.82786 2.6124C9.81647 2.61307 9.80468 2.61375 9.7925 2.61408ZM9.87341 2.57437C9.86865 2.57437 9.86388 2.57437 9.85911 2.57471C9.86587 2.57471 9.87275 2.57471 9.87964 2.57437C9.87752 2.57437 9.87553 2.57437 9.87341 2.57437ZM9.88374 2.57437C9.89328 2.57437 9.90281 2.57404 9.91235 2.5737C9.90109 2.5737 9.88997 2.57404 9.87898 2.57437C9.88057 2.57437 9.88215 2.57437 9.88374 2.57437ZM9.82799 2.61274C9.83408 2.61274 9.83991 2.61206 9.8456 2.61173C9.83978 2.61173 9.83395 2.6124 9.82799 2.61274ZM9.65186 2.10996C9.65822 2.10996 9.66444 2.10962 9.6708 2.10929C9.66417 2.10929 9.65742 2.10962 9.6508 2.10996C9.6512 2.10996 9.65159 2.10996 9.65186 2.10996ZM9.60829 2.62317C9.60829 2.62317 9.60922 2.62317 9.60961 2.62317C9.60869 2.62317 9.60789 2.62317 9.60696 2.62317C9.60736 2.62317 9.60789 2.62317 9.60829 2.62317ZM10.2969 2.71807C10.0232 2.72648 9.74972 2.73557 9.47612 2.74567C9.74946 2.73523 10.0232 2.72648 10.2969 2.71807ZM10.0344 3.20772L10.027 3.2084C10.0295 3.2084 10.0319 3.20806 10.0344 3.20772ZM9.46844 2.62923C9.45282 2.6299 9.43693 2.63057 9.42103 2.63158C9.43679 2.63091 9.45268 2.6299 9.46844 2.62923ZM9.40964 3.29085C9.40448 3.2895 9.39945 3.28849 9.39428 3.28714C9.40263 3.28916 9.41084 3.29118 9.41918 3.2932C9.416 3.29253 9.41282 3.29152 9.40964 3.29085ZM9.43706 3.29758C9.43865 3.29791 9.4401 3.29825 9.44169 3.29859C9.43295 3.29657 9.42421 3.29421 9.41547 3.29219C9.42262 3.29388 9.42991 3.29556 9.43706 3.29758ZM9.29297 2.59591C9.32039 2.59423 9.3482 2.59288 9.37654 2.5912C9.33376 2.59322 9.29258 2.59557 9.25046 2.5986C9.2645 2.59759 9.27854 2.59692 9.29284 2.59591H9.29297ZM8.65585 2.16549C8.81993 2.15472 8.98415 2.14462 9.14823 2.13419C8.90879 2.14934 8.66896 2.16448 8.42966 2.18097C8.50515 2.17626 8.5801 2.17087 8.65585 2.16583V2.16549ZM8.98746 2.61577C8.95541 2.61779 8.92376 2.6198 8.89184 2.62182C8.9178 2.62014 8.94415 2.61846 8.97077 2.61678C8.96667 2.61678 8.96256 2.61745 8.95846 2.61745C8.96812 2.61678 8.97779 2.6161 8.98746 2.61577ZM9.03248 3.13907C9.03248 3.13907 9.03142 3.13907 9.03089 3.13907C9.03142 3.13907 9.03195 3.13907 9.03248 3.13907ZM9.0297 3.13907C9.01514 3.14008 9.00044 3.14109 8.98348 3.14176C9.0003 3.14075 9.01514 3.14008 9.02957 3.13907H9.0297ZM8.97739 3.1421C8.98176 3.1421 8.98574 3.14176 8.98971 3.14143C8.98574 3.14143 8.98163 3.14176 8.97739 3.1421ZM8.98216 2.65447C8.98825 2.65413 8.99434 2.65379 9.00044 2.65346C8.97753 2.6548 8.95514 2.65615 8.93303 2.65716C8.94918 2.65615 8.96547 2.65514 8.98203 2.65447H8.98216ZM8.91634 2.65817C8.91078 2.65817 8.90495 2.65884 8.89939 2.65918C8.91912 2.65817 8.93939 2.65682 8.95991 2.65581C8.94521 2.65682 8.93078 2.6575 8.91634 2.65817ZM8.94786 2.63125C8.94892 2.63125 8.94998 2.63125 8.95091 2.63125C8.92919 2.63259 8.90747 2.63394 8.88575 2.63529C8.90641 2.63394 8.92707 2.63259 8.94773 2.63125H8.94786ZM8.95567 3.14311C8.92177 3.14479 8.87489 3.14681 8.83477 3.14883C8.88006 3.14681 8.92164 3.14479 8.95567 3.14311ZM9.07446 2.64908C9.09618 2.64807 9.11817 2.64673 9.14015 2.64572C9.11817 2.64673 9.09631 2.64807 9.07446 2.64908ZM8.33365 2.66961C8.46701 2.6612 8.59109 2.65346 8.71134 2.64605C8.59096 2.65346 8.46701 2.66153 8.33365 2.66961ZM8.58898 2.67634C8.58739 2.67634 8.5854 2.67668 8.58368 2.67701C8.58553 2.67701 8.58739 2.67668 8.58898 2.67634ZM8.57944 2.67735C8.57984 2.67735 8.5801 2.67735 8.5805 2.67735C8.58023 2.67735 8.57984 2.67735 8.57957 2.67735H8.57944ZM8.54766 2.67163C8.54964 2.67163 8.55176 2.67163 8.55375 2.67163C8.55176 2.67163 8.54978 2.67163 8.54766 2.67163ZM8.49018 2.67197C8.4678 2.67197 8.44529 2.6723 8.42344 2.67264C8.44476 2.67264 8.4678 2.6723 8.49018 2.67197ZM8.15513 2.19712C8.16864 2.06857 8.39748 2.10727 8.4286 2.1803C8.39457 2.10458 8.17076 2.07193 8.15302 2.19712C8.15368 2.19712 8.15447 2.19712 8.15513 2.19712ZM7.83373 2.16482C7.83744 2.16482 7.84114 2.16414 7.84485 2.16414C7.81611 2.16616 7.78671 2.16852 7.75957 2.17054C7.7834 2.16885 7.8083 2.16683 7.83373 2.16515V2.16482ZM7.72686 2.65548C7.71918 2.65581 7.7111 2.65649 7.70315 2.65682C7.71123 2.65649 7.71918 2.65581 7.72686 2.65548ZM7.64554 2.15169C7.64965 2.19006 7.63561 2.17861 7.62581 2.18097C7.63574 2.17861 7.64965 2.19006 7.64554 2.15169ZM7.62528 2.1527C7.62528 2.16212 7.62541 2.17155 7.62541 2.18131C7.62541 2.17188 7.62528 2.16246 7.62528 2.1527ZM7.57615 2.6262C7.58436 2.62586 7.59257 2.62553 7.60091 2.62519C7.59244 2.62553 7.58436 2.62586 7.57615 2.6262ZM7.57257 2.66221C7.57257 2.66221 7.57205 2.66221 7.57191 2.66221C7.57205 2.66221 7.57231 2.66221 7.57257 2.66221ZM7.57284 2.66221C7.57496 2.66254 7.5784 2.66322 7.5837 2.66355C7.5784 2.66322 7.57496 2.66288 7.57284 2.66221ZM7.53722 2.15674C7.55735 2.15573 7.57747 2.15472 7.59747 2.15405C7.57734 2.15506 7.55721 2.15607 7.53722 2.15674ZM7.5641 2.62687C7.55615 2.62721 7.54821 2.62755 7.54066 2.62788C7.54847 2.62755 7.55629 2.62721 7.5641 2.62687ZM7.50557 2.15842C7.50557 2.17054 7.5057 2.18265 7.50583 2.19477C7.50583 2.18265 7.5057 2.17054 7.50557 2.15842ZM7.54463 2.69721C7.5098 2.69687 7.47511 2.6962 7.44028 2.69586C7.47497 2.6962 7.50967 2.69687 7.5445 2.69721H7.54463ZM7.45577 2.16078C7.46464 2.16044 7.47365 2.15977 7.48252 2.15943C7.47365 2.15977 7.46464 2.1601 7.45577 2.16078ZM7.45802 2.63192C7.44994 2.63226 7.442 2.63259 7.43432 2.63327C7.442 2.63293 7.44981 2.63259 7.45789 2.63192H7.45802ZM7.4024 2.63495C7.4024 2.63495 7.40174 2.63495 7.40134 2.63495C7.40161 2.63495 7.40201 2.63495 7.40227 2.63495H7.4024ZM7.24945 2.72749C6.99147 2.73725 6.73363 2.74668 6.47566 2.7561C6.48095 2.7561 6.48625 2.75576 6.49168 2.75543C6.47764 2.75576 6.46347 2.75644 6.44944 2.75711C6.71615 2.74769 6.98286 2.73793 7.24945 2.72783V2.72749ZM7.20203 2.73221C7.1978 2.73221 7.19356 2.73221 7.18945 2.73221C7.19369 2.73221 7.1978 2.73221 7.20203 2.73221ZM6.68847 3.23936C6.84659 3.23263 7.00577 3.22556 7.16535 3.21782C7.00591 3.22556 6.84659 3.23263 6.68847 3.23936ZM7.1247 3.37633C7.12218 3.37666 7.11966 3.37733 7.11688 3.37767C7.11966 3.37733 7.12231 3.37666 7.1247 3.37633ZM7.05252 3.29556C7.05424 3.29556 7.05596 3.29556 7.05769 3.29556C7.05385 3.29556 7.04987 3.29556 7.04603 3.29556C7.04815 3.29556 7.0504 3.29556 7.05252 3.29556ZM7.07503 3.29522C7.07755 3.29522 7.0802 3.29522 7.08258 3.29522C7.07782 3.29522 7.07278 3.29522 7.06775 3.29522C7.07013 3.29522 7.07252 3.29522 7.0749 3.29522H7.07503ZM7.00365 3.2969C6.99597 3.2969 6.98829 3.29758 6.98035 3.29758C6.98816 3.29758 6.99597 3.2969 7.00365 3.2969ZM6.96035 3.30229C6.95624 3.30262 6.95201 3.30296 6.94777 3.3033C6.95201 3.30296 6.95638 3.30262 6.96035 3.30229ZM6.88844 3.40325C6.88844 3.40325 6.88738 3.40325 6.88685 3.40325C6.88738 3.40325 6.88791 3.40325 6.88844 3.40325ZM6.85719 3.4056C6.85494 3.4056 6.85268 3.4056 6.8503 3.40594C6.85401 3.40594 6.85785 3.40527 6.86156 3.40527C6.85997 3.40527 6.85838 3.40527 6.85679 3.4056C6.85679 3.4056 6.85705 3.4056 6.85719 3.4056ZM6.84209 3.31104C6.8548 3.31036 6.86699 3.30936 6.87838 3.30868C6.86699 3.30969 6.8548 3.31036 6.84209 3.31104ZM6.86182 3.40527C6.86964 3.40459 6.87718 3.40426 6.88447 3.40358C6.87679 3.40426 6.86884 3.40459 6.86076 3.40527C6.86116 3.40527 6.86143 3.40527 6.86182 3.40527ZM6.84103 3.40661C6.83918 3.40661 6.83732 3.40661 6.83547 3.40695C6.83732 3.40695 6.83918 3.40695 6.84103 3.40661ZM5.77259 3.23397C5.81231 3.23263 5.85178 3.23128 5.89058 3.23027C5.85191 3.23162 5.81231 3.23263 5.77259 3.23397ZM5.85284 3.4157C5.84767 3.4157 5.84251 3.41604 5.83721 3.41637C5.84251 3.41637 5.84767 3.41604 5.85284 3.4157ZM5.78702 3.41334C5.77656 3.41402 5.7661 3.41469 5.7555 3.41503C5.76596 3.41435 5.77643 3.41402 5.78702 3.41334ZM5.33742 3.25248C5.32616 3.25315 5.31504 3.25383 5.30418 3.2545C5.31517 3.25383 5.3263 3.25315 5.33742 3.25248ZM5.29147 2.78807C5.31967 2.78773 5.35371 2.78706 5.39436 2.78605C5.35411 2.78706 5.32537 2.7874 5.29147 2.78807ZM5.2916 3.25719C5.28485 3.25787 5.2773 3.25854 5.26909 3.25921C5.2773 3.25854 5.28471 3.25787 5.2916 3.25719ZM5.50945 2.78336C5.48548 2.78403 5.4631 2.78437 5.44217 2.78504C5.4631 2.7847 5.48548 2.78403 5.50945 2.78336ZM5.48481 2.78269C5.48481 2.78269 5.48574 2.78269 5.48627 2.78269C5.48587 2.78269 5.48534 2.78269 5.48481 2.78269ZM6.28204 2.6723C6.28721 2.6723 6.29237 2.67197 6.29727 2.67163C6.16047 2.67802 5.90766 2.69115 5.64519 2.70528C5.89826 2.69182 6.14233 2.67903 6.28204 2.6723ZM6.41275 2.71504C6.41341 2.71504 6.41421 2.71504 6.41487 2.71504C6.41235 2.71504 6.40931 2.71504 6.4064 2.71504C6.40918 2.71504 6.41196 2.71504 6.41461 2.71504C6.41394 2.71504 6.41328 2.71504 6.41262 2.71504H6.41275ZM6.53459 3.37902C6.54333 3.37868 6.55194 3.37834 6.56081 3.37767C6.55194 3.37801 6.5432 3.37834 6.53459 3.37902ZM6.50956 3.38036C6.51565 3.38036 6.52174 3.37969 6.52797 3.37935C6.51962 3.37969 6.51141 3.38003 6.50333 3.3807C6.50545 3.3807 6.50744 3.3807 6.50956 3.3807V3.38036ZM6.48426 3.38171C6.48718 3.38171 6.49022 3.38171 6.49314 3.38137C6.48546 3.38171 6.47791 3.38205 6.47036 3.38238C6.47499 3.38238 6.47963 3.38205 6.48413 3.38171H6.48426ZM6.3913 2.71538C6.39037 2.71538 6.38931 2.71538 6.38839 2.71538C6.38997 2.71538 6.3917 2.71538 6.39328 2.71538C6.39262 2.71538 6.39209 2.71538 6.39143 2.71538H6.3913ZM6.02222 3.4083C6.11439 3.40358 6.2051 3.39786 6.29568 3.39248C6.20484 3.39786 6.11889 3.40325 6.02222 3.4083ZM6.10287 3.42176C6.10128 3.42176 6.09942 3.42176 6.0977 3.42176C6.09942 3.42176 6.10114 3.42176 6.10287 3.42176ZM5.93931 3.41267C5.93931 3.41267 5.93971 3.41267 5.93984 3.41267C5.93945 3.41267 5.93905 3.41267 5.93852 3.41267C5.93879 3.41267 5.93905 3.41267 5.93918 3.41267H5.93931ZM5.94011 3.41267C5.94011 3.41267 5.93984 3.41267 5.93971 3.41267C5.94196 3.41267 5.94421 3.41267 5.94647 3.41267C5.94435 3.41267 5.94223 3.41267 5.93998 3.41267H5.94011ZM5.94806 3.41233C5.95825 3.412 5.96818 3.41132 5.97812 3.41099C5.96686 3.41166 5.95547 3.412 5.94395 3.41267C5.94541 3.41267 5.94673 3.41267 5.94819 3.41267L5.94806 3.41233ZM5.99414 2.71639C6.00328 2.71572 6.01228 2.71538 6.02182 2.71471C6.01215 2.71504 6.00275 2.71572 5.99348 2.71639C5.99374 2.71639 5.99401 2.71639 5.99427 2.71639H5.99414ZM5.96156 2.88163C5.96302 2.88163 5.96434 2.88163 5.9658 2.88163C5.96395 2.88163 5.96209 2.88163 5.96024 2.88196C5.96064 2.88196 5.96117 2.88196 5.96156 2.88196V2.88163ZM6.16339 2.86749C6.16484 2.86749 6.16617 2.86715 6.16762 2.86682C6.16617 2.86682 6.16484 2.86715 6.16339 2.86749ZM6.16127 2.86783C6.15597 2.86884 6.15054 2.86951 6.14524 2.87052C6.15094 2.86951 6.15676 2.8685 6.16246 2.86749C6.16206 2.86749 6.16166 2.86749 6.16127 2.86749V2.86783ZM6.26456 3.34907C6.2696 3.34873 6.27529 3.34806 6.28151 3.34772C6.27529 3.34839 6.26973 3.34873 6.26456 3.34907ZM6.32455 3.39147C6.32071 3.39147 6.31687 3.39181 6.3129 3.39214C6.31674 3.39214 6.32058 3.39181 6.32455 3.39147ZM6.3472 3.21479C6.3472 3.21479 6.34733 3.21479 6.34746 3.21479H6.3472ZM6.20139 3.21816C6.1961 3.21816 6.19106 3.21816 6.1863 3.21816C6.22457 3.21748 6.27661 3.21647 6.34508 3.21479C6.28522 3.21647 6.23794 3.21748 6.20139 3.21782V3.21816ZM6.21834 2.72447C6.21993 2.72447 6.22192 2.72379 6.2243 2.72379C6.22205 2.72379 6.22007 2.72447 6.21834 2.72447ZM6.24377 2.72211C6.24655 2.72211 6.24933 2.72177 6.25238 2.72144C6.24947 2.72144 6.24655 2.72177 6.24377 2.72211ZM5.84569 2.89004C5.84317 2.89004 5.84052 2.89038 5.83814 2.89071C5.84065 2.89071 5.84317 2.89038 5.84569 2.89004ZM5.88979 3.23195C5.85165 3.23296 5.81284 3.23431 5.77364 3.23566C5.81271 3.23431 5.85165 3.23296 5.88979 3.23195ZM5.66969 2.73523C5.67724 2.73523 5.68465 2.73456 5.69207 2.73423C5.68465 2.73423 5.67697 2.7349 5.66916 2.73523C5.66929 2.73523 5.66955 2.73523 5.66969 2.73523ZM5.62704 2.73658C5.60824 2.73725 5.58838 2.73759 5.56745 2.73793C5.58851 2.73759 5.60824 2.73725 5.62704 2.73658ZM5.50931 2.7847C5.50931 2.7847 5.50918 2.7847 5.50905 2.7847C5.50905 2.7847 5.50918 2.7847 5.50931 2.7847ZM5.5354 2.73826C5.54507 2.73826 5.55447 2.73826 5.56361 2.73793C5.55447 2.73793 5.54507 2.73793 5.5354 2.73826ZM5.50402 2.7386C5.50256 2.7386 5.50124 2.7386 5.49978 2.7386C5.50945 2.7386 5.51872 2.7386 5.52785 2.7386C5.52004 2.7386 5.51223 2.7386 5.50402 2.7386ZM5.41608 2.78706C5.43237 2.78672 5.44773 2.78639 5.46495 2.78605C5.43648 2.78672 5.41065 2.7874 5.38708 2.78773C5.39172 2.78773 5.39648 2.78773 5.40112 2.78773C5.40072 2.78773 5.40019 2.78773 5.39979 2.78773C5.40364 2.78773 5.40774 2.78773 5.41171 2.78773C5.40986 2.78773 5.40787 2.78773 5.40602 2.78773C5.40933 2.78773 5.41264 2.78773 5.41595 2.78773L5.41608 2.78706ZM5.68955 2.88196C5.65684 2.88297 5.62373 2.88398 5.59063 2.88465C5.62387 2.88364 5.65684 2.88297 5.68955 2.88196ZM6.69615 3.42849C6.43964 3.4406 6.17703 3.45272 5.92846 3.46281C6.17703 3.45272 6.43977 3.44094 6.69615 3.42849ZM6.64397 3.37262C6.6457 3.37262 6.64742 3.37262 6.64914 3.37262C6.64742 3.37262 6.64583 3.37262 6.64397 3.37262ZM6.767 3.38306C6.75628 3.38306 6.74568 3.38339 6.73522 3.38373C6.7433 3.38373 6.75151 3.38339 6.75972 3.38306C6.73389 3.38373 6.709 3.38407 6.68596 3.38474C6.7135 3.38407 6.74555 3.38339 6.77548 3.38272C6.7727 3.38272 6.76978 3.38272 6.767 3.38272V3.38306ZM6.75932 3.41402C6.75707 3.41402 6.75469 3.41402 6.75244 3.41435C6.75469 3.41435 6.75707 3.41435 6.75932 3.41402ZM6.73005 3.4157C6.72648 3.4157 6.72277 3.41604 6.71906 3.41637C6.72277 3.41637 6.72635 3.41604 6.73005 3.4157ZM6.69867 3.41738C6.69456 3.41738 6.69059 3.41772 6.68648 3.41805C6.69059 3.41805 6.6947 3.41772 6.69867 3.41738ZM6.79269 3.42411C6.79269 3.42411 6.79336 3.42411 6.79362 3.42411C6.5077 3.43791 6.21066 3.45171 5.93137 3.46281C6.2104 3.45137 6.50704 3.43791 6.79269 3.42411ZM6.78528 3.41267C6.78634 3.41267 6.7874 3.41267 6.78832 3.41267C6.78726 3.41267 6.7862 3.41267 6.78528 3.41267ZM6.80051 3.41166C6.80342 3.41166 6.80647 3.41132 6.80938 3.41099C6.80448 3.41099 6.79945 3.41166 6.79442 3.412C6.7964 3.412 6.79852 3.412 6.80051 3.41166ZM6.8119 3.36455C6.81772 3.36421 6.82368 3.36354 6.82938 3.3632C6.82355 3.36354 6.81772 3.36421 6.8119 3.36455ZM6.82223 3.41031C6.82633 3.41031 6.83044 3.40964 6.83454 3.40964C6.82898 3.40998 6.82315 3.41031 6.81746 3.41065C6.81905 3.41065 6.82064 3.41065 6.82223 3.41065V3.41031ZM6.45301 3.25147C6.45301 3.25147 6.45222 3.25147 6.45182 3.25147C6.52519 3.24844 6.59908 3.24541 6.67311 3.24239C6.59948 3.24541 6.52598 3.24844 6.45301 3.25147ZM6.80223 3.1808C6.80223 3.1808 6.8017 3.18114 6.8013 3.18147C6.8017 3.18147 6.8021 3.18114 6.80223 3.1808ZM7.05769 2.17424C7.05769 2.17424 7.05835 2.17424 7.05861 2.17424C7.04405 2.17458 7.02948 2.17491 7.01491 2.17525C7.02908 2.17491 7.04338 2.17458 7.05769 2.17424ZM6.35515 2.19981C6.45738 2.19409 6.55167 2.18972 6.64172 2.18602C6.3909 2.19645 6.28284 2.20318 5.96289 2.219C6.1418 2.20991 6.28827 2.20251 6.35515 2.19948V2.19981ZM5.59817 2.70966C5.57911 2.71067 5.56017 2.71168 5.5411 2.71269C5.56004 2.71168 5.57911 2.71067 5.59817 2.70966ZM5.24671 3.26056C5.24671 3.26056 5.24551 3.26056 5.24498 3.26056C5.24565 3.26056 5.24618 3.26056 5.24671 3.26056ZM5.24207 3.26325C5.24207 3.26325 5.24167 3.26325 5.24141 3.26325C5.24167 3.26325 5.24181 3.26325 5.24207 3.26325ZM5.19175 2.75408C5.19175 2.75408 5.19267 2.75408 5.1932 2.75408C5.19241 2.75408 5.19161 2.75408 5.19069 2.75408C5.19095 2.75408 5.19135 2.75408 5.19161 2.75408H5.19175ZM5.2034 3.26628C5.19943 3.26628 5.19546 3.26695 5.19148 3.26695C5.19559 3.26695 5.19956 3.26628 5.2034 3.26628ZM5.19281 2.78201C5.19042 2.78269 5.18817 2.78302 5.18566 2.78336C5.18817 2.78302 5.19056 2.78235 5.19281 2.78201ZM5.17175 2.78639C5.17029 2.78639 5.16897 2.78706 5.16764 2.7874C5.16884 2.7874 5.17029 2.78672 5.17175 2.78639ZM5.11494 2.73658C5.10196 2.73725 5.08925 2.73793 5.0764 2.73894C5.08898 2.73826 5.10183 2.73759 5.11494 2.73658ZM4.989 2.78201C4.9935 2.78336 4.99747 2.77865 5.00145 2.77394C4.99747 2.77898 4.9935 2.78336 4.989 2.78201ZM4.94702 2.7847C4.94768 2.7847 4.94834 2.7847 4.94914 2.7847C4.94834 2.7847 4.94768 2.7847 4.94688 2.7847H4.94702ZM4.94622 2.7847C4.94622 2.7847 4.94649 2.7847 4.94662 2.7847C4.94503 2.7847 4.94331 2.7847 4.94172 2.7847C4.94318 2.7847 4.94463 2.7847 4.94622 2.7847ZM4.94066 3.30801C4.88438 3.31003 4.82915 3.31205 4.7734 3.31373C4.82915 3.31171 4.88438 3.31003 4.94066 3.30801ZM4.84015 3.49579C4.83498 3.49579 4.82995 3.49613 4.82478 3.49647C4.82955 3.49647 4.83432 3.49613 4.83909 3.49579C4.83948 3.49579 4.83988 3.49579 4.84015 3.49579ZM4.84571 3.49579C4.84399 3.49579 4.84213 3.49579 4.84028 3.49579C4.85193 3.49512 4.86359 3.49478 4.87537 3.49411C4.86544 3.49445 4.85551 3.49512 4.84558 3.49546L4.84571 3.49579ZM4.78227 2.28866C4.78227 2.28866 4.78267 2.28866 4.7828 2.28866C4.76598 2.289 4.7489 2.28933 4.73195 2.29001C4.74877 2.28967 4.76572 2.28933 4.78227 2.28866ZM4.65329 3.47964C4.69606 3.47762 4.73619 3.4756 4.77247 3.47426C4.73606 3.4756 4.69619 3.47728 4.65329 3.47964ZM4.5288 3.48603C4.52337 3.48603 4.51794 3.48671 4.51251 3.48704C4.51794 3.48704 4.52337 3.48637 4.5288 3.48603ZM4.66044 2.94523C4.66216 2.94523 4.66415 2.94523 4.66573 2.94523C4.66335 2.94523 4.6607 2.94523 4.65805 2.94523C4.65885 2.94523 4.65964 2.94523 4.66044 2.94523ZM4.71513 2.29034C4.71513 2.29034 4.71513 2.28731 4.71513 2.28563C4.71513 2.28731 4.71513 2.28866 4.71513 2.29034ZM4.71778 2.74701C4.68242 2.74937 4.65315 2.75139 4.62852 2.75341C4.63938 2.75273 4.6509 2.75172 4.66388 2.75071C4.64839 2.75172 4.63501 2.75273 4.62203 2.75374C4.6223 2.75374 4.62256 2.75374 4.62283 2.75374C4.6219 2.75374 4.62084 2.75374 4.62005 2.75374C4.64825 2.75172 4.67805 2.74937 4.71778 2.74701ZM4.52536 2.94355C4.54019 2.94355 4.55423 2.94355 4.56734 2.94388C4.54959 2.94388 4.5292 2.94287 4.51026 2.94456C4.51516 2.94456 4.52046 2.94388 4.52523 2.94355H4.52536ZM4.52284 3.28142C4.51874 3.28142 4.51476 3.28142 4.51066 3.2821C4.51476 3.2821 4.51874 3.28176 4.52284 3.28142ZM4.41981 2.76283C4.40829 2.76384 4.39876 2.76451 4.39068 2.76552C4.39889 2.76451 4.40842 2.76384 4.41981 2.76283ZM4.55674 3.46517C4.42299 3.47257 4.28924 3.48166 4.15548 3.49041C4.28924 3.48166 4.42299 3.47291 4.55674 3.46517ZM4.50126 3.49243C4.49662 3.49243 4.49225 3.49243 4.48722 3.49276C4.49238 3.49276 4.49715 3.49276 4.50126 3.49243ZM4.4761 3.4931C4.4761 3.4931 4.4753 3.4931 4.4749 3.4931C4.4753 3.4931 4.4757 3.4931 4.4761 3.4931ZM4.2352 2.80826C4.2254 2.80826 4.21521 2.80893 4.20488 2.80927C4.21508 2.80893 4.22527 2.8086 4.2352 2.80826ZM4.1964 2.80961C4.18634 2.80994 4.17601 2.81028 4.16541 2.81062C4.17601 2.81028 4.18607 2.80994 4.1964 2.80961ZM4.1037 2.77326C4.1037 2.77326 4.1037 2.77326 4.10383 2.77326C4.10357 2.77326 4.10317 2.77326 4.10291 2.77326C4.10317 2.77326 4.10344 2.77326 4.1037 2.77326ZM4.10238 2.30212C4.10238 2.30212 4.10238 2.30448 4.10238 2.30582C4.10238 2.30448 4.10238 2.30347 4.10238 2.30212ZM3.55915 2.3526C3.68602 2.33712 3.85089 2.28126 4.01113 2.3038C3.84666 2.27957 3.6835 2.3425 3.55134 2.35125C3.55412 2.35159 3.55663 2.35226 3.55915 2.3526ZM3.86241 2.94557C3.88493 2.94355 3.90744 2.94119 3.92982 2.93917C3.90731 2.94119 3.8848 2.94355 3.86241 2.94557ZM3.8652 2.94557C3.86427 2.94557 3.86334 2.94557 3.86255 2.94557C3.86347 2.94557 3.8644 2.94557 3.8652 2.94557ZM3.95578 2.78168C3.9726 2.78168 3.98928 2.78168 4.0061 2.78168C3.98928 2.78235 3.9726 2.78168 3.95578 2.78168ZM3.54154 2.35058C3.54366 2.35058 3.54538 2.35092 3.54723 2.35125C3.54524 2.35125 3.54326 2.35092 3.54101 2.35058C3.54114 2.35058 3.5414 2.35058 3.54154 2.35058ZM3.54154 2.82206C3.54154 2.82206 3.5422 2.82206 3.54233 2.82206C3.54167 2.82206 3.54074 2.82206 3.53968 2.82172C3.54048 2.82172 3.54101 2.82172 3.54154 2.82172V2.82206ZM3.53796 2.82172C3.53796 2.82172 3.53902 2.82172 3.53955 2.82172C3.53889 2.82172 3.53796 2.82172 3.53717 2.82172C3.53743 2.82172 3.53783 2.82172 3.53809 2.82172H3.53796ZM3.53611 2.82172C3.53611 2.82172 3.53571 2.82172 3.53544 2.82172C3.53558 2.82172 3.53584 2.82172 3.53611 2.82172ZM3.51465 2.8372C3.51465 2.8372 3.51492 2.8372 3.51518 2.8372C3.51505 2.8372 3.51492 2.8372 3.51465 2.8372ZM3.51412 2.8372C3.51412 2.8372 3.51306 2.8372 3.5124 2.83687C3.51306 2.83687 3.51359 2.83687 3.51412 2.8372ZM3.50737 2.83619C3.50962 2.83619 3.51134 2.83687 3.51267 2.83687C3.51121 2.83687 3.50962 2.83619 3.50737 2.83619ZM4.0351 2.96912C4.07881 2.9671 4.12237 2.96542 4.16528 2.9634C3.94783 2.97316 3.72945 2.97922 3.51161 2.98662C3.68628 2.9809 3.86069 2.97518 4.0351 2.96912ZM4.04172 3.35277C4.04053 3.35277 4.03947 3.35277 4.03815 3.35277C4.03934 3.35277 4.0404 3.35277 4.04172 3.35277ZM4.00531 3.50084C4.00769 3.50084 4.01047 3.50017 4.01312 3.50017C4.0106 3.50017 4.00782 3.50084 4.00531 3.50084ZM4.00676 3.50084C4.00676 3.50084 4.00584 3.50084 4.00544 3.50084C4.00584 3.50084 4.00637 3.50084 4.00676 3.50084ZM3.63119 3.39517C3.63119 3.39517 3.63146 3.39517 3.63172 3.39517C3.63159 3.39517 3.63146 3.39517 3.63119 3.39517ZM3.63238 3.39517C3.63238 3.39517 3.63278 3.39517 3.63291 3.39517C3.63278 3.39517 3.63252 3.39517 3.63238 3.39517ZM3.60788 3.54896C3.60629 3.54896 3.60471 3.54897 3.60312 3.5493C3.60471 3.5493 3.60629 3.5493 3.60788 3.54896ZM3.60285 3.39685C3.6104 3.39685 3.61848 3.39618 3.62695 3.39584C3.61888 3.39618 3.6108 3.39685 3.60285 3.39685ZM3.62589 3.54762C3.62444 3.54762 3.62285 3.54762 3.62139 3.54796C3.62285 3.54796 3.62431 3.54796 3.62589 3.54762ZM3.69727 3.32955C3.70244 3.32955 3.7076 3.32887 3.71277 3.32854C3.7076 3.32854 3.70244 3.32921 3.69727 3.32955ZM3.73356 3.38676C3.72522 3.38743 3.71687 3.3881 3.7088 3.38878C3.71674 3.3881 3.72482 3.38743 3.73356 3.38676ZM3.67185 3.39147C3.66946 3.39147 3.66708 3.39181 3.66483 3.39214C3.66814 3.39214 3.67158 3.39147 3.67529 3.39113C3.6741 3.39113 3.67304 3.39113 3.67185 3.39113V3.39147ZM3.66682 3.38104C3.65966 3.38137 3.65278 3.38205 3.64589 3.38238C3.65278 3.38205 3.65966 3.38171 3.66682 3.38104ZM3.66271 3.54425C3.66271 3.54425 3.66152 3.54425 3.66086 3.54425C3.66152 3.54425 3.66205 3.54425 3.66271 3.54425ZM3.72601 3.53921C3.72323 3.53921 3.72058 3.53954 3.7178 3.53988C3.72058 3.53988 3.72323 3.53954 3.72601 3.53921ZM3.91883 3.52541C3.91141 3.52574 3.904 3.52642 3.89685 3.52675C3.90413 3.52642 3.91155 3.52574 3.91883 3.52541ZM3.75131 3.53752C3.7476 3.53752 3.74389 3.5382 3.74031 3.5382C3.74402 3.5382 3.7476 3.53752 3.75131 3.53752ZM3.64536 3.54594C3.6439 3.54594 3.64232 3.54594 3.64086 3.54627C3.64232 3.54627 3.6439 3.54627 3.64536 3.54594ZM3.59093 3.55065C3.58934 3.55065 3.58775 3.55065 3.58617 3.55098C3.58775 3.55098 3.58934 3.55098 3.59093 3.55065ZM3.5316 3.56041C3.84348 3.53921 4.15535 3.51733 4.46709 3.49546C4.15522 3.51767 3.84334 3.53921 3.5316 3.56041ZM4.38644 3.51868C4.3867 3.51868 4.3871 3.51868 4.38737 3.51868C4.3871 3.51868 4.38684 3.51868 4.38657 3.51868H4.38644ZM4.46431 3.51868C4.46073 3.51868 4.45729 3.51868 4.45398 3.51868C4.47067 3.51868 4.49 3.51733 4.50748 3.51632C4.49874 3.51699 4.49 3.51733 4.48139 3.518C4.48762 3.51767 4.49384 3.51733 4.50006 3.51666C4.48828 3.51733 4.47596 3.51834 4.46444 3.51834L4.46431 3.51868ZM5.20777 3.96088C4.9498 3.94843 4.69063 3.98275 4.48285 3.98948C4.6905 3.98309 4.94993 3.94876 5.20777 3.96088ZM5.16659 3.30195C5.36682 3.29488 5.56123 3.28748 5.76755 3.27974C5.56123 3.28748 5.36682 3.29455 5.16659 3.30195ZM5.4084 3.48401C5.39132 3.48469 5.3745 3.48502 5.35781 3.4857C5.3745 3.48536 5.39132 3.48469 5.4084 3.48401ZM5.70611 3.42209C5.6975 3.42243 5.68889 3.4231 5.68041 3.42344C5.68968 3.4231 5.69909 3.42243 5.70849 3.42209C5.70769 3.42209 5.7069 3.42209 5.70611 3.42209ZM5.74822 3.41974C5.73815 3.42041 5.72822 3.42075 5.71829 3.42142C5.72822 3.42075 5.73829 3.42041 5.74822 3.41974ZM7.42134 3.86564C6.94049 3.89088 6.27701 3.92319 5.71842 3.94439C6.27953 3.92319 6.943 3.89088 7.4265 3.8653C7.42478 3.8653 7.42306 3.8653 7.42121 3.8653L7.42134 3.86564ZM7.60939 3.20032C7.61588 3.19998 7.62303 3.19931 7.63084 3.19864C7.62303 3.19931 7.61588 3.19965 7.60939 3.20032ZM7.59164 3.20167C7.59403 3.20167 7.59654 3.20133 7.59919 3.20099C7.59654 3.20099 7.59403 3.20133 7.59164 3.20167ZM7.59999 3.20099C7.6029 3.20099 7.60595 3.20066 7.60926 3.20032C7.60595 3.20032 7.6029 3.20066 7.59999 3.20099ZM7.6466 3.19763C7.65097 3.19763 7.65548 3.19695 7.66024 3.19662C7.65548 3.19662 7.65097 3.19729 7.6466 3.19763ZM7.63243 3.21849C7.63243 3.21849 7.63323 3.21849 7.63362 3.21849C7.63204 3.21849 7.63058 3.21849 7.62899 3.21849C7.63018 3.21849 7.63124 3.21849 7.63243 3.21849ZM7.64833 3.21849C7.64833 3.21849 7.64766 3.21849 7.6474 3.21849C7.65137 3.21849 7.65548 3.21849 7.65945 3.21849C7.65587 3.21849 7.65216 3.21849 7.64846 3.21849H7.64859C7.64859 3.21849 7.64832 3.21849 7.64819 3.21849H7.64833ZM7.63442 3.19864C7.63747 3.19864 7.64078 3.1983 7.64409 3.19796C7.64078 3.19796 7.6376 3.1983 7.63442 3.19864ZM7.66461 3.19662C7.67243 3.19594 7.68051 3.19561 7.68925 3.19493C7.68051 3.19561 7.67229 3.19594 7.66461 3.19662ZM7.65587 3.15623C7.65945 3.15623 7.66289 3.15623 7.66647 3.1559C7.66289 3.1559 7.65945 3.1559 7.65587 3.15623ZM7.5833 3.20268C7.58105 3.20268 7.57893 3.20301 7.57708 3.20335C7.57893 3.20335 7.58105 3.20301 7.5833 3.20268ZM7.52861 3.84377C7.61138 3.82862 7.7197 3.81314 7.83439 3.79732C7.7197 3.81314 7.61138 3.82829 7.52861 3.84377ZM7.78049 3.18955C7.78128 3.18955 7.78208 3.18955 7.78301 3.18955C7.78221 3.18955 7.78142 3.18955 7.78049 3.18955ZM7.87067 3.18417C7.85677 3.18484 7.84273 3.18585 7.82883 3.18652C7.84512 3.18551 7.86127 3.1845 7.87756 3.18383C7.87531 3.18383 7.87306 3.18383 7.87067 3.18417ZM7.06749 3.17138C7.04193 3.17474 7.01637 3.17811 6.99081 3.18181C7.6176 3.13604 8.24519 3.12763 8.87277 3.09532C8.27075 3.12056 7.66898 3.14614 7.06749 3.17171V3.17138ZM8.22969 3.26729C8.2195 3.26897 8.2093 3.27065 8.19897 3.27234C8.273 3.26089 8.34689 3.26426 8.42132 3.25921C8.35722 3.2619 8.29326 3.2646 8.22956 3.26729H8.22969ZM8.2134 3.32551C8.2134 3.32551 8.21287 3.32551 8.21261 3.32551C8.21287 3.32551 8.21314 3.32551 8.2134 3.32551ZM8.12891 3.19965C8.12017 3.20032 8.11117 3.20066 8.10216 3.20133C8.11117 3.20066 8.12004 3.20032 8.12891 3.19965ZM8.09355 3.202C8.07581 3.20301 8.0574 3.20402 8.03807 3.20537C8.05727 3.20436 8.07568 3.20335 8.09355 3.202ZM7.94417 3.19965C7.94417 3.19965 7.94417 3.19965 7.94431 3.19965C7.94431 3.19965 7.9447 3.19965 7.94484 3.19965C7.9447 3.19965 7.94444 3.19965 7.94417 3.19965ZM8.1158 3.75728C8.08375 3.76199 8.05157 3.7667 8.01926 3.77141C8.05594 3.77377 8.09475 3.74247 8.12971 3.77007C8.12494 3.76636 8.12031 3.76199 8.1158 3.75728ZM8.34663 3.35075C8.34663 3.35075 8.34663 3.35075 8.34676 3.35075C8.34676 3.35075 8.34676 3.35075 8.34663 3.35075ZM8.36186 3.35008C8.35696 3.35008 8.35206 3.35041 8.34729 3.35075C8.52501 3.34234 8.70273 3.33359 8.88045 3.32484C8.70763 3.33325 8.53468 3.34166 8.36186 3.35008ZM9.25682 3.78555C9.22371 3.78723 9.19113 3.78925 9.15909 3.79093C9.26251 3.78521 9.36766 3.77949 9.47149 3.77377C9.40011 3.77747 9.3282 3.78151 9.25695 3.78555H9.25682ZM9.41229 3.24138C9.54724 3.2333 9.71397 3.22455 9.93142 3.21614C9.71278 3.22489 9.54764 3.2333 9.41229 3.24138ZM9.68881 3.30296C9.68881 3.30296 9.68881 3.30296 9.68867 3.30296H9.68894C9.68894 3.30296 9.68894 3.30296 9.68881 3.30296ZM9.87924 3.29287C9.88864 3.29219 9.89778 3.29152 9.90692 3.29118C9.89765 3.29186 9.88851 3.29253 9.87924 3.29287ZM10.0988 3.27739C10.1689 3.272 10.2387 3.26628 10.3092 3.2609C10.236 3.26662 10.1679 3.27234 10.0988 3.27739ZM10.2596 3.73608C10.2371 3.73776 10.2148 3.73978 10.1927 3.74146C10.224 3.7391 10.256 3.73641 10.2878 3.73372C10.2783 3.73439 10.2689 3.7354 10.2596 3.73608ZM10.3315 3.75324C10.3347 3.75324 10.338 3.75324 10.3412 3.7529C10.338 3.7529 10.3347 3.7529 10.3315 3.75324ZM10.3732 3.28008C10.3617 3.28075 10.35 3.28109 10.3381 3.28176C10.3503 3.28109 10.3621 3.28075 10.3739 3.28008C10.3737 3.28008 10.3735 3.28008 10.3733 3.28008H10.3732ZM10.3699 3.25585C10.3774 3.25517 10.385 3.2545 10.3925 3.25416C10.3849 3.25484 10.3773 3.25551 10.3699 3.25585ZM10.3772 3.27974C10.3772 3.27974 10.3776 3.27974 10.3778 3.27974C10.3776 3.27974 10.3774 3.27974 10.3772 3.27974ZM10.378 3.27974C10.378 3.27974 10.3782 3.27974 10.3784 3.27974H10.3781H10.378ZM10.4503 3.74752C10.4271 3.74853 10.4038 3.74954 10.3806 3.75055C10.4119 3.75055 10.4427 3.75627 10.4597 3.71992C10.4503 3.71622 10.449 3.72531 10.4503 3.74718V3.74752ZM10.4264 3.25114C10.4333 3.25046 10.4402 3.25013 10.4471 3.24945C10.4401 3.25013 10.4333 3.25046 10.4264 3.25114ZM10.4789 3.71858C10.4789 3.72598 10.4789 3.73338 10.479 3.74079C10.479 3.73338 10.479 3.72598 10.4789 3.71858ZM10.4765 3.27503C10.4791 3.27503 10.4818 3.27503 10.4843 3.27469C10.4817 3.27469 10.4791 3.27469 10.4765 3.27503ZM10.4982 3.74516C10.4472 3.73776 10.5234 3.76468 10.5201 3.73002C10.5222 3.75694 10.5055 3.74011 10.4982 3.74516ZM10.4924 3.27436C10.4924 3.27436 10.4927 3.27436 10.4928 3.27436C10.4928 3.27436 10.4925 3.27436 10.4924 3.27436ZM10.5007 3.27436C10.5002 3.27436 10.4997 3.27436 10.4991 3.27436C10.5022 3.27436 10.5051 3.27436 10.5082 3.27402C10.5056 3.27402 10.5031 3.27402 10.5007 3.27436ZM10.5317 3.74449C10.5317 3.74449 10.5317 3.74415 10.5317 3.74382C10.532 3.74516 10.5332 3.74382 10.5337 3.74415C10.533 3.74415 10.5324 3.74415 10.5317 3.74415V3.74449ZM10.5728 3.27133C10.5728 3.27133 10.5724 3.27133 10.5722 3.27133C10.5809 3.27099 10.5892 3.27032 10.5973 3.26998C10.5892 3.27032 10.5809 3.27099 10.5724 3.27133C10.5724 3.27133 10.5726 3.27133 10.5728 3.27133ZM10.4084 3.2333C10.4984 3.22556 10.5884 3.21782 10.6812 3.21042C10.5901 3.21748 10.4984 3.22522 10.4084 3.2333ZM10.668 3.16936C10.6481 3.17003 10.6283 3.17104 10.6083 3.17171C10.6453 3.17037 10.6824 3.16902 10.7196 3.16734C10.7024 3.16801 10.6852 3.16869 10.668 3.16936ZM10.9188 3.15994C10.9649 3.15825 11.0109 3.15657 11.0571 3.15489C11.011 3.15657 10.9649 3.15825 10.9188 3.15994ZM11.604 3.69872C11.4311 3.70646 11.2582 3.71353 11.0853 3.72093C11.4716 3.70478 11.858 3.68795 12.2443 3.67012C12.0308 3.67988 11.8175 3.6893 11.604 3.69872ZM19.7232 2.1177C19.7355 2.11703 19.7483 2.11602 19.7613 2.11535C19.7486 2.11602 19.736 2.11703 19.7238 2.1177C19.7794 2.11434 19.8412 2.1103 19.9054 2.10626C19.8361 2.11097 19.773 2.114 19.7119 2.11905C19.7123 2.11905 19.7126 2.11905 19.713 2.11905C19.7112 2.11905 19.7095 2.11938 19.7078 2.11972C19.713 2.11905 19.7181 2.11871 19.7232 2.11804V2.1177ZM19.9411 2.1039C19.9284 2.10458 19.9157 2.10559 19.9031 2.10626C19.9223 2.10491 19.9417 2.1039 19.9613 2.10256C19.9545 2.10289 19.9479 2.10357 19.9411 2.1039ZM19.9707 2.16549C19.9675 2.16549 19.9643 2.16616 19.9613 2.1665C19.9645 2.1665 19.9676 2.16583 19.9707 2.16549ZM19.9329 2.16919C19.93 2.16919 19.9271 2.16986 19.9242 2.1702C19.9271 2.1702 19.93 2.16953 19.9329 2.16919ZM19.115 2.21765C19.1158 2.21765 19.1165 2.21765 19.1173 2.21765C19.1074 2.21866 19.0976 2.22001 19.0875 2.22102C19.0957 2.22001 19.1035 2.21933 19.1116 2.21832C19.0851 2.22135 19.0581 2.22438 19.0302 2.22707C19.0839 2.22135 19.1397 2.2153 19.1924 2.2089C19.1676 2.21193 19.1415 2.21496 19.115 2.21799V2.21765ZM19.1768 2.85302C19.1768 2.85302 19.1757 2.85302 19.1753 2.85302C19.1758 2.85302 19.1762 2.85302 19.1768 2.85302ZM19.1026 2.76586C19.1026 2.76586 19.1026 2.76519 19.1026 2.76485C19.1026 2.76485 19.1027 2.76552 19.1026 2.76552V2.76586ZM19.0104 2.78605C19.0112 2.78605 19.0119 2.78605 19.0127 2.78571C19.0021 2.78672 18.9914 2.78639 18.9813 2.78706C18.9896 2.78706 18.9992 2.78639 19.0104 2.78605ZM18.9898 2.78168C18.9898 2.78168 18.9898 2.78168 18.9899 2.78168C18.9899 2.78168 18.9899 2.78168 18.9898 2.78168ZM18.93 2.19107C18.9883 2.18635 19.0472 2.18131 19.1059 2.17626C19.047 2.18131 18.9884 2.18602 18.93 2.19107ZM18.9349 2.78874C18.9349 2.78874 18.9343 2.78874 18.934 2.78874C18.9344 2.78874 18.9349 2.78874 18.9353 2.78874C18.9352 2.78874 18.9351 2.78874 18.9349 2.78874ZM18.9356 2.78874C18.9356 2.78874 18.936 2.78874 18.9361 2.78874C18.9359 2.78874 18.9355 2.78874 18.9352 2.78874C18.9352 2.78874 18.9355 2.78874 18.9356 2.78874ZM18.9363 2.78874C18.9352 2.78874 18.934 2.78874 18.933 2.78908C18.934 2.78908 18.9352 2.78908 18.9363 2.78874ZM18.9292 2.19107C18.9147 2.19241 18.9002 2.19342 18.8858 2.19477C18.9009 2.19342 18.916 2.19241 18.9311 2.19107C18.9304 2.19107 18.9299 2.19107 18.9292 2.19107ZM19.0949 1.68829C19.0949 1.69435 19.0949 1.70007 19.0949 1.68829ZM19.0811 2.15809C19.0756 2.15876 19.07 2.15943 19.0645 2.1601C19.07 2.15943 19.0754 2.15876 19.0811 2.15809ZM19.0639 1.68593C19.0675 1.68593 19.0705 1.68593 19.0737 1.68593C19.0703 1.68593 19.0668 1.68593 19.063 1.68593C19.0633 1.68593 19.0637 1.68593 19.0639 1.68593ZM18.9928 2.16818C18.9851 2.16885 18.9775 2.16986 18.9698 2.17054C18.9773 2.16986 18.9851 2.16885 18.9928 2.16818ZM18.8751 2.20924C18.8751 2.20924 18.8744 2.20924 18.8743 2.20924C18.8746 2.20924 18.8748 2.20924 18.8751 2.20924ZM18.7073 2.90384C18.7232 2.90283 18.7389 2.90182 18.7543 2.90114C18.7388 2.90215 18.7229 2.90316 18.7073 2.90384ZM18.6503 2.9072C18.6503 2.9072 18.6501 2.9072 18.65 2.9072C18.6501 2.9072 18.6502 2.9072 18.6503 2.9072ZM18.0397 2.27957C18.0416 2.27957 18.0433 2.27957 18.0451 2.27924C18.0433 2.27924 18.0416 2.27924 18.0397 2.27957ZM18.0684 2.27722C18.0706 2.27722 18.0727 2.27688 18.0748 2.27654C18.0727 2.27654 18.0706 2.27688 18.0684 2.27722ZM18.0902 2.32972C18.0882 2.32972 18.0861 2.33039 18.0841 2.33073C18.0861 2.33073 18.0882 2.33005 18.0902 2.32972ZM18.0944 2.27486C18.0972 2.27486 18.1 2.27452 18.1026 2.27419C18.0998 2.27419 18.0972 2.27486 18.0944 2.27486ZM18.1666 2.81028C18.1683 2.81028 18.17 2.81028 18.1717 2.80994C18.156 2.81095 18.1388 2.8123 18.1206 2.81365C18.1369 2.81264 18.1521 2.81129 18.1666 2.81028ZM18.1835 2.26645C18.1947 2.26544 18.2054 2.26409 18.2157 2.26308C18.2052 2.26409 18.1943 2.26544 18.1835 2.26645ZM18.2905 2.30347C18.2732 2.30549 18.2558 2.3075 18.2386 2.30986C18.2558 2.30784 18.2732 2.30549 18.2905 2.30347ZM18.2394 2.27553C18.2394 2.27553 18.2396 2.27553 18.2397 2.27553C18.2397 2.27553 18.2395 2.27553 18.2394 2.27553ZM18.1502 2.26981C18.1479 2.26981 18.1457 2.27015 18.1434 2.27049C18.1474 2.27015 18.1512 2.26981 18.1551 2.26948C18.1533 2.26948 18.1519 2.26948 18.1502 2.26981ZM18.0523 2.2789C18.0561 2.2789 18.06 2.27823 18.0638 2.27789C18.0601 2.27789 18.0561 2.27856 18.0523 2.2789ZM18.1336 2.93379C18.1205 2.93446 18.1073 2.93513 18.0939 2.93547C18.1073 2.9348 18.1205 2.93412 18.1336 2.93379ZM18.6277 2.88129C18.6325 2.88129 18.6372 2.88095 18.6421 2.88062C18.6374 2.88062 18.6326 2.88095 18.6277 2.88129ZM18.7208 2.81365C18.6921 2.81667 18.6621 2.8197 18.6311 2.82307C18.6621 2.82004 18.6921 2.81701 18.7208 2.81365ZM18.7044 1.7206C18.6899 1.72228 18.6756 1.72396 18.6621 1.72531C18.6756 1.72362 18.6899 1.72228 18.7044 1.7206ZM18.6084 1.74584C18.3267 1.76805 17.9922 1.79463 17.7436 1.82155C18.0005 1.79396 18.2962 1.77074 18.6084 1.74584ZM17.9302 2.82643C17.8726 2.8298 17.8122 2.8335 17.7518 2.83653C17.8122 2.83316 17.8726 2.8298 17.9302 2.82643ZM17.6464 2.30885C17.6455 2.30885 17.6447 2.30919 17.6441 2.30919C17.6448 2.30919 17.6455 2.30885 17.6464 2.30885ZM17.592 1.81651C17.592 1.81651 17.5929 1.81651 17.5934 1.81651C17.5928 1.81651 17.592 1.81651 17.5912 1.81651C17.5914 1.81651 17.5917 1.81651 17.592 1.81651ZM17.5622 2.29236C17.5622 2.29236 17.5619 2.29236 17.5618 2.29236C17.5618 2.29236 17.562 2.29236 17.5622 2.29236ZM17.5724 2.82273C17.5626 2.82341 17.5526 2.82408 17.5427 2.82442C17.5526 2.82374 17.5626 2.82307 17.5724 2.82273ZM17.3651 2.86749C17.4059 2.86278 17.4467 2.85807 17.4873 2.85336C17.4466 2.85807 17.4058 2.86278 17.3651 2.86749ZM17.3029 2.8399C17.3275 2.83821 17.3519 2.83653 17.3757 2.83518C17.3517 2.83687 17.3275 2.83821 17.3029 2.8399ZM17.4631 2.29573C17.4581 2.29573 17.4532 2.2964 17.4483 2.29674C17.4532 2.29674 17.4581 2.29606 17.4631 2.29573ZM17.4354 2.29741C17.4386 2.29741 17.4418 2.29707 17.4451 2.29674C17.439 2.29707 17.4325 2.29741 17.4267 2.29775C17.4296 2.29775 17.4325 2.29741 17.4356 2.29707L17.4354 2.29741ZM17.2192 2.84562C17.2375 2.84427 17.2557 2.84326 17.2737 2.84191C17.2553 2.84326 17.2371 2.84427 17.2184 2.84562C17.2186 2.84562 17.2189 2.84562 17.2192 2.84562ZM17.2361 2.95028C17.216 2.95162 17.1956 2.95263 17.1753 2.95398C17.1957 2.95263 17.216 2.95162 17.2361 2.95028ZM17.2112 1.84242C17.2112 1.84242 17.2126 1.84242 17.2131 1.84242C17.1857 1.84511 17.1598 1.84747 17.1365 1.85487C17.1595 1.8478 17.1841 1.84511 17.2112 1.84276V1.84242ZM17.1691 2.95432C17.1507 2.95533 17.1323 2.95667 17.1139 2.95802C17.1324 2.95667 17.1508 2.95566 17.1691 2.95432ZM17.0637 1.87069C17.0637 1.87069 17.0644 1.87069 17.0648 1.87069C16.5407 1.90939 16.2462 1.9178 15.9917 1.92319C16.2465 1.9178 16.5393 1.90939 17.0638 1.87069H17.0637ZM16.986 2.96677H16.9845C16.9845 2.96677 16.9854 2.96677 16.986 2.96677ZM16.8733 2.35563C16.8535 2.35697 16.8345 2.35832 16.8151 2.35933C16.8342 2.35798 16.8535 2.35697 16.8733 2.35563ZM16.6737 2.98864C16.6777 2.98864 16.6814 2.98864 16.6856 2.98864C16.6827 2.98864 16.6799 2.98864 16.6773 2.98864C16.6774 2.98864 16.6777 2.98864 16.6778 2.98864C16.6763 2.98864 16.6752 2.98864 16.6738 2.98864H16.6737ZM16.6638 2.98864H16.664C16.6626 2.98864 16.661 2.98864 16.6597 2.98864C16.6609 2.98864 16.6624 2.98864 16.6638 2.98864ZM15.9988 2.99907C15.99 2.99941 15.9811 3.00008 15.9723 3.00042C15.9749 3.00042 15.9774 3.00042 15.9799 3.00008C15.9757 3.00008 15.9716 3.00042 15.9673 3.00076C15.9686 3.00076 15.97 3.00076 15.9713 3.00076C15.9557 3.00177 15.9403 3.00244 15.9248 3.00311C15.9268 3.00311 15.9289 3.00311 15.931 3.00311C15.9214 3.00379 15.9117 3.00412 15.9024 3.00446C15.9374 3.00278 15.9725 3.00076 16.0077 2.99874C16.006 2.99874 16.004 2.99874 16.0023 2.99874C16.0062 2.99874 16.0102 2.9984 16.0142 2.99806C16.006 2.9984 15.9978 2.99907 15.9897 2.99941C15.9929 2.99941 15.9959 2.99907 15.9991 2.99874L15.9988 2.99907ZM15.8554 3.00648C15.8508 3.00648 15.846 3.00681 15.8414 3.00715C15.846 3.00715 15.8506 3.00681 15.8554 3.00648ZM15.8346 2.9311C15.7786 2.93379 15.7198 2.93614 15.6621 2.93884C15.7194 2.93614 15.7823 2.93345 15.8361 2.9311C15.8355 2.9311 15.8351 2.9311 15.8346 2.9311ZM15.817 3.00816C15.8153 3.00816 15.8137 3.00816 15.812 3.00816C15.8136 3.00816 15.8153 3.00816 15.817 3.00816ZM15.7872 2.91427C15.7872 2.91427 15.7859 2.91292 15.7851 2.91225C15.786 2.91292 15.7868 2.9136 15.7872 2.91427ZM15.7748 2.9072C15.7728 2.90653 15.7704 2.90586 15.7683 2.90518C15.7707 2.90586 15.7729 2.90653 15.7748 2.9072ZM15.579 2.94254C15.579 2.94254 15.5796 2.94254 15.5798 2.94254C15.5797 2.94254 15.5794 2.94254 15.5793 2.94254C15.5805 2.94254 15.5817 2.94254 15.5829 2.94254C15.5815 2.94254 15.5804 2.94254 15.579 2.94254ZM15.5778 3.01725C15.5731 3.01725 15.5683 3.01725 15.5637 3.01758C15.5684 3.01758 15.5731 3.01758 15.5778 3.01725ZM15.5687 2.40173C15.5745 2.40173 15.5802 2.40173 15.5859 2.40173C15.5801 2.40173 15.5745 2.40173 15.5687 2.40173ZM15.6349 3.01523C15.6221 3.01556 15.6094 3.01624 15.5965 3.01657C15.6092 3.01624 15.6219 3.0159 15.6349 3.01523ZM15.473 2.40375C15.5026 2.40308 15.5316 2.40241 15.5597 2.40207C15.5316 2.40274 15.5028 2.40308 15.473 2.40375ZM15.2951 2.81701C15.3008 2.81634 15.3064 2.81567 15.3124 2.81499C15.3119 2.81499 15.3115 2.81499 15.3109 2.81499C15.3295 2.81365 15.3483 2.81331 15.367 2.8123C15.3387 2.81432 15.3024 2.81297 15.2756 2.82071C15.2795 2.81937 15.2865 2.81768 15.2967 2.81667C15.2963 2.81667 15.2958 2.81667 15.2952 2.81667L15.2951 2.81701ZM15.3411 2.84158C15.3411 2.84158 15.3408 2.84158 15.3407 2.84158C15.3408 2.84158 15.3409 2.84158 15.3411 2.84158ZM15.4255 2.80961C15.4267 2.80961 15.4281 2.80961 15.4293 2.80961C15.4279 2.80961 15.4266 2.80961 15.4253 2.80961C15.4253 2.80961 15.4254 2.80961 15.4255 2.80961ZM15.3262 2.40745C15.3575 2.40644 15.3874 2.40577 15.4167 2.4051C15.3875 2.40577 15.3575 2.40644 15.3262 2.40745ZM15.2862 2.95533C15.258 2.95634 15.2299 2.95768 15.2025 2.95869C15.2301 2.95768 15.258 2.95634 15.2862 2.95533ZM15.2387 3.02802C15.2511 3.02768 15.2634 3.02701 15.2758 3.02667C15.2374 3.02802 15.1972 3.0297 15.1541 3.03172C15.1835 3.03037 15.2117 3.02903 15.2387 3.02802ZM15.6402 3.01523C15.6437 3.01523 15.6471 3.01523 15.6507 3.01489C15.6472 3.01489 15.6438 3.01489 15.6402 3.01523ZM15.6887 3.01388C15.6911 3.01388 15.6934 3.01388 15.696 3.01388C15.6936 3.01388 15.6911 3.01388 15.6887 3.01388ZM15.6997 3.01355C15.7019 3.01355 15.7043 3.01355 15.7067 3.01355C15.7043 3.01355 15.7021 3.01355 15.6997 3.01355ZM15.7549 3.01119C15.7562 3.01119 15.7577 3.01119 15.7591 3.01119C15.7577 3.01119 15.7564 3.01119 15.7549 3.01119ZM15.7922 2.99773C15.7922 2.99773 15.7926 2.99773 15.7929 2.99773C15.7928 2.99773 15.7925 2.99773 15.7922 2.99773ZM15.8268 2.39769C15.8268 2.39769 15.8279 2.39769 15.8284 2.39769C15.8279 2.39769 15.8273 2.39769 15.8268 2.39769ZM15.8941 3.0048C15.8861 3.00513 15.8785 3.00547 15.8706 3.00581C15.8783 3.00547 15.8861 3.00513 15.8941 3.0048ZM16.1085 2.91393C16.1099 2.91393 16.1113 2.91393 16.1127 2.9136C16.1113 2.9136 16.1099 2.9136 16.1085 2.91393ZM16.0933 2.79985C16.0933 2.79985 16.0934 2.79985 16.0935 2.79985C16.0935 2.79985 16.0934 2.79985 16.0933 2.79985ZM16.0938 2.79985C16.0787 2.80052 16.064 2.80119 16.049 2.80187C16.0641 2.80119 16.0788 2.80052 16.0941 2.79985C16.0941 2.79985 16.0939 2.79985 16.0938 2.79985ZM16.0658 2.9173C16.0658 2.9173 16.0652 2.9173 16.0649 2.9173C16.0652 2.9173 16.0656 2.9173 16.0658 2.9173ZM16.0146 2.921C16.0146 2.921 16.0159 2.921 16.0166 2.921C16.0159 2.921 16.0153 2.921 16.0146 2.921ZM15.9147 2.92739C15.9132 2.92739 15.9114 2.92739 15.9098 2.92739C15.9137 2.92739 15.9175 2.92706 15.9214 2.92672C15.9191 2.92672 15.917 2.92672 15.9147 2.92706V2.92739ZM15.9142 2.98797C15.9142 2.98797 15.9137 2.98797 15.9134 2.98797C16.1151 2.98258 16.3171 2.98191 16.5188 2.97383C16.3173 2.98191 16.1156 2.98292 15.9141 2.98797H15.9142ZM15.929 2.92638C15.9308 2.92638 15.9325 2.92638 15.9341 2.92638C15.9324 2.92638 15.9306 2.92638 15.929 2.92638ZM16.3634 2.8897C16.3634 2.8897 16.3637 2.8897 16.3638 2.8897H16.3635C16.3716 2.88903 16.3797 2.88802 16.3879 2.88735C16.379 2.88836 16.3703 2.88903 16.3617 2.89004C16.3622 2.89004 16.3629 2.89004 16.3634 2.89004V2.8897ZM16.3883 2.88701C16.3984 2.886 16.409 2.88499 16.4193 2.88398C16.4087 2.88499 16.3985 2.886 16.3883 2.88701ZM16.3663 2.38423C16.4365 2.3812 16.5124 2.37784 16.596 2.37346C16.5124 2.37784 16.4365 2.38154 16.3663 2.38423ZM15.8834 1.92588C15.9012 1.92588 15.919 1.92521 15.9369 1.92521C15.6858 1.92891 15.4916 1.93093 15.1398 1.94237C15.4633 1.93194 15.6674 1.92924 15.8834 1.92622V1.92588ZM15.086 3.02768C15.078 3.02802 15.0701 3.02869 15.0624 3.02903C15.0702 3.02869 15.0779 3.02802 15.086 3.02768ZM14.9734 2.60231C14.9724 2.60231 14.9713 2.60231 14.9704 2.60231C14.9714 2.60231 14.9725 2.60231 14.9734 2.60231ZM14.9702 2.60231C14.9651 2.60264 14.9598 2.60298 14.9545 2.60365C14.9598 2.60331 14.9651 2.60298 14.9702 2.60231ZM13.4121 3.00614C13.417 3.00614 13.4219 3.00547 13.4268 3.00547C13.4217 3.00547 13.4168 3.00614 13.4121 3.00614ZM13.398 3.00681C13.398 3.00681 13.3976 3.00681 13.3974 3.00681C13.3976 3.00681 13.3978 3.00681 13.398 3.00681ZM14.2312 2.45558C14.2404 2.45558 14.25 2.4549 14.2592 2.45457C14.2433 2.45524 14.2272 2.45558 14.211 2.45625C14.2178 2.45625 14.2244 2.45591 14.2312 2.45558ZM14.1118 2.45928C14.0953 2.45995 14.0787 2.46029 14.0622 2.46063C14.0789 2.46029 14.0953 2.45962 14.1118 2.45928ZM14.0508 2.46096C14.0407 2.46096 14.0307 2.46164 14.0205 2.46197C14.0305 2.46197 14.0407 2.4613 14.0508 2.46096ZM13.6976 2.47039C13.6976 2.47039 13.6979 2.47039 13.698 2.47039C13.6964 2.47039 13.6947 2.47039 13.6931 2.47039C13.6946 2.47039 13.6961 2.47039 13.6977 2.47039H13.6976ZM13.4383 2.47611C13.4493 2.47611 13.4603 2.47577 13.4713 2.47543C13.4559 2.47577 13.4407 2.47611 13.4253 2.47644C13.4297 2.47644 13.4341 2.47644 13.4383 2.47644V2.47611ZM13.3624 2.62317C13.3743 2.6225 13.3863 2.62216 13.3983 2.62182C13.3863 2.62216 13.3742 2.62283 13.3624 2.62317ZM13.33 2.62452C13.3357 2.62452 13.3415 2.62384 13.3473 2.62384C13.3367 2.62418 13.3263 2.62485 13.3159 2.62519C13.3206 2.62519 13.3252 2.62485 13.33 2.62452ZM13.2987 2.62586C13.3011 2.62586 13.3036 2.62586 13.306 2.62586C13.292 2.62654 13.2781 2.62721 13.2646 2.62788C13.2757 2.62721 13.2872 2.62687 13.2987 2.6262V2.62586ZM13.1169 2.63596C13.1169 2.63596 13.1164 2.63596 13.1161 2.63596C13.1164 2.63596 13.1166 2.63596 13.1169 2.63596ZM13.0829 2.63831C13.0829 2.63831 13.0829 2.63831 13.0827 2.63831H13.0829ZM13.0797 2.63831C13.0774 2.63831 13.0753 2.63865 13.0732 2.63865C13.0752 2.63865 13.0774 2.63865 13.0797 2.63831ZM12.6895 2.64774C12.6061 2.65043 12.5178 2.65312 12.4392 2.65581C12.5178 2.65346 12.6019 2.65077 12.6895 2.64774ZM12.3089 3.10172C12.3089 3.10172 12.3089 3.10239 12.3085 3.10273C12.3088 3.10239 12.3089 3.10205 12.3089 3.10172ZM12.2997 3.14378C12.3477 3.14008 12.3962 3.13672 12.4435 3.13402C12.3963 3.13672 12.3479 3.14008 12.2998 3.14378H12.2997ZM12.7462 3.6156C12.6864 3.61694 12.6252 3.61863 12.5636 3.61997C12.6374 3.61795 12.7093 3.61627 12.7816 3.61459C12.7698 3.61459 12.758 3.61526 12.7462 3.6156ZM12.8416 3.65093C12.8416 3.65093 12.8408 3.65093 12.8402 3.65093H12.843C12.843 3.65093 12.8421 3.65093 12.8416 3.65093ZM13.3052 3.59843C13.213 3.67012 13.1121 3.62738 13.0083 3.64589C13.1123 3.62771 13.2132 3.66944 13.3057 3.59843C13.3056 3.59843 13.3053 3.59843 13.3052 3.59843ZM13.2121 3.05427C13.4027 3.04282 13.5931 3.03138 13.7837 3.0196C13.5932 3.03138 13.4027 3.04282 13.2121 3.05427ZM13.5252 3.04753C13.5682 3.04282 13.6114 3.03811 13.6544 3.03374C13.6114 3.03845 13.5682 3.04316 13.5252 3.04753ZM13.4417 3.12023C13.448 3.11989 13.4541 3.11955 13.4601 3.11888C13.4541 3.11922 13.448 3.11955 13.4417 3.12023ZM13.4329 3.1209C13.4252 3.12123 13.4175 3.12191 13.4096 3.12224C13.4098 3.12224 13.4101 3.12224 13.4104 3.12224C13.4186 3.12191 13.4265 3.12123 13.4345 3.1209C13.4339 3.1209 13.4334 3.1209 13.4329 3.1209ZM13.4351 3.1209C13.4366 3.1209 13.4382 3.1209 13.4396 3.1209C13.4376 3.1209 13.4355 3.1209 13.4335 3.12123C13.4341 3.12123 13.4346 3.12123 13.4351 3.12123V3.1209ZM13.4685 3.11854C13.4742 3.11821 13.4797 3.11787 13.4853 3.1172C13.4797 3.11753 13.4742 3.11787 13.4685 3.11854ZM13.5035 3.10441C13.5035 3.10441 13.5035 3.10441 13.5036 3.10441C13.5027 3.10441 13.5017 3.10441 13.5009 3.10441C13.5017 3.10441 13.5027 3.10441 13.5035 3.10441ZM13.5019 3.11518C13.5004 3.11518 13.4987 3.11585 13.4972 3.11585C13.4988 3.11585 13.5004 3.11518 13.5019 3.11518ZM13.5039 3.10441C13.5039 3.10441 13.5042 3.10441 13.5045 3.10441C13.5044 3.10441 13.5041 3.10441 13.5039 3.10441ZM13.7296 3.07008C13.6555 3.07176 13.5813 3.07378 13.5072 3.07547C13.6278 3.07244 13.7486 3.06941 13.8692 3.06638C13.8227 3.06773 13.7761 3.06874 13.7296 3.06975V3.07008ZM13.8792 3.07547C13.8792 3.07547 13.8794 3.07547 13.8797 3.07547C13.8796 3.07547 13.8794 3.07547 13.8792 3.07547ZM13.8807 3.07547C13.8818 3.07547 13.8829 3.07547 13.8838 3.07547C13.8827 3.07547 13.8817 3.07547 13.8807 3.07547ZM14.3186 3.11686H14.3159C14.3184 3.11686 14.3208 3.11686 14.3233 3.11686C14.3217 3.11686 14.3201 3.11686 14.3187 3.11686H14.3186ZM14.599 2.99941C14.599 2.99941 14.5992 2.99941 14.5993 2.99941C14.5993 2.99941 14.5992 2.99941 14.599 2.99941ZM14.6816 3.04484C14.6816 3.04484 14.6816 3.04484 14.6814 3.04484H14.6816ZM14.8568 3.01927C14.8579 3.01927 14.8591 3.01893 14.8605 3.01859C14.8591 3.01859 14.8579 3.01893 14.8568 3.01927ZM17.692 3.41469C16.9449 3.46046 16.4006 3.48704 15.7982 3.51565C16.3988 3.49209 16.9505 3.4507 17.6921 3.4194C17.6921 3.41772 17.6921 3.41604 17.6921 3.41435L17.692 3.41469ZM18.8581 3.36657C18.568 3.38541 18.1997 3.40459 17.6921 3.42411C18.2682 3.40156 18.5922 3.38474 18.9679 3.3595C18.9326 3.36185 18.896 3.36455 18.8581 3.3669V3.36657ZM19.0884 2.87893C19.1009 2.87792 19.1132 2.87691 19.1252 2.87624C19.1131 2.87725 19.1009 2.87826 19.0884 2.87893ZM18.6962 2.8786C18.8669 2.87052 19.0376 2.86211 19.2081 2.85369C19.0374 2.86211 18.8667 2.87018 18.6962 2.8786ZM19.2383 2.20385C19.2415 2.20352 19.2448 2.20318 19.248 2.20251C19.2448 2.20284 19.2415 2.20318 19.2383 2.20385ZM19.2732 2.84158C19.2703 2.84158 19.2672 2.84191 19.2644 2.84225C19.2679 2.84225 19.2716 2.84158 19.2752 2.84124C19.2745 2.84124 19.2738 2.84124 19.2732 2.84124V2.84158ZM19.3039 2.1601C19.3002 2.16044 19.2963 2.16078 19.2926 2.16111C19.3113 2.15943 19.3301 2.15775 19.3489 2.15607C19.334 2.15741 19.3189 2.15876 19.3039 2.1601ZM19.346 2.1564C19.3917 2.15203 19.4372 2.14765 19.4829 2.14361C19.4372 2.14799 19.3917 2.15236 19.346 2.1564ZM19.4947 2.14227C19.4898 2.1426 19.4849 2.14328 19.48 2.14361C19.4998 2.1416 19.5195 2.13991 19.5392 2.13789C19.5244 2.13958 19.5096 2.14092 19.4947 2.14227ZM19.7083 2.19174C19.7319 2.18972 19.7547 2.1877 19.7768 2.18568C19.7547 2.1877 19.732 2.18972 19.7083 2.19174ZM19.8132 2.18232C19.8277 2.18097 19.8416 2.17962 19.8553 2.17828C19.8416 2.17962 19.8275 2.18097 19.8132 2.18232ZM20.0397 2.77427C20.023 2.77528 20.007 2.77595 19.9909 2.77696C20.0079 2.77663 20.0254 2.77394 20.0428 2.77461C20.0419 2.77461 20.041 2.77461 20.0398 2.77427H20.0397ZM19.9978 2.16414C20.0011 2.16381 20.0043 2.16347 20.0075 2.16313C20.0043 2.16347 20.001 2.16381 19.9978 2.16414ZM20.032 2.16044C20.0365 2.1601 20.041 2.15943 20.0455 2.15909C20.041 2.15943 20.0366 2.1601 20.032 2.16044ZM20.1009 2.15304C20.112 2.15169 20.1231 2.15068 20.1341 2.14934C20.1231 2.15068 20.1121 2.15169 20.1009 2.15304ZM20.0668 2.15674C20.0717 2.15607 20.0768 2.15573 20.0817 2.15506C20.0768 2.15573 20.0719 2.15607 20.0668 2.15674ZM19.7189 1.64824C19.7189 1.64824 19.7179 1.64824 19.7173 1.64824C19.9282 1.63478 20.1391 1.62132 20.35 1.60752C20.1397 1.62132 19.9292 1.63478 19.7189 1.64791V1.64824ZM21.6529 1.52036H21.6536C21.6536 1.52036 21.6532 1.52036 21.6529 1.52036ZM21.4896 2.08977C21.4896 2.08977 21.4899 2.08943 21.4896 2.0891C21.4899 2.0891 21.4898 2.08943 21.4896 2.08977ZM21.4893 2.08977C21.4893 2.08977 21.4887 2.08977 21.4882 2.09011C21.4886 2.09011 21.489 2.09011 21.4893 2.08977ZM21.4841 2.09112C21.4826 2.09112 21.4813 2.09145 21.4796 2.09179C21.4814 2.09179 21.4829 2.09145 21.4841 2.09112ZM21.4119 2.08438C21.4094 2.08438 21.4078 2.08405 21.4071 2.08371C21.4077 2.08371 21.4099 2.08438 21.4119 2.08438ZM21.3392 2.04703C21.3392 2.04703 21.3387 2.04703 21.3383 2.04737C21.3385 2.04737 21.3389 2.04737 21.3392 2.04703ZM21.3379 2.0477C21.3379 2.0477 21.3371 2.0477 21.3367 2.04804C21.3371 2.04804 21.3375 2.04804 21.3379 2.0477ZM21.336 2.04838C21.336 2.04838 21.335 2.04871 21.3344 2.04871C21.335 2.04871 21.3355 2.04871 21.336 2.04838ZM20.9369 2.01573C20.9447 2.0154 20.9524 2.01506 20.9602 2.01439C20.946 2.01506 20.9319 2.01607 20.9175 2.01674C20.924 2.01641 20.9305 2.01607 20.9369 2.01573ZM20.8348 2.02179C20.8531 2.02078 20.8712 2.01977 20.8893 2.01843C20.8712 2.01943 20.8531 2.02044 20.8345 2.02179C20.8345 2.02179 20.8346 2.02179 20.8348 2.02179ZM20.6968 1.61694C20.7171 1.61526 20.738 1.61324 20.7596 1.61156C20.7288 1.61291 20.7012 1.62367 20.672 1.60382C20.6806 1.60718 20.689 1.61122 20.6968 1.61694ZM20.6299 1.59675C20.6322 1.59675 20.6344 1.59675 20.6364 1.59675C20.6308 1.59675 20.6254 1.59675 20.6193 1.59642C20.623 1.59642 20.6266 1.59642 20.6298 1.59642L20.6299 1.59675ZM20.6138 1.59675C20.6151 1.59675 20.6164 1.59675 20.6176 1.59675C20.6147 1.59675 20.6116 1.59675 20.6085 1.59675C20.6102 1.59675 20.612 1.59675 20.6136 1.59675H20.6138ZM20.7966 2.09684C20.7966 2.09684 20.7969 2.09684 20.797 2.09684C20.7969 2.09684 20.7968 2.09684 20.7966 2.09684ZM20.8711 2.08943C20.878 2.08876 20.8844 2.08842 20.8912 2.08809C20.8844 2.08842 20.878 2.0891 20.8711 2.08943ZM21.2339 2.06184C21.2392 2.0615 21.2441 2.06083 21.249 2.06049C21.2443 2.06083 21.2392 2.0615 21.2339 2.06184ZM21.2555 2.05982C21.2574 2.05982 21.2592 2.05948 21.2609 2.05915C21.2587 2.05915 21.2567 2.05948 21.2543 2.05982C21.2547 2.05982 21.255 2.05982 21.2554 2.05982H21.2555ZM21.3661 2.70124C21.3661 2.70124 21.366 2.70124 21.3658 2.70124C21.3665 2.70124 21.3671 2.70124 21.3679 2.70124C21.3674 2.70124 21.3668 2.70124 21.3661 2.70124ZM21.3857 3.17272C21.3837 3.17272 21.3817 3.17272 21.3799 3.17272C21.3824 3.17272 21.3849 3.17272 21.3875 3.17272C21.387 3.17272 21.3864 3.17272 21.3858 3.17272H21.3857ZM21.3021 2.10525C21.3494 2.10222 21.3871 2.09987 21.4197 2.09751C21.3915 2.09953 21.3531 2.10188 21.3021 2.10525ZM21.4331 2.03155C21.4323 2.03155 21.4316 2.03155 21.431 2.03155C21.4323 2.03155 21.4338 2.03155 21.4351 2.03155C21.4344 2.03155 21.4338 2.03155 21.4331 2.03155ZM21.4877 2.09078C21.4877 2.09078 21.4881 2.09078 21.4882 2.09078C21.4879 2.09078 21.4878 2.09078 21.4875 2.09078C21.4875 2.09078 21.4875 2.09078 21.4877 2.09078ZM21.6556 3.16095C21.6335 3.16229 21.6117 3.16364 21.5906 3.16465C21.6233 3.16128 21.6561 3.15893 21.6894 3.17407C21.6776 3.17171 21.6663 3.16768 21.6556 3.16095ZM25.1978 2.43034C25.2052 2.42899 25.2125 2.42765 25.2199 2.42664C25.2116 2.42798 25.2033 2.42967 25.1949 2.43101C25.196 2.43101 25.1969 2.43067 25.198 2.43034H25.1978ZM25.1948 2.43101C25.1948 2.43101 25.1936 2.43101 25.1929 2.43101C25.1936 2.43101 25.1941 2.43101 25.1948 2.43101ZM25.0661 1.93934C25.0766 1.939 25.0872 1.93833 25.0982 1.93799C25.0815 1.93867 25.0654 1.93934 25.0491 1.94001C25.0547 1.94001 25.0602 1.93968 25.0661 1.93934ZM25.136 2.33274C25.0902 2.33476 25.0443 2.33712 24.9984 2.33914C25.0442 2.33712 25.0903 2.33476 25.136 2.33274ZM24.7733 2.0689C24.7971 2.06689 24.8211 2.06554 24.845 2.06386C24.8205 2.06554 24.796 2.06722 24.7715 2.06924C24.7721 2.06924 24.7726 2.06924 24.7733 2.06924V2.0689ZM24.823 2.50135C24.822 2.50135 24.8208 2.50135 24.8197 2.50135C24.8257 2.50101 24.8315 2.50034 24.8373 2.5C24.8326 2.50034 24.8278 2.50067 24.823 2.50101V2.50135ZM24.7909 2.34856C24.744 2.35092 24.6972 2.35294 24.6502 2.35529C24.6971 2.35294 24.744 2.35092 24.7909 2.34856ZM24.6261 2.52861C24.6015 2.53029 24.5767 2.53197 24.5514 2.53365C24.5767 2.53197 24.6016 2.53029 24.6261 2.52861ZM24.6799 2.3351C24.6431 2.33577 24.6068 2.33678 24.5717 2.33746C24.6074 2.33678 24.6429 2.33577 24.6799 2.3351ZM24.4459 1.49175C24.4914 1.48805 24.5369 1.48435 24.5824 1.48065C24.4844 1.48906 24.3866 1.49579 24.2886 1.50219C24.341 1.49849 24.3934 1.49512 24.4459 1.49142V1.49175ZM23.9747 2.55957C23.9728 2.55957 23.9709 2.55957 23.969 2.5599C24.1557 2.54981 24.3423 2.53534 24.529 2.5276C24.3443 2.53534 24.1594 2.54981 23.9747 2.55957ZM23.9693 2.55957C23.9693 2.55957 23.9693 2.55957 23.9691 2.55957C23.9691 2.55957 23.9691 2.55957 23.9693 2.55957ZM23.8832 2.49563H23.8833C23.8833 2.49563 23.8835 2.49563 23.8832 2.49563ZM23.8832 2.4963C23.8832 2.4963 23.8833 2.4963 23.8835 2.4963C23.8835 2.4963 23.8833 2.4963 23.8832 2.4963ZM23.7709 2.39736C23.755 2.39803 23.7391 2.39904 23.7232 2.39971C23.7788 2.39702 23.8345 2.39433 23.8901 2.39164C23.8503 2.39366 23.8106 2.39568 23.7709 2.39736ZM23.4287 2.3701C23.4226 2.37077 23.4164 2.37111 23.4103 2.37178C23.565 2.36202 23.7196 2.35361 23.8743 2.34654C23.7619 2.35092 23.6493 2.35866 23.5369 2.36438C23.6457 2.35832 23.7546 2.3526 23.8636 2.34654C23.7186 2.35428 23.5737 2.36236 23.4288 2.3701H23.4287ZM23.5081 2.58884C23.5081 2.58884 23.5084 2.58884 23.5085 2.58884C23.5084 2.58884 23.5083 2.58884 23.5081 2.58884ZM23.5207 2.57134C23.5178 2.57134 23.515 2.57134 23.5119 2.57134C23.5153 2.57134 23.5179 2.57134 23.5207 2.57134ZM23.3949 2.59322C23.4066 2.59255 23.418 2.59221 23.4288 2.59154C23.418 2.59187 23.4066 2.59255 23.3949 2.59322ZM23.3961 2.60634C23.3953 2.60634 23.394 2.60601 23.3927 2.60601C23.3941 2.60601 23.3953 2.60601 23.3961 2.60634ZM23.6457 2.16549C23.6457 2.16549 23.6459 2.16549 23.646 2.16549C23.6459 2.16549 23.6457 2.16549 23.6455 2.16549C23.6455 2.16549 23.6456 2.16549 23.6457 2.16549ZM24.0919 2.4825C24.0209 2.48688 23.9526 2.49125 23.888 2.49529C23.9524 2.49125 24.0209 2.48688 24.0919 2.4825ZM24.3565 2.34149C24.3803 2.34116 24.405 2.34048 24.4301 2.33981C24.405 2.34048 24.3809 2.34082 24.3565 2.34149ZM24.1904 2.12342C24.2337 2.11938 24.2768 2.11535 24.3201 2.11131C24.1825 2.12443 24.0451 2.13722 23.9081 2.15001C24.002 2.14126 24.0961 2.13217 24.1903 2.12342H24.1904ZM23.951 2.00732C23.962 2.00698 23.9731 2.00631 23.9842 2.00597C23.9731 2.00665 23.962 2.00698 23.951 2.00732ZM24.0041 2.00496C24.0161 2.00429 24.0285 2.00362 24.0408 2.00294C24.0286 2.00362 24.0163 2.00429 24.0041 2.00496ZM24.0581 2.00227C24.0752 2.00126 24.0926 2.00025 24.1102 1.99924C24.0928 2.00025 24.0753 2.00126 24.0581 2.00227ZM24.1137 1.99924C24.1137 1.99924 24.1135 1.99924 24.1134 1.99924C24.1135 1.99924 24.1136 1.99924 24.1137 1.99924ZM23.8637 2.15337C23.9176 2.14732 23.9714 2.14126 24.0253 2.1352C23.9705 2.14126 23.9155 2.14765 23.8607 2.15337C23.8617 2.15337 23.8627 2.15337 23.8637 2.15337ZM23.7131 1.53079C23.6912 1.53147 23.6702 1.5318 23.6504 1.53214C23.6702 1.5318 23.6913 1.53113 23.7131 1.53079ZM23.5003 1.57959C23.5015 1.57959 23.5027 1.57959 23.5039 1.57925C23.4974 1.57993 23.4897 1.58127 23.485 1.58228C23.4889 1.58127 23.4941 1.5806 23.5003 1.57959ZM23.4648 1.53248C23.4487 1.5318 23.441 1.53147 23.4382 1.53113C23.4411 1.53113 23.4487 1.53214 23.4648 1.53248ZM23.4366 1.53079C23.4422 1.53147 23.4479 1.53315 23.4536 1.53584C23.4479 1.53348 23.4422 1.5318 23.4366 1.53079ZM23.4184 1.52709C23.4192 1.54762 23.4201 1.56815 23.4209 1.58901C23.4201 1.56848 23.4192 1.54796 23.4184 1.52709ZM23.4799 2.01809C23.4799 2.01809 23.4806 2.01809 23.481 2.01809C23.4341 2.01842 23.3895 2.01876 23.3409 2.01943C23.3898 2.0191 23.4358 2.01842 23.4799 2.01809ZM23.3825 2.60567C23.3817 2.60567 23.3809 2.60567 23.38 2.60567C23.3817 2.60567 23.3834 2.60567 23.385 2.60567C23.3835 2.60567 23.3821 2.60567 23.3806 2.60567C23.3813 2.60567 23.3818 2.60567 23.3823 2.60567H23.3825ZM23.3254 2.63697C23.3088 2.63798 23.2918 2.63865 23.2749 2.63966C23.2919 2.63865 23.3088 2.63798 23.3254 2.63697ZM23.1763 2.02044C23.1779 2.02044 23.1795 2.02044 23.1809 2.02044C23.1752 2.02044 23.1697 2.02044 23.164 2.02044C23.1681 2.02044 23.1722 2.02044 23.1763 2.02044ZM23.0506 2.00799C23.0525 2.00799 23.0544 2.00799 23.0563 2.00799C23.0502 2.00799 23.0442 2.00799 23.0379 2.00833C23.0423 2.00833 23.0464 2.00833 23.0506 2.00799ZM22.9974 2.00934C22.9833 2.00934 22.9686 2.01001 22.9527 2.01035C22.9685 2.01035 22.9833 2.00968 22.9974 2.00934ZM22.9726 2.62654C22.9743 2.62654 22.9762 2.6262 22.9779 2.62586C22.9762 2.62586 22.9743 2.6262 22.9726 2.62654ZM22.9868 2.62485C22.9868 2.62485 22.9869 2.62485 22.987 2.62485C22.987 2.62485 22.9869 2.62485 22.9868 2.62485ZM22.86 2.01102C22.8746 2.01102 22.8886 2.01102 22.9017 2.01102C22.8835 2.01102 22.8637 2.01136 22.8424 2.01136C22.8485 2.01136 22.8542 2.01136 22.86 2.01136V2.01102ZM22.9364 2.41486C22.951 2.41351 22.9657 2.41217 22.9804 2.41048C22.8537 2.42293 22.7326 2.43438 22.6258 2.44481C22.7202 2.43572 22.8257 2.42563 22.9364 2.41486ZM22.7702 2.45726C22.7794 2.45659 22.7889 2.45625 22.7982 2.45558C22.7847 2.45625 22.771 2.45692 22.7577 2.45793C22.7622 2.45793 22.7667 2.45726 22.7712 2.45726C22.7709 2.45726 22.7705 2.45726 22.7702 2.45726ZM22.7868 2.44716C22.7868 2.44716 22.7868 2.44716 22.7871 2.44716C22.7871 2.44716 22.7869 2.44716 22.7868 2.44716ZM22.8392 2.45356C22.8357 2.45356 22.832 2.4539 22.8284 2.45423C22.832 2.45423 22.8357 2.4539 22.8392 2.45356ZM22.7566 2.45827C22.7485 2.45861 22.7404 2.45928 22.7324 2.45962C22.7416 2.45894 22.7509 2.45861 22.7602 2.45793C22.759 2.45793 22.7578 2.45793 22.7565 2.45793L22.7566 2.45827ZM22.7683 2.66625C22.8251 2.66355 22.8802 2.66052 22.9337 2.65783C22.8784 2.66052 22.8247 2.66322 22.7683 2.66625ZM22.8516 2.45322C22.8678 2.45255 22.884 2.45154 22.9007 2.45087C22.884 2.45154 22.8677 2.45255 22.8516 2.45322ZM22.9301 2.63394C22.9301 2.63394 22.9302 2.63394 22.9304 2.63394C22.9304 2.63394 22.9302 2.63394 22.9301 2.63394ZM22.9308 2.63394C22.9308 2.63394 22.9319 2.6336 22.9327 2.63327C22.9321 2.63327 22.9314 2.6336 22.9308 2.63394ZM22.9334 2.63327C22.9345 2.63327 22.9358 2.63259 22.9371 2.63226C22.9359 2.63226 22.9346 2.63293 22.9334 2.63327ZM22.3376 2.04232C22.3171 2.04232 22.2965 2.04232 22.276 2.04198C22.2965 2.04198 22.3171 2.04198 22.3376 2.04232ZM22.2731 1.55401C22.2747 1.55401 22.2761 1.55368 22.2776 1.55334C22.2522 1.55704 22.2252 1.55839 22.1548 1.56108C22.2207 1.55872 22.2536 1.55637 22.2731 1.55368V1.55401ZM21.9382 1.52675C21.9637 1.52978 21.9735 1.52911 22 1.53786C21.9618 1.52574 21.9369 1.52709 21.8977 1.52373C21.9129 1.52473 21.9264 1.52541 21.9382 1.52675ZM21.8292 1.99285C21.8292 1.99285 21.8287 1.99285 21.8284 1.99285C21.8333 1.99285 21.8382 1.99285 21.843 1.99319C21.8369 1.99319 21.8305 1.99319 21.8239 1.99285C21.8256 1.99285 21.8273 1.99285 21.8292 1.99285ZM21.7793 2.0753C21.7793 2.0753 21.7794 2.0753 21.7795 2.0753C21.7795 2.0753 21.7794 2.0753 21.7793 2.0753ZM21.7842 2.04299C21.8223 2.04299 21.8606 2.04299 21.8987 2.04299C21.8605 2.04299 21.8222 2.04299 21.7838 2.04299C21.7838 2.04299 21.7839 2.04299 21.784 2.04299H21.7842ZM21.8275 3.17945H21.8287C21.8287 3.17945 21.8279 3.17945 21.8275 3.17945ZM21.8959 2.71201C22.0041 2.70293 22.1122 2.69384 22.2203 2.68442C22.1122 2.6935 22.004 2.70293 21.8959 2.71201ZM22.2689 2.48654C22.2664 2.48654 22.2638 2.48654 22.2613 2.48654C22.2679 2.48654 22.2744 2.48654 22.2813 2.48654C22.2771 2.48654 22.273 2.48654 22.2689 2.48654ZM22.2903 2.6787C22.2903 2.6787 22.2906 2.6787 22.2908 2.6787C22.2907 2.6787 22.2906 2.6787 22.2903 2.6787ZM22.2859 2.4862C22.2893 2.4862 22.2924 2.4862 22.2956 2.4862C22.2923 2.4862 22.2891 2.4862 22.2859 2.4862ZM22.2943 2.4862C22.3012 2.4862 22.3082 2.48587 22.3152 2.48553C22.3081 2.48553 22.3012 2.48587 22.2943 2.4862ZM22.3208 3.16196C22.3127 3.16229 22.3045 3.16263 22.2964 3.1633C22.3054 3.16296 22.3144 3.16229 22.3234 3.16196C22.3225 3.16196 22.3217 3.16196 22.3208 3.16196ZM22.2879 2.05073C22.2877 2.05073 22.2874 2.05073 22.2873 2.05073C22.2875 2.05073 22.2878 2.05073 22.2881 2.05073C22.3119 2.05073 22.3359 2.05073 22.3597 2.0504C22.3357 2.0504 22.3119 2.0504 22.2879 2.05073ZM22.3829 3.15859C22.2773 3.1808 22.4086 3.12494 22.4637 3.1246C22.4397 3.14176 22.3842 3.09499 22.3829 3.15859ZM22.5128 2.07328C22.5205 2.07328 22.528 2.07395 22.5356 2.07429C22.528 2.07395 22.5206 2.07362 22.5128 2.07328ZM22.3379 2.04232C22.4046 2.04299 22.4715 2.044 22.5381 2.04467C22.4714 2.044 22.4046 2.04299 22.3379 2.04232ZM22.6115 2.06991C22.6097 2.06991 22.6082 2.06991 22.6064 2.06991C22.6075 2.06991 22.6085 2.06991 22.6096 2.06991C22.5941 2.07025 22.5786 2.07092 22.5633 2.07126C22.5793 2.07059 22.5954 2.07025 22.6115 2.06958V2.06991ZM22.6978 3.10979C22.653 3.11215 22.6091 3.11484 22.5655 3.11753C22.6091 3.11484 22.6529 3.11215 22.6978 3.10979ZM22.6981 3.14075C23.5634 3.09768 24.0179 3.07076 24.4436 3.02633C24.018 3.07076 23.5634 3.09768 22.6981 3.14075ZM23.9615 2.57067C24.1961 2.5562 24.4205 2.54207 24.619 2.52861C24.4205 2.54207 24.1961 2.55586 23.9615 2.57067ZM24.7919 2.50337C24.7876 2.50337 24.7832 2.50404 24.7787 2.50437C24.7849 2.50404 24.7911 2.50337 24.7972 2.50303C24.7954 2.50303 24.7936 2.50303 24.7918 2.50337H24.7919ZM24.8334 3.00177C24.8534 3.00042 24.8726 2.99941 24.891 2.9984C24.8726 2.99941 24.8535 3.00042 24.8334 3.00177ZM25.2811 2.98427C25.2771 2.98427 25.2729 2.98427 25.2687 2.98427C25.273 2.98427 25.2773 2.98427 25.2814 2.98427C25.2814 2.98427 25.2813 2.98427 25.2811 2.98427ZM25.3881 1.9104C25.3881 1.9104 25.3888 1.9104 25.3891 1.9104C25.3888 1.9104 25.3884 1.9104 25.3881 1.9104ZM25.3949 2.51582C25.3941 2.51582 25.3933 2.51582 25.3924 2.51582C25.3938 2.51582 25.3954 2.51582 25.3969 2.51582C25.3962 2.51582 25.3955 2.51582 25.3949 2.51582ZM25.5484 1.43656H25.5493C25.5481 1.43656 25.5468 1.43656 25.5456 1.43656C25.5465 1.43656 25.5474 1.43656 25.5482 1.43656H25.5484ZM25.5632 1.90771C25.5514 1.90771 25.5387 1.90804 25.5256 1.90838C25.5387 1.90838 25.5514 1.90804 25.5632 1.90771ZM25.4684 1.90872C25.4814 1.90872 25.4933 1.90804 25.5053 1.90804C25.4937 1.90804 25.4814 1.90838 25.4684 1.90872ZM25.5211 1.90838C25.5358 1.90838 25.5502 1.90804 25.5633 1.90771C25.5501 1.90771 25.5358 1.90804 25.5211 1.90838ZM37.8454 1.58901C37.8434 1.58901 37.8413 1.58901 37.8393 1.58901C37.8413 1.58901 37.8433 1.58901 37.8454 1.58901ZM37.3734 2.05881C37.4107 2.05881 37.4461 2.05881 37.3877 2.05881C37.3946 2.05881 37.4015 2.05881 37.4083 2.05881C37.3967 2.05881 37.3851 2.05881 37.3733 2.05881H37.3734ZM37.049 1.61089C37.1817 1.60584 37.3144 1.6018 37.4471 1.5981C37.3144 1.60146 37.1817 1.6055 37.049 1.61089ZM37.0173 2.06823C37.0232 2.06823 37.029 2.06789 37.0349 2.06756C37.0189 2.06823 37.0029 2.0689 36.9867 2.06958C36.9971 2.06924 37.0073 2.0689 37.0175 2.06823H37.0173ZM37.0074 2.05376C37.0074 2.05376 37.0077 2.05376 37.0078 2.05376H37.0074ZM37.0087 2.05342C37.0087 2.05342 37.009 2.05342 37.0091 2.05342C37.009 2.05342 37.0089 2.05342 37.0087 2.05342ZM37.0111 2.05309C37.0111 2.05309 37.0118 2.05309 37.0122 2.05309C37.0118 2.05309 37.0114 2.05309 37.0111 2.05309ZM37.0148 2.05275C37.0163 2.05275 37.018 2.05275 37.02 2.05241C37.018 2.05241 37.0164 2.05275 37.0148 2.05275ZM37.0255 2.05174C37.0274 2.05174 37.0297 2.05174 37.0318 2.05141C37.0295 2.05141 37.0274 2.0514 37.0255 2.05174ZM36.9824 2.07025C36.9734 2.07059 36.9644 2.07092 36.9552 2.07126C36.9644 2.07126 36.9734 2.07059 36.9824 2.07025ZM37.0054 1.59675C37.0108 1.59675 37.016 1.59675 37.0214 1.59675C37.016 1.59675 37.0107 1.59675 37.0054 1.59675ZM37.0312 1.59608C37.0286 1.59608 37.0261 1.59608 37.0236 1.59608C37.0261 1.59608 37.0287 1.59608 37.0312 1.59608ZM37.0487 1.61122C37.0487 1.61122 37.0487 1.61122 37.0486 1.61122C37.0486 1.61122 37.0486 1.61122 37.0487 1.61122ZM37.1997 1.56714C37.2078 1.56714 37.2158 1.5668 37.2241 1.56646C37.2158 1.56646 37.2079 1.5668 37.1997 1.56714ZM37.2324 1.56646C37.2675 1.56579 37.3034 1.56478 37.3389 1.56445C37.3022 1.56512 37.2659 1.56579 37.23 1.5668C37.2308 1.5668 37.2316 1.5668 37.2324 1.5668V1.56646ZM37.226 1.09532C37.226 1.09532 37.2266 1.09532 37.227 1.09532C36.92 1.12527 36.6089 1.07311 36.4062 1.16027C36.6091 1.07311 36.9189 1.12527 37.2262 1.09532H37.226ZM36.9418 2.0716C36.935 2.0716 36.9281 2.07193 36.9209 2.07227C36.9279 2.07227 36.935 2.07193 36.9418 2.0716ZM36.8118 2.07496C36.8224 2.07496 36.8329 2.07463 36.8431 2.07429C36.8329 2.07429 36.8225 2.07463 36.8118 2.07496ZM36.7828 2.0753C36.7817 2.0753 36.7808 2.0753 36.7798 2.0753C36.7815 2.0753 36.7832 2.0753 36.7849 2.0753C36.7843 2.0753 36.7836 2.0753 36.7828 2.0753ZM36.804 2.07496C36.8069 2.07496 36.8099 2.07496 36.8129 2.07496C36.8062 2.07496 36.7995 2.07496 36.7927 2.07496C36.7966 2.07496 36.8003 2.07496 36.8041 2.07496H36.804ZM36.7384 2.0891C36.7255 2.0891 36.7126 2.0891 36.7002 2.0891C36.7127 2.0891 36.7255 2.0891 36.7384 2.0891ZM36.6227 1.59137C36.617 1.5917 36.6114 1.59204 36.6057 1.59238C36.6113 1.59204 36.617 1.5917 36.6227 1.59137ZM36.4785 1.6018C36.4565 1.60348 36.4349 1.6055 36.4137 1.60718C36.4349 1.60517 36.4569 1.60348 36.4785 1.6018ZM36.4136 1.60718C36.4136 1.60718 36.4132 1.60718 36.4129 1.60718C36.4132 1.60718 36.4133 1.60718 36.4136 1.60718ZM36.2572 2.09313C36.26 2.09313 36.2626 2.09313 36.2654 2.09313C36.2567 2.09313 36.2478 2.09313 36.239 2.09347C36.2451 2.09347 36.2512 2.09347 36.2573 2.09347L36.2572 2.09313ZM36.1563 1.17609C36.1539 1.17609 36.1514 1.17643 36.149 1.17676C36.1514 1.17676 36.1538 1.17643 36.1563 1.17609ZM35.9617 2.06049C35.9617 2.06049 35.9629 2.06049 35.9635 2.06049C35.9566 2.06049 35.9494 2.06049 35.9421 2.06083C35.9486 2.06083 35.955 2.06083 35.9612 2.06049H35.9609C35.9609 2.06049 35.9616 2.06049 35.962 2.06049C35.9617 2.06049 35.9615 2.06049 35.9613 2.06049H35.9617ZM35.96 2.06049C35.9465 2.06049 35.9321 2.06116 35.9171 2.0615C35.9321 2.06116 35.9465 2.06083 35.96 2.06049ZM35.2735 2.05073C35.2719 2.05073 35.2703 2.05073 35.2689 2.05107C35.2703 2.05107 35.2719 2.05107 35.2735 2.05073ZM35.2686 2.05141C35.2686 2.05141 35.2681 2.05141 35.2678 2.05141C35.2681 2.05141 35.2683 2.05141 35.2686 2.05141ZM35.2658 2.05141C35.2642 2.05141 35.2628 2.05174 35.2613 2.05208C35.2628 2.05208 35.2642 2.05174 35.2658 2.05141ZM35.3136 1.67483C35.3136 1.67483 35.3128 1.67483 35.3124 1.67483C35.3148 1.67483 35.3173 1.67483 35.32 1.67449C35.3179 1.67449 35.3157 1.67449 35.3138 1.67483H35.3136ZM35.2875 2.04939C35.2912 2.04939 35.2949 2.04871 35.2989 2.04838C35.2959 2.04838 35.2931 2.04871 35.2902 2.04905C35.303 2.04804 35.3148 2.04737 35.3294 2.04636C35.3139 2.04737 35.3013 2.04804 35.2874 2.04905C35.2874 2.04905 35.2874 2.04905 35.2875 2.04905V2.04939ZM35.3012 1.70276C35.3021 1.70276 35.303 1.70276 35.3041 1.70276C35.3032 1.70276 35.3022 1.70276 35.3012 1.70276ZM35.51 1.6092C35.509 1.6092 35.508 1.6092 35.507 1.60954C35.5074 1.60954 35.5076 1.60954 35.508 1.60954C35.5047 1.60988 35.5015 1.61055 35.4982 1.61089C35.505 1.60988 35.5117 1.6092 35.5185 1.60819C35.5156 1.60853 35.5127 1.60887 35.5097 1.60954C35.5097 1.60954 35.5099 1.60954 35.51 1.60954V1.6092ZM35.5229 1.60752C35.5229 1.60752 35.5223 1.60752 35.5221 1.60752C35.5292 1.60651 35.5362 1.6055 35.543 1.60449C35.5365 1.6055 35.5299 1.60651 35.5231 1.60718C35.5231 1.60718 35.5233 1.60718 35.5234 1.60718C35.5233 1.60718 35.523 1.60718 35.5229 1.60718V1.60752ZM35.4954 1.61122C35.4911 1.6119 35.4866 1.61257 35.4821 1.61291C35.4866 1.61223 35.4909 1.61156 35.4954 1.61122ZM35.4679 2.13083H35.4678C35.4678 2.13083 35.4678 2.13083 35.4679 2.13083ZM35.4708 1.66137C35.4708 1.66137 35.4691 1.66137 35.468 1.66137C35.4692 1.66137 35.4702 1.66137 35.4708 1.66137ZM35.468 2.13083C35.4696 2.13083 35.4712 2.13083 35.4729 2.13083C35.4713 2.13083 35.4698 2.13083 35.468 2.13083ZM35.4728 1.61425C35.4728 1.61425 35.472 1.61425 35.4716 1.61425C35.4766 1.61358 35.4817 1.61291 35.4866 1.61223C35.4819 1.61291 35.4774 1.61358 35.4728 1.61392V1.61425ZM35.4745 1.6055C35.4539 1.60786 35.4333 1.61021 35.4127 1.61223C35.4376 1.60988 35.4623 1.60685 35.4872 1.60416C35.483 1.60449 35.4788 1.60517 35.4745 1.6055ZM35.4623 1.66103C35.461 1.66103 35.4596 1.66103 35.458 1.66103C35.4596 1.66103 35.4611 1.66103 35.4623 1.66103ZM35.4498 1.66103C35.4486 1.66103 35.4475 1.66103 35.4463 1.66103C35.4476 1.66103 35.4486 1.66103 35.4498 1.66103ZM35.4457 1.61795C35.4343 1.61964 35.4227 1.62098 35.411 1.62233C35.4227 1.62098 35.4344 1.61964 35.4457 1.61795ZM35.4446 2.03963C35.4446 2.03963 35.4445 2.03963 35.4443 2.03963C35.4443 2.03963 35.4445 2.03963 35.4446 2.03963ZM35.3568 1.69973C35.361 1.69973 35.3653 1.69939 35.3695 1.69906C35.3641 1.69906 35.3584 1.69973 35.3528 1.70007C35.3541 1.70007 35.3555 1.70007 35.3568 1.70007V1.69973ZM35.3843 2.04333C35.3878 2.04333 35.391 2.04299 35.3945 2.04266C35.3849 2.04333 35.3757 2.04366 35.3669 2.04434C35.3724 2.044 35.3784 2.04366 35.3842 2.04333H35.3843ZM35.4417 1.66069C35.4417 1.66069 35.4408 1.66069 35.4402 1.66069C35.4408 1.66069 35.4412 1.66069 35.4417 1.66069ZM35.4841 2.11232C35.593 2.11164 35.7022 2.11232 35.8113 2.11299C35.7022 2.11232 35.5929 2.11164 35.4839 2.11232C35.4839 2.11232 35.4839 2.11232 35.4841 2.11232ZM35.5754 1.67617C35.5843 1.6755 35.5936 1.67449 35.6023 1.67516C35.5936 1.67449 35.5844 1.67516 35.5754 1.67617ZM35.5483 1.59709C35.5483 1.59709 35.5482 1.59709 35.548 1.59709C35.593 1.5917 35.6382 1.58598 35.6832 1.57993C35.6382 1.58598 35.5932 1.5917 35.5483 1.59709ZM35.6733 1.10946C35.5764 1.12258 35.4766 1.13436 35.3737 1.14412C35.4766 1.13436 35.5762 1.12292 35.6733 1.10946ZM35.3383 1.61863C35.3318 1.6193 35.3253 1.61964 35.3188 1.62031C35.3271 1.61964 35.3355 1.61863 35.3437 1.61795C35.3418 1.61795 35.34 1.61829 35.3383 1.61829V1.61863ZM35.1321 1.65565C35.1321 1.65565 35.1321 1.65565 35.1319 1.65565C35.1319 1.65565 35.1319 1.65565 35.1321 1.65565ZM35.131 1.65565C35.053 1.6617 34.9749 1.66675 34.8969 1.67113C34.9749 1.66675 35.053 1.66204 35.131 1.65565ZM35.1062 2.09246C35.1107 2.09246 35.1154 2.09246 35.1201 2.0928C35.1058 2.09145 35.0918 2.09448 35.0776 2.09616C35.0872 2.09482 35.0967 2.09347 35.1064 2.09246H35.1062ZM35.079 1.73742C35.0801 1.73742 35.0812 1.73675 35.0825 1.73641C35.0812 1.73641 35.08 1.73709 35.079 1.73742ZM35.0827 1.73641C35.0827 1.73641 35.0835 1.73641 35.0837 1.73641C35.0833 1.73641 35.0829 1.73641 35.0827 1.73641ZM35.0849 1.73574C35.0865 1.7354 35.0884 1.73507 35.0901 1.73473C35.0882 1.73507 35.0865 1.7354 35.0849 1.73574ZM35.0605 1.92655C35.0567 1.92655 35.0529 1.92689 35.0489 1.92723C35.0578 1.92655 35.0666 1.92622 35.0758 1.92554C35.0758 1.92554 35.0758 1.92554 35.0756 1.92554C35.0706 1.92554 35.0656 1.92622 35.0605 1.92655ZM35.0507 1.91208C35.0507 1.91208 35.0509 1.91208 35.051 1.91208H35.0507ZM35.0706 1.74079C35.0706 1.74079 35.0721 1.74011 35.0727 1.73978C35.0719 1.74011 35.0711 1.74045 35.0706 1.74079ZM35.0734 1.73944C35.0747 1.7391 35.0758 1.73843 35.0772 1.7381C35.0758 1.73843 35.0745 1.7391 35.0734 1.73944ZM34.9906 1.93564C34.9616 1.939 34.9326 1.94237 34.9037 1.9454C34.9328 1.94237 34.9618 1.93867 34.9906 1.93564ZM34.9428 1.73877C34.9384 1.73877 34.9338 1.73944 34.9294 1.73978C34.9475 1.73843 34.9653 1.73742 34.9829 1.73608C34.9697 1.73709 34.9563 1.73776 34.943 1.73877H34.9428ZM34.906 1.74112C34.8918 1.74213 34.8774 1.74314 34.863 1.74415C34.8775 1.74314 34.8917 1.74213 34.906 1.74112ZM34.8283 1.7418C34.8283 1.7418 34.8271 1.7418 34.8265 1.7418C34.8261 1.7418 34.8259 1.7418 34.8255 1.7418C34.8264 1.7418 34.8273 1.7418 34.8283 1.7418ZM34.8395 1.95045C34.7211 1.95886 34.6038 1.96996 34.4877 1.98242C34.6037 1.96996 34.7211 1.9592 34.8395 1.95045ZM34.2044 2.21092C34.1848 2.21328 34.1653 2.2153 34.1457 2.21765C34.2564 2.20486 34.3675 2.1914 34.4787 2.17828C34.3874 2.18905 34.2954 2.20015 34.2044 2.21092ZM34.3583 2.23818C34.3442 2.23953 34.3303 2.24054 34.3164 2.24188C34.3303 2.24054 34.3444 2.23919 34.3583 2.23818ZM33.8942 2.03895C34.0835 2.02717 34.2756 2.0053 34.4711 1.98444C34.2756 2.0053 34.0836 2.02684 33.8942 2.03895ZM33.7721 2.27183C33.7565 2.27251 33.7407 2.27284 33.7253 2.27352C33.7407 2.27318 33.7564 2.27251 33.7721 2.27183ZM34.5488 1.75694C34.5523 1.7566 34.5556 1.75627 34.5589 1.75593C34.5035 1.76165 34.4486 1.76737 34.3947 1.77309C34.4453 1.76771 34.4968 1.76266 34.5487 1.75728L34.5488 1.75694ZM34.5074 1.97198C34.4685 1.97602 34.4304 1.9804 34.3932 1.9841C34.4306 1.9804 34.4685 1.97602 34.5074 1.97198ZM34.2877 1.75425C34.164 1.77242 34.0414 1.77242 33.9177 1.76771C34.0966 1.77915 34.2731 1.75795 34.4523 1.73608C34.3967 1.74247 34.3419 1.74886 34.2877 1.75459V1.75425ZM34.4175 2.17592C34.3862 2.17962 34.355 2.18332 34.3237 2.18703C34.3548 2.18332 34.3861 2.17962 34.4175 2.17592ZM34.458 2.17121C34.4749 2.16919 34.4916 2.16717 34.5084 2.16515C34.4918 2.16717 34.4748 2.16919 34.458 2.17121ZM34.5606 1.77175C34.5653 1.77108 34.57 1.77074 34.5747 1.77007C34.57 1.77074 34.5653 1.77141 34.5606 1.77175ZM34.6464 1.64925C34.6427 1.64925 34.639 1.64959 34.6353 1.64992C34.639 1.64992 34.6429 1.64959 34.6464 1.64925ZM34.4267 1.1845C34.5135 1.18383 34.5863 1.18114 34.6425 1.17845C34.578 1.18147 34.4647 1.18484 34.3751 1.18484C34.3924 1.18484 34.4098 1.18484 34.4267 1.1845ZM34.2872 1.6856C34.2872 1.6856 34.2883 1.6856 34.2889 1.6856C34.2883 1.6856 34.2877 1.6856 34.2872 1.6856ZM34.2731 1.68694C34.2687 1.68694 34.2637 1.68762 34.258 1.68795C34.2637 1.68795 34.2687 1.68728 34.2731 1.68694ZM34.2352 1.68896C34.2395 1.68896 34.2435 1.68896 34.2472 1.68863C34.2435 1.68863 34.2395 1.68896 34.2352 1.68896ZM33.95 1.17441C33.9566 1.19022 33.9763 1.17609 33.9879 1.18114C33.9763 1.17609 33.9565 1.19022 33.95 1.17441ZM33.9479 1.63983H33.9481C33.9477 1.63983 33.9473 1.63983 33.9469 1.63983C33.9472 1.63983 33.9475 1.63983 33.9479 1.63983ZM33.885 1.63815C33.9047 1.63848 33.925 1.63916 33.9459 1.63983C33.925 1.63916 33.9047 1.63882 33.885 1.63815ZM33.7061 1.68358C33.7051 1.68358 33.7042 1.68358 33.7033 1.68358C33.7043 1.68358 33.7053 1.68358 33.7063 1.68358C33.7063 1.68358 33.7063 1.68358 33.7062 1.68358H33.7061ZM33.6976 1.68358C33.696 1.68358 33.6945 1.68358 33.6929 1.68358H33.6976ZM33.3821 2.04636C33.3821 2.04636 33.3828 2.04636 33.3832 2.04636C33.3828 2.04636 33.3823 2.04636 33.3819 2.04636C33.3819 2.04636 33.3821 2.04636 33.3823 2.04636H33.3821ZM33.3828 2.04636C33.4608 2.04467 33.5388 2.04198 33.6168 2.03895C33.5388 2.04232 33.4608 2.04467 33.3828 2.04636ZM33.422 1.62872C33.4237 1.62872 33.4256 1.62872 33.4273 1.62872C33.4219 1.62872 33.4167 1.62872 33.4115 1.62872C33.415 1.62872 33.4185 1.62872 33.4221 1.62872H33.422ZM33.5029 1.6294C33.5091 1.6294 33.5152 1.6294 33.5216 1.6294C33.5152 1.6294 33.509 1.6294 33.5029 1.6294ZM33.6661 1.16128C33.6459 1.16095 33.6266 1.16061 33.6078 1.15994C33.6265 1.16027 33.6459 1.16061 33.6661 1.16128ZM33.3938 1.62771C33.3959 1.62771 33.3982 1.62771 33.4004 1.62771C33.3946 1.62771 33.3889 1.62771 33.3833 1.62771C33.3868 1.62771 33.3903 1.62771 33.3938 1.62771ZM33.3424 1.62738C33.3474 1.62738 33.3526 1.62738 33.3578 1.62738C33.3507 1.62738 33.344 1.62738 33.3375 1.62738C33.3391 1.62738 33.3407 1.62738 33.3423 1.62738H33.3424ZM33.3207 1.15623C33.3223 1.15623 33.324 1.15623 33.3257 1.15623H33.317C33.3183 1.15623 33.3194 1.15623 33.3207 1.15623ZM33.0003 1.64622C33.0027 1.64622 33.005 1.64622 33.0072 1.64622C33.0021 1.64622 32.9969 1.64656 32.9916 1.64656C32.9945 1.64656 32.9976 1.64656 33.0003 1.64656V1.64622ZM32.9442 2.21092C32.9418 2.21092 32.9392 2.21126 32.9364 2.21159C32.9392 2.21159 32.9418 2.21092 32.9442 2.21092ZM32.9636 2.20856C32.9636 2.20856 32.9637 2.20856 32.9635 2.20856C32.9635 2.20856 32.9635 2.20856 32.9636 2.20856ZM32.9602 2.20924C32.9602 2.20924 32.9595 2.20924 32.9591 2.20924C32.9595 2.20924 32.9598 2.20924 32.9602 2.20924ZM32.9558 2.20991C32.9549 2.20991 32.9539 2.20991 32.9528 2.21025C32.9539 2.21025 32.9549 2.21025 32.9558 2.20991ZM32.9505 2.21058C32.9487 2.21058 32.9466 2.21092 32.9443 2.21126C32.9466 2.21126 32.9486 2.21092 32.9505 2.21058ZM32.6816 2.24861C32.6698 2.24861 32.6584 2.24828 32.6473 2.24794C32.6584 2.24794 32.6698 2.24828 32.6816 2.24861ZM32.6025 1.64858C32.6277 1.64858 32.6531 1.64858 32.6777 1.64858C32.654 1.64858 32.629 1.64858 32.6025 1.64858ZM32.4729 1.64858C32.4729 1.64858 32.4722 1.64858 32.4718 1.64858C32.4726 1.64858 32.4734 1.64858 32.4742 1.64858C32.4738 1.64858 32.4733 1.64858 32.4729 1.64858ZM32.4711 1.64858C32.4604 1.64858 32.45 1.64858 32.4394 1.64858C32.447 1.64858 32.4549 1.64858 32.4627 1.64858C32.4566 1.64858 32.4505 1.64858 32.4445 1.64858C32.4533 1.64858 32.4621 1.64858 32.4711 1.64858ZM32.4588 2.21328C32.4588 2.21328 32.4599 2.21328 32.4603 2.21328C32.4598 2.21328 32.459 2.21328 32.4579 2.21328C32.4582 2.21328 32.4586 2.21328 32.4588 2.21328ZM32.4726 2.24457C32.4974 2.24491 32.5225 2.24558 32.5484 2.24592C32.5101 2.24525 32.4762 2.24457 32.4455 2.2439C32.4542 2.2439 32.4633 2.24424 32.4726 2.24457ZM32.4967 1.64858C32.5007 1.64858 32.5049 1.64858 32.5092 1.64858C32.505 1.64858 32.5008 1.64858 32.4967 1.64858ZM32.5195 1.64858C32.5195 1.64858 32.5201 1.64858 32.5205 1.64858C32.5201 1.64858 32.5199 1.64858 32.5195 1.64858ZM32.5665 1.64858C32.5777 1.64858 32.5891 1.64858 32.6 1.64858C32.589 1.64858 32.5776 1.64858 32.5665 1.64858ZM32.6307 1.58834C32.6307 1.58834 32.6318 1.58834 32.6323 1.58834C32.6318 1.58834 32.6313 1.58834 32.6307 1.58834ZM32.3626 1.10643C32.4473 1.10845 32.522 1.11047 32.5844 1.11383C32.5211 1.11047 32.4412 1.10811 32.3561 1.10643C32.3582 1.10643 32.3604 1.10643 32.3626 1.10643ZM32.4007 1.73439C32.3979 1.73439 32.3953 1.73439 32.3925 1.73439C32.3962 1.73439 32.3998 1.73439 32.4035 1.73439C32.4025 1.73439 32.4016 1.73439 32.4007 1.73439ZM32.3914 2.22337C32.3914 2.22337 32.3912 2.22371 32.3912 2.22405C32.3912 2.22405 32.3914 2.22371 32.3914 2.22337ZM32.2839 1.62233C32.2918 1.62199 32.2998 1.62166 32.3079 1.62132C32.2889 1.62233 32.2701 1.623 32.2513 1.62401C32.2622 1.62367 32.273 1.623 32.2839 1.62267V1.62233ZM32.2607 1.57757C32.2607 1.57757 32.2611 1.57757 32.2612 1.57757C32.2611 1.57757 32.2608 1.57757 32.2607 1.57757ZM32.3276 1.73507C32.34 1.73507 32.3526 1.73507 32.3651 1.73507C32.3522 1.73507 32.3394 1.73507 32.3267 1.73507C32.3269 1.73507 32.3273 1.73507 32.3276 1.73507ZM31.9265 1.11282C32.0727 1.10609 32.1708 1.1071 32.3045 1.10643C32.0666 1.10542 31.8024 1.1145 31.5604 1.13335C31.6792 1.12494 31.8021 1.11619 31.9265 1.11282ZM32.1125 1.57858C32.1255 1.57858 32.1386 1.57858 32.1517 1.57858C32.1387 1.57858 32.1256 1.57858 32.1125 1.57858ZM32.1509 1.57824H32.1532C32.1524 1.57824 32.1517 1.57824 32.1509 1.57824ZM31.6717 2.044H31.6744C31.6537 2.044 31.633 2.044 31.6122 2.04434C31.6321 2.04434 31.6518 2.04434 31.6717 2.044ZM31.6493 2.04366C31.6511 2.04366 31.6531 2.04366 31.6552 2.04366C31.6531 2.04366 31.6513 2.04366 31.6493 2.04366ZM31.6288 2.04434C31.6472 2.04434 31.6654 2.04434 31.6838 2.04434C31.6821 2.04434 31.6804 2.04434 31.6787 2.04434C31.6825 2.04434 31.6865 2.04434 31.6903 2.04434C31.6698 2.04434 31.6493 2.04434 31.6288 2.04434ZM31.5649 2.30616C31.5612 2.30616 31.5572 2.3065 31.5537 2.30683C31.5572 2.30683 31.5611 2.3065 31.5649 2.30616ZM31.5518 2.30683C31.5496 2.30683 31.5473 2.30683 31.5452 2.30717C31.5473 2.30717 31.5496 2.30717 31.5518 2.30683ZM31.5791 2.30549C31.5779 2.30549 31.5768 2.30549 31.5758 2.30549C31.577 2.30549 31.578 2.30549 31.5791 2.30549ZM31.4677 2.23515C31.4737 2.23515 31.4798 2.23515 31.4859 2.23515C31.4774 2.23515 31.4688 2.23515 31.4603 2.23515C31.4628 2.23515 31.4652 2.23515 31.4677 2.23515ZM31.4512 1.69637C31.4673 1.69502 31.4832 1.693 31.4991 1.69199C31.4832 1.693 31.4673 1.69468 31.4512 1.69637ZM31.5065 2.3102C31.4773 2.31053 31.4534 2.31087 31.4345 2.31121C31.4534 2.31121 31.4773 2.31087 31.5065 2.3102ZM31.1296 1.22892C31.1296 1.2195 31.1294 1.21008 31.1294 1.20066C31.1312 1.2259 31.1287 1.23296 31.1186 1.22993C31.1223 1.2296 31.1261 1.22926 31.1296 1.22892ZM31.053 2.30178C31.053 2.30178 31.0527 2.30178 31.0526 2.30178C31.0527 2.30178 31.0528 2.30178 31.053 2.30178ZM31.0414 2.30448C31.0409 2.30448 31.0404 2.30481 31.0402 2.30515C31.0405 2.30515 31.0409 2.30481 31.0414 2.30448ZM31.0463 2.30313C31.0463 2.30313 31.0457 2.30313 31.0454 2.30313C31.0457 2.30313 31.0461 2.30313 31.0463 2.30313ZM31.02 2.27722C31.02 2.27722 31.0213 2.27722 31.022 2.27722C31.0167 2.27789 31.0115 2.27856 31.0065 2.27924C31.0108 2.27856 31.0153 2.27823 31.02 2.27755V2.27722ZM30.9462 1.74752C30.9687 1.74516 30.9908 1.74281 31.0128 1.74045C30.9812 1.74382 30.9487 1.74752 30.9165 1.74987C30.9265 1.74886 30.9364 1.74819 30.9462 1.74718V1.74752ZM30.9401 2.289C30.9401 2.289 30.9413 2.289 30.9418 2.289C30.9372 2.28967 30.9327 2.29034 30.9279 2.29101C30.932 2.29034 30.9361 2.28967 30.9401 2.289ZM30.7624 1.2619C30.6881 1.26763 30.6118 1.27267 30.5332 1.27772C30.6118 1.27301 30.6882 1.26763 30.7624 1.2619ZM30.4317 1.22623C30.4317 1.22623 30.4325 1.22623 30.4328 1.22623C30.4323 1.22623 30.4317 1.22623 30.4312 1.22623C30.4313 1.22623 30.4316 1.22623 30.4317 1.22623ZM30.4305 1.70074C30.4287 1.70074 30.4266 1.70141 30.4243 1.70175C30.4263 1.70175 30.4287 1.70108 30.4305 1.70074ZM30.4185 1.70242C30.3981 1.70478 30.3701 1.70747 30.3437 1.71016C30.3508 1.70949 30.358 1.70882 30.365 1.70814C30.361 1.70848 30.357 1.70882 30.3529 1.70949C30.3784 1.7068 30.3997 1.70478 30.4183 1.70242H30.4185ZM30.3999 1.75896C30.3981 1.75896 30.396 1.75963 30.3937 1.75997C30.396 1.75997 30.3981 1.7593 30.3999 1.75896ZM30.3227 1.72463C30.3227 1.72463 30.3229 1.72463 30.323 1.72463H30.3227ZM30.3059 1.72463C30.305 1.72463 30.3042 1.72463 30.3034 1.72463C30.3053 1.72463 30.3068 1.72463 30.3088 1.72463C30.3079 1.72463 30.3068 1.72463 30.306 1.72463H30.3059ZM30.3399 1.79059C30.325 1.7916 30.3092 1.79261 30.2939 1.79396C30.3096 1.79295 30.3248 1.79194 30.3399 1.79059ZM30.2664 1.23061C30.3113 1.22926 30.3561 1.22792 30.401 1.22657C30.234 1.23027 30.0589 1.24306 29.8972 1.24912C30.0166 1.24407 30.1397 1.23801 30.2664 1.23061ZM30.2653 1.71757C30.263 1.71757 30.2608 1.7179 30.2586 1.71824C30.2608 1.71824 30.263 1.71757 30.2653 1.71757ZM30.2551 1.71858C30.2551 1.71858 30.2537 1.71858 30.2532 1.71858C30.2539 1.71858 30.2545 1.71858 30.2551 1.71858ZM30.23 1.75223C30.2278 1.75223 30.2266 1.75189 30.2262 1.75156C30.2266 1.75156 30.2278 1.75223 30.23 1.75223ZM30.2235 1.78925C30.2235 1.78925 30.2243 1.78925 30.2247 1.78925C30.2197 1.78958 30.2147 1.78958 30.2099 1.78992C30.2139 1.78992 30.2178 1.78992 30.222 1.78958C30.2225 1.78958 30.223 1.78958 30.2235 1.78958V1.78925ZM29.9825 1.75156C29.9453 1.75324 29.9062 1.75526 29.8652 1.7566C29.9064 1.75526 29.9453 1.75358 29.9825 1.75156ZM30.0103 2.38154C29.9779 2.38289 29.9456 2.3839 29.9131 2.38491C29.9456 2.3839 29.9779 2.38322 30.0103 2.38154ZM29.7628 1.83232C29.7628 1.83232 29.7623 1.83232 29.762 1.83232C29.7623 1.83232 29.7626 1.83232 29.7628 1.83232ZM29.7288 1.82862C29.7288 1.82862 29.7281 1.82862 29.7279 1.82829C29.728 1.82829 29.7284 1.82829 29.7288 1.82862ZM29.6312 2.34452C29.6185 2.34452 29.6059 2.34385 29.5934 2.34351C29.6059 2.34385 29.6186 2.34419 29.6312 2.34452ZM29.5099 2.34048C29.4728 2.33914 29.4358 2.33746 29.399 2.33577C29.4358 2.33746 29.4729 2.33914 29.5099 2.34048ZM29.1552 1.80136C29.1499 1.80136 29.1444 1.80136 29.1388 1.80136C29.1444 1.80136 29.1498 1.80136 29.1552 1.80136ZM29.1302 1.80103C29.1207 1.80103 29.1109 1.80103 29.1007 1.80069C29.111 1.80069 29.1207 1.80069 29.1302 1.80103ZM29.0813 1.82357C29.0858 1.82357 29.0905 1.82324 29.0954 1.8229C29.0905 1.8229 29.0857 1.82324 29.0813 1.82357ZM29.0648 1.8192C29.0648 1.8192 29.0646 1.8192 29.0645 1.8192C29.0645 1.8192 29.0646 1.8192 29.0648 1.8192ZM28.9821 1.79026C28.9881 1.79026 28.9943 1.79026 29.0003 1.79026C28.9927 1.79026 28.9852 1.79026 28.9776 1.79026C28.9791 1.79026 28.9807 1.79026 28.9821 1.79026ZM28.8546 1.2794C28.8807 1.27873 28.9071 1.27806 28.9335 1.27739C28.811 1.28075 28.6913 1.28378 28.5664 1.28782C28.6639 1.28479 28.7601 1.2821 28.8546 1.27974V1.2794ZM28.779 1.82458C28.779 1.82458 28.7795 1.82458 28.7798 1.82458C28.7795 1.82458 28.7793 1.82458 28.779 1.82458ZM28.5299 1.85824C28.5299 1.85824 28.5295 1.85824 28.5294 1.85824C28.5295 1.85824 28.5298 1.85824 28.5299 1.85824ZM28.5263 1.79295C28.4984 1.79329 28.4704 1.79396 28.4424 1.7943C28.4703 1.79396 28.4982 1.79329 28.5263 1.79295ZM28.5184 1.85655C28.5186 1.85655 28.5186 1.85655 28.5188 1.85655C28.5188 1.85655 28.5186 1.85655 28.5184 1.85655ZM28.5182 1.85655C28.5181 1.85655 28.5178 1.85655 28.5176 1.85655C28.5177 1.85655 28.518 1.85655 28.5181 1.85655H28.5182ZM28.5174 1.85655C28.5174 1.85655 28.5172 1.85655 28.5169 1.85655C28.5173 1.85655 28.5174 1.85655 28.5177 1.85655C28.5177 1.85655 28.5176 1.85655 28.5174 1.85655ZM28.5165 1.85655C28.5165 1.85655 28.5155 1.85655 28.5148 1.85689C28.5155 1.85689 28.516 1.85689 28.5165 1.85655ZM28.3968 1.83232C28.401 1.83232 28.4066 1.83232 28.4131 1.83165C28.4051 1.83165 28.3983 1.83232 28.3939 1.83232C28.3947 1.83232 28.3957 1.83232 28.3967 1.83232H28.3968ZM28.4044 1.83232C28.4167 1.83199 28.4341 1.83131 28.4519 1.83064C28.4343 1.83131 28.4167 1.83199 28.4044 1.83232ZM28.4026 1.79463C28.4116 1.79463 28.4205 1.79463 28.4295 1.7943C28.4205 1.7943 28.4116 1.7943 28.4026 1.79463ZM28.4688 1.82997C28.4707 1.82997 28.4727 1.82997 28.4744 1.82997C28.4634 1.8303 28.4514 1.83098 28.4397 1.83131C28.4494 1.83098 28.4593 1.83064 28.4687 1.8303L28.4688 1.82997ZM28.3797 1.79497C28.3735 1.79497 28.3673 1.79497 28.361 1.79531C28.3673 1.79531 28.3735 1.79531 28.3797 1.79497ZM28.3383 1.79564C28.3316 1.79564 28.3252 1.79564 28.3185 1.79598C28.3252 1.79598 28.3316 1.79598 28.3383 1.79564ZM28.2962 1.79665C28.2895 1.79665 28.2829 1.79665 28.2763 1.79699C28.2829 1.79699 28.2895 1.79699 28.2962 1.79665ZM28.2552 1.79766C28.2477 1.79766 28.24 1.79766 28.2325 1.79833C28.2401 1.79833 28.2477 1.798 28.2552 1.79766ZM27.9167 1.79396C27.9345 1.79329 27.9521 1.79261 27.9698 1.79228C27.9371 1.79329 27.9047 1.7943 27.8722 1.79564C27.8871 1.79497 27.9019 1.79463 27.9167 1.7943V1.79396ZM28.2178 1.79833C28.1158 1.80069 28.0097 1.80338 27.8954 1.80641C28.0098 1.80338 28.1159 1.80069 28.2178 1.79833ZM27.7933 1.80877C27.8977 1.80607 27.9947 1.80372 28.0873 1.80136C27.9945 1.80372 27.8969 1.80607 27.7924 1.80877C27.8085 1.80843 27.8243 1.80809 27.8401 1.80742C27.8246 1.80776 27.8089 1.80809 27.7931 1.80877H27.7932H27.7933ZM28.0378 2.35024C28.0362 2.35024 28.0347 2.35024 28.0331 2.35024C28.0346 2.35024 28.0362 2.35024 28.0378 2.35024ZM27.0936 2.32198C27.269 2.31289 27.4444 2.3038 27.6198 2.29472C27.4445 2.3038 27.269 2.31289 27.0936 2.32198ZM27.1426 1.93227C27.1426 1.93227 27.1435 1.93227 27.144 1.93227C27.1406 1.93227 27.1371 1.93261 27.1337 1.93295C27.1366 1.93295 27.1396 1.93261 27.1426 1.93227ZM27.6476 1.87102C27.6662 1.86968 27.6849 1.86867 27.7034 1.86732C27.6849 1.86867 27.6662 1.86934 27.6476 1.87102ZM27.7207 2.34755C27.727 2.34755 27.7329 2.34688 27.7394 2.34654C27.6921 2.3489 27.6495 2.35058 27.6115 2.3526C27.6443 2.35092 27.6809 2.34923 27.7207 2.34755ZM27.7129 2.3139C27.7209 2.3139 27.7288 2.31457 27.7369 2.31491C27.7288 2.31491 27.7209 2.31424 27.7129 2.3139ZM27.8064 2.31726C27.8109 2.31726 27.8154 2.3176 27.8197 2.31794C27.8154 2.31794 27.8109 2.3176 27.8064 2.31726ZM27.7691 2.31592C27.7637 2.31592 27.7581 2.31558 27.7527 2.31524C27.7582 2.31524 27.7637 2.31558 27.7691 2.31592ZM27.7757 2.31592C27.7801 2.31592 27.7844 2.31592 27.7887 2.31625C27.7844 2.31625 27.7801 2.31625 27.7757 2.31592ZM27.7901 2.31625C27.7946 2.31625 27.7991 2.31625 27.8035 2.31659C27.7991 2.31659 27.7946 2.31659 27.7901 2.31625ZM27.6804 1.80204C27.728 1.80002 27.7761 1.79833 27.8246 1.79631C27.7761 1.798 27.7284 1.80002 27.6804 1.80204ZM27.4318 1.92992C27.4587 1.92554 27.4854 1.92083 27.5122 1.91646C27.4849 1.92083 27.4577 1.92588 27.4305 1.92992C27.4309 1.92992 27.4313 1.92992 27.4317 1.92992H27.4318ZM27.337 1.92117C27.3293 1.92117 27.3219 1.92184 27.3143 1.92218C27.322 1.92184 27.3293 1.9215 27.337 1.92117ZM27.1538 1.93093C27.1538 1.93093 27.1533 1.93093 27.1529 1.93093C27.1598 1.93059 27.1667 1.92992 27.1735 1.92958C27.1669 1.92992 27.1604 1.93025 27.1538 1.93093ZM26.5886 1.39551C26.6961 1.38575 26.8037 1.37599 26.9113 1.36589C26.7343 1.38205 26.5571 1.3982 26.3799 1.41435C26.4494 1.40796 26.5191 1.40156 26.5886 1.39551ZM26.7875 1.95146C26.8005 1.95011 26.814 1.94876 26.8272 1.94708C26.8009 1.94977 26.7759 1.95247 26.7525 1.95516C26.7553 1.95516 26.7578 1.95448 26.7606 1.95415C26.7594 1.95415 26.7582 1.95415 26.7571 1.95448C26.7669 1.95347 26.777 1.95213 26.7874 1.95112L26.7875 1.95146ZM26.827 1.87708C26.8208 1.87742 26.8148 1.87776 26.8092 1.87809C26.8151 1.87776 26.8211 1.87742 26.8275 1.87708C26.8274 1.87708 26.8272 1.87708 26.8271 1.87708H26.827ZM26.827 2.34116C26.8247 2.34116 26.8225 2.34116 26.8201 2.34116C26.8206 2.34116 26.8213 2.34116 26.8219 2.34116H26.8217C26.8227 2.34116 26.8237 2.34116 26.8247 2.34116C26.8245 2.34116 26.8242 2.34116 26.8238 2.34116C26.8249 2.34116 26.8259 2.34116 26.827 2.34116ZM26.8611 2.39769C26.67 2.40846 26.4789 2.41923 26.288 2.42967C26.4791 2.4189 26.6702 2.40846 26.8611 2.39769ZM26.838 2.34116C26.8397 2.34116 26.8411 2.34116 26.8426 2.34116C26.8411 2.34116 26.8394 2.34116 26.838 2.34116ZM26.5915 2.34654C26.5968 2.34654 26.6017 2.34654 26.607 2.34621C26.602 2.34621 26.5968 2.34621 26.5915 2.34654ZM26.8029 2.34116C26.8004 2.34116 26.7977 2.34116 26.7952 2.34116C26.7978 2.34116 26.8004 2.34116 26.8029 2.34116ZM26.7548 2.34183C26.7614 2.34183 26.7676 2.34183 26.7736 2.34149C26.7676 2.34149 26.7614 2.34149 26.7548 2.34183ZM26.8193 2.34082C26.8193 2.34082 26.8206 2.34082 26.8213 2.34082C26.8206 2.34082 26.82 2.34082 26.8193 2.34082ZM26.3284 2.01102C26.2032 2.01607 26.078 2.02011 25.9527 2.02347C26.2426 2.0154 26.5325 2.0053 26.8222 1.98107C26.6579 1.9952 26.4931 2.00429 26.3284 2.01102ZM26.2206 2.48014C26.2182 2.48014 26.2158 2.48048 26.2134 2.48082C26.2158 2.48082 26.2182 2.48048 26.2206 2.48014ZM26.192 2.45087C26.1789 2.45154 26.1654 2.45221 26.1514 2.45289C26.1654 2.45221 26.1787 2.45154 26.192 2.45087ZM25.8649 1.91578C25.8511 1.91578 25.8393 1.91578 25.8291 1.91578C25.879 1.91578 25.9374 1.91275 25.9826 1.91141C25.9466 1.91275 25.9075 1.91444 25.8649 1.91578ZM25.9811 1.91141C26.008 1.9104 26.035 1.90905 26.061 1.90804C26.0352 1.90939 26.0078 1.9104 25.9811 1.91141ZM26.3229 1.89054C26.3206 1.89054 26.3182 1.89088 26.3157 1.89122C26.3186 1.89122 26.3216 1.89088 26.3245 1.89054C26.324 1.89054 26.3235 1.89054 26.3229 1.89054ZM26.3779 1.8855C26.3844 1.88482 26.391 1.88415 26.3975 1.88381C26.391 1.88449 26.3844 1.88516 26.3779 1.8855ZM26.3386 1.8892C26.3428 1.88886 26.347 1.88852 26.3512 1.88819C26.3502 1.88819 26.3494 1.88819 26.3485 1.88819C26.3498 1.88819 26.351 1.88819 26.3523 1.88785C26.3484 1.88819 26.3444 1.88852 26.3404 1.88886C26.3411 1.88886 26.3416 1.88886 26.3423 1.88886C26.338 1.8892 26.3338 1.88953 26.3297 1.88987C26.3333 1.88987 26.337 1.8892 26.3406 1.88886C26.3399 1.88886 26.3392 1.88886 26.3387 1.88886L26.3386 1.8892ZM26.311 1.89155C26.311 1.89155 26.3114 1.89155 26.3116 1.89155C26.3104 1.89155 26.3092 1.89155 26.3078 1.89155C26.3089 1.89155 26.31 1.89155 26.311 1.89155ZM26.0802 1.43555C26.0911 1.43488 26.1018 1.43454 26.1121 1.43387C26.1018 1.43454 26.0912 1.43488 26.0802 1.43555ZM25.8698 1.4443C25.9344 1.44228 25.9905 1.43993 26.0405 1.43757C25.9933 1.43118 25.9249 1.45911 25.8698 1.43555C25.8698 1.43858 25.8698 1.44128 25.8698 1.4443ZM25.8251 1.91612H25.8237C25.8237 1.91612 25.8246 1.91612 25.8251 1.91612ZM25.7518 2.01977C25.7734 2.01943 25.7949 2.01876 25.8165 2.01843C25.7951 2.01876 25.773 2.01943 25.7512 2.01977C25.7514 2.01977 25.7516 2.01977 25.7518 2.01977ZM25.714 2.02987C25.7155 2.02987 25.7171 2.02987 25.7185 2.02987C25.6754 2.03088 25.6322 2.03222 25.5889 2.03323C25.6306 2.03189 25.6723 2.03088 25.714 2.02987ZM26.8766 2.92807C26.5922 2.94254 26.3076 2.95667 26.0231 2.97013C26.3076 2.95634 26.5922 2.9422 26.8766 2.92807ZM26.8728 2.45692C26.8728 2.45692 26.8728 2.45692 26.8729 2.45692C26.8729 2.45692 26.8729 2.45692 26.8728 2.45692ZM26.6907 1.97097C26.8398 1.9565 26.9848 1.94136 27.1347 1.9316C27.0506 1.93631 26.9655 1.94472 26.8833 1.95213C26.9435 1.94641 27.0043 1.94136 27.0665 1.93598C26.9391 1.94641 26.8176 1.95785 26.6906 1.97064L26.6907 1.97097ZM27.0999 2.91461C27.0699 2.90619 27.0254 2.93177 27.0024 2.90518C27.0977 2.93547 27.2143 2.89812 27.3167 2.90215C27.2445 2.90653 27.1722 2.91057 27.1 2.91494L27.0999 2.91461ZM27.6053 2.87052C27.5952 2.87119 27.5851 2.87153 27.5751 2.8722C27.6492 2.86783 27.7435 2.86177 27.7807 2.85874C27.743 2.86177 27.6857 2.86547 27.6051 2.87052H27.6053ZM27.7927 2.3802C27.7927 2.3802 27.7923 2.3802 27.792 2.3802C27.7923 2.3802 27.7925 2.3802 27.7928 2.3802C27.7928 2.3802 27.7928 2.3802 27.7927 2.3802ZM27.8236 2.8547C27.8271 2.85437 27.83 2.85369 27.8324 2.85336C27.83 2.85369 27.8271 2.85403 27.8236 2.8547ZM27.8716 2.32198C27.8716 2.32198 27.872 2.32198 27.8721 2.32231C27.8721 2.32231 27.8717 2.32231 27.8716 2.32198ZM27.8697 2.3213C27.8697 2.3213 27.8697 2.3213 27.8699 2.3213C27.8699 2.3213 27.8699 2.3213 27.8697 2.3213ZM27.9333 2.80826C27.9146 2.80591 27.8977 2.81163 27.8805 2.83115C27.9003 2.80893 27.9212 2.8022 27.9427 2.81196C27.9395 2.81062 27.9363 2.80961 27.9333 2.80792V2.80826ZM27.9655 1.87405C27.9509 1.87506 27.9424 1.87574 27.942 1.87675C27.943 1.87473 27.9759 1.87338 28.0256 1.8717C28.0007 1.87271 27.98 1.87338 27.9655 1.87439V1.87405ZM27.997 2.33847C27.9981 2.33847 27.9992 2.33847 28.0003 2.33813C27.9992 2.33813 27.9981 2.33813 27.997 2.33847ZM28.0002 2.33813C28.0024 2.33813 28.0048 2.33746 28.0073 2.33712C28.0073 2.33712 28.0073 2.33712 28.0072 2.33712C28.009 2.33712 28.0112 2.33678 28.0132 2.33645C28.0088 2.33712 28.0044 2.33746 28.0002 2.33813ZM28.0114 2.82038C28.0214 2.82038 28.0337 2.82038 28.0448 2.82071C28.0337 2.82071 28.0212 2.82071 28.0114 2.82038ZM28.0522 2.82071C28.05 2.82071 28.048 2.82071 28.0459 2.82071H28.0566C28.0551 2.82071 28.0535 2.82071 28.0522 2.82071ZM28.0533 2.33207C28.0554 2.33207 28.0574 2.33173 28.0595 2.3314C28.0574 2.3314 28.0554 2.33173 28.0533 2.33207ZM28.1063 2.82071C28.1029 2.82071 28.0999 2.82071 28.0966 2.82071C28.0999 2.82071 28.1031 2.82071 28.1064 2.82071C28.1064 2.82071 28.1064 2.82071 28.1063 2.82071ZM28.0877 1.80103C28.1017 1.80069 28.1158 1.80035 28.1297 1.80002C28.1158 1.80035 28.1019 1.80069 28.0877 1.80103ZM28.2097 1.798C28.2032 1.798 28.1967 1.798 28.1902 1.79833C28.1967 1.79833 28.2032 1.79833 28.2097 1.798ZM28.1703 1.79901C28.1595 1.79901 28.1488 1.79968 28.1378 1.79968C28.1486 1.79968 28.1595 1.79901 28.1703 1.79901ZM28.2849 2.32736C28.2983 2.32736 28.3077 2.32534 28.3229 2.32366C28.3138 2.32467 28.306 2.32568 28.2999 2.32669C28.3028 2.32601 28.3061 2.32568 28.3098 2.32534C28.3011 2.32702 28.2934 2.32702 28.2849 2.32736ZM28.3359 2.32265C28.3323 2.32298 28.3289 2.32332 28.3257 2.32366C28.329 2.32332 28.3323 2.32298 28.3359 2.32265ZM28.3397 2.32231C28.3449 2.32198 28.3499 2.3213 28.3555 2.32097C28.3499 2.3213 28.3448 2.32198 28.3397 2.32231ZM28.3793 2.31895C28.3757 2.31895 28.3724 2.31962 28.369 2.31962C28.373 2.31928 28.3768 2.31928 28.3809 2.31861C28.3804 2.31861 28.38 2.31861 28.3793 2.31861V2.31895ZM28.4061 2.31524C28.4034 2.31558 28.4009 2.31592 28.3984 2.31625C28.4013 2.31592 28.4042 2.31558 28.4074 2.31491C28.4069 2.31491 28.4065 2.31491 28.4061 2.31491V2.31524ZM28.6242 1.87708C28.6242 1.87708 28.6235 1.87708 28.6231 1.87708C28.4753 1.88011 28.3277 1.8828 28.1799 1.8855C28.3277 1.8828 28.4755 1.87977 28.6233 1.87708C28.6237 1.87708 28.6239 1.87708 28.6243 1.87708H28.6242ZM28.6338 1.87708C28.6373 1.87708 28.6407 1.87708 28.6444 1.87708C28.6409 1.87708 28.6373 1.87708 28.6338 1.87708ZM28.65 1.87675C28.6483 1.87675 28.6464 1.87675 28.6448 1.87675C28.646 1.87675 28.6474 1.87675 28.6486 1.87675C28.6464 1.87675 28.6443 1.87675 28.6423 1.87675C28.6569 1.87641 28.6717 1.87607 28.6897 1.87574C28.6764 1.87574 28.6631 1.87607 28.6501 1.87641L28.65 1.87675ZM28.6852 1.87607C28.6803 1.87607 28.6756 1.87607 28.6707 1.87607C28.6783 1.87607 28.6859 1.87607 28.6936 1.87574H28.6852V1.87607ZM28.7071 1.82458C28.7121 1.82458 28.7173 1.82458 28.7223 1.82458C28.713 1.82458 28.7036 1.82458 28.6944 1.82492C28.6986 1.82492 28.7028 1.82492 28.7071 1.82492V1.82458ZM28.7169 1.8754H28.7168C28.7168 1.8754 28.7175 1.8754 28.7179 1.8754C28.7175 1.8754 28.7173 1.8754 28.7169 1.8754ZM28.8672 1.83939C28.8672 1.83939 28.8683 1.83939 28.8688 1.83939C28.8683 1.83939 28.8677 1.83939 28.8672 1.83939ZM29.0253 1.82593C29.0235 1.82593 29.0212 1.82559 29.0188 1.82526C29.0213 1.82526 29.0235 1.82559 29.0253 1.82593ZM29.0395 1.82492C29.0523 1.82425 29.0714 1.82324 29.0874 1.82256C29.0669 1.82324 29.0505 1.82425 29.0395 1.82492ZM29.1922 1.80136C29.1989 1.80136 29.2057 1.80136 29.2119 1.8017C29.2057 1.8017 29.1989 1.8017 29.1922 1.80136ZM29.1669 1.27099C29.1669 1.27099 29.1658 1.27099 29.1653 1.27099C29.187 1.27032 29.2087 1.26998 29.2308 1.26931C29.2094 1.26998 29.1879 1.27032 29.1669 1.27099ZM29.2802 2.32972C29.2802 2.32972 29.2793 2.32972 29.2789 2.32972C29.2798 2.32972 29.2808 2.32972 29.2816 2.32972C29.2812 2.32972 29.2806 2.32972 29.2802 2.32972ZM29.5234 2.86042C29.517 2.86042 29.5108 2.86042 29.5044 2.86042C29.5157 2.86042 29.5271 2.86042 29.5385 2.86042C29.5334 2.86042 29.5284 2.86042 29.5234 2.86042ZM29.5632 2.38894C29.5011 2.38894 29.4392 2.38894 29.3772 2.38894C29.4423 2.38894 29.5076 2.38894 29.5729 2.38894C29.5697 2.38894 29.5664 2.38894 29.5632 2.38894ZM29.6405 2.38894C29.6389 2.38894 29.6373 2.38894 29.6358 2.38894C29.7092 2.38861 29.7825 2.38794 29.8559 2.38625C29.784 2.38794 29.7122 2.38861 29.6405 2.38894ZM29.8621 2.34822C29.8684 2.34822 29.8745 2.34822 29.8808 2.34822C29.8794 2.34822 29.8779 2.34822 29.8766 2.34822C29.8775 2.34822 29.8784 2.34822 29.8794 2.34822C29.8745 2.34822 29.8694 2.34822 29.8645 2.34822C29.8662 2.34822 29.868 2.34822 29.8697 2.34822C29.8653 2.34822 29.8609 2.34822 29.8567 2.34822C29.8594 2.34822 29.862 2.34822 29.8647 2.34822C29.8639 2.34822 29.8631 2.34822 29.8623 2.34822H29.8621ZM30.3014 2.3627H30.3007C30.3096 2.36202 30.3185 2.36135 30.3274 2.36068C30.3188 2.36135 30.31 2.36202 30.3014 2.3627ZM30.3656 2.32669C30.3009 2.33476 30.2363 2.34149 30.1716 2.34722C30.2363 2.34149 30.301 2.33476 30.3658 2.32669H30.3656ZM30.3744 1.78723C30.3789 1.78689 30.3834 1.78656 30.3879 1.78622C30.3835 1.78656 30.379 1.78689 30.3744 1.78723ZM30.3904 1.75896C30.3904 1.75896 30.3892 1.75896 30.3887 1.75896C30.3897 1.75896 30.3908 1.75896 30.3917 1.75862C30.3913 1.75862 30.3908 1.75862 30.3904 1.75862V1.75896ZM30.4123 1.75459C30.4123 1.75459 30.4121 1.75459 30.412 1.75459C30.5389 1.74718 30.6659 1.73944 30.7927 1.72935C30.7289 1.73439 30.6652 1.73877 30.6014 1.74314C30.6611 1.7391 30.7209 1.73507 30.7807 1.73036C30.6579 1.73978 30.535 1.74785 30.4121 1.75459H30.4123ZM30.479 2.36135C30.4828 2.36068 30.4864 2.36034 30.4897 2.35967C30.4858 2.36034 30.4822 2.36101 30.4781 2.36135C30.4785 2.36135 30.4787 2.36135 30.479 2.36135ZM30.4865 2.82509C30.4835 2.82509 30.4803 2.82542 30.4771 2.82576C30.4803 2.82576 30.4834 2.82509 30.4865 2.82509ZM30.4991 2.35832C30.4983 2.35832 30.4977 2.35832 30.4969 2.35866C30.4985 2.35866 30.5003 2.35798 30.5018 2.35798C30.501 2.35798 30.5001 2.35798 30.4991 2.35832ZM30.5991 2.3001C30.5599 2.30481 30.5228 2.30952 30.4871 2.31356C30.5267 2.30885 30.5677 2.30347 30.6116 2.29842C30.6073 2.29875 30.6032 2.29943 30.599 2.29976L30.5991 2.3001ZM30.8085 2.31996C30.8095 2.31996 30.8103 2.31996 30.8114 2.31996C30.8105 2.31996 30.8097 2.31996 30.8085 2.31996ZM30.7416 2.27251H30.7404C30.7721 2.2688 30.8037 2.26477 30.8352 2.26106C30.804 2.26477 30.7727 2.2688 30.7416 2.27251ZM30.846 2.06991C30.846 2.06991 30.8473 2.06991 30.8479 2.06991C30.8473 2.06991 30.8466 2.06991 30.846 2.06991ZM30.8486 2.06991C30.8486 2.06991 30.8481 2.06991 30.8478 2.06991C30.8481 2.06991 30.8483 2.06991 30.8487 2.06991H30.8486ZM31.1306 2.76384C31.0318 2.79615 30.9531 2.73355 30.8572 2.7773C30.9621 2.73725 31.0535 2.79379 31.1619 2.76148C31.1509 2.76216 31.1405 2.76317 31.1306 2.76418V2.76384ZM31.136 1.6405C31.136 1.6405 31.1365 1.6405 31.1368 1.6405C31.1365 1.6405 31.1363 1.6405 31.136 1.6405ZM31.2341 1.71555C31.219 1.71723 31.2038 1.71891 31.1883 1.72026C31.2233 1.71656 31.2585 1.71286 31.293 1.70983C31.2736 1.71185 31.254 1.71353 31.234 1.71555H31.2341ZM31.2086 1.63411C31.2177 1.63343 31.227 1.63242 31.2365 1.63142C31.227 1.63242 31.2176 1.6331 31.2086 1.63411ZM31.2258 1.65093C31.2258 1.65093 31.2254 1.65093 31.2251 1.65093C31.2254 1.65093 31.2255 1.65093 31.2258 1.65093ZM31.3191 2.27419C31.3191 2.27419 31.3191 2.27419 31.319 2.27419C31.3336 2.27318 31.3479 2.27251 31.3628 2.2715C31.3479 2.27251 31.3333 2.27352 31.3193 2.27419H31.3191ZM31.4387 1.65228C31.4387 1.65228 31.4392 1.65228 31.4396 1.65228C31.4228 1.65497 31.406 1.65733 31.3892 1.66002C31.4057 1.65733 31.4223 1.65497 31.4387 1.65262V1.65228ZM31.4171 2.30952C31.4159 2.30952 31.4151 2.30952 31.414 2.30952C31.415 2.30952 31.4161 2.30952 31.4171 2.30952ZM31.5114 2.77966C31.4675 2.78033 31.437 2.78067 31.4096 2.78067C31.437 2.78067 31.472 2.78067 31.5153 2.77932C31.5139 2.77932 31.5127 2.77932 31.5114 2.77966ZM31.5292 2.77797C31.5692 2.77495 31.6531 2.77259 31.7436 2.77023C31.6531 2.77225 31.5692 2.77461 31.5292 2.77797ZM31.8918 1.63478C31.8959 1.63478 31.8997 1.63478 31.9038 1.63444C31.8998 1.63444 31.8957 1.63444 31.8918 1.63478ZM31.9092 1.63411C31.9222 1.63343 31.9352 1.6331 31.9479 1.63242C31.9351 1.6331 31.9222 1.63343 31.9092 1.63411ZM31.9197 2.27924C31.9197 2.27924 31.9196 2.27924 31.9194 2.27924C31.9265 2.27924 31.9336 2.27924 31.9408 2.27924C31.9337 2.27924 31.9266 2.27924 31.9197 2.27924ZM31.9276 1.63343C31.949 1.63242 31.9703 1.63175 31.9915 1.63074C31.9706 1.63175 31.949 1.63242 31.9276 1.63343ZM31.7687 1.63983C31.845 1.6331 31.9213 1.62704 31.9976 1.62199C31.9213 1.62738 31.845 1.6331 31.7687 1.63983ZM32.1696 2.7598C32.1654 2.76014 32.1591 2.76081 32.1512 2.76115C32.1684 2.76014 32.1793 2.75946 32.1945 2.75307C32.1864 2.75644 32.1782 2.75879 32.1695 2.7598H32.1696ZM32.1764 1.62536C32.1977 1.62468 32.2191 1.62401 32.2406 1.623C32.2191 1.62367 32.1978 1.62468 32.1764 1.62536ZM32.4249 2.21395C32.4269 2.21395 32.4289 2.21328 32.4309 2.21328C32.4288 2.21328 32.4269 2.21395 32.4249 2.21395ZM32.4121 2.21597C32.4121 2.21597 32.4126 2.21597 32.4129 2.21597C32.4126 2.21597 32.4123 2.21597 32.4121 2.21597ZM32.418 2.21496C32.418 2.21496 32.4192 2.21496 32.4199 2.21496C32.4192 2.21496 32.4186 2.21496 32.418 2.21496ZM32.6707 2.74769C32.6497 2.74769 32.6289 2.74769 32.6083 2.74735C32.6328 2.75038 32.6585 2.74028 32.6829 2.75475C32.6788 2.7524 32.6747 2.75072 32.6707 2.74769ZM32.6939 2.76081C32.6939 2.76081 32.6934 2.76081 32.6931 2.76047C32.6935 2.76047 32.6939 2.76081 32.6943 2.76115C32.6942 2.76115 32.694 2.76115 32.6939 2.76115V2.76081ZM32.6947 2.76115C32.6947 2.76115 32.6942 2.76115 32.694 2.76081C32.6943 2.76081 32.6946 2.76081 32.6948 2.76115H32.6947ZM32.7045 2.77999V2.76418C32.7045 2.76956 32.7045 2.77461 32.7045 2.77999ZM32.7171 2.30851C32.7123 2.30851 32.7077 2.30851 32.7028 2.30885C32.7114 2.30885 32.7196 2.30851 32.7278 2.30818C32.7244 2.30818 32.7208 2.30818 32.7172 2.30818L32.7171 2.30851ZM32.782 2.19813C32.7653 2.19813 32.7481 2.19746 32.7304 2.19712C32.7504 2.19746 32.7694 2.1978 32.7884 2.19813C32.7863 2.19813 32.7842 2.19813 32.782 2.19813ZM32.6992 1.17643C32.6936 1.17643 32.6882 1.17643 32.6826 1.17643C32.7263 1.17643 32.773 1.17643 32.8095 1.17643C32.7767 1.17643 32.7401 1.17643 32.6992 1.17643ZM32.8266 2.19914C32.8266 2.19914 32.8271 2.19914 32.8275 2.19914C32.8272 2.19914 32.8269 2.19914 32.8266 2.19914ZM32.8415 2.19948C32.8475 2.19948 32.8532 2.19948 32.859 2.19981C32.8533 2.19981 32.8475 2.19981 32.8415 2.19948ZM32.9479 2.27991C32.9221 2.27924 32.8958 2.2789 32.8695 2.27856C32.896 2.2789 32.9223 2.27957 32.9482 2.27991C32.9482 2.27991 32.9482 2.27991 32.9479 2.27991ZM32.978 1.65766C32.996 1.65834 33.0145 1.65901 33.032 1.66002C33.0149 1.65935 32.9968 1.65834 32.978 1.65766ZM33.034 1.66002C33.034 1.66002 33.033 1.66002 33.0325 1.66002C33.0333 1.66002 33.034 1.66002 33.0348 1.66002C33.0345 1.66002 33.0342 1.66002 33.034 1.66002ZM33.0352 1.66002C33.0451 1.66036 33.0549 1.66103 33.0642 1.66137C33.0549 1.66103 33.0452 1.66036 33.0352 1.66002ZM33.1177 1.16566C33.1019 1.16801 33.0865 1.17003 33.0598 1.17205C33.0895 1.17003 33.1031 1.16768 33.1226 1.16498C33.1208 1.16498 33.1193 1.16532 33.1175 1.16566H33.1177ZM33.1512 1.66709C33.1512 1.66709 33.1509 1.66709 33.1508 1.66709C33.1509 1.66709 33.151 1.66709 33.1513 1.66709H33.1512ZM33.163 1.6681C33.1599 1.6681 33.1565 1.66742 33.153 1.66709C33.1579 1.66742 33.1626 1.66776 33.1667 1.66843C33.1655 1.66843 33.1641 1.66843 33.163 1.6681ZM33.516 2.27789C33.5173 2.27789 33.5187 2.27789 33.5199 2.27789C33.5168 2.27789 33.5139 2.27789 33.5109 2.27789C33.5126 2.27789 33.5143 2.27789 33.516 2.27789ZM33.4554 2.27654C33.4531 2.27654 33.451 2.27654 33.4489 2.27654C33.4522 2.27654 33.4554 2.27654 33.4587 2.27654H33.4554ZM33.4673 2.27654C33.4694 2.27654 33.4714 2.27654 33.4735 2.27654C33.4702 2.27654 33.4668 2.27654 33.4634 2.27654C33.4648 2.27654 33.466 2.27654 33.4673 2.27654ZM33.5115 2.74903C33.4973 2.74903 33.4829 2.74903 33.4683 2.74903C33.5783 2.74836 33.6915 2.74668 33.7919 2.74365C33.7035 2.74634 33.6107 2.74802 33.5115 2.7487V2.74903ZM33.786 2.27015C33.7852 2.27015 33.7845 2.27015 33.7837 2.27015C33.7927 2.27015 33.8019 2.26948 33.8109 2.26914C33.8026 2.26914 33.7943 2.26981 33.786 2.27015ZM33.953 2.22068C33.953 2.22068 33.9522 2.22068 33.9518 2.22068C33.9607 2.22001 33.9699 2.21967 33.9791 2.219C33.961 2.22034 33.9424 2.22135 33.9251 2.22236C33.934 2.22203 33.9434 2.22135 33.953 2.22068ZM33.9989 2.25803C34.0261 2.25602 34.0536 2.25433 34.0815 2.25265C34.0536 2.25433 34.026 2.25635 33.9989 2.25803ZM34.0095 2.23044C34.0095 2.23044 34.0089 2.23044 34.0087 2.23044C34.0088 2.23044 34.0091 2.23044 34.0092 2.23044C34.0087 2.23044 34.008 2.23044 34.0075 2.23044C34.0398 2.22808 34.0722 2.22472 34.1048 2.22135C34.0729 2.22472 34.0411 2.22808 34.0095 2.23044ZM34.1056 2.22135C34.1202 2.21967 34.1347 2.21799 34.1493 2.2163C34.1345 2.21799 34.1195 2.22001 34.1047 2.22135C34.1049 2.22135 34.1053 2.22135 34.1056 2.22135ZM34.3323 2.711C34.2707 2.71673 34.209 2.72177 34.1461 2.72648C34.3121 2.71471 34.4465 2.69956 34.6239 2.68509C34.5175 2.69418 34.4191 2.70326 34.3323 2.711ZM34.7912 2.18299C34.6662 2.19308 34.5455 2.20486 34.4255 2.21832C34.5445 2.20486 34.6671 2.19308 34.7921 2.18299C34.7917 2.18299 34.7915 2.18299 34.7911 2.18299H34.7912ZM34.8504 2.12679C34.8484 2.12679 34.8461 2.12712 34.8442 2.12746C34.8558 2.12611 34.8675 2.12443 34.8791 2.12275C34.8696 2.1241 34.8601 2.12544 34.8504 2.12679ZM34.9081 2.19207C34.9081 2.19207 34.9079 2.19207 34.9077 2.19207C34.9476 2.18905 34.9882 2.18635 35.0301 2.18366C34.9885 2.18635 34.9478 2.18938 34.9081 2.19207ZM35.2056 1.62906C35.1903 1.63007 35.1752 1.63142 35.16 1.63242C35.1755 1.63142 35.191 1.63007 35.2066 1.62906C35.2062 1.62906 35.206 1.62906 35.2056 1.62906ZM35.2095 1.62906C35.232 1.62738 35.2547 1.62569 35.2772 1.62401C35.2543 1.62603 35.2312 1.62738 35.2083 1.62906C35.2087 1.62906 35.2091 1.62906 35.2095 1.62906ZM35.2467 2.05376C35.2467 2.05376 35.2478 2.05376 35.2482 2.05342C35.2474 2.05342 35.2467 2.05376 35.2462 2.05376C35.2463 2.05376 35.2465 2.05376 35.2466 2.05376H35.2467ZM35.2483 2.05746C35.2483 2.05746 35.2473 2.05746 35.2467 2.05746C35.2473 2.05746 35.2481 2.05746 35.2489 2.05746C35.2489 2.05746 35.2487 2.05746 35.2486 2.05746C35.3119 2.05208 35.3751 2.04535 35.4384 2.03963C35.3751 2.04535 35.3118 2.05241 35.2483 2.05746ZM35.655 2.149C35.655 2.149 35.655 2.149 35.6552 2.149C35.6552 2.149 35.6552 2.149 35.655 2.149ZM35.6985 2.60668C35.6851 2.61476 35.6708 2.61947 35.6557 2.62014C35.675 2.62149 35.6916 2.60567 35.7097 2.60634C35.706 2.60634 35.7023 2.60634 35.6985 2.60634V2.60668ZM35.6132 2.12477C35.7342 2.12107 35.8554 2.11703 35.9766 2.11366C35.9354 2.11467 35.8943 2.11602 35.8531 2.11736C35.8929 2.11602 35.9327 2.11467 35.9725 2.11366C35.8527 2.11636 35.7329 2.12039 35.6132 2.12443V2.12477ZM36.1834 2.6087C36.1201 2.60769 36.058 2.60668 35.9954 2.60601C36.1302 2.60769 36.2585 2.61038 36.396 2.61173C36.3225 2.61105 36.2526 2.60971 36.1834 2.6087ZM36.3631 2.02852C36.3928 2.02886 36.4223 2.02919 36.4515 2.02953C36.4223 2.02953 36.3929 2.02886 36.3631 2.02852ZM36.4885 2.07294C36.4846 2.07294 36.4805 2.07294 36.4764 2.07294C36.4814 2.07294 36.4866 2.07294 36.4915 2.07294C36.4905 2.07294 36.4895 2.07294 36.4885 2.07294ZM36.5166 2.07328C36.5144 2.07328 36.512 2.07328 36.5096 2.07328C36.5125 2.07328 36.5154 2.07328 36.5183 2.07328C36.5177 2.07328 36.5171 2.07328 36.5165 2.07328H36.5166ZM36.4828 1.60012C36.5022 1.59844 36.5219 1.59709 36.5414 1.59574C36.5215 1.59709 36.5021 1.59877 36.4828 1.60012ZM36.5704 1.59372C36.5826 1.59271 36.595 1.59204 36.6073 1.59103C36.5921 1.59204 36.577 1.59305 36.562 1.59406C36.5648 1.59406 36.5676 1.59372 36.5704 1.59339V1.59372ZM36.5806 2.61274C36.5787 2.61274 36.577 2.61274 36.5752 2.61274C36.601 2.61274 36.6273 2.61274 36.6543 2.61274C36.6292 2.61274 36.6045 2.61274 36.5806 2.61274ZM36.6657 2.11938C36.6219 2.11467 36.7294 2.12645 36.75 2.12847C36.7219 2.12544 36.6938 2.12241 36.6657 2.11938ZM37.6731 2.57538C37.4018 2.5912 37.112 2.5599 36.8495 2.59793C37.1209 2.56125 37.4185 2.5875 37.699 2.57673C37.6882 2.57606 37.6796 2.57572 37.6733 2.57505L37.6731 2.57538ZM37.4696 1.59642C37.595 1.59305 37.7204 1.59036 37.8457 1.58767C37.7203 1.59036 37.5949 1.59305 37.4696 1.59642ZM37.9424 2.13116C37.953 2.13116 37.963 2.13049 37.9733 2.13015C37.9635 2.13015 37.9534 2.13083 37.9425 2.13116H37.9424ZM42.053 1.04383C41.9841 1.04316 41.9109 1.04215 41.8358 1.04181C41.911 1.04215 41.9841 1.04282 42.053 1.04383ZM41.63 1.98746C41.63 1.98746 41.6297 1.9878 41.6293 1.9878C41.6299 1.9878 41.63 1.9878 41.63 1.98746ZM41.6292 1.9878C41.6291 1.9878 41.6288 1.9878 41.6287 1.9878C41.6288 1.9878 41.6291 1.9878 41.6291 1.9878H41.6292ZM41.6285 1.9878C41.6285 1.9878 41.6275 1.9878 41.627 1.9878C41.6276 1.9878 41.6281 1.9878 41.6285 1.9878ZM41.5776 1.9915C41.5731 1.9915 41.5686 1.99184 41.5637 1.99218C41.569 1.99218 41.5744 1.99184 41.5794 1.9915C41.5788 1.9915 41.5782 1.9915 41.5776 1.9915ZM41.5075 1.5106C41.541 1.5106 41.575 1.51127 41.6099 1.51127C41.561 1.51094 41.5132 1.5106 41.4672 1.51026C41.4805 1.51026 41.494 1.51026 41.5075 1.51026V1.5106ZM41.2174 1.03677C41.2863 1.03744 41.3555 1.03811 41.4245 1.03845C41.3155 1.03744 41.1371 1.03677 41.0465 1.03475C41.0836 1.03542 41.1379 1.03643 41.2172 1.03677H41.2174ZM41.0657 1.52272C41.0633 1.52272 41.061 1.52305 41.0583 1.52339C41.0608 1.52339 41.0633 1.52305 41.0657 1.52272ZM41.046 2.05881C41.0494 2.05881 41.0529 2.05881 41.0565 2.05881C41.0357 2.05881 41.0147 2.05881 40.9939 2.05881C41.0113 2.05881 41.0286 2.05881 41.0461 2.05881H41.046ZM40.9826 1.50387C40.9794 1.50387 40.9766 1.50353 40.9738 1.5032C40.9738 1.5032 40.9738 1.5032 40.9739 1.5032C40.9739 1.5032 40.9738 1.5032 40.9737 1.5032C40.9763 1.5032 40.9792 1.50353 40.9826 1.50387ZM40.9716 1.5032C40.97 1.5032 40.9684 1.5032 40.9669 1.50286C40.9684 1.50286 40.97 1.50286 40.9718 1.5032C40.9718 1.5032 40.9718 1.5032 40.9717 1.5032H40.9716ZM40.9647 1.50252C40.963 1.50252 40.9616 1.50219 40.9603 1.50185C40.9616 1.50185 40.9631 1.50219 40.9648 1.50252H40.9647ZM40.9661 1.50252C40.9661 1.50252 40.9656 1.50252 40.9653 1.50252C40.9656 1.50252 40.9659 1.50252 40.9661 1.50252ZM40.5046 1.05023C40.6438 1.02061 40.8058 1.03542 40.9685 1.03071C40.8056 1.03542 40.6439 1.02061 40.5046 1.05023ZM40.9594 1.50185C40.9578 1.50185 40.9566 1.50151 40.9557 1.50118C40.957 1.50118 40.9578 1.50151 40.9594 1.50185ZM40.8811 1.50185C40.8742 1.50185 40.8673 1.50185 40.8607 1.50185C40.8785 1.50185 40.8971 1.50151 40.9166 1.50118C40.9044 1.50118 40.8926 1.50118 40.8811 1.50151V1.50185ZM40.9555 1.50084C40.9418 1.50084 40.9287 1.50084 40.9157 1.50118C40.9287 1.50118 40.9419 1.50118 40.9555 1.50084ZM40.6562 1.50488C40.6562 1.50488 40.6562 1.50488 40.6561 1.50488C40.6561 1.50488 40.6561 1.50488 40.6562 1.50488ZM40.1325 1.05931C40.2566 1.05864 40.3807 1.0583 40.5047 1.05763C40.373 1.0509 40.2403 1.07446 40.1092 1.04955C40.1173 1.05191 40.1249 1.05494 40.1325 1.05931ZM40.09 1.51733C40.09 1.51733 40.0897 1.51733 40.0896 1.51733C40.0897 1.51733 40.0898 1.51733 40.09 1.51733ZM40.084 1.04619C40.084 1.04619 40.0849 1.04619 40.0855 1.04619C40.0822 1.04619 40.0793 1.04619 40.0746 1.04619C40.0785 1.04619 40.0816 1.04619 40.084 1.04619ZM40.0469 1.04686C40.0492 1.04686 40.0516 1.04686 40.0538 1.04686C40.0513 1.04686 40.0488 1.04686 40.0463 1.04686C40.0465 1.04686 40.0467 1.04686 40.0469 1.04686ZM39.8916 1.53113C40.1791 1.53012 40.382 1.52911 40.6662 1.52776C40.6446 1.52776 40.6233 1.52776 40.6026 1.5281C40.7291 1.52743 40.8726 1.52642 41.006 1.52574C41.006 1.52574 41.0059 1.52574 41.0057 1.52574C41.0174 1.52507 41.031 1.5244 41.0415 1.52373C40.6087 1.53147 40.3159 1.5281 39.8915 1.53113H39.8916ZM40.4813 2.07799C40.4787 2.07799 40.4763 2.07799 40.474 2.07833C40.5226 2.07496 40.6788 2.07193 40.7715 2.06857C40.6831 2.0716 40.5368 2.07463 40.4813 2.07799ZM40.3584 1.98915C40.2775 1.99083 40.1939 1.99251 40.1114 1.99419C40.1951 1.99251 40.276 1.99083 40.3584 1.98915ZM40.4904 1.99689C40.5589 1.99924 40.603 2.00093 40.629 2.00294C40.603 2.00126 40.5589 1.99924 40.4904 1.99689ZM40.4532 2.02213C40.4702 2.0191 40.4881 2.01943 40.518 2.01742C40.4881 2.0191 40.4702 2.0191 40.4532 2.02213ZM40.7814 2.05915C40.7753 2.05915 40.7692 2.05915 40.7633 2.05915C40.8397 2.05847 40.9161 2.05814 40.9925 2.05814C40.9222 2.05814 40.8518 2.05814 40.7814 2.05915ZM40.8424 2.06419C40.8411 2.0652 40.8389 2.0652 40.8371 2.06554C40.8405 2.0652 40.8424 2.06487 40.8424 2.06419ZM40.8346 2.06588C40.8346 2.06588 40.8333 2.06588 40.8326 2.06588C40.8333 2.06588 40.834 2.06588 40.8346 2.06588ZM40.8295 2.06621C40.8276 2.06621 40.8255 2.06621 40.8231 2.06655C40.8254 2.06655 40.8275 2.06655 40.8295 2.06621ZM40.8215 2.06689C40.8197 2.06689 40.8177 2.06689 40.8156 2.06722C40.8177 2.06722 40.8197 2.06722 40.8215 2.06689ZM40.7934 2.06823C40.7907 2.06823 40.7877 2.06823 40.7847 2.06857C40.7877 2.06857 40.7907 2.06857 40.7934 2.06823ZM40.7834 2.06857C40.7798 2.06857 40.7761 2.06857 40.7723 2.0689C40.7761 2.0689 40.7798 2.0689 40.7834 2.06857ZM40.4177 1.52911C40.4177 1.52911 40.4165 1.52911 40.416 1.52911C40.4165 1.52911 40.4172 1.52911 40.4177 1.52911ZM39.663 1.99756C39.663 1.99756 39.663 1.99756 39.6628 1.99756C39.6629 1.99756 39.6632 1.99756 39.663 1.99756ZM39.2018 1.06537C39.3521 1.06167 39.5023 1.05797 39.6526 1.05427C39.4763 1.05864 39.3002 1.06302 39.1239 1.06739C39.1499 1.06672 39.1758 1.06604 39.2018 1.06537ZM39.6602 1.99857C39.6581 1.99857 39.6547 1.99924 39.6499 1.99958C39.6547 1.99958 39.658 1.99891 39.6602 1.99857ZM39.3376 2.04198C39.3376 2.04198 39.3374 2.04198 39.3371 2.04198C39.3372 2.04198 39.3374 2.04198 39.3376 2.04198ZM38.0449 1.08388C38.3516 1.08321 38.6666 1.07883 38.9453 1.07177C38.6669 1.07883 38.3513 1.08321 38.0449 1.08388ZM38.2112 1.55401C38.1745 1.55401 38.1378 1.55435 38.1011 1.55469C38.1316 1.55469 38.1622 1.55435 38.1928 1.55401C38.1899 1.55401 38.1868 1.55401 38.1839 1.55401C38.193 1.55401 38.2022 1.55401 38.2113 1.55401H38.2112ZM38.2194 1.55401C38.2181 1.55401 38.2169 1.55401 38.2156 1.55401C38.2634 1.55401 38.3113 1.55368 38.3591 1.553C38.3125 1.55334 38.266 1.55368 38.2194 1.55401ZM38.2732 2.05107C38.2692 2.05107 38.2654 2.05107 38.2615 2.05107C38.2655 2.05107 38.2693 2.05107 38.2732 2.05107ZM38.0623 2.05275C38.092 2.05275 38.1217 2.05208 38.1513 2.05208C38.1217 2.05208 38.092 2.05241 38.0623 2.05275ZM38.2077 2.05141C38.2003 2.05141 38.193 2.05141 38.1856 2.05141C38.1929 2.05141 38.2003 2.05141 38.2077 2.05141ZM38.3641 2.12511C38.3619 2.12511 38.3595 2.12511 38.3573 2.12511C38.3639 2.12511 38.3705 2.12511 38.3771 2.12477C38.3729 2.12477 38.3685 2.12477 38.3643 2.12477L38.3641 2.12511ZM39.1076 2.56428C39.0264 2.56933 38.9471 2.57404 38.8616 2.57841C38.9533 2.5737 39.0377 2.56865 39.1254 2.56327C39.1194 2.5636 39.1136 2.56394 39.1077 2.56428H39.1076ZM39.1647 2.08977C39.1509 2.09044 39.1373 2.09112 39.1236 2.09179C39.1545 2.09011 39.1857 2.08842 39.2175 2.08708C39.1998 2.08809 39.1823 2.08876 39.1647 2.08977ZM39.2239 2.08674C39.231 2.0864 39.2382 2.08607 39.2453 2.08573C39.2382 2.08607 39.2309 2.0864 39.2239 2.08674ZM39.2776 2.08405C39.2835 2.08405 39.2893 2.08338 39.2953 2.08304C39.2893 2.08304 39.2835 2.08371 39.2776 2.08405ZM39.2953 2.55452C39.3538 2.55183 39.4155 2.5488 39.483 2.5461C39.4155 2.5488 39.3537 2.55149 39.2953 2.55452ZM39.6033 2.06049C39.4925 2.0615 39.3929 2.06251 39.2441 2.06386C39.3351 2.06318 39.4117 2.06217 39.4808 2.0615C39.4001 2.06217 39.3094 2.06318 39.1975 2.06419C39.2134 2.06419 39.2289 2.06419 39.244 2.06386C39.2379 2.06386 39.2316 2.06386 39.2253 2.06386C39.4072 2.06217 39.5328 2.06116 39.6523 2.05982C39.6361 2.05982 39.6198 2.05982 39.6033 2.06015V2.06049ZM39.6655 2.53971C39.7051 2.53836 39.7465 2.53735 39.7902 2.53635C39.7465 2.53735 39.705 2.5387 39.6655 2.53971ZM39.9468 2.0578C39.9385 2.0578 39.9303 2.0578 39.9222 2.0578C39.9353 2.0578 39.9485 2.0578 39.9623 2.0578C39.9571 2.0578 39.952 2.0578 39.9468 2.0578ZM40.0052 2.05107C40.0165 2.05107 40.0275 2.0504 40.0379 2.05006C40.0275 2.05006 40.0166 2.05073 40.0052 2.05107ZM40.0573 2.00463C39.9292 2.00867 39.8013 2.01304 39.6732 2.01674C39.786 2.01338 39.899 2.00968 40.0118 2.00597C39.9634 2.00766 39.9149 2.009 39.8663 2.01068C40.0579 2.00395 40.2496 2.00025 40.4412 1.99554C40.3131 1.99857 40.1852 2.0016 40.0571 2.00463H40.0573ZM40.4381 2.05073C40.4614 2.05073 40.485 2.05073 40.5087 2.05073C40.471 2.05073 40.4338 2.05073 40.3969 2.05073C40.4106 2.05073 40.4244 2.05073 40.4381 2.05073ZM40.4339 2.5313C40.4277 2.5313 40.4214 2.5313 40.4152 2.5313C40.4211 2.52726 40.434 2.54173 40.4339 2.52221C40.4339 2.52524 40.4339 2.52827 40.4339 2.53163V2.5313ZM41.0154 2.54913C40.8315 2.54981 40.6476 2.55048 40.4637 2.55082C40.6814 2.55014 41.0248 2.54846 41.2857 2.55014C41.1956 2.54981 41.1056 2.54947 41.0155 2.5488L41.0154 2.54913ZM41.0702 2.05847C41.0666 2.05847 41.0632 2.05847 41.0596 2.05847C41.1482 2.05847 41.2368 2.05881 41.3255 2.05915C41.2404 2.05915 41.1554 2.05847 41.0702 2.05847ZM41.3245 2.05915C41.4339 2.0615 41.5442 2.05645 41.6532 2.06184C41.6481 2.0578 41.6407 2.06116 41.635 2.06015C41.636 2.06015 41.6369 2.06015 41.6379 2.06015C41.5335 2.06015 41.4291 2.05982 41.3246 2.05915H41.3245ZM41.6325 2.55889C41.6824 2.56125 41.7585 2.56327 41.8645 2.56529C41.7583 2.5636 41.6823 2.56158 41.6325 2.55889ZM41.8183 2.09313C41.8256 2.09313 41.8332 2.09313 41.841 2.09347C41.8332 2.09347 41.8259 2.09347 41.8183 2.09313ZM41.8685 2.09414C41.8753 2.09414 41.8822 2.09482 41.8892 2.09414C41.8822 2.09448 41.8753 2.09414 41.8685 2.09414ZM41.8917 2.56562C41.8898 2.56562 41.8881 2.56562 41.8863 2.56562C41.8898 2.56562 41.8935 2.56562 41.8971 2.56495C41.8953 2.56495 41.8935 2.56529 41.8917 2.56562ZM42.1723 2.08405C41.9707 2.08304 41.7692 2.08169 41.5676 2.08035C41.5675 2.08035 41.5674 2.08001 41.5675 2.07967C41.7687 2.08304 41.9709 2.08237 42.1723 2.08405ZM42.109 1.39113C42.1128 1.39113 42.1167 1.39147 42.1204 1.39181C42.1127 1.39147 42.1046 1.39113 42.0968 1.39046C42.1007 1.39046 42.1042 1.3908 42.1079 1.39113C42.1073 1.39113 42.1066 1.39113 42.1058 1.39113C42.1069 1.39113 42.1078 1.39113 42.1089 1.39113H42.109ZM42.0718 1.38911C42.0706 1.38911 42.0694 1.38911 42.0682 1.38911C42.0768 1.38945 42.0852 1.39012 42.0931 1.39046C42.0862 1.39012 42.0791 1.38979 42.0718 1.38945V1.38911ZM42.1728 2.08405H42.1726C42.2028 2.08338 42.2331 2.08304 42.2643 2.08237C42.2331 2.08304 42.2029 2.08338 42.1727 2.08405H42.1728ZM42.2428 2.08472C42.2428 2.08472 42.2422 2.08506 42.2421 2.08539C42.2421 2.08539 42.2422 2.08506 42.2428 2.08472ZM42.2263 2.55586C42.2087 2.55519 42.191 2.55553 42.1734 2.55519C42.1984 2.55586 42.2201 2.55384 42.2457 2.55957C42.2377 2.55856 42.2318 2.55721 42.2263 2.55586ZM42.3004 2.56529C42.2939 2.56461 42.2869 2.56428 42.281 2.5636C42.2874 2.56394 42.2949 2.56495 42.302 2.56529C42.3014 2.56529 42.3009 2.56529 42.3004 2.56529ZM42.301 2.08102C42.2993 2.08102 42.2975 2.08102 42.2957 2.08102C42.2992 2.08102 42.3028 2.08102 42.3063 2.08102C42.3045 2.08102 42.3027 2.08102 42.3009 2.08102H42.301ZM42.3152 1.04686C42.3416 0.845953 42.064 0.873885 42.0534 0.980902C42.0636 0.874222 42.3418 0.845617 42.3152 1.04686ZM48.6267 1.07614C48.6818 1.07816 48.7378 1.08051 48.7946 1.08253C48.6754 1.07782 48.5597 1.07345 48.4411 1.06907C48.503 1.07143 48.5648 1.07378 48.6267 1.07614ZM48.4781 1.66238C48.5145 1.66372 48.5503 1.6654 48.5851 1.66709C48.5503 1.6654 48.5146 1.66372 48.4781 1.66238ZM48.5659 2.12948C48.5823 2.12982 48.5987 2.13015 48.6153 2.13049C48.5949 2.13015 48.5745 2.12948 48.5544 2.12914C48.5582 2.12914 48.5621 2.12914 48.5659 2.12914V2.12948ZM48.6966 1.67281C48.7038 1.67314 48.7106 1.67382 48.7177 1.67415C48.7106 1.67382 48.7036 1.67314 48.6966 1.67281ZM48.273 1.65464C48.2641 1.65464 48.2552 1.65396 48.2463 1.65363C48.2552 1.65363 48.2641 1.6543 48.273 1.65464ZM48.4083 1.65935C48.4009 1.65935 48.3933 1.65867 48.3858 1.65834C48.3933 1.65834 48.4009 1.65901 48.4083 1.65935ZM48.342 1.65699C48.3328 1.65699 48.3237 1.65632 48.3145 1.65598C48.3237 1.65598 48.333 1.65665 48.342 1.65699ZM46.8456 1.01388C46.9828 1.11282 47.3412 0.834175 47.432 1.15623C47.5404 0.837203 47.922 1.14748 48.1228 1.05729C47.6678 1.03811 47.1286 1.02566 46.8458 1.01388H46.8456ZM48.0314 1.52507C48.0203 1.52473 48.0093 1.5244 47.9983 1.52373C48.0093 1.52406 48.0204 1.5244 48.0314 1.52507ZM46.6071 2.18568C47.0237 2.20183 47.4404 2.219 47.857 2.23582C47.3711 2.21698 46.8854 2.19477 46.3995 2.17895C46.4687 2.18131 46.538 2.18366 46.6073 2.18568H46.6071ZM46.885 2.09549C46.8904 2.09549 46.896 2.09549 46.9014 2.09583C46.896 2.09583 46.8904 2.09583 46.885 2.09549ZM46.9397 2.09684C46.9558 2.09717 46.972 2.09751 46.9879 2.09785C46.9718 2.09751 46.9558 2.09717 46.9397 2.09684ZM46.9936 2.13823C46.97 2.13756 46.9453 2.13655 46.9194 2.13554C46.9442 2.13655 46.9695 2.13756 46.9936 2.13823ZM46.9182 2.1352C46.9085 2.13486 46.8989 2.13419 46.8888 2.13385C46.8987 2.13419 46.9085 2.13486 46.9182 2.1352ZM47.0324 2.12241C47.0316 2.12241 47.0306 2.12241 47.0298 2.12241C47.0325 2.12241 47.0351 2.12241 47.0378 2.12241C47.0359 2.12241 47.0342 2.12241 47.0324 2.12241ZM47.4299 2.10727C47.4398 2.10727 47.4496 2.10761 47.4596 2.10794C47.4496 2.10794 47.4398 2.10761 47.4299 2.10727ZM47.3773 2.10626C47.3624 2.10626 47.3474 2.10559 47.3324 2.10525C47.3328 2.10525 47.3332 2.10525 47.3336 2.10525C47.3331 2.10525 47.3324 2.10525 47.3319 2.10525C47.3535 2.10559 47.375 2.10626 47.3965 2.1066C47.3877 2.1066 47.3787 2.10626 47.3698 2.10592C47.3723 2.10592 47.3748 2.10592 47.3773 2.10592V2.10626ZM47.2759 2.10424C47.2429 2.10357 47.2101 2.10289 47.1768 2.10222C47.2137 2.10289 47.2502 2.1039 47.2866 2.10458C47.283 2.10458 47.2796 2.10458 47.276 2.10458L47.2759 2.10424ZM47.2273 2.14227C47.2103 2.14227 47.1931 2.14227 47.1759 2.14193C47.1931 2.14193 47.2102 2.14193 47.2273 2.14227ZM47.1665 1.59844C47.1649 1.59844 47.1633 1.59844 47.1617 1.59844C47.1635 1.59844 47.1652 1.59844 47.1669 1.59844C47.1669 1.59844 47.1666 1.59844 47.1665 1.59844ZM47.1658 1.59844C47.1374 1.59743 47.1085 1.59608 47.0798 1.59507C47.1085 1.59608 47.1372 1.59743 47.1658 1.59844ZM47.1364 2.1416C47.1272 2.1416 47.1178 2.1416 47.1084 2.14126C47.1179 2.14126 47.1272 2.14126 47.1364 2.1416ZM47.4719 2.15775C47.6048 2.15909 47.7379 2.16078 47.8709 2.16179C47.7379 2.16044 47.6048 2.15909 47.4719 2.15775ZM47.4597 2.10761C47.4674 2.10761 47.4751 2.10761 47.4826 2.10794C47.4749 2.10794 47.4674 2.10794 47.4597 2.10761ZM47.7007 1.51363C47.705 1.51363 47.7093 1.51363 47.7136 1.51397C47.7093 1.51397 47.705 1.51397 47.7007 1.51363ZM46.7177 2.09145C46.6973 2.09078 46.6768 2.09044 46.6563 2.08977C46.6769 2.09044 46.6973 2.09078 46.7177 2.09145ZM46.5342 2.0864C46.5146 2.08573 46.4947 2.08539 46.4748 2.08472C46.496 2.08539 46.5171 2.08607 46.538 2.0864C46.5367 2.0864 46.5355 2.0864 46.5342 2.0864ZM46.4591 2.08438C46.4562 2.08438 46.4531 2.08438 46.4501 2.08438C46.4531 2.08438 46.456 2.08438 46.4591 2.08438ZM46.4344 2.08371C46.4113 2.08304 46.388 2.08237 46.3645 2.08169C46.3905 2.08237 46.4163 2.08338 46.4418 2.08405C46.4393 2.08405 46.437 2.08405 46.4344 2.08405V2.08371ZM46.3535 2.08136C46.3261 2.08068 46.2982 2.07967 46.2704 2.07866C46.2983 2.07967 46.3261 2.08035 46.3535 2.08136ZM45.946 2.06789C45.946 2.06789 45.9459 2.06789 45.9458 2.06789C45.9458 2.06789 45.9459 2.06789 45.946 2.06789ZM45.2501 2.09717C45.2501 2.09717 45.2501 2.09717 45.25 2.09717C45.25 2.09717 45.25 2.09717 45.2501 2.09717ZM45.1809 2.02886H45.1807C45.1807 2.02886 45.1807 2.02886 45.1809 2.02886ZM44.9112 2.08573C44.9104 2.08573 44.9096 2.08573 44.9087 2.08573C44.9088 2.08573 44.9091 2.08573 44.9092 2.08573C44.9088 2.08573 44.9083 2.08573 44.9079 2.08573C44.9091 2.08573 44.9102 2.08573 44.9111 2.08573H44.9112ZM44.9078 2.08573C44.9051 2.08573 44.9018 2.08573 44.8986 2.08573C44.902 2.08573 44.9051 2.08573 44.9078 2.08573ZM44.8955 2.08573C44.8928 2.08573 44.8902 2.08573 44.8875 2.08573C44.8903 2.08573 44.893 2.08573 44.8955 2.08573ZM44.854 2.08607C44.7799 2.08607 44.6962 2.08539 44.6209 2.08607C44.686 2.08539 44.7869 2.08607 44.854 2.08607ZM44.6529 1.5419C44.6756 1.5419 44.6987 1.54223 44.7217 1.54257C44.6987 1.54257 44.6756 1.54223 44.6529 1.5419ZM44.8004 2.01169C44.8004 2.01169 44.8006 2.01169 44.8008 2.01169C44.7969 2.01169 44.7931 2.01169 44.789 2.01136C44.793 2.01136 44.7967 2.01136 44.8004 2.01169ZM44.8156 2.01237C44.8184 2.01237 44.821 2.01237 44.8236 2.01237C44.8187 2.01237 44.8134 2.01237 44.8082 2.01169C44.8107 2.01169 44.8131 2.01169 44.8155 2.01169L44.8156 2.01237ZM43.9581 1.04282C43.9581 1.04282 43.9587 1.04282 43.9588 1.04282C43.9583 1.04282 43.9579 1.04282 43.9573 1.04282C43.9576 1.04282 43.9579 1.04282 43.958 1.04282H43.9581ZM43.7032 1.50824C43.7032 1.50824 43.7024 1.50824 43.702 1.50824C43.7068 1.50824 43.7115 1.50824 43.7164 1.50824C43.7119 1.50824 43.7076 1.50824 43.7032 1.50824ZM43.7062 1.99453C43.7107 1.99419 43.7156 1.99386 43.7207 1.99352C43.7142 1.99386 43.7084 1.99419 43.7023 1.99487C43.7036 1.99487 43.7049 1.99487 43.7062 1.99487V1.99453ZM43.6889 1.50791C43.6911 1.50791 43.6935 1.50791 43.6958 1.50791C43.6919 1.50791 43.6881 1.50791 43.6843 1.50791C43.6858 1.50791 43.6873 1.50791 43.6889 1.50791ZM43.6749 1.50791C43.6709 1.50791 43.6668 1.50791 43.6628 1.50791C43.6668 1.50791 43.6708 1.50791 43.6749 1.50791ZM43.6546 1.50757C43.6485 1.50757 43.6423 1.50757 43.6362 1.50757C43.6421 1.50757 43.6484 1.50757 43.6546 1.50757ZM43.615 2.00025C43.615 2.00025 43.6153 2.00025 43.6154 2.00025C43.6153 2.00025 43.6151 2.00025 43.6149 2.00025H43.615ZM43.6147 2.00025C43.6123 2.00025 43.6098 2.00025 43.6075 2.00025C43.61 2.00025 43.6123 2.00025 43.6147 2.00025ZM43.4134 1.5244C43.4122 1.52373 43.4104 1.52305 43.4079 1.52238C43.4104 1.52305 43.4124 1.52373 43.4134 1.5244ZM43.3813 1.50623C43.3791 1.50623 43.3769 1.50623 43.3749 1.50623C43.3769 1.50623 43.379 1.50623 43.3813 1.50623ZM43.3733 1.50623C43.3744 1.50623 43.3757 1.50623 43.3769 1.50623C43.3754 1.50623 43.3738 1.50623 43.3725 1.50623C43.3728 1.50623 43.373 1.50623 43.3733 1.50623ZM43.343 1.0371C43.3279 1.03879 43.3136 1.04417 43.3003 1.05258C43.3137 1.04417 43.3279 1.03879 43.343 1.0371ZM43.4006 2.07092C43.3948 2.07092 43.3888 2.07092 43.383 2.07092C43.3944 2.07092 43.4056 2.07126 43.4169 2.0716C43.4113 2.0716 43.4059 2.0716 43.4003 2.0716C43.4003 2.0716 43.4005 2.0716 43.4006 2.0716V2.07092ZM43.3511 2.04198C43.3426 2.04198 43.3341 2.04165 43.3255 2.04131C43.3341 2.04131 43.3427 2.04165 43.3511 2.04198ZM43.2717 2.03996C43.2772 2.03996 43.2826 2.03996 43.288 2.03996C43.2794 2.03996 43.2707 2.03963 43.2619 2.03929C43.2653 2.03929 43.2686 2.03929 43.2719 2.03929L43.2717 2.03996ZM43.2585 2.03996C43.2592 2.03996 43.26 2.03996 43.2606 2.03996C43.2589 2.03996 43.2572 2.03996 43.2556 2.03996C43.2565 2.03996 43.2576 2.03996 43.2585 2.03996ZM43.0826 2.0366C43.0836 2.0366 43.0846 2.0366 43.0855 2.0366C43.0826 2.0366 43.0798 2.0366 43.0768 2.0366C43.0787 2.0366 43.0806 2.0366 43.0825 2.0366H43.0826ZM42.9491 2.06318C42.98 2.06386 43.0106 2.06419 43.0412 2.06487C43.0106 2.06419 42.9799 2.06386 42.9491 2.06318ZM42.5013 2.02179C42.5062 2.02179 42.5111 2.02179 42.516 2.02145C42.5111 2.02145 42.5062 2.02179 42.5013 2.02179ZM42.6439 2.01607C42.6439 2.01607 42.6432 2.01607 42.6428 2.01607C42.6432 2.01607 42.6436 2.01607 42.644 2.01607C42.6398 2.01607 42.6352 2.01641 42.6306 2.01674C42.635 2.01674 42.6395 2.01641 42.6438 2.01607H42.6439ZM42.6244 1.52541C42.6305 1.52541 42.6365 1.52574 42.6424 1.52608C42.6365 1.52608 42.6306 1.52574 42.6244 1.52541ZM42.6541 1.52642C42.6623 1.52642 42.6702 1.52709 42.6781 1.52743C42.6702 1.52743 42.6623 1.52675 42.6541 1.52642ZM42.6921 1.52776C42.6958 1.52776 42.6996 1.52776 42.7032 1.5281C42.6996 1.5281 42.6958 1.5281 42.6921 1.52776ZM42.9604 2.10458C42.9367 2.1039 42.9126 2.10289 42.8881 2.10222C42.9125 2.10289 42.9367 2.10357 42.9604 2.10458ZM43.027 1.06302C42.9995 1.06302 42.9703 1.06302 42.9397 1.06234C42.9705 1.06234 42.9995 1.06268 43.027 1.06302ZM42.7816 1.53248C42.7751 1.53214 42.7684 1.5318 42.7611 1.53113C42.7682 1.53147 42.7751 1.5318 42.7816 1.53248ZM42.7157 1.52911C42.72 1.52911 42.7241 1.52945 42.7284 1.52978C42.7243 1.52978 42.72 1.52945 42.7157 1.52911ZM42.7384 1.53012C42.7419 1.53012 42.7451 1.53046 42.7484 1.53079C42.7451 1.53079 42.7419 1.53046 42.7384 1.53012ZM42.5822 1.5244C42.5717 1.5244 42.5611 1.52373 42.5503 1.52339C42.5611 1.52339 42.5717 1.52406 42.5822 1.5244ZM42.6129 1.52541C42.6063 1.52541 42.5995 1.52507 42.5928 1.52473C42.5997 1.52473 42.6063 1.52507 42.6129 1.52541ZM42.359 1.04821C42.4235 1.04955 42.4814 1.05056 42.5329 1.05191C42.4748 1.05023 42.3998 1.04888 42.3303 1.04753C42.3401 1.04753 42.3498 1.04787 42.359 1.04821ZM42.4842 2.05814C42.4842 2.05814 42.4839 2.05814 42.4838 2.05814C42.4838 2.05814 42.484 2.05814 42.4842 2.05814ZM42.4225 1.52036C42.41 1.52036 42.3973 1.51969 42.3845 1.51969C42.3972 1.51969 42.41 1.52002 42.4225 1.52036ZM42.3517 2.08068C42.3695 2.08068 42.3883 2.08035 42.406 2.08001C42.3884 2.08001 42.3695 2.08068 42.3517 2.08068ZM42.466 2.07866C42.465 2.07866 42.4639 2.07866 42.4629 2.07866C42.4639 2.07866 42.4648 2.07866 42.4659 2.07866C42.4578 2.07866 42.4493 2.07866 42.4409 2.079C42.4569 2.079 42.4733 2.07833 42.4892 2.07799C42.4815 2.07799 42.474 2.07799 42.466 2.07833V2.07866ZM42.5816 2.07597C42.5803 2.07597 42.579 2.07597 42.5777 2.07597C42.5843 2.07597 42.5908 2.07564 42.5969 2.0753C42.592 2.0753 42.5868 2.0753 42.5816 2.07564V2.07597ZM42.6828 2.09785C42.6828 2.09785 42.6836 2.09785 42.6841 2.09785C42.6643 2.09751 42.6446 2.09717 42.6243 2.09684C42.6442 2.09684 42.6634 2.09751 42.6828 2.09785ZM43.4843 2.59288C43.2156 2.58783 42.913 2.57134 42.6351 2.56798C42.9127 2.57101 43.216 2.58851 43.4843 2.59255C43.4843 2.59255 43.4843 2.59255 43.4843 2.59288ZM43.4852 2.12174C43.4852 2.12174 43.4855 2.12174 43.4856 2.12174C43.4856 2.12174 43.4853 2.12174 43.4852 2.12174ZM43.5637 2.0504C43.5512 2.04972 43.5385 2.04939 43.5253 2.04871C43.5472 2.04972 43.5682 2.0504 43.5885 2.05141C43.5804 2.05107 43.5721 2.05073 43.5637 2.0504ZM43.7926 1.99251C43.7964 1.99251 43.8001 1.99251 43.804 1.99251C43.7999 1.99251 43.7963 1.99251 43.7926 1.99251ZM43.8376 1.99251C43.8257 1.99251 43.8147 1.99251 43.8048 1.99251C43.8147 1.99251 43.8256 1.99251 43.8376 1.99251ZM44.0404 2.08136C44.0404 2.08136 44.039 2.08136 44.0384 2.08136C44.0406 2.08136 44.043 2.08136 44.0454 2.08169C44.0437 2.08169 44.042 2.08169 44.0404 2.08136ZM44.051 2.08203C44.0539 2.08203 44.0571 2.08237 44.0601 2.0827C44.0569 2.0827 44.0539 2.08237 44.051 2.08203ZM43.9735 2.04871C44.0196 2.04939 44.0641 2.04972 44.1076 2.05006C44.0641 2.04972 44.0194 2.04905 43.9735 2.04871ZM43.9657 1.51531C43.8699 1.51161 43.78 1.51094 43.7097 1.50892C43.7452 1.50959 43.7868 1.5106 43.8248 1.51127C43.8211 1.51127 43.8175 1.51127 43.8138 1.51127C43.8611 1.51228 43.9083 1.51329 43.956 1.51464C43.9556 1.51464 43.9553 1.51464 43.9549 1.51464C44.0895 1.52339 44.2242 1.5318 44.3587 1.54022C44.2278 1.53214 44.0966 1.52373 43.9657 1.51531ZM44.8262 2.13453C44.8114 2.13419 44.7959 2.13385 44.78 2.13352C44.7956 2.13385 44.811 2.13419 44.8257 2.13453C44.7444 2.13251 44.6605 2.13083 44.577 2.12881C44.5874 2.12881 44.598 2.12914 44.6082 2.12948C44.6023 2.12948 44.5962 2.12948 44.5902 2.12914C44.7192 2.13217 44.8343 2.13486 44.9184 2.13688C44.8908 2.13621 44.8598 2.13554 44.8261 2.13486L44.8262 2.13453ZM44.9536 2.00294C44.9433 2.00294 44.9333 2.00294 44.9234 2.00261C44.947 2.00261 44.9706 2.00328 44.9947 2.00362C44.9808 2.00362 44.967 2.00328 44.9537 2.00294H44.9536ZM44.9549 2.00294C45.0213 2.00395 45.0946 2.0053 45.1726 2.00732C45.0945 2.0053 45.0213 2.00395 44.9549 2.00294ZM45.15 2.02953C45.1467 2.02953 45.1432 2.02953 45.1399 2.02953C45.1434 2.02953 45.1468 2.02953 45.15 2.02953ZM45.384 2.63057C45.304 2.63057 45.3052 2.63057 45.3844 2.63057C45.3843 2.63057 45.3841 2.63057 45.384 2.63057ZM45.4172 2.14799C45.2643 2.14462 45.1113 2.14126 44.9584 2.13789C45.1406 2.14227 45.3229 2.1453 45.5052 2.15034C45.4759 2.14967 45.4465 2.14866 45.4172 2.14799ZM45.5445 2.12107C45.5445 2.12107 45.5454 2.12107 45.5458 2.12107C45.5454 2.12107 45.5449 2.12107 45.5445 2.12107ZM45.5938 2.15607C45.5927 2.15607 45.5917 2.15607 45.5903 2.1564C45.5918 2.1564 45.5931 2.1564 45.5943 2.15607C45.5942 2.15607 45.594 2.15607 45.5939 2.15607H45.5938ZM45.5967 2.15573C45.5967 2.15573 45.5954 2.15573 45.5944 2.15607C45.5954 2.15607 45.5962 2.15607 45.5968 2.15573C45.5968 2.15573 45.5968 2.15573 45.5967 2.15573ZM45.5983 2.15539C45.5983 2.15539 45.5976 2.15539 45.5973 2.15539C45.5977 2.15539 45.598 2.15539 45.5983 2.15539ZM45.5985 2.15539C45.5985 2.15539 45.5988 2.15539 45.5987 2.15539C45.5987 2.15539 45.5987 2.15539 45.5985 2.15539ZM45.6802 2.04669C45.7728 2.05174 45.8609 2.05612 45.9442 2.0615C45.8796 2.05746 45.7745 2.05208 45.6802 2.04669ZM45.9822 2.06419C45.9798 2.06419 45.9774 2.06386 45.9748 2.06352C45.9774 2.06352 45.9798 2.06386 45.9822 2.06419ZM45.9707 2.06318C45.9679 2.06318 45.965 2.06285 45.9618 2.06251C45.9648 2.06251 45.9679 2.06285 45.9707 2.06318ZM45.8766 2.64202C45.8972 2.64269 45.9173 2.64303 45.9366 2.64336C45.9173 2.64303 45.8972 2.64235 45.8766 2.64202ZM45.9374 2.64336C45.9556 2.6437 45.9732 2.64437 45.9901 2.64471C45.9733 2.64437 45.9557 2.64403 45.9374 2.64336ZM45.9713 2.17289C45.9781 2.17289 45.9848 2.17289 45.9916 2.17323C45.985 2.17323 45.9782 2.17323 45.9713 2.17289ZM46.0018 2.17357C46.0084 2.17357 46.0148 2.17357 46.0213 2.1739C46.0149 2.1739 46.0084 2.1739 46.0018 2.17357ZM46.0305 2.0716C46.0028 2.07059 45.9748 2.06958 45.947 2.06857C45.9797 2.06958 46.0119 2.07092 46.0438 2.07193C46.0394 2.07193 46.0349 2.07193 46.0305 2.0716ZM46.1383 2.0753C46.1259 2.07496 46.1133 2.07463 46.1007 2.07395C46.1159 2.07463 46.1314 2.07496 46.1465 2.07564C46.1438 2.07564 46.1411 2.07564 46.1383 2.07564V2.0753ZM46.1545 2.6474C46.1565 2.6474 46.1582 2.6474 46.16 2.6474C46.1582 2.6474 46.1565 2.6474 46.1546 2.6474H46.1545ZM46.1718 2.07664C46.1697 2.07664 46.1676 2.07664 46.1655 2.07664C46.1937 2.07765 46.2215 2.07833 46.2492 2.07934C46.2235 2.07866 46.1979 2.07765 46.1718 2.07698V2.07664ZM47.8498 2.70764C47.2988 2.68778 46.7476 2.65851 46.1966 2.64605C46.774 2.66187 47.3542 2.68543 47.9313 2.7137C47.9082 2.71168 47.8815 2.70999 47.8498 2.70764ZM47.9578 2.24424C47.957 2.24424 47.9563 2.24424 47.9555 2.24424C47.9604 2.24457 47.9652 2.24491 47.9698 2.24558C47.9659 2.24525 47.9619 2.24491 47.9578 2.24457V2.24424ZM47.9693 2.24525C47.9719 2.24525 47.9745 2.24558 47.977 2.24592C47.9745 2.24592 47.9718 2.24558 47.9693 2.24525ZM47.9791 2.24626C47.9782 2.24626 47.9772 2.24626 47.9762 2.24626C47.9811 2.24659 47.9857 2.24727 47.9904 2.2476C47.9866 2.24727 47.9829 2.24693 47.979 2.24659L47.9791 2.24626ZM48.0149 2.71908H48.0137C48.0147 2.71908 48.0158 2.71908 48.0168 2.71908C48.0162 2.71908 48.0155 2.71908 48.0149 2.71908ZM48.0468 2.2476C48.0468 2.2476 48.0464 2.2476 48.0461 2.2476C48.0472 2.2476 48.0481 2.2476 48.049 2.2476C48.0484 2.2476 48.0476 2.2476 48.0468 2.2476ZM48.1376 2.1214C48.1511 2.1214 48.1645 2.12208 48.178 2.12208C48.1645 2.12208 48.151 2.1214 48.1376 2.1214ZM48.2903 2.12443C48.2903 2.12443 48.29 2.12443 48.2899 2.12443C48.294 2.12443 48.2981 2.12443 48.3022 2.12443C48.2983 2.12443 48.2943 2.12443 48.2903 2.12443ZM48.3024 2.12443C48.3208 2.12477 48.339 2.12511 48.3575 2.12544C48.339 2.12511 48.3206 2.12477 48.3024 2.12443ZM48.3784 2.12611C48.3772 2.12611 48.376 2.12611 48.3748 2.12611C48.3782 2.12611 48.3818 2.12611 48.3853 2.12611C48.383 2.12611 48.3808 2.12611 48.3784 2.12611ZM48.398 2.12645C48.4004 2.12645 48.4027 2.12645 48.4051 2.12645C48.4008 2.12645 48.3964 2.12645 48.3921 2.12645C48.3941 2.12645 48.396 2.12645 48.398 2.12645ZM48.4671 2.1278C48.4631 2.1278 48.4593 2.1278 48.4553 2.1278C48.4601 2.1278 48.4647 2.1278 48.4695 2.1278C48.4687 2.1278 48.4679 2.1278 48.4671 2.1278ZM48.4794 2.1278C48.4986 2.12813 48.5178 2.12881 48.5373 2.12914C48.518 2.12881 48.4986 2.12813 48.4794 2.1278ZM48.5368 2.12914C48.5394 2.12914 48.5421 2.12914 48.5446 2.12914C48.5419 2.12914 48.5393 2.12914 48.5368 2.12914ZM48.746 1.67617C48.7542 1.67685 48.7622 1.67718 48.7702 1.67786C48.7622 1.67718 48.7541 1.67685 48.746 1.67617ZM48.8382 1.68257C48.8408 1.68257 48.8433 1.6829 48.846 1.68324C48.8435 1.68324 48.8408 1.6829 48.8382 1.68257ZM48.8481 1.68324C48.8473 1.68324 48.8465 1.68324 48.8457 1.68324C48.8604 1.68425 48.875 1.6856 48.8892 1.68661C48.8756 1.6856 48.862 1.68425 48.8481 1.68324ZM48.9517 1.56007C48.9544 1.56007 48.9571 1.56007 48.9597 1.56007C48.9571 1.56007 48.9543 1.56007 48.9517 1.56007ZM49.3312 1.22489C49.3312 1.20436 49.3315 1.18383 49.3316 1.1633C49.3316 1.18383 49.3313 1.20436 49.3312 1.22489ZM60.3406 3.07277C60.3406 3.07277 60.3406 3.07479 60.3406 3.07614C60.3406 3.07345 60.3406 3.07076 60.3405 3.06806C60.3405 3.06975 60.3405 3.07143 60.3405 3.07311L60.3406 3.07277ZM60.1552 3.09768C60.1552 3.09768 60.1552 3.097 60.1552 3.09667C60.1552 3.097 60.1552 3.09734 60.1552 3.09768ZM60.1552 3.13167C60.1552 3.13167 60.1552 3.13099 60.1552 3.13066C60.155 3.14143 60.1548 3.15186 60.1547 3.16229C60.155 3.15186 60.1551 3.1421 60.1552 3.13167ZM60.1461 3.17508C60.1456 3.18349 60.1452 3.19224 60.1446 3.20066C60.145 3.19224 60.1456 3.18383 60.1461 3.17508ZM60.1443 3.2084C60.1443 3.20671 60.1445 3.20469 60.1446 3.20301C60.1445 3.20537 60.1444 3.20739 60.1443 3.20974C60.1443 3.20941 60.1443 3.20907 60.1443 3.20873V3.2084ZM60.1429 3.30363C60.1429 3.30363 60.1431 3.30262 60.1432 3.30195C60.1423 3.30801 60.1413 3.31373 60.1404 3.31945C60.1412 3.3144 60.142 3.30902 60.1429 3.30363ZM60.1307 2.28832C60.1196 2.27553 60.1084 2.26376 60.0967 2.254C60.1084 2.26376 60.1196 2.27587 60.1307 2.28832ZM60.1208 3.132C60.1208 3.13705 60.1207 3.1421 60.1205 3.14715C60.1205 3.1421 60.1207 3.13705 60.1208 3.132ZM60.1205 3.08556C60.1201 3.07479 60.1198 3.06369 60.1191 3.05258C60.1205 3.07446 60.1208 3.09566 60.1211 3.11753C60.1209 3.10676 60.1207 3.09633 60.1205 3.08556ZM60.1031 2.82307C60.1077 2.83485 60.1122 2.84797 60.1164 2.86211C60.1122 2.84831 60.1078 2.83485 60.1031 2.82307ZM60.1066 3.29488C60.1016 3.32282 60.0943 3.35277 60.0852 3.37532C60.0942 3.35243 60.1016 3.32282 60.1066 3.29488ZM60.1069 3.29488C60.1036 3.31272 60.0995 3.33089 60.0943 3.34873C60.0995 3.33089 60.1036 3.31306 60.1069 3.29488ZM60.0382 3.45305C60.039 3.45238 60.0396 3.45204 60.0404 3.45103C60.038 3.45339 60.0355 3.45507 60.0331 3.45709C60.0347 3.45575 60.0365 3.4544 60.0382 3.45305ZM60.0086 3.5244C60.0073 3.52507 60.006 3.52541 60.0047 3.52574C60.006 3.52541 60.0073 3.52473 60.0086 3.5244ZM59.9786 3.54392C59.9771 3.54392 59.9757 3.54392 59.9742 3.54392C59.9755 3.54392 59.9771 3.54392 59.9786 3.54392ZM59.9638 2.19073C59.9638 2.19073 59.9641 2.19073 59.9643 2.19073C59.964 2.19073 59.9638 2.19073 59.9635 2.19073C59.9635 2.19073 59.9636 2.19073 59.9638 2.19073ZM59.9656 2.66355C59.9677 2.66389 59.9698 2.66423 59.9721 2.6649C59.9688 2.66423 59.9656 2.66355 59.9624 2.66288C59.9635 2.66288 59.9645 2.66322 59.9656 2.66355ZM59.92 2.1877C59.9211 2.1877 59.9222 2.1877 59.9234 2.1877C59.9212 2.1877 59.919 2.1877 59.9169 2.1877C59.9179 2.1877 59.919 2.1877 59.92 2.1877ZM59.8861 2.66086C59.8934 2.66019 59.901 2.65985 59.9085 2.65952C59.8996 2.65985 59.8906 2.66019 59.8822 2.6612C59.8835 2.6612 59.8848 2.6612 59.8861 2.66086ZM59.9079 2.70158C59.9007 2.70158 59.8957 2.70158 59.8922 2.70091C59.8954 2.70091 59.8999 2.70091 59.9035 2.70124C59.9024 2.70124 59.9011 2.70124 59.9002 2.70124C59.9024 2.70124 59.9049 2.70124 59.9079 2.70124V2.70158ZM59.8872 2.69855C59.8872 2.69855 59.8879 2.69855 59.8883 2.69822C59.8879 2.69822 59.8875 2.69822 59.8872 2.69855ZM59.8869 2.69855C59.8869 2.69855 59.8867 2.69855 59.8864 2.69855C59.8865 2.69855 59.8867 2.69855 59.8869 2.69855ZM59.8857 2.69956C59.8857 2.69956 59.8857 2.69956 59.886 2.69923C59.8859 2.69923 59.8859 2.69923 59.8857 2.69956ZM59.8861 2.70024C59.8861 2.70024 59.8861 2.70024 59.8859 2.70024C59.8859 2.70024 59.8859 2.70024 59.8861 2.70024ZM59.8861 2.69923C59.8861 2.69923 59.8864 2.69923 59.8865 2.69923C59.8864 2.69923 59.8863 2.69923 59.8861 2.69923ZM59.8246 2.19813C59.8305 2.19712 59.8369 2.19611 59.8434 2.1951C59.8256 2.1978 59.8031 2.20217 59.788 2.20352C59.7978 2.20284 59.8108 2.20049 59.8244 2.19813H59.8246ZM59.8304 2.76115C59.8304 2.76115 59.8307 2.76115 59.8308 2.76115C59.8305 2.76115 59.8301 2.76115 59.8299 2.76115C59.83 2.76115 59.8301 2.76115 59.8303 2.76115H59.8304ZM59.8209 2.76317C59.8193 2.7635 59.8175 2.76384 59.8161 2.76418C59.8175 2.76418 59.8193 2.7635 59.8209 2.76317ZM59.803 2.71471C59.7979 2.71538 59.7928 2.71605 59.7878 2.71673C59.7928 2.71673 59.7978 2.71572 59.803 2.71471ZM59.768 2.67365C59.7621 2.67298 59.756 2.67163 59.75 2.67096C59.756 2.67197 59.7622 2.67298 59.768 2.67365ZM58.9304 2.02818C59.0935 2.06251 59.2568 2.0965 59.4201 2.13049C59.2567 2.0965 59.0933 2.06251 58.9299 2.02818C58.93 2.02818 58.9303 2.02818 58.9304 2.02818ZM58.9157 2.49798C59.166 2.54981 59.4164 2.60264 59.6666 2.65682C59.2533 2.56663 58.8399 2.48149 58.4264 2.40308C58.5895 2.43471 58.7525 2.46635 58.9157 2.49798ZM58.8658 3.23734C58.8776 3.23969 58.8893 3.24205 58.9013 3.24407C58.8895 3.24171 58.8776 3.23936 58.8658 3.23734ZM58.9708 3.2582C59.0158 3.26729 59.061 3.27671 59.1063 3.28647C59.0611 3.27671 59.0159 3.26729 58.9708 3.2582ZM58.9205 3.24811C58.9259 3.24912 58.9312 3.25013 58.9366 3.25147C58.9312 3.25046 58.9259 3.24945 58.9205 3.24811ZM59.1788 3.3107C59.2763 3.33224 59.3736 3.35647 59.4708 3.38205C59.3735 3.35613 59.2762 3.33224 59.1787 3.3107H59.1788ZM59.4267 2.65144C59.4147 2.64908 59.4028 2.64639 59.3905 2.6437C59.4041 2.64639 59.4173 2.64942 59.4307 2.65211C59.4287 2.65178 59.4267 2.65144 59.4248 2.65077C59.4254 2.65077 59.4261 2.65077 59.4267 2.6511V2.65144ZM59.4287 3.32383C59.4287 3.32383 59.4297 3.32416 59.4302 3.3245C59.4297 3.3245 59.4293 3.32416 59.4287 3.32383ZM59.4462 3.33022C59.4493 3.33123 59.4526 3.33258 59.4557 3.33359C59.4524 3.33224 59.4493 3.33123 59.4462 3.33022ZM59.5281 2.7285C59.4956 2.72211 59.4628 2.71572 59.4293 2.70932C59.4711 2.7174 59.5122 2.72548 59.5524 2.73322C59.5328 2.72951 59.5131 2.72548 59.4931 2.72177C59.5049 2.72413 59.5164 2.72615 59.5281 2.7285ZM59.5389 2.67567C59.5491 2.67802 59.5592 2.68004 59.5692 2.68206C59.5593 2.68004 59.5491 2.67769 59.5389 2.67567ZM58.549 3.08725C58.5437 3.08624 58.5384 3.08556 58.5331 3.08455C58.5385 3.08556 58.5441 3.08624 58.5495 3.08725C58.5499 3.08725 58.5502 3.08725 58.5506 3.08725C58.572 3.09095 58.5938 3.09465 58.6153 3.09835C58.5931 3.09465 58.5711 3.09061 58.5491 3.08725H58.549ZM58.6037 3.16263C58.6037 3.16263 58.6025 3.16263 58.6018 3.16263C58.6054 3.16296 58.609 3.16364 58.6127 3.16397C58.6097 3.16364 58.6067 3.1633 58.6037 3.16263ZM58.616 3.09869C58.6177 3.09869 58.6196 3.09936 58.6213 3.0997C58.6209 3.0997 58.6204 3.0997 58.62 3.0997C58.6204 3.0997 58.6208 3.0997 58.621 3.0997C58.6193 3.0997 58.6176 3.09902 58.6159 3.09869H58.616ZM58.3453 2.51582C58.3811 2.52187 58.4171 2.52793 58.4531 2.53433C58.4121 2.5276 58.3714 2.51986 58.3306 2.51346C58.3355 2.51413 58.3404 2.51514 58.3453 2.51582ZM58.306 3.15186C58.306 3.15186 58.3052 3.15186 58.3049 3.15186C58.3053 3.15186 58.3057 3.15186 58.306 3.15186ZM58.0041 2.99201C58.0041 2.99201 58.0039 2.99167 58.0034 2.99133C58.004 2.99133 58.0043 2.99201 58.0041 2.99201ZM58.0003 2.99032C58.0003 2.99032 58.0002 2.99032 58.0001 2.99032C58.0001 2.99032 58.0002 2.99032 58.0003 2.99032ZM57.9942 2.98864C57.9929 2.98864 57.9915 2.98797 57.9899 2.98763C57.9915 2.98797 57.9929 2.98831 57.9942 2.98864ZM57.9871 2.98696C57.9858 2.98696 57.9845 2.98629 57.9831 2.98595C57.9845 2.98595 57.9859 2.98662 57.9871 2.98696ZM58.09 3.01691C58.0917 3.01691 58.0934 3.01725 58.0952 3.01758C58.0936 3.01758 58.0921 3.01725 58.0905 3.01725C58.0905 3.01725 58.0907 3.01725 58.0908 3.01725C58.0905 3.01725 58.0903 3.01725 58.0899 3.01725L58.09 3.01691ZM58.1757 3.02667C58.1757 3.02667 58.1745 3.02667 58.174 3.02667C58.1762 3.02667 58.1786 3.02734 58.1808 3.02734C58.1796 3.02734 58.1786 3.02734 58.1774 3.02701C58.1824 3.02768 58.1876 3.02835 58.1928 3.02869C58.1899 3.02835 58.1868 3.02802 58.1839 3.02768C58.2143 3.03138 58.2449 3.03508 58.2754 3.03878C58.2281 3.03306 58.1806 3.02734 58.1333 3.02196C58.1366 3.02229 58.1399 3.02263 58.1432 3.02297C58.1431 3.02297 58.143 3.02297 58.1428 3.02297C58.1537 3.02431 58.1647 3.02532 58.1758 3.02667H58.1757ZM58.1134 3.02297C58.1182 3.02364 58.1232 3.02431 58.128 3.02499C58.1116 3.02297 58.0953 3.02095 58.0793 3.01893C58.0907 3.02028 58.1019 3.02162 58.1134 3.0233V3.02297ZM58.1974 3.12258C58.2117 3.12494 58.2263 3.12696 58.2411 3.12931C58.2253 3.12696 58.21 3.12426 58.195 3.12224C58.1958 3.12224 58.1966 3.12224 58.1974 3.12258ZM58.1895 3.03306C58.1741 3.03104 58.159 3.02903 58.1439 3.02701C58.1591 3.02903 58.1742 3.03104 58.1895 3.03306ZM58.1905 3.12157C58.1767 3.11955 58.1631 3.1172 58.1499 3.11518C58.163 3.1172 58.177 3.11955 58.1905 3.12157ZM58.2063 3.03542C58.2227 3.03744 58.239 3.03979 58.2554 3.04215C58.2388 3.03979 58.2226 3.03744 58.2063 3.03542ZM58.1301 2.3913C58.1864 2.40173 58.2436 2.4125 58.3012 2.42327C58.2154 2.40712 58.1312 2.3913 58.0463 2.37582C58.074 2.38087 58.1021 2.38625 58.1301 2.3913ZM58.0234 2.465C58.0222 2.465 58.021 2.46466 58.0198 2.46433C58.0201 2.46433 58.0203 2.46433 58.0206 2.46433C58.0215 2.46433 58.0225 2.46433 58.0235 2.46466L58.0234 2.465ZM57.9381 2.45221C57.9388 2.45221 57.9396 2.45221 57.9402 2.45221C57.9332 2.4512 57.9263 2.45019 57.9193 2.44918C57.9255 2.45019 57.9319 2.4512 57.9381 2.45188V2.45221ZM57.8108 2.97653C57.8079 2.97619 57.805 2.97585 57.8021 2.97552C57.8213 2.97787 57.8413 2.97989 57.8617 2.98225C57.8443 2.98023 57.8273 2.97821 57.8108 2.97653ZM57.8226 2.9523C57.8226 2.9523 57.8226 2.9523 57.8225 2.9523C57.8225 2.9523 57.8225 2.9523 57.8226 2.9523ZM57.8524 2.3213C57.8237 2.31491 57.7918 2.30784 57.7637 2.30145C57.7912 2.30784 57.8229 2.31457 57.8524 2.3213ZM57.6913 2.28159C57.6913 2.28159 57.691 2.28159 57.6908 2.28159C57.691 2.28159 57.691 2.28159 57.6911 2.28159H57.6913ZM57.6828 2.96105C57.6738 2.9597 57.6648 2.95869 57.6558 2.95734C57.6645 2.95869 57.6735 2.9597 57.6828 2.96105ZM57.6479 2.95634C57.6385 2.95499 57.6291 2.95364 57.6199 2.9523C57.6289 2.95364 57.6383 2.95499 57.6479 2.95634ZM57.6175 2.95196C57.6097 2.95061 57.6019 2.9496 57.594 2.94826C57.6016 2.9496 57.6094 2.95061 57.6175 2.95196ZM57.5899 2.94759C57.5899 2.94759 57.5902 2.94759 57.5903 2.94759C57.5894 2.94759 57.5885 2.94759 57.5876 2.94725C57.5884 2.94725 57.5891 2.94725 57.5901 2.94759H57.5899ZM57.5872 2.94725C57.5792 2.9459 57.5715 2.94456 57.5639 2.94287C57.5713 2.94422 57.5791 2.94557 57.5872 2.94725ZM57.5617 2.94254C57.5552 2.94119 57.5486 2.93985 57.5424 2.9385C57.5486 2.93985 57.555 2.94119 57.5617 2.94254ZM57.5366 2.93715C57.5305 2.93581 57.5246 2.93446 57.519 2.93278C57.5245 2.93412 57.5305 2.93581 57.5366 2.93715ZM57.1944 2.90182C57.1749 2.90013 57.1552 2.89845 57.1353 2.89643C57.1552 2.89812 57.1746 2.90013 57.1944 2.90182ZM57.1369 2.89677C57.1176 2.89509 57.0978 2.89307 57.0782 2.89105C57.098 2.89307 57.1176 2.89475 57.1369 2.89677ZM57.011 2.88465C57.0021 2.88364 56.9932 2.88297 56.9843 2.88196C56.9932 2.88297 57.0022 2.88398 57.011 2.88465ZM56.9728 2.86278C56.972 2.86278 56.9714 2.86278 56.9706 2.86278C56.9714 2.86278 56.9722 2.86278 56.9728 2.86278ZM56.9666 2.87994C56.9613 2.87927 56.9561 2.87893 56.9507 2.87826C56.956 2.87893 56.9613 2.87927 56.9666 2.87994ZM56.9502 2.87826C56.9441 2.87759 56.9379 2.87691 56.9318 2.87624C56.9381 2.87691 56.9446 2.87759 56.9508 2.87826C56.9506 2.87826 56.9504 2.87826 56.9502 2.87826ZM56.9243 2.87557C56.9185 2.87489 56.9126 2.87422 56.9066 2.87355C56.9124 2.87422 56.9184 2.87489 56.9243 2.87557ZM56.8258 2.8648C56.8162 2.86379 56.8065 2.86244 56.7968 2.86143C56.807 2.86244 56.8173 2.86379 56.8275 2.8648C56.827 2.8648 56.8265 2.8648 56.8258 2.8648ZM56.829 2.86514C56.8322 2.86547 56.8352 2.86581 56.8384 2.86614C56.8347 2.86581 56.8311 2.86547 56.8274 2.8648C56.8279 2.8648 56.8285 2.8648 56.829 2.8648V2.86514ZM56.481 1.64555C56.9565 1.70545 56.8494 1.69132 56.4436 1.6405C56.4561 1.64218 56.4685 1.64387 56.481 1.64555ZM56.4726 2.11636C56.6035 2.12376 56.7338 2.14866 56.8641 2.17424C56.6043 2.12006 56.3435 2.10424 56.0833 2.06251C56.2131 2.08068 56.3428 2.09852 56.4726 2.11636ZM56.2593 2.87893C56.256 2.87826 56.2528 2.87759 56.2496 2.87691C56.2529 2.87759 56.256 2.87826 56.2593 2.87893ZM56.0781 2.06049C56.0798 2.06116 56.0816 2.06184 56.0833 2.06217C56.0828 2.06217 56.0821 2.06184 56.0816 2.0615H56.0818C56.074 2.05881 56.0658 2.05578 56.0565 2.05309C56.0643 2.05544 56.0714 2.0578 56.0781 2.06015V2.06049ZM55.6836 2.81365C55.6787 2.81297 55.6737 2.8123 55.6689 2.81163C55.6882 2.81432 55.7076 2.81735 55.7268 2.82004C55.7138 2.81802 55.701 2.81634 55.688 2.81432C55.6901 2.81432 55.6922 2.81499 55.6943 2.81533L55.6835 2.81365H55.6836ZM55.6753 2.10491C55.6857 2.10626 55.6958 2.10727 55.706 2.10862C55.6958 2.10727 55.6856 2.10626 55.6753 2.10491ZM55.7563 2.1241C55.7778 2.12544 55.7991 2.12645 55.8205 2.1278C55.7991 2.12645 55.7776 2.12544 55.7563 2.1241ZM55.8764 2.13015C55.8644 2.12847 55.8519 2.12679 55.8396 2.12544C55.8521 2.12712 55.8644 2.12881 55.8764 2.13015ZM55.3927 1.48132C55.4774 1.49108 55.5518 1.49983 55.6175 1.50791C55.552 1.49983 55.4774 1.49108 55.3927 1.48132ZM55.6117 2.09717C55.6104 2.09717 55.6092 2.09717 55.6079 2.09684C55.6092 2.09684 55.6104 2.09684 55.6117 2.09717ZM55.2906 2.75644C55.2906 2.75644 55.2912 2.75644 55.2915 2.75644C55.2894 2.75644 55.2872 2.75576 55.2853 2.75543C55.2871 2.75543 55.2888 2.75576 55.2906 2.7561V2.75644ZM55.2829 2.75543C55.2837 2.75543 55.2845 2.75543 55.2851 2.75543C55.2753 2.75408 55.2654 2.75273 55.2556 2.75139C55.2647 2.75273 55.2737 2.75408 55.2827 2.75509L55.2829 2.75543ZM54.3849 2.51144C54.3849 2.51144 54.3857 2.51144 54.3862 2.51144C54.3841 2.51144 54.3821 2.51077 54.38 2.51077C54.3817 2.51077 54.3833 2.51111 54.385 2.51144H54.3849ZM54.213 2.5074C54.2127 2.5074 54.2124 2.5074 54.2123 2.5074C54.2123 2.5074 54.2126 2.5074 54.2128 2.5074H54.213ZM54.1196 2.48216C54.1178 2.48216 54.1159 2.48183 54.1141 2.48149C54.1166 2.48149 54.1191 2.48183 54.1215 2.48216C54.1039 2.48048 54.0858 2.4788 54.0677 2.47712C54.0853 2.4788 54.1027 2.48048 54.1196 2.48183V2.48216ZM54.0669 2.47745C54.0511 2.47611 54.0353 2.47442 54.019 2.47308C54.0351 2.47442 54.0511 2.47611 54.0669 2.47745ZM53.2044 2.40207C53.1068 2.395 53.0089 2.38894 52.9122 2.38289C53.0089 2.38861 53.1068 2.395 53.2044 2.40207ZM52.9039 2.3351C52.9099 2.33577 52.9149 2.33678 52.9191 2.33746C52.9149 2.33678 52.9099 2.33611 52.9039 2.3351ZM53.0424 1.85453C53.0545 1.85554 53.066 1.85622 53.0773 1.85723C53.0659 1.85655 53.0545 1.85554 53.0424 1.85453ZM53.0643 1.8616C53.0643 1.8616 53.0639 1.8616 53.0636 1.8616C53.0639 1.8616 53.064 1.8616 53.0643 1.8616ZM53.0634 1.8616C53.0634 1.8616 53.062 1.8616 53.0614 1.8616C53.0622 1.8616 53.0627 1.8616 53.0634 1.8616ZM53.115 1.85992C53.1184 1.85992 53.1216 1.86059 53.1249 1.86059C53.1216 1.86059 53.1183 1.85992 53.115 1.85992ZM53.4516 1.77747C53.4516 1.77747 53.4519 1.77814 53.4516 1.77848C53.452 1.77814 53.4516 1.77781 53.4515 1.77747H53.4516ZM53.4507 1.30397C53.4459 1.3033 53.4404 1.30262 53.4339 1.30162C53.4404 1.30229 53.4459 1.3033 53.4507 1.30397ZM53.4036 1.89189C53.401 1.89155 53.3987 1.89122 53.3961 1.89088C53.4001 1.89155 53.4042 1.89189 53.4082 1.89256C53.4066 1.89256 53.405 1.89223 53.4036 1.89189ZM53.0193 1.37363C53.0031 1.15388 53.2891 1.3383 53.3898 1.29724C53.164 1.22691 53.0369 1.34772 52.8823 1.36421C52.928 1.36724 52.9737 1.3706 53.0193 1.37363ZM53.0169 2.50639C52.8781 2.49832 52.7394 2.49024 52.6008 2.48216C52.7394 2.49024 52.8782 2.49832 53.0169 2.50639ZM52.582 2.4401C52.5789 2.4401 52.5759 2.43976 52.5728 2.43942C52.5759 2.43942 52.5789 2.43976 52.582 2.4401ZM52.5764 2.41991C52.5779 2.41991 52.5793 2.41991 52.5808 2.42024C52.5795 2.42024 52.578 2.42024 52.5764 2.41991ZM52.594 2.42192C52.5952 2.42192 52.5964 2.42192 52.5976 2.4226C52.5965 2.4226 52.5953 2.42226 52.594 2.42192ZM52.6034 2.42361C52.6034 2.42361 52.6046 2.42361 52.6051 2.42428C52.6047 2.42428 52.6041 2.42394 52.6034 2.42361ZM52.6057 2.42428C52.6057 2.42428 52.6063 2.42462 52.6063 2.42495C52.6063 2.42495 52.6061 2.42462 52.6057 2.42428ZM52.6053 2.42428H52.6054C52.6054 2.42428 52.6054 2.42428 52.6053 2.42428ZM52.6348 2.44346C52.6348 2.44346 52.6361 2.44346 52.6368 2.44346C52.6351 2.44346 52.6334 2.44346 52.6318 2.44346C52.6328 2.44346 52.6339 2.44346 52.6349 2.44346H52.6348ZM52.7103 2.44784C52.7103 2.44784 52.7115 2.44784 52.7121 2.44784C52.7114 2.44784 52.7107 2.44784 52.7099 2.44784C52.71 2.44784 52.7102 2.44784 52.7103 2.44784ZM52.7084 2.44784C52.7062 2.44784 52.7038 2.44784 52.7016 2.4475C52.7038 2.4475 52.7062 2.4475 52.7084 2.44784ZM52.6751 2.44582C52.6639 2.44515 52.653 2.44447 52.6414 2.4438C52.6414 2.4438 52.6416 2.4438 52.6417 2.4438C52.653 2.44447 52.6639 2.44515 52.6751 2.44582ZM52.6361 2.44346C52.6371 2.44346 52.6381 2.44346 52.6392 2.44346C52.6381 2.44346 52.6372 2.44346 52.6361 2.44346ZM52.7985 2.35361C52.7704 2.35226 52.7418 2.35058 52.7124 2.3489C52.7443 2.35058 52.7756 2.35226 52.806 2.35395C52.8035 2.35395 52.801 2.35395 52.7985 2.35361ZM52.5432 2.41721C52.5389 2.41688 52.5343 2.41654 52.5297 2.4162C52.5342 2.4162 52.5388 2.41688 52.5432 2.41721ZM52.5702 2.43942C52.5702 2.43942 52.571 2.43942 52.5712 2.43942C52.5612 2.43875 52.551 2.43808 52.5406 2.43741C52.5506 2.43808 52.5604 2.43875 52.57 2.43942H52.5702ZM52.3535 2.32837C52.3623 2.32871 52.3709 2.32938 52.3795 2.32972C52.3709 2.32938 52.3621 2.32871 52.3535 2.32837ZM52.1014 2.33443C52.0908 2.33443 52.0793 2.33375 52.0667 2.33342C52.0791 2.33375 52.0909 2.33409 52.1014 2.33443ZM52.1065 1.71622C52.113 1.71689 52.1198 1.71757 52.1269 1.71858C52.1174 1.71757 52.1083 1.71656 52.0998 1.71555C52.1019 1.71555 52.1043 1.71588 52.1065 1.71622ZM52.0994 1.71555C52.0957 1.71521 52.0922 1.71487 52.0888 1.7142C52.0922 1.71454 52.0957 1.71487 52.0994 1.71555ZM52.0774 2.33678C52.102 2.33779 52.1273 2.3388 52.1522 2.34015C52.1513 2.34015 52.1504 2.34015 52.1495 2.34015C52.1694 2.34116 52.1896 2.34217 52.2102 2.34318C52.1526 2.34015 52.0922 2.33746 52.0357 2.33577C52.063 2.33678 52.0913 2.33779 52.1206 2.33914C52.1059 2.33847 52.0916 2.33779 52.0774 2.33746V2.33678ZM52.2721 1.8303H52.2723C52.2713 1.8303 52.2701 1.8303 52.2693 1.8303C52.27 1.8303 52.271 1.8303 52.2719 1.8303H52.2721ZM52.3613 1.80776C52.359 1.80776 52.3566 1.80742 52.3543 1.80708C52.3578 1.80708 52.3615 1.80776 52.365 1.80809C52.3639 1.80809 52.3625 1.80809 52.3613 1.80809V1.80776ZM52.3759 1.74045C52.3845 1.74079 52.3926 1.74112 52.3992 1.74146C52.3915 1.74112 52.3845 1.74079 52.3759 1.74045ZM52.3399 1.80607C52.3372 1.80607 52.3346 1.80574 52.3321 1.8054C52.3384 1.80607 52.3451 1.80675 52.3521 1.80708C52.348 1.80675 52.344 1.80641 52.3399 1.80607ZM52.3326 1.8054C52.3326 1.8054 52.3315 1.8054 52.3309 1.8054C52.3314 1.8054 52.3319 1.8054 52.3326 1.8054ZM52.4134 1.83232C52.4134 1.83232 52.413 1.83232 52.4127 1.83232C52.4129 1.83232 52.4131 1.83232 52.4134 1.83232ZM52.5711 1.83434C52.5711 1.83434 52.5711 1.83434 52.571 1.83434C52.571 1.83434 52.571 1.83434 52.5711 1.83434ZM52.6451 1.83434C52.6451 1.83434 52.6447 1.83434 52.6445 1.83434C52.6447 1.83434 52.645 1.83434 52.6451 1.83434ZM52.6442 1.83401C52.6442 1.83401 52.6432 1.83401 52.6424 1.83367C52.6432 1.83367 52.6438 1.83367 52.6442 1.83401ZM52.6389 1.833C52.6365 1.83266 52.6334 1.83232 52.6296 1.83165C52.6334 1.83199 52.6364 1.83232 52.6389 1.833ZM52.6081 1.82963C52.6 1.82896 52.5908 1.82795 52.5809 1.82728C52.5908 1.82829 52.6 1.82896 52.6081 1.82963ZM52.4707 1.81785C52.444 1.81583 52.4168 1.81348 52.3914 1.81146C52.4167 1.81348 52.4438 1.81583 52.4707 1.81785ZM52.0909 1.22421C52.0916 1.22421 52.0924 1.22421 52.093 1.22421C52.0896 1.22421 52.0865 1.22421 52.0832 1.22421C52.0858 1.22421 52.0883 1.22421 52.0909 1.22421ZM52.0728 1.71319C52.0691 1.71286 52.0658 1.71218 52.0622 1.71185C52.0655 1.71218 52.0691 1.71286 52.0728 1.71319ZM51.968 1.24407C51.9728 1.24104 51.9778 1.23835 51.9829 1.23599C51.9622 1.25046 51.9357 1.23902 51.919 1.23936C51.9327 1.2407 51.9486 1.24239 51.968 1.24407ZM51.9411 1.79127H51.9414C51.9414 1.79127 51.9407 1.79127 51.9403 1.79127C51.9417 1.79127 51.9431 1.79127 51.9443 1.79127C51.9437 1.79127 51.9431 1.79127 51.9423 1.79127C51.9429 1.79127 51.9433 1.79127 51.9435 1.79127C51.9427 1.79127 51.9419 1.79127 51.941 1.79127H51.9411ZM51.881 1.7068C51.8841 1.70713 51.8871 1.70747 51.8904 1.70781C51.8736 1.70579 51.8606 1.70377 51.8483 1.70209C51.8581 1.70343 51.8686 1.70478 51.881 1.70646V1.7068ZM51.8149 1.81348C51.8136 1.81348 51.8126 1.81348 51.8116 1.81381C51.8124 1.81381 51.8135 1.81381 51.8144 1.81348C51.8143 1.81348 51.8141 1.81348 51.814 1.81348C51.8143 1.81348 51.8145 1.81348 51.8148 1.81348H51.8149ZM51.7682 1.69569C51.771 1.69569 51.7737 1.69569 51.7763 1.69569C51.7736 1.69569 51.771 1.69569 51.7682 1.69569ZM50.4438 1.6405C50.4438 1.6405 50.4441 1.6405 50.4444 1.6405C50.444 1.6405 50.4436 1.6405 50.4438 1.6405ZM50.4465 1.64016C50.4465 1.64016 50.4471 1.64016 50.4473 1.64016C50.4467 1.64016 50.4459 1.64016 50.4453 1.64016C50.4457 1.64016 50.4463 1.64016 50.4468 1.64016C50.4468 1.64016 50.4467 1.64016 50.4465 1.64016ZM51.3796 1.77545C51.4021 1.77612 51.4239 1.77713 51.4459 1.77781C51.1744 1.76805 50.8538 1.75593 50.6147 1.74886C50.8597 1.75593 51.124 1.76636 51.3796 1.77545ZM50.9408 1.66641C50.9408 1.66641 50.9409 1.66641 50.941 1.66641C50.941 1.66641 50.9409 1.66641 50.9408 1.66641ZM51.1872 1.78083C51.1754 1.78016 51.1639 1.77982 51.1525 1.77949C51.1639 1.77982 51.1756 1.7805 51.1872 1.78083ZM50.6066 2.30145C50.6552 2.30347 50.7028 2.30549 50.7486 2.3075C50.7028 2.30582 50.6546 2.30347 50.6066 2.30145ZM51.6716 1.69401C51.6666 1.69401 51.6614 1.69401 51.6561 1.69401C51.6613 1.69401 51.6666 1.69401 51.6716 1.69401ZM51.6719 1.69401C51.6761 1.69401 51.6805 1.69401 51.6848 1.69401C51.6805 1.69401 51.6763 1.69401 51.6719 1.69401ZM51.6789 1.69401C51.6817 1.69401 51.6844 1.69401 51.6869 1.69401C51.6842 1.69401 51.6816 1.69401 51.6789 1.69401ZM51.6881 1.69401H51.6878C51.691 1.69401 51.6942 1.69401 51.6973 1.69401C51.6946 1.69401 51.6918 1.69401 51.6889 1.69401C51.6895 1.69401 51.6902 1.69401 51.6908 1.69401C51.6899 1.69401 51.6889 1.69401 51.6879 1.69401H51.6881ZM51.7024 1.69401H51.7021C51.705 1.69401 51.7081 1.69401 51.711 1.69401C51.7086 1.69401 51.7061 1.69401 51.7036 1.69401C51.7044 1.69401 51.7053 1.69401 51.7062 1.69401C51.705 1.69401 51.7037 1.69401 51.7025 1.69401H51.7024ZM51.744 1.69468C51.7418 1.69468 51.7397 1.69468 51.7376 1.69468C51.7397 1.69468 51.742 1.69468 51.744 1.69468ZM51.7303 1.2232C51.7344 1.2232 51.7385 1.2232 51.7424 1.2232C51.7385 1.2232 51.7345 1.2232 51.7303 1.2232ZM51.7447 1.69468C51.75 1.69468 51.7552 1.69468 51.76 1.69502C51.7551 1.69502 51.7498 1.69502 51.7447 1.69468ZM51.8084 1.81449C51.8082 1.81449 51.8079 1.81482 51.808 1.81516C51.808 1.81516 51.808 1.81482 51.8084 1.81449ZM51.816 1.81314C51.816 1.81314 51.8161 1.81314 51.8163 1.81314C51.8163 1.81314 51.8163 1.81314 51.8161 1.81314C51.8185 1.81314 51.8253 1.81247 51.8193 1.81314C51.8204 1.81314 51.8212 1.81314 51.8223 1.81314C51.8197 1.81314 51.8176 1.81348 51.8156 1.81381C51.8157 1.81381 51.816 1.81381 51.8161 1.81381L51.816 1.81314ZM51.8201 1.71353C51.819 1.71353 51.818 1.71353 51.8171 1.71353C51.82 1.71353 51.8231 1.71387 51.8261 1.7142C51.8241 1.7142 51.8221 1.7142 51.8201 1.71387V1.71353ZM51.6768 1.2232C51.6971 1.2232 51.7146 1.2232 51.7299 1.22354C51.7073 1.22354 51.68 1.2232 51.6463 1.22354C51.6571 1.22354 51.6673 1.22354 51.6767 1.22354L51.6768 1.2232ZM50.5521 1.15556C50.9169 1.17239 51.2816 1.18888 51.6465 1.20469C51.2804 1.18888 50.9143 1.17239 50.5482 1.15522C50.5496 1.15522 50.5509 1.15522 50.5521 1.15522V1.15556ZM50.5647 2.3001C50.5504 2.29943 50.5358 2.29875 50.5214 2.29808C50.5359 2.29875 50.5504 2.29943 50.5647 2.3001ZM50.469 1.63983C50.477 1.63983 50.4869 1.63983 50.4984 1.63983C50.4886 1.63983 50.4792 1.63983 50.4696 1.63983C50.4702 1.63983 50.471 1.63983 50.4717 1.63983C50.4708 1.63983 50.4697 1.63983 50.4689 1.63983H50.469ZM50.4679 1.63983C50.4663 1.63983 50.4645 1.64016 50.463 1.6405C50.4645 1.6405 50.4661 1.64016 50.4679 1.63983ZM50.442 1.16902C50.4456 1.16902 50.4528 1.16902 50.4627 1.16869C50.4157 1.16431 50.3732 1.19056 50.3374 1.2545C50.3669 1.20234 50.4028 1.17138 50.442 1.16936V1.16902ZM50.2949 1.76502C50.3028 1.76535 50.3105 1.76569 50.3183 1.76603C50.3093 1.76569 50.3003 1.76535 50.2912 1.76468C50.2924 1.76468 50.2936 1.76468 50.2948 1.76468L50.2949 1.76502ZM50.2354 1.19628C50.2264 1.28344 50.2638 1.24373 50.2863 1.25282C50.2638 1.24373 50.2266 1.28344 50.2354 1.19628ZM50.107 2.2789C50.1038 2.2789 50.1005 2.2789 50.0973 2.27856C50.1451 2.28092 50.1931 2.28294 50.241 2.28529C50.1964 2.28327 50.1516 2.28126 50.1071 2.27924L50.107 2.2789ZM50.1711 1.7593C50.1847 1.75997 50.1978 1.76064 50.2112 1.76132C50.198 1.76064 50.1847 1.75997 50.1711 1.7593ZM50.2303 1.76233C50.2405 1.76266 50.2507 1.76334 50.2609 1.76367C50.2507 1.76334 50.2406 1.76266 50.2303 1.76233ZM49.3554 1.10676C49.3519 1.10676 49.3483 1.10676 49.3447 1.10643C49.641 1.11787 49.9373 1.12965 50.2337 1.14143C49.9409 1.12965 49.6482 1.11821 49.3554 1.10676ZM50.3509 2.35798C50.3509 2.35798 50.3517 2.35798 50.3521 2.35798C50.2025 2.35024 50.053 2.34217 49.9033 2.33443C50.0526 2.34217 50.2017 2.35024 50.3509 2.35798ZM53.0291 2.97989C52.1751 2.93042 51.292 2.87826 50.4461 2.8335C51.3684 2.88331 52.3278 2.93614 53.2574 2.9947C53.1823 2.98931 53.106 2.98427 53.0291 2.97956V2.97989ZM53.5094 1.33258C53.703 1.52541 53.9484 1.39887 54.1115 1.45743C53.9484 1.39887 53.7029 1.52507 53.5094 1.33258ZM54.0938 2.57471C54.1064 2.57606 54.1188 2.57774 54.1314 2.57908C54.119 2.57774 54.1064 2.57606 54.0938 2.57471ZM54.1852 2.58548C54.1807 2.58481 54.1762 2.58447 54.1717 2.5838C54.1894 2.58582 54.2077 2.58817 54.225 2.59053C54.2121 2.58884 54.1987 2.58716 54.1852 2.58548ZM54.4547 2.57471C54.4461 2.57336 54.4376 2.57235 54.429 2.57101C54.4374 2.57202 54.4461 2.57336 54.4547 2.57471ZM54.4973 1.87574C54.5198 1.87809 54.5422 1.88045 54.5647 1.8828C54.5414 1.88045 54.5181 1.87809 54.4948 1.8754C54.4956 1.8754 54.4965 1.8754 54.4973 1.8754V1.87574ZM54.6288 2.61913C54.6304 2.61947 54.6319 2.6198 54.6334 2.62014C54.632 2.6198 54.6304 2.61947 54.6288 2.61913ZM54.6362 2.62081C54.6362 2.62081 54.6353 2.62081 54.6349 2.62081C54.6357 2.62081 54.6364 2.62115 54.6372 2.62149C54.6369 2.62149 54.6365 2.62149 54.6362 2.62149V2.62081ZM54.6379 2.62115C54.6387 2.62115 54.6394 2.62149 54.6401 2.62182C54.6391 2.62182 54.6382 2.62149 54.6373 2.62115C54.6375 2.62115 54.6378 2.62115 54.6379 2.62115ZM54.6415 2.62216C54.6423 2.62216 54.6431 2.6225 54.6439 2.62283C54.6431 2.62283 54.6423 2.6225 54.6415 2.62216ZM54.6528 2.63057C54.6533 2.63057 54.6537 2.63057 54.6541 2.63057C54.6537 2.63057 54.6533 2.63057 54.6529 2.63057H54.6528ZM54.6533 2.63057C54.6533 2.63057 54.6541 2.63057 54.6546 2.63057C54.6541 2.63057 54.6538 2.63057 54.6533 2.63057ZM54.6546 1.89189C54.7353 1.9003 54.8105 1.90804 54.8819 1.91578C54.8106 1.90804 54.7308 1.89963 54.6546 1.89189ZM54.8923 1.91713C54.9029 1.91814 54.9134 1.91949 54.9237 1.92049C54.9176 1.91982 54.9115 1.91915 54.9055 1.91848C54.9229 1.92049 54.9401 1.92251 54.9572 1.9242C54.9529 1.92386 54.9484 1.92319 54.944 1.92285C54.9527 1.92386 54.9615 1.92487 54.9702 1.92588C54.9672 1.92554 54.9641 1.92521 54.9611 1.92487C54.9778 1.92689 54.9942 1.92857 55.0103 1.93059C55.0054 1.92992 55.0005 1.92958 54.9956 1.92891C55.0029 1.92992 55.0102 1.93059 55.0175 1.9316C55.0159 1.9316 55.0144 1.93126 55.0129 1.93093C55.0299 1.93295 55.0469 1.93497 55.0637 1.93698C54.9921 1.92823 54.9245 1.92049 54.8494 1.91242C54.8682 1.91444 54.8868 1.91646 54.9051 1.91848C54.9008 1.91814 54.8966 1.91747 54.8923 1.91713ZM55.7894 3.28815C55.5688 3.29556 55.3227 3.22017 55.092 3.20133C55.4966 3.26695 55.8861 3.29926 56.2886 3.35883C56.1221 3.33527 55.9558 3.31171 55.7893 3.28815H55.7894ZM56.657 2.921C56.6619 2.92201 56.6662 2.92268 56.6705 2.92369C56.6664 2.92302 56.6619 2.92201 56.657 2.921ZM56.6726 2.92403C56.6762 2.9247 56.6795 2.92537 56.6827 2.92605C56.6796 2.92537 56.6762 2.9247 56.6726 2.92403ZM56.5501 2.83316C56.5501 2.83316 56.5488 2.83316 56.5482 2.83316C56.5998 2.83956 56.6506 2.84562 56.7008 2.85167C56.7008 2.85167 56.7007 2.85167 56.7005 2.85167C56.7012 2.85167 56.7019 2.85167 56.7027 2.85167C56.6523 2.84562 56.6016 2.83956 56.5501 2.83316ZM56.7393 2.85605C56.7372 2.85605 56.7351 2.85571 56.733 2.85538C56.7436 2.85672 56.7543 2.85773 56.7648 2.85908C56.7563 2.85807 56.7478 2.85706 56.7393 2.85605ZM56.7658 2.85908C56.7768 2.86042 56.7877 2.86143 56.7987 2.86278C56.7872 2.86143 56.7756 2.86009 56.764 2.85874C56.7646 2.85874 56.7653 2.85874 56.7658 2.85874V2.85908ZM57.1342 3.47627C57.0037 3.45777 56.9157 3.4443 56.8547 3.43421C56.9157 3.4443 57.0043 3.45777 57.1346 3.47627H57.1342ZM57.136 3.47627C57.136 3.47627 57.1357 3.47627 57.1356 3.47627C57.1536 3.47829 57.1717 3.48065 57.1897 3.48267C57.1719 3.48065 57.1538 3.47829 57.136 3.47627ZM57.7144 2.96643C57.705 2.96508 57.6956 2.96408 57.6863 2.96273C57.6971 2.96408 57.7082 2.96542 57.7195 2.96677C57.7177 2.96677 57.716 2.96643 57.7144 2.96609V2.96643ZM57.7334 2.96879C57.7308 2.96879 57.7285 2.96811 57.7261 2.96778C57.7373 2.96912 57.7487 2.97047 57.7606 2.97182C57.7515 2.97081 57.7424 2.9698 57.7334 2.96845V2.96879ZM57.7608 2.97215C57.7739 2.97383 57.7874 2.97518 57.8013 2.97686C57.7877 2.97518 57.7743 2.97383 57.7608 2.97215ZM57.7904 2.98898C57.7904 2.98898 57.7902 2.98898 57.7899 2.98898C57.8059 2.99066 57.8226 2.99201 57.8392 2.99369C57.8225 2.99201 57.8062 2.99066 57.7904 2.98898ZM57.8487 2.99436C57.8624 2.99571 57.8761 2.99706 57.8899 2.9984C57.876 2.99706 57.8622 2.99571 57.8487 2.99436ZM57.9029 2.99975C57.9164 3.00109 57.93 3.00278 57.9437 3.00412C57.9299 3.00244 57.9162 3.00109 57.9029 2.99975ZM57.9615 3.57723C58.0418 3.58767 58.122 3.59877 58.2019 3.61021C58.1219 3.59877 58.0418 3.588 57.9615 3.57723ZM58.3719 3.63545C58.3391 3.63209 58.2941 3.62704 58.2019 3.61358C58.2966 3.62738 58.3383 3.63175 58.3747 3.63545C58.3738 3.63545 58.3729 3.63545 58.3719 3.63545ZM58.338 3.05528C58.3575 3.0583 58.3772 3.061 58.3967 3.06402C58.377 3.061 58.3574 3.05797 58.338 3.05528ZM58.3952 3.06402C58.3979 3.06436 58.4005 3.0647 58.4033 3.06537C58.4007 3.06503 58.398 3.0647 58.3952 3.06402ZM58.4148 3.06705C58.4306 3.06941 58.4465 3.0721 58.4623 3.07446C58.4464 3.07176 58.4306 3.06941 58.4148 3.06705ZM58.4832 3.07782C58.4991 3.08051 58.5151 3.08287 58.5311 3.08556C58.5151 3.08287 58.4991 3.08018 58.4832 3.07782ZM58.651 3.19897C58.645 3.19796 58.6391 3.19695 58.6331 3.19594C58.6498 3.19897 58.6666 3.202 58.6834 3.20503C58.6724 3.20301 58.6617 3.20133 58.6508 3.19931L58.651 3.19897ZM58.734 3.21378C58.719 3.21109 58.7039 3.2084 58.689 3.2057C58.7039 3.2084 58.7189 3.21109 58.734 3.21378ZM59.5816 3.88785C59.3766 3.82795 59.1774 3.78151 58.9679 3.7391C59.1775 3.78151 59.3768 3.82829 59.5821 3.88785C59.582 3.88785 59.5818 3.88785 59.5816 3.88785ZM59.7275 3.40156C59.7108 3.39416 59.6947 3.38979 59.678 3.38507C59.6947 3.38979 59.7107 3.3945 59.7275 3.40156ZM59.6725 3.9141C59.6676 3.91275 59.6627 3.91141 59.6578 3.90973C59.6651 3.91174 59.6727 3.91376 59.68 3.91646C59.6776 3.91545 59.6752 3.91477 59.6725 3.9141ZM59.6945 3.44632C59.6643 3.43757 59.634 3.42882 59.6038 3.42007C59.6369 3.42983 59.6702 3.43858 59.7031 3.44935C59.7003 3.44834 59.6976 3.44733 59.6945 3.44632ZM59.7101 3.44161C59.7072 3.4406 59.7043 3.43959 59.7013 3.43892C59.7101 3.44128 59.7189 3.44531 59.7276 3.44935C59.7218 3.447 59.7158 3.44397 59.71 3.44195L59.7101 3.44161ZM59.7365 3.43589C59.7454 3.43959 59.7544 3.44363 59.7635 3.44834C59.7544 3.44397 59.7454 3.43959 59.7365 3.43589ZM59.7787 2.20453C59.7787 2.20453 59.7781 2.20453 59.7777 2.20453C59.7782 2.20453 59.7787 2.20453 59.7793 2.20453C59.7791 2.20453 59.7789 2.20453 59.7787 2.20453ZM59.7953 3.97703C59.7912 3.97468 59.7872 3.97232 59.7831 3.96996C59.8048 3.98242 59.8242 3.99352 59.8492 4.0053C59.8293 3.99588 59.8113 3.98578 59.7953 3.9767V3.97703ZM59.8509 3.49344C59.8443 3.49007 59.8379 3.48671 59.8313 3.48334C59.8387 3.48738 59.8462 3.49142 59.8537 3.49512C59.8528 3.49478 59.8518 3.49411 59.8509 3.49377V3.49344ZM59.8855 2.75206C59.8672 2.75442 59.8524 2.75745 59.8383 2.76047C59.8518 2.75745 59.868 2.75442 59.8863 2.75206C59.8865 2.75206 59.8868 2.75206 59.8871 2.75206C59.8865 2.75206 59.8861 2.75206 59.8856 2.75206H59.8855ZM59.8869 2.70158C59.8873 2.70158 59.8879 2.70158 59.8884 2.70192C59.8877 2.70192 59.8872 2.70192 59.8869 2.70158ZM59.8893 2.70225C59.8893 2.70225 59.8889 2.70225 59.8888 2.70225C59.8889 2.70225 59.8892 2.70225 59.8893 2.70225ZM59.8945 3.5355C59.8945 3.5355 59.8941 3.5355 59.894 3.5355C59.899 3.53752 59.9042 3.53954 59.9092 3.54156C59.9043 3.53954 59.8994 3.53752 59.8945 3.5355ZM59.9102 2.70326C59.9087 2.70326 59.9072 2.70326 59.9057 2.70326C59.9151 2.70326 59.9244 2.7036 59.9353 2.70495C59.9264 2.70427 59.9183 2.7036 59.9102 2.7036V2.70326ZM59.921 3.53483C59.9243 3.53618 59.9276 3.53685 59.931 3.53786C59.9277 3.53685 59.9243 3.53584 59.921 3.53483ZM59.9404 3.54089C59.9463 3.54223 59.9521 3.54358 59.9582 3.54459C59.9521 3.54358 59.9461 3.54257 59.9404 3.54089ZM59.9784 4.03996C59.9769 4.03996 59.9753 4.03996 59.9738 4.03996C59.9795 4.03996 59.9851 4.03996 59.9909 4.03963C59.9867 4.03996 59.9826 4.03996 59.9786 4.0403L59.9784 4.03996ZM59.9908 3.53147C59.9954 3.53079 60.0003 3.52945 60.0052 3.52776C60.0002 3.52945 59.9953 3.53079 59.9908 3.53147ZM60.0183 3.53719C60.0224 3.53517 60.0265 3.53281 60.0308 3.53012C60.0199 3.53719 60.0085 3.54122 59.9978 3.54358C60.0158 3.54022 60.0323 3.53147 60.0505 3.5143C60.0392 3.52507 60.0285 3.53214 60.0183 3.53719ZM60.0386 3.50925C60.0423 3.50656 60.046 3.50286 60.0498 3.49882C60.0416 3.50791 60.0333 3.51363 60.0248 3.51868C60.0248 3.51868 60.0248 3.51868 60.0249 3.51868C60.0249 3.51868 60.0248 3.51868 60.0247 3.51868C60.0194 3.52204 60.0142 3.5244 60.0092 3.52642C60.0274 3.51901 60.0444 3.50757 60.0615 3.48469C60.0537 3.49478 60.0457 3.50353 60.0384 3.50925H60.0386ZM60.0617 3.52642C60.0643 3.52339 60.0666 3.52036 60.0692 3.51699C60.0666 3.52002 60.0643 3.52339 60.0617 3.52642ZM60.0713 3.49041C60.0725 3.48873 60.0737 3.48637 60.0749 3.48435C60.0737 3.48603 60.0726 3.48839 60.0714 3.49007L60.0713 3.49041ZM60.0655 2.75374C60.0686 2.75812 60.0719 2.76317 60.0751 2.76821C60.0719 2.76283 60.0686 2.75778 60.0655 2.75374ZM60.0877 3.48974C60.0929 3.48065 60.0979 3.47055 60.1027 3.45945C60.0959 3.47493 60.0889 3.48873 60.0811 3.49983C60.0833 3.49647 60.0855 3.49344 60.0877 3.4894V3.48974ZM60.1939 3.87607C60.1608 3.93463 60.1229 3.97905 60.0833 4.00597C60.1649 3.95146 60.2373 3.82223 60.2834 3.64319C60.2599 3.73406 60.2291 3.81482 60.1939 3.87641V3.87607ZM60.3167 3.47695C60.3163 3.4793 60.316 3.48132 60.3156 3.48368C60.3161 3.48031 60.3167 3.47695 60.3172 3.47358L60.3167 3.47695ZM60.3206 3.45036C60.3199 3.45608 60.3189 3.4618 60.3181 3.46752C60.3197 3.45676 60.3213 3.44565 60.3229 3.43488C60.3221 3.43993 60.3214 3.44531 60.3206 3.45036ZM60.3396 3.00816C60.3402 3.02162 60.3406 3.03374 60.3409 3.04417C60.3402 3.02028 60.3389 2.99032 60.3372 2.96542C60.3381 2.97956 60.3389 2.99403 60.3396 3.00816ZM60.3414 3.16835C60.3412 3.18753 60.3405 3.21883 60.3384 3.25686C60.3408 3.21277 60.3412 3.18652 60.3416 3.1596C60.3416 3.16263 60.3416 3.16532 60.3414 3.16835ZM32.949 2.28126H32.9491C32.9491 2.28126 32.948 2.28126 32.9475 2.28126C32.948 2.28126 32.9484 2.28126 32.949 2.28126ZM58.6167 3.10037C58.6167 3.10037 58.6169 3.10037 58.6172 3.10037C58.6169 3.10037 58.6168 3.10037 58.6165 3.10037H58.6167ZM15.9806 3.00008C15.9837 3.00008 15.9869 2.99975 15.9902 2.99941C15.9869 2.99941 15.9837 2.99975 15.9806 3.00008ZM52.1538 2.34082C52.1538 2.34082 52.1532 2.34082 52.1528 2.34082C52.1532 2.34082 52.1534 2.34082 52.1538 2.34082ZM28.9933 1.79093C28.9933 1.79093 28.9945 1.79093 28.995 1.79093C28.9945 1.79093 28.9938 1.79093 28.9933 1.79093ZM35.3017 2.04838C35.3017 2.04838 35.3005 2.04838 35.3 2.04838C35.3005 2.04838 35.3012 2.04838 35.3017 2.04838ZM35.5091 1.60954C35.5091 1.60954 35.5103 1.60954 35.5108 1.60954C35.5103 1.60954 35.5096 1.60954 35.5091 1.60954ZM4.48047 3.50993C4.48047 3.50993 4.48073 3.50993 4.48099 3.50993C4.48033 3.50993 4.4798 3.50993 4.47914 3.50993C4.47954 3.50993 4.48007 3.50993 4.48047 3.50993ZM5.50018 2.73355C5.50018 2.73355 5.5011 2.73355 5.5015 2.73355C5.5011 2.73355 5.50071 2.73355 5.50031 2.73355H5.50018ZM26.2105 2.00732C26.2105 2.00732 26.2102 2.00732 26.21 2.00732C26.2428 2.00631 26.2757 2.00496 26.3084 2.00395C26.2758 2.0053 26.2431 2.00631 26.2104 2.00732H26.2105ZM19.1108 2.20924C19.112 2.20924 19.1132 2.20924 19.1142 2.2089C19.1131 2.2089 19.1119 2.2089 19.1108 2.20924ZM4.62349 2.74735C4.62508 2.74735 4.62693 2.74735 4.62852 2.74701C4.62667 2.74701 4.62468 2.74701 4.62283 2.74735C4.62309 2.74735 4.62322 2.74735 4.62349 2.74735ZM41.5691 1.98309C41.5676 1.98309 41.5662 1.98309 41.5646 1.98309C41.5687 1.98309 41.5724 1.98309 41.5762 1.98275C41.574 1.98275 41.5715 1.98275 41.5691 1.98275V1.98309ZM30.7817 1.72127C30.7817 1.72127 30.7805 1.72127 30.78 1.72127C30.7805 1.72127 30.7812 1.72127 30.7817 1.72127ZM26.141 2.00968C26.1362 2.00968 26.1315 2.01001 26.1267 2.01035C26.1315 2.01035 26.1362 2.01001 26.141 2.00968ZM42.4613 2.07059C42.4613 2.07059 42.4615 2.07059 42.4618 2.07059C42.4617 2.07059 42.4615 2.07059 42.4613 2.07059ZM15.2959 2.80658C15.2975 2.80658 15.2992 2.80624 15.3009 2.80591C15.2992 2.80591 15.2975 2.80624 15.2959 2.80658ZM26.3719 2.00059C26.3571 2.00126 26.3423 2.00194 26.3274 2.00261C26.3424 2.00194 26.3574 2.00126 26.3723 2.00059C26.3723 2.00059 26.3721 2.00059 26.3719 2.00059ZM25.3934 2.50538C25.3934 2.50538 25.3938 2.50538 25.394 2.50538C25.3938 2.50538 25.3936 2.50538 25.3934 2.50538ZM15.5762 2.93244C15.5762 2.93244 15.5764 2.93244 15.5765 2.93244C15.5765 2.93244 15.5764 2.93244 15.5762 2.93244ZM56.6987 2.84091C56.698 2.84091 56.6975 2.84091 56.6968 2.84091C56.6974 2.84091 56.698 2.84091 56.6986 2.84091H56.6987ZM26.5176 1.99352C26.4845 1.9952 26.4515 1.99655 26.4184 1.99823C26.4515 1.99655 26.4846 1.9952 26.5176 1.99352ZM6.45566 2.7524C6.46228 2.7524 6.46877 2.75206 6.47539 2.75172C6.46877 2.75172 6.46228 2.75206 6.45566 2.7524ZM22.5223 2.06318C22.5192 2.06318 22.5158 2.06318 22.5125 2.06285C22.5158 2.06285 22.519 2.06285 22.5223 2.06318ZM54.9035 1.90804H54.9039C54.9039 1.90804 54.9036 1.90804 54.9035 1.90804ZM54.9556 1.9141C54.957 1.9141 54.9582 1.9141 54.9595 1.91444C54.9582 1.91444 54.957 1.91444 54.9556 1.9141ZM19.7229 2.10862C19.7229 2.10862 19.7226 2.10862 19.7225 2.10862C19.7225 2.10862 19.7226 2.10862 19.7228 2.10862H19.7229ZM26.3273 2.00294C26.321 2.00294 26.3147 2.00328 26.3084 2.00362C26.3147 2.00362 26.321 2.00328 26.3273 2.00294ZM55.0106 1.92049C55.0106 1.92049 55.011 1.92049 55.0113 1.92049C55.0105 1.92049 55.0095 1.92049 55.0087 1.92049C55.0094 1.92049 55.0099 1.92049 55.0106 1.92049ZM26.4184 1.99857C26.4031 1.99924 26.3877 1.99992 26.3722 2.00059C26.3876 1.99992 26.4029 1.99924 26.4184 1.99857ZM11.5087 3.01355C11.5087 3.01355 11.5089 3.01355 11.5091 3.01355C11.5085 3.01355 11.508 3.01355 11.5075 3.01355C11.5079 3.01355 11.5083 3.01355 11.5088 3.01355H11.5087ZM59.8982 2.69283C59.8982 2.69283 59.8986 2.69283 59.8987 2.69283C59.8985 2.69283 59.8983 2.69283 59.8982 2.69283ZM11.4428 3.20268C11.4489 3.20268 11.4549 3.20234 11.4609 3.202C11.4548 3.202 11.4488 3.20234 11.4428 3.20268ZM18.5351 2.8611C18.5351 2.8611 18.5351 2.8611 18.535 2.8611H18.5351ZM2.89541 3.36825C2.89541 3.36825 2.89475 3.36825 2.89448 3.36825C2.89475 3.36825 2.89515 3.36825 2.89541 3.36825ZM40.2199 1.98343C40.2142 1.98343 40.2086 1.98343 40.2029 1.98376C40.2142 1.98376 40.2249 1.98343 40.236 1.98309C40.2307 1.98309 40.2253 1.98309 40.2199 1.98309V1.98343ZM40.236 1.98343C40.2497 1.98343 40.2632 1.98275 40.2767 1.98275C40.2633 1.98275 40.2497 1.98343 40.236 1.98343ZM5.40628 2.78201C5.40456 2.78201 5.40297 2.78201 5.40138 2.78201C5.40297 2.78201 5.40469 2.78201 5.40628 2.78201ZM16.6769 2.97922H16.6767C16.6767 2.97922 16.6771 2.97922 16.6774 2.97922C16.6773 2.97922 16.677 2.97922 16.6769 2.97922ZM47.3685 2.09852C47.3685 2.09852 47.3687 2.09852 47.3689 2.09852C47.3689 2.09852 47.3686 2.09852 47.3685 2.09852ZM1.43325 3.46618C1.43325 3.46618 1.43325 3.46618 1.43312 3.46618C1.43312 3.46618 1.43312 3.46618 1.43325 3.46618ZM15.3012 2.80624C15.3034 2.80624 15.3058 2.80591 15.3082 2.80557C15.3057 2.80557 15.3033 2.80591 15.3012 2.80624ZM30.221 1.77949C30.221 1.77949 30.2212 1.77949 30.2213 1.77949C30.2213 1.77949 30.2212 1.77949 30.221 1.77949ZM41.0051 1.518C41.0051 1.518 41.0047 1.518 41.0044 1.518C41.0047 1.518 41.0048 1.518 41.0051 1.518ZM55.701 2.80725C55.6983 2.80692 55.6957 2.80658 55.693 2.80624C55.6979 2.80692 55.7028 2.80759 55.7076 2.80826C55.7053 2.80826 55.7031 2.80759 55.701 2.80725ZM15.3085 2.80557C15.3085 2.80557 15.3095 2.80557 15.3101 2.80557C15.3094 2.80557 15.3089 2.80557 15.3083 2.80557H15.3085ZM15.5766 2.93278C15.5766 2.93278 15.5766 2.93278 15.5765 2.93278C15.5765 2.93278 15.5765 2.93278 15.5766 2.93278ZM8.94071 2.61476C8.94654 2.61442 8.95223 2.61408 8.95806 2.61375C8.94614 2.61442 8.93422 2.61543 8.9223 2.6161C8.92839 2.61577 8.93462 2.61543 8.94071 2.61509V2.61476ZM15.3011 2.80624C15.3011 2.80624 15.3009 2.80624 15.3008 2.80624C15.3008 2.80624 15.3008 2.80624 15.3009 2.80624H15.3011ZM15.2959 2.80692C15.2959 2.80692 15.2959 2.80692 15.2958 2.80692C15.2958 2.80692 15.2958 2.80692 15.2959 2.80692ZM23.4762 2.58178C23.4753 2.58178 23.4744 2.58178 23.4737 2.58178C23.4745 2.58178 23.4753 2.58178 23.4762 2.58178Z' stroke='%23990000' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
body.dark-theme .prefooter h4 {
  color: #171D1A;
}
body.dark-theme .prefooter .forminator-ui#forminator-module-9632.forminator-design--default .forminator-button-submit {
  background-color: #900 !important;
  border-radius: 5px !important;
}
body.dark-theme .prefooter .forminator-ui#forminator-module-9632.forminator-design--default .forminator-input {
  background-color: transparent !important;
}
body.dark-theme .prefooter .forminator-ui#forminator-module-9632.forminator-design--default .forminator-input:focus, body.dark-theme .prefooter .forminator-ui#forminator-module-9632.forminator-design--default .forminator-input:hover {
  border-color: #900 !important;
}
body.dark-theme .site-footer__main {
  background-color: #171D1A;
}
body.dark-theme .site-footer__info .social-nav li a {
  background-color: #900;
}
body.dark-theme .site-footer__info .social-nav li a svg path {
  fill: #F0E9DE;
}
body.dark-theme .footer-legal {
  background-color: black;
}
body.dark-theme .site-footer__nav .footer-nav__menu > li > a {
  color: #FFF;
  opacity: 0.5;
}
